:root {
  --green: #0a7a38;
  --green-dark: #075227;
  --orange: #f47b20;
  --gold: #ffc94a;
  --red: #d9342b;
  --ink: #1d1d1f;
  --muted: #666b73;
  --cream: #fff8ea;
  --surface: #ffffff;
  --line: #ece0ca;
  --shadow: 0 22px 60px rgba(39, 28, 13, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fffaf0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 52px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand small {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: #353535;
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--orange);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 82px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px) clamp(36px, 6vw, 72px);
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin-bottom: 28px;
  color: #404349;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(244, 123, 32, 0.28);
}

.button.secondary,
.button.map {
  background: #fff;
  border-color: var(--green);
  color: var(--green-dark);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 0;
}

.quick-info div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.floating {
  position: absolute;
  width: clamp(120px, 18vw, 210px);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}

.floating.burger {
  right: -8px;
  bottom: 48px;
}

.floating.pizza {
  left: -8px;
  top: 28px;
}

.section {
  padding: clamp(54px, 8vw, 98px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  min-height: 320px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(39, 28, 13, 0.08);
}

.menu-card img {
  width: 190px;
  height: 170px;
  margin-bottom: 16px;
  object-fit: contain;
}

.menu-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.menu-card p,
.visit-copy p,
.contact-strip p {
  color: var(--muted);
}

.text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green);
  color: #fff;
}

.text-card span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.text-card p {
  color: rgba(255, 255, 255, 0.84);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  background: #102018;
  color: #fff;
}

.visit-copy {
  max-width: 540px;
}

.details-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
}

.details-panel div {
  min-height: 112px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.details-panel p {
  margin-bottom: 0;
  font-weight: 700;
}

.details-panel .map {
  grid-column: 1 / -1;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--gold);
}

.contact-strip h2 {
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: #111;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-photo {
    width: min(100%, 520px);
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .quick-info,
  .details-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

  .floating {
    width: 118px;
  }

  .floating.burger {
    bottom: 14px;
  }

  .contact-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
