:root {
  --green-950: #102017;
  --green-900: #172b20;
  --green-800: #1d3327;
  --green-700: #27543d;
  --sage-100: #edf2d0;
  --sage-200: #dce8af;
  --cream: #fffaf0;
  --gold: #d6ae2b;
  --amber: #f0c755;
  --terracotta: #8f3729;
  --ink: #172119;
  --muted: #65725e;
  --shadow: 0 22px 60px rgba(16, 32, 23, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(16, 32, 23, 0.34);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 32, 23, 0.92);
  box-shadow: 0 10px 30px rgba(16, 32, 23, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  color: var(--amber);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--green-900);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 32, 23, 0.88), rgba(16, 32, 23, 0.48) 52%, rgba(16, 32, 23, 0.18)),
    linear-gradient(0deg, rgba(16, 32, 23, 0.74), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  padding: 128px 0 82px;
  margin-left: clamp(18px, 7vw, 96px);
}

.hero-logo {
  width: 142px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.location-actions,
.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--green-950);
  background: var(--gold);
}

.button.primary:hover {
  background: var(--amber);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-950);
}

.intro-strip article {
  padding: 28px clamp(18px, 5vw, 54px);
  color: #fff;
  background: var(--green-800);
}

.intro-strip span {
  display: block;
  color: var(--sage-200);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-strip strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.section-copy,
.section-heading,
.location-copy {
  max-width: 660px;
}

h2 {
  margin: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.location-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-700);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.place-reel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.place-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.place-card-wide {
  grid-column: auto;
}

.place-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.place-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
}

.place-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(16, 32, 23, 0.72), transparent 54%);
}

.place-card span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--green-950);
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-card img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.menu-section {
  background: var(--sage-100);
}

.section-heading {
  margin-bottom: 34px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.menu-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(39, 84, 61, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 30px rgba(39, 84, 61, 0.08);
}

.menu-card span {
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card h3 {
  margin: 12px 0 10px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.menu-card p {
  color: var(--muted);
}

.menu-card strong {
  display: block;
  margin-top: auto;
  color: var(--green-700);
  font-size: 1.24rem;
}

.menu-pages {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 4px 18px;
  margin-top: 34px;
  margin-right: -4px;
  margin-left: -4px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--green-700) rgba(39, 84, 61, 0.16);
}

.menu-pages img {
  width: 100%;
  flex: 0 0 clamp(280px, 32vw, 430px);
  max-height: min(720px, 78vh);
  border-radius: var(--radius);
  object-fit: contain;
  object-position: top;
  background: var(--sage-200);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.menu-pages::-webkit-scrollbar {
  height: 10px;
}

.menu-pages::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(39, 84, 61, 0.16);
}

.menu-pages::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--green-700);
}

.dish-showcase {
  background: var(--green-900);
}

.dish-showcase .section-heading h2 {
  color: #fff;
}

.dish-showcase .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.dish-reel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dish-card {
  overflow: hidden;
  border: 1px solid rgba(220, 232, 175, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.dish-card span {
  display: block;
  margin: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dish-slideshow,
.farm-slideshow {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
}

.dish-slideshow {
  aspect-ratio: 4 / 3;
}

.dish-slideshow img,
.farm-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
}

[data-reel] img {
  animation: none;
  transition: opacity 560ms ease, transform 1800ms ease;
}

[data-reel] img.is-active {
  opacity: 1;
  transform: scale(1);
}

.farm-highlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(220, 232, 175, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.farm-slideshow {
  min-height: 320px;
  border-radius: var(--radius);
}

.farm-highlight h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.farm-highlight p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 38px rgba(18, 140, 126, 0.34);
  font-weight: 900;
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #25d366;
  background: #fff;
  font-size: 0.78rem;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  color: #fff;
  background: var(--green-950);
}

.location-section h2 {
  color: #fff;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.map-card {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
}

.map-card img {
  height: 100%;
  min-height: 320px;
}

.map-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: var(--green-950);
  background: var(--gold);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--green-900);
}

.site-footer > div,
.credit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer img {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.credit {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.credit img {
  width: 110px;
  height: auto;
  padding: 6px;
  background: #fff;
}

@media (max-width: 980px) {
  .menu-grid,
  .dish-reel {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .location-section,
  .farm-highlight {
    grid-template-columns: 1fr;
  }

  .place-reel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(16, 32, 23, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(16, 32, 23, 0.9), rgba(16, 32, 23, 0.25)),
      linear-gradient(90deg, rgba(16, 32, 23, 0.72), rgba(16, 32, 23, 0.2));
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-top: 116px;
    padding-bottom: 52px;
    margin: 0 auto;
  }

  .hero-logo {
    width: 116px;
    height: 90px;
  }

  .intro-strip,
  .menu-grid,
  .dish-reel {
    grid-template-columns: 1fr;
  }

  .place-reel {
    grid-template-columns: 1fr;
  }

  .place-card,
  .place-card-wide {
    grid-column: auto;
    min-height: 260px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .farm-slideshow {
    min-height: 260px;
  }
}

@media (max-width: 430px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 18px;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reel] img {
    transition: none;
  }
}
