:root {
  --ink: #20201d;
  --muted: #6b6d66;
  --paper: #f7f4ed;
  --surface: #ffffff;
  --line: rgba(32, 32, 29, 0.12);
  --green: #2f6f4e;
  --green-dark: #1f5038;
  --coral: #d95f43;
  --blue: #2f5f7f;
  --sun: #f2c45a;
  --shadow: 0 22px 70px rgba(28, 31, 25, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(247, 244, 237, 0.92);
  box-shadow: 0 12px 30px rgba(32, 32, 29, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 850;
  font-size: 18px;
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
}

.is-solid .site-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.site-nav a {
  min-width: 84px;
  padding: 8px 12px;
  border-radius: 999px;
  color: currentColor;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green-dark);
  background: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 118px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #173423;
  background: var(--sun);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  grid-column: 1;
  grid-row: 1;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 42px) clamp(18px, 4vw, 64px) 64px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(24, 25, 20, 0.82) 0%, rgba(24, 25, 20, 0.62) 36%, rgba(24, 25, 20, 0.18) 66%, rgba(24, 25, 20, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 24, 19, 0.28), rgba(18, 24, 19, 0.04));
}

.hero-content {
  width: min(660px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8f0c3;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(46px, 8vw, 90px);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 132px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(47, 111, 78, 0.34);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: #122719;
  background: var(--sun);
  box-shadow: 0 14px 34px rgba(140, 103, 25, 0.18);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost.dark {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(560px, 100%);
  margin: 34px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 900;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: #fff;
  background: var(--green-dark);
}

.strip div {
  padding: 26px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.05);
}

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

.strip strong {
  font-size: 19px;
}

.strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(68px, 10vw, 118px) clamp(18px, 4vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1.2fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading .eyebrow {
  align-self: start;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(40, 43, 35, 0.06);
}

.menu-card.featured {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(140deg, rgba(47, 111, 78, 0.96), rgba(47, 95, 127, 0.92)),
    var(--green);
  box-shadow: var(--shadow);
}

.tag {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  color: #12311f;
  background: var(--sun);
  font-size: 12px;
  font-weight: 900;
}

.tag.muted {
  color: #fff;
  background: var(--coral);
}

.tag.cool {
  color: #fff;
  background: var(--blue);
}

.menu-card p {
  margin: 16px 0 26px;
  color: var(--muted);
}

.menu-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price-row strong {
  font-size: 28px;
  line-height: 1;
}

.price-row a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.featured .price-row a {
  color: var(--ink);
  background: #fff;
}

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

.combo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px);
  border-radius: var(--radius);
  color: #10251a;
  background:
    linear-gradient(115deg, rgba(242, 196, 90, 0.84), rgba(120, 186, 145, 0.7)),
    #f4d577;
}

.combo-panel p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(16, 37, 26, 0.75);
  font-size: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.image-tile {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  background: #dfe5d7;
  box-shadow: var(--shadow);
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.02);
}

.story-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #42443e;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.reviews-section {
  background: #edf4e8;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(47, 111, 78, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

blockquote p {
  margin: 0;
  color: #333730;
  font-size: 17px;
}

cite {
  display: block;
  margin-top: 20px;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
}

.visit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(32, 32, 29, 0.96), rgba(32, 72, 52, 0.94)),
    #20201d;
  box-shadow: var(--shadow);
}

.visit-card .eyebrow {
  color: #bfe5a5;
}

.visit-card p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.map-preview {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(47, 95, 127, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(47, 95, 127, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #f8f4e6, #dbe9d6);
  background-size: 34px 34px, 34px 34px, 100% 100%;
  text-align: center;
}

.map-preview::before,
.map-preview::after {
  content: "";
  position: absolute;
  background: rgba(217, 95, 67, 0.42);
  transform: rotate(-18deg);
}

.map-preview::before {
  width: 130%;
  height: 26px;
  top: 42%;
}

.map-preview::after {
  width: 26px;
  height: 130%;
  left: 58%;
}

.map-pin {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 8px solid var(--coral);
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: rotate(-45deg);
  box-shadow: 0 12px 24px rgba(76, 44, 35, 0.2);
}

.map-preview strong,
.map-preview small {
  position: relative;
  z-index: 1;
}

.map-preview strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(20, 32, 25, 0.1);
}

.map-preview small {
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 64px) 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--green-dark);
  font-weight: 850;
}

.mobile-cta {
  position: fixed;
  z-index: 30;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(32, 32, 29, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(24, 25, 20, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.mobile-cta a:nth-child(2) {
  background: var(--blue);
}

.mobile-cta a:nth-child(3) {
  background: var(--coral);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border-color: rgba(32, 32, 29, 0.12);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 44px;
    min-width: 0;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #f5f2ec;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(24, 25, 20, 0.86) 0%, rgba(24, 25, 20, 0.62) 52%, rgba(24, 25, 20, 0.24) 100%),
      linear-gradient(0deg, rgba(18, 24, 19, 0.28), rgba(18, 24, 19, 0.04));
  }

  .strip,
  .menu-grid,
  .reviews,
  .split-section,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .combo-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 10px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 56px) 18px 42px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(24, 25, 20, 0.86) 0%, rgba(24, 25, 20, 0.68) 62%, rgba(24, 25, 20, 0.38) 100%),
      linear-gradient(0deg, rgba(18, 24, 19, 0.32), rgba(18, 24, 19, 0.04));
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(44px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 13px 14px;
  }

  .section {
    padding: 62px 18px;
  }

  .strip div {
    padding: 22px 18px;
  }

  .menu-card {
    min-height: 250px;
    padding: 22px;
  }

  .image-tile,
  .image-tile img {
    min-height: 360px;
  }

  .visit-card {
    padding: 24px;
  }

  .map-preview {
    min-height: 240px;
  }

  .site-footer {
    display: grid;
    padding: 26px 18px 88px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-row a {
    width: 100%;
    text-align: center;
  }
}
