:root {
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --ink: #1f2a24;
  --muted: #637168;
  --wood: #b98554;
  --wood-dark: #7d5130;
  --accent: #2f8f73;
  --accent-dark: #1f6f58;
  --line: #e9dfd0;
  --shadow: 0 24px 60px rgba(65, 45, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid rgba(233, 223, 208, 0.78);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 64px);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(4.6rem, 12vw, 9.6rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.tagline {
  margin-bottom: 20px;
  color: var(--wood-dark);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(47, 143, 115, 0.2);
}

.button:hover {
  background: var(--accent-dark);
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(233, 223, 208, 0.95);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.section {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.two-column,
.section-heading,
.location-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.section-copy,
.section-heading p,
.location-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.menu-section,
.love-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.menu-card {
  display: flex;
  min-height: 92px;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #2f3b34;
  font-weight: 700;
}

.menu-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(47, 143, 115, 0.12);
}

.combos {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 28px;
  margin-top: 26px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  background: #f3eadc;
}

.combos h3 {
  margin-bottom: 0;
}

.combo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.combo-list span {
  padding: 14px 16px;
  border: 1px solid rgba(125, 81, 48, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  font-weight: 800;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.benefit {
  min-height: 150px;
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: var(--cream);
}

.benefit strong,
.benefit span {
  display: block;
}

.benefit strong {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.benefit span {
  color: var(--muted);
}

.retail-section {
  background:
    linear-gradient(90deg, rgba(47, 143, 115, 0.08), rgba(185, 133, 84, 0.1)),
    var(--cream);
}

.retail-panel,
.development-card {
  max-width: 1100px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 50px rgba(65, 45, 24, 0.08);
}

.retail-panel p,
.development-card p {
  max-width: 860px;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.retail-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.retail-stats span {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--wood-dark);
  font-weight: 800;
  text-align: center;
}

.location-section {
  align-items: center;
}

.location-section h2,
.contact-section h2 {
  max-width: 760px;
}

.development-section {
  padding-top: 0;
}

.contact-section {
  align-items: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.email-link {
  justify-self: end;
  overflow-wrap: anywhere;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--accent-dark);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  text-decoration: none;
}

.email-link:hover {
  border-color: rgba(47, 143, 115, 0.45);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #1f2a24;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .section-heading,
  .location-section,
  .contact-section,
  .combos {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .menu-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .email-link {
    justify-self: start;
  }
}

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

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.2rem);
  }

  .menu-grid,
  .benefit-grid,
  .combo-list,
  .retail-stats {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 76px;
  }

  .site-footer {
    flex-direction: column;
  }
}
