/* =========================================================
   Field & Ember — Farm-to-Table Fire Kitchen, Nashik
   Design language: Refined Farm-to-Table Fire
   ========================================================= */

:root {
  /* palette */
  --charred: #4A3B2A;
  --charred-deep: #33281B;
  --charred-ink: #2A2117;
  --ember: #B98A4B;
  --ember-bright: #CB9A54;
  --cream: #EFE7D8;
  --cream-soft: #F5F0E6;
  --cream-warm: #E8DECB;
  --moss: #55603F;
  --moss-deep: #454F33;

  --text: #3A2E20;
  --text-soft: #6B5C48;
  --text-on-dark: #EFE7D8;
  --text-on-dark-soft: #C9BBA1;

  --line: rgba(74, 59, 42, 0.16);
  --line-light: rgba(239, 231, 216, 0.22);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Spectral", Georgia, serif;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --shadow-soft: 0 18px 50px -28px rgba(42, 33, 23, 0.55);
  --shadow-lift: 0 30px 70px -34px rgba(42, 33, 23, 0.6);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --radius: 4px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; margin: 0; }
p { margin: 0 0 1.1em; }
a { color: inherit; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.75rem, 9vw, 7.5rem); }
.section-soft { padding-block: clamp(3.75rem, 9vw, 7.5rem); background: var(--cream-soft); }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -3.5rem;
  background: var(--charred); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: var(--radius);
  z-index: 200; transition: top 0.2s var(--ease);
  font-family: var(--font-display); letter-spacing: 0.02em;
}
.skip-link:focus { top: 1rem; }

/* ---------- focus ---------- */
:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 1.1rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before {
  content: ""; width: 1.75rem; height: 1px;
  background: var(--ember); display: inline-block; flex: none;
}
.eyebrow-light { color: var(--ember-bright); }
.eyebrow-light::before { background: var(--ember-bright); }

.section-title {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.15rem);
  letter-spacing: -0.015em;
  color: var(--charred);
  max-width: 18ch;
}
.section-title-light { color: var(--cream); }

.lede {
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  color: var(--text-soft);
  font-weight: 400;
  max-width: 52ch;
  margin-top: 1.25rem;
}
.lede-light { color: var(--text-on-dark-soft); }

.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--ember);
  --btn-fg: #24190D;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn-ember { background: var(--ember); color: #24190D; box-shadow: 0 10px 26px -14px rgba(185, 138, 75, 0.9); }
.btn-ember:hover { background: var(--ember-bright); transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(185, 138, 75, 0.95); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: var(--line-light); }
.btn-ghost-light:hover { background: rgba(239, 231, 216, 0.08); border-color: var(--cream); transform: translateY(-2px); }
.btn-whatsapp { background: #1f6b4a; color: #EFEFE8; }
.btn-whatsapp:hover { background: #237953; transform: translateY(-2px); }
.btn-block { width: 100%; }
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(239, 231, 216, 0.86);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(42, 33, 23, 0.6);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--charred); }
.brand-mark { color: var(--ember); flex: none; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: 0.005em;
  color: var(--charred);
}
.brand-word em { color: var(--ember); font-style: italic; font-weight: 400; }

/* nav */
.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: clamp(0.8rem, 1.6vw, 1.9rem); list-style: none; margin: 0; padding: 0; }
.nav-list a:not(.btn) {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--text);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.2s var(--ease);
}
.nav-list a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ember);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-list a:not(.btn):hover { color: var(--charred); }
.nav-list a:not(.btn):hover::after { transform: scaleX(1); }
.nav-cta-item .btn { padding: 0.6rem 1.3rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer; position: relative;
  align-items: center; justify-content: center;
}
.nav-toggle-bar {
  display: block; width: 20px; height: 1.6px; background: var(--charred);
  position: absolute; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle-bar:nth-child(1) { transform: translateY(-4px); }
.nav-toggle-bar:nth-child(2) { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; z-index: 30; }
  .nav-list {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 2rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-list li:last-child { border-bottom: 0; }
  .nav-list a:not(.btn) { display: block; padding: 1rem 0; font-size: 1.15rem; }
  .nav-list a:not(.btn)::after { display: none; }
  .nav-cta-item { padding-top: 1.2rem; }
  .nav-cta-item .btn { width: 100%; padding: 0.9rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; color: var(--cream); isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,33,23,0.62) 0%, rgba(42,33,23,0.32) 40%, rgba(42,33,23,0.82) 100%),
    radial-gradient(120% 90% at 80% 10%, rgba(185,138,75,0.28), transparent 55%);
}
.hero-content {
  min-height: min(92vh, 820px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: clamp(6rem, 16vh, 10rem) clamp(3rem, 8vh, 5rem);
  max-width: 62rem;
}
.hero-title {
  font-size: clamp(2.6rem, 1.6rem + 6vw, 5.6rem);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0;
  text-shadow: 0 2px 30px rgba(20, 14, 8, 0.4);
}
.hero-title .lit {
  font-style: italic;
  font-weight: 400;
  color: var(--ember-bright);
}
.hero-sub {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  max-width: 46ch;
  margin: 1.6rem 0 0;
  color: var(--text-on-dark);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.2rem; }
.hero-facts {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem);
  margin: clamp(2.5rem, 6vh, 4rem) 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-light);
}
.hero-facts div { min-width: 0; }
.hero-facts dt { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ember-bright); margin-bottom: 0.35rem; }
.hero-facts dd { margin: 0; font-size: 1.05rem; color: var(--cream); }

/* =========================================================
   STORY
   ========================================================= */
.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.story-copy .lede { margin-top: 1.5rem; }
.story-copy p { color: var(--text-soft); }
.signature-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--charred);
  margin-top: 1.75rem;
}
.story-figure { position: relative; margin: 0; }
.story-figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
}
.story-figure::before {
  content: ""; position: absolute; inset: auto -14px -14px auto;
  width: 55%; height: 55%; border: 1px solid var(--ember);
  border-radius: var(--radius); z-index: -1;
}
.story-figure figcaption {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.9rem; color: var(--text-soft);
  margin-top: 0.9rem;
}

/* =========================================================
   DARK SECTIONS (tasting, visit)
   ========================================================= */
.section-dark {
  position: relative;
  background: var(--charred-deep);
  color: var(--text-on-dark);
  padding-block: clamp(4rem, 10vw, 8rem);
  overflow: hidden;
}
.section-dark::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 12% 0%, rgba(185,138,75,0.12), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}
.ember-glow {
  position: absolute; z-index: 0;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  right: -14vw; top: -18vw;
  background: radial-gradient(circle, rgba(203,154,84,0.4), transparent 62%);
  filter: blur(20px);
  pointer-events: none;
}
.ember-glow-soft { opacity: 0.7; left: -18vw; right: auto; bottom: -20vw; top: auto; }
.section-dark > .wrap { position: relative; z-index: 1; }

/* =========================================================
   TASTING MENU
   ========================================================= */
.tasting-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.courses {
  list-style: none; margin: 0; padding: 0;
  counter-reset: none;
  border-top: 1px solid var(--line-light);
}
.course {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 3vw, 2.5rem);
  align-items: baseline;
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--line-light);
  transition: background 0.3s var(--ease);
}
.course:hover { background: rgba(185, 138, 75, 0.05); }
.course-no {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1rem + 2vw, 2.4rem);
  color: var(--ember-bright);
  font-weight: 400;
  font-variant-numeric: lining-nums;
  line-height: 1;
}
.course-body h3 {
  font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.85rem);
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.course-body p { color: var(--text-on-dark-soft); margin: 0; max-width: 60ch; }

.tasting-figure { margin: clamp(2.5rem, 6vw, 4rem) 0 0; }
.tasting-figure img {
  width: 100%; aspect-ratio: 16 / 8; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
}
.tasting-cta { margin: clamp(2rem, 5vw, 3rem) 0 0; }

/* =========================================================
   A LA CARTE
   ========================================================= */
.menu-columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.menu-group-title {
  font-family: var(--font-display);
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--moss); font-weight: 600;
  padding-bottom: 0.9rem; margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.menu-group-title-spaced { margin-top: 2.75rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item { padding: 0.85rem 0; }
.menu-item + .menu-item { border-top: 1px dotted var(--line); }
.menu-item-head { display: flex; align-items: baseline; gap: 0.5rem; }
.menu-item-head .dish { font-family: var(--font-display); font-size: 1.14rem; color: var(--charred); font-weight: 400; }
.menu-item-head .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); min-width: 1.5rem; }
.menu-item-head .price { font-family: var(--font-display); font-size: 1.05rem; color: var(--ember); font-weight: 600; white-space: nowrap; }
.menu-item .desc { margin: 0.3rem 0 0; color: var(--text-soft); font-size: 0.98rem; max-width: 46ch; }
.menu-note { margin-top: clamp(2rem, 5vw, 3rem); font-size: 0.92rem; color: var(--text-soft); font-style: italic; font-family: var(--font-display); }

/* =========================================================
   FARMS (moss)
   ========================================================= */
.section-moss {
  background: var(--moss-deep);
  color: var(--text-on-dark);
  padding-block: clamp(4rem, 10vw, 8rem);
}
.farms-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.farms-figure { margin: 0; }
.farms-figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
}
.farms-copy .section-title-light { color: var(--cream); }
.farm-list { list-style: none; margin: 2rem 0 0; padding: 0; }
.farm-list li {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line-light);
}
.farm-list li:last-child { border-bottom: 1px solid var(--line-light); }
.farm-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); }
.farm-detail { font-size: 0.92rem; color: var(--text-on-dark-soft); letter-spacing: 0.01em; }

/* =========================================================
   CHEF NOTE
   ========================================================= */
.note { background: var(--cream); text-align: center; }
.note-inner { max-width: 60rem; margin-inline: auto; }
.note .eyebrow { justify-content: center; }
.note-quote { margin: 0; }
.note-text {
  font-size: clamp(1.5rem, 1rem + 2.6vw, 2.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.28;
  color: var(--charred);
  letter-spacing: -0.01em;
}
.note-attribution { margin-top: 1.75rem; font-family: var(--font-display); letter-spacing: 0.04em; color: var(--text-soft); }
.note-name { color: var(--ember); font-weight: 600; }

/* =========================================================
   PEOPLE
   ========================================================= */
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 2.75rem); }
.person {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.25rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
@media (prefers-reduced-motion: reduce) { .person:hover { transform: none; } }
.person-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--charred); color: var(--ember-bright);
  font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.03em;
  margin-bottom: 1.4rem;
}
.person-name { font-size: 1.4rem; color: var(--charred); }
.person-role { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); margin: 0.35rem 0 1rem; }
.person-cred { color: var(--text-soft); font-size: 0.98rem; margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 2.5rem); }
.review {
  margin: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--cream-soft);
  border-radius: var(--radius);
  border-top: 3px solid var(--ember);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; justify-content: space-between;
}
.review blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem; line-height: 1.5;
  color: var(--charred);
}
.review figcaption { display: flex; flex-direction: column; gap: 0.15rem; }
.review-name { font-family: var(--font-display); font-weight: 600; color: var(--charred); }
.review-meta { font-size: 0.85rem; color: var(--text-soft); letter-spacing: 0.02em; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
}
.gallery-item { margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .gallery-item:hover img { transform: none; } }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* =========================================================
   VISIT + RESERVE
   ========================================================= */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; margin: 2rem 0; }
.visit-details dt { font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember-bright); margin-bottom: 0.4rem; }
.visit-details dd { margin: 0; color: var(--text-on-dark); font-size: 1rem; line-height: 1.5; }
.visit-contact { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.reserve-panel {
  background: var(--cream);
  color: var(--text);
  border-radius: 6px;
  padding: clamp(1.6rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-lift);
}
.reserve-title { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); color: var(--charred); }
.reserve-sub { color: var(--text-soft); margin: 0.6rem 0 1.75rem; }
.reserve-form .field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.reserve-form label {
  font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--charred); margin-bottom: 0.4rem; font-weight: 600;
}
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  outline: none; border-color: var(--ember);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(185, 138, 75, 0.18);
}
.reserve-form textarea { resize: vertical; min-height: 84px; }
.reserve-form .btn { margin-top: 0.5rem; }
.form-reassure { margin: 1rem 0 0; font-size: 0.85rem; color: var(--text-soft); text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--charred-ink); color: var(--text-on-dark-soft); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
}
.brand-footer .brand-word { color: var(--cream); }
.footer-tag { margin: 1rem 0 0; max-width: 30ch; color: var(--text-on-dark-soft); font-family: var(--font-display); font-style: italic; }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ember-bright); margin: 0 0 1.2rem; font-weight: 600;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer-nav a { text-decoration: none; color: var(--text-on-dark-soft); transition: color 0.2s var(--ease); }
.footer-nav a:hover { color: var(--cream); }
.footer-contact address { font-style: normal; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact address a { color: var(--text-on-dark-soft); text-decoration: none; transition: color 0.2s; }
.footer-contact address a:hover { color: var(--ember-bright); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-light);
  display: grid; place-items: center; color: var(--text-on-dark-soft);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { color: var(--ember-bright); border-color: var(--ember-bright); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .footer-social a:hover { transform: none; } }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  padding-block: 1.6rem 2.25rem;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.studio-credit a { color: var(--ember-bright); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.studio-credit a:hover { border-bottom-color: var(--ember-bright); }

/* =========================================================
   REVEAL / MOTION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.course.is-visible { transition-delay: calc(var(--i, 0) * 60ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .story-grid,
  .farms-grid,
  .visit-grid { grid-template-columns: 1fr; }
  .story-figure { order: -1; }
  .story-figure img,
  .farms-figure img { aspect-ratio: 16 / 10; }
  .farms-figure { order: -1; }
  .people-grid,
  .review-grid { grid-template-columns: 1fr 1fr; }
  .menu-columns { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 700px) {
  .people-grid,
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .hero-content { min-height: 88vh; }
}

@media (max-width: 480px) {
  .field-row,
  .visit-details { grid-template-columns: 1fr; }
  .hero-facts { gap: 1.25rem 2rem; }
  .footer-bottom { flex-direction: column; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero { padding-block: clamp(4rem, 9vw, 6.5rem); }
.contact-hero .lede-light { max-width: 58ch; }
.btn-ghost-dark { background: transparent; color: var(--charred); border-color: var(--line); }
.btn-ghost-dark:hover { background: rgba(74, 59, 42, 0.06); border-color: var(--charred); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .btn-ghost-dark:hover { transform: none; } }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-aside-title { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); color: var(--charred); margin-bottom: 0.9rem; }
.contact-aside > p { color: var(--text-soft); max-width: 40ch; }
.contact-direct { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 2.5rem; }
.contact-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; margin: 0; padding-top: 2rem; border-top: 1px solid var(--line); }
.contact-facts dt { font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember); margin-bottom: 0.4rem; }
.contact-facts dd { margin: 0; color: var(--text-soft); font-size: 0.98rem; line-height: 1.5; }
.reserve-panel-page { border: 1px solid var(--line); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-facts { grid-template-columns: 1fr; }
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thanks {
  min-height: 78vh;
  display: grid; place-items: center;
  text-align: center;
  padding-block: clamp(4rem, 12vw, 8rem);
}
.thanks-inner { max-width: 46rem; }
.thanks-mark {
  width: 72px; height: 72px; margin: 0 auto 2rem;
  border-radius: 50%; background: rgba(185, 138, 75, 0.16);
  display: grid; place-items: center; color: var(--ember);
}
.thanks-title { font-size: clamp(2.2rem, 1.4rem + 3.6vw, 3.6rem); color: var(--cream); letter-spacing: -0.015em; }
.thanks-sub { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.32rem); color: var(--text-on-dark-soft); margin: 1.5rem auto 0; max-width: 44ch; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 2.5rem; }
.thanks-note { margin-top: 2.5rem; font-family: var(--font-display); font-style: italic; color: var(--ember-bright); }

/* print-safe & no-js fallback */
.no-js .reveal { opacity: 1; transform: none; }
