/* ============================================================
   Cress & Clover — Plant-Based Kitchen, Panjim, Goa
   Design language: Fresh Botanical. Organic curves, leaf
   accents, editorial serif over grounded sans.
   ============================================================ */

:root {
  --clover: #2F7D53;
  --clover-deep: #235f3f;
  --clover-ink: #1c4a31;
  --cream: #F1F4EA;
  --cream-soft: #F7F9F1;
  --cream-panel: #EAEEDD;
  --lime: #8FD0A0;
  --lime-soft: #C4E6CC;
  --earth: #3D3A2E;
  --earth-soft: #56513f;
  --sun: #E7B24B;
  --berry: #B4485F;

  --paper: #FBFCF7;
  --line: rgba(61, 58, 46, 0.14);
  --shadow-soft: 0 22px 50px -30px rgba(35, 62, 41, 0.55);
  --shadow-lift: 0 34px 70px -34px rgba(28, 74, 49, 0.5);

  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gut: clamp(1.15rem, 4vw, 2.6rem);
  --radius: 22px;
  --radius-lg: 34px;

  --blob-1: 42% 58% 63% 37% / 45% 42% 58% 55%;
  --blob-2: 63% 37% 34% 66% / 52% 58% 42% 48%;
  --blob-3: 38% 62% 55% 45% / 58% 38% 62% 42%;
}

/* ---------- 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(--sans);
  color: var(--earth);
  background: var(--cream);
  line-height: 1.62;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  color: var(--clover-ink);
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--clover-ink);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 14px 14px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--clover);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

section { position: relative; }

.section-pad { padding-block: clamp(3.6rem, 8vw, 7rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clover-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.lede {
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.25rem);
  color: var(--earth-soft);
  max-width: 54ch;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--clover);
  --fg: var(--cream-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.92rem 1.55rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s cubic-bezier(.2,.7,.3,1), box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 12px 26px -14px rgba(35, 95, 63, 0.8);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -16px rgba(35, 95, 63, 0.85); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--clover-ink);
  border-color: rgba(35, 95, 63, 0.4);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(143, 208, 160, 0.22); box-shadow: none; }

.btn--sun { --bg: var(--sun); --fg: #3a2e0c; box-shadow: 0 12px 26px -14px rgba(231,178,75,.85); }

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }

.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(241, 244, 234, 0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-stuck {
  border-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(35, 62, 41, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--clover-ink);
}
.brand svg { display: block; flex: none; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand-name b { font-weight: 400; color: var(--clover); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--earth);
  position: relative;
  padding-block: 0.3rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--clover);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(.2,.7,.3,1);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  position: relative;
  width: 20px; height: 2px;
  background: var(--clover-ink);
  border-radius: 2px;
  transition: background 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--clover-ink);
  border-radius: 2px;
  transition: transform 0.28s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    background: var(--cream-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5.5rem 1.8rem 2rem;
    transform: translateX(102%);
    transition: transform 0.4s cubic-bezier(.5,0,.1,1);
    box-shadow: -30px 0 60px -30px rgba(28,74,49,.5);
    z-index: 95;
    display: flex;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.4rem;
  }
  .nav-cta .btn { justify-content: center; }
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(28, 43, 33, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 92;
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
  body.nav-lock { overflow: hidden; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(143,208,160,.32), transparent 55%),
    radial-gradient(90% 80% at -10% 110%, rgba(231,178,75,.14), transparent 60%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy { position: relative; z-index: 2; }

.tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.95rem 0.4rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clover-deep);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.tagline-pill .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(143,208,160,.35);
}

.hero h1 {
  font-size: clamp(2.7rem, 1.6rem + 5vw, 5rem);
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--clover);
  position: relative;
}
.hero h1 .leaf-underline {
  display: block;
  width: clamp(150px, 30vw, 240px);
  height: 14px;
  margin-top: 0.2rem;
  color: var(--lime);
}
.hero p.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
  color: var(--earth-soft);
  max-width: 44ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-meta div { line-height: 1.2; }
.hero-meta .n {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--clover-ink);
  display: block;
}
.hero-meta .l {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--earth-soft);
  font-weight: 600;
}

/* Hero visual — organic blob framing */
.hero-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1.05;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--blob-1);
  box-shadow: var(--shadow-lift);
  animation: morph 16s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: var(--blob-1); }
  33% { border-radius: var(--blob-2); }
  66% { border-radius: var(--blob-3); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; }
}
.hero-visual .blob-bg {
  position: absolute;
  inset: -8% -6% -4% -8%;
  background: linear-gradient(150deg, var(--lime), var(--clover));
  border-radius: var(--blob-2);
  z-index: -1;
  opacity: 0.35;
  animation: morph 20s ease-in-out infinite reverse;
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual .blob-bg { animation: none; }
}

/* Floating badge on hero image */
.hero-badge {
  position: absolute;
  bottom: 6%;
  left: -4%;
  background: var(--paper);
  border-radius: 18px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 3;
  max-width: 230px;
}
.hero-badge .seed {
  width: 40px; height: 40px; flex: none;
  border-radius: 12px;
  background: var(--lime-soft);
  color: var(--clover-deep);
  display: grid; place-items: center;
}
.hero-badge b { font-size: 0.9rem; color: var(--clover-ink); display: block; }
.hero-badge span { font-size: 0.78rem; color: var(--earth-soft); }

.hero-chit {
  position: absolute;
  top: 7%;
  right: -3%;
  z-index: 3;
  background: var(--clover);
  color: var(--cream-soft);
  border-radius: 16px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-lift);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.hero-chit b { font-family: var(--serif); font-size: 1.35rem; display: block; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; margin-top: 1rem; }
  .hero-badge { left: 0; }
  .hero-chit { right: 2%; }
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--clover-ink);
  color: var(--lime-soft);
  overflow: hidden;
  padding-block: 0.9rem;
  border-block: 1px solid rgba(255,255,255,.08);
}
.strip-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: scroll-x 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}
.strip-track span {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.strip-track span::after {
  content: "\2726";
  color: var(--sun);
  font-size: 0.8rem;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ============================================================
   STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story-media {
  position: relative;
}
.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.story-media .tag-quote {
  position: absolute;
  right: -8%;
  bottom: 8%;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.1rem 1.3rem;
  max-width: 250px;
  box-shadow: var(--shadow-soft);
}
.story-media .tag-quote p {
  font-family: var(--serif);
  color: var(--clover-ink);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}
.story h2 {
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.1rem);
  margin-bottom: 1.2rem;
}
.story .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--clover);
  margin-top: 1.5rem;
}
.story-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.story-values li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
}
.story-values .ico { color: var(--clover); margin-bottom: 0.5rem; }
.story-values b { display: block; font-size: 0.98rem; color: var(--clover-ink); }
.story-values span { font-size: 0.85rem; color: var(--earth-soft); }

@media (max-width: 780px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 440px; }
  .story-media .tag-quote { right: 0; }
  .story-values { grid-template-columns: 1fr; }
}

/* ============================================================
   MENU
   ============================================================ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head h2 {
  font-size: clamp(2rem, 1.4rem + 3vw, 3.3rem);
  max-width: 16ch;
}
.section-head p { max-width: 40ch; margin: 0; }

.menu { background: var(--cream-soft); }

.menu-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
}
.menu-col h3 {
  font-size: 1.5rem;
  color: var(--clover);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--lime-soft);
  margin-bottom: 0.4rem;
}
.menu-col h3 .num {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--lime-soft);
  color: var(--clover-deep);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.menu-item {
  padding: 1.15rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.menu-item h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--earth);
  line-height: 1.3;
}
.menu-item .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(61,58,46,.22);
  transform: translateY(-4px);
}
.menu-item .price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--clover-ink);
  white-space: nowrap;
}
.menu-item p {
  margin: 0.35rem 0 0.55rem;
  font-size: 0.92rem;
  color: var(--earth-soft);
  max-width: 46ch;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.chip::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.chip--vg { color: var(--clover-deep); background: rgba(143,208,160,.28); }
.chip--gf { color: #8a6414; background: rgba(231,178,75,.24); }
.chip--nf { color: var(--berry); background: rgba(180,72,95,.14); }
.chip--sp { color: #b5531f; background: rgba(200,90,40,.14); }
.chip--raw { color: #2b6f8a; background: rgba(43,111,138,.14); }

.menu-note {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.7rem;
}
.menu-note .legend { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.menu-note p { margin: 0; font-size: 0.9rem; color: var(--earth-soft); }

@media (max-width: 780px) {
  .menu-groups { grid-template-columns: 1fr; }
}

/* ============================================================
   SIGNATURE — Where our produce grows
   ============================================================ */
.produce {
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(47,125,83,.1), transparent 55%),
    var(--cream-panel);
  overflow: hidden;
}
.produce-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.produce h2 {
  font-size: clamp(2rem, 1.4rem + 3vw, 3.2rem);
  margin-bottom: 1rem;
}
.season-track {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
  background: var(--paper);
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.season-track button {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--earth-soft);
  transition: background 0.25s ease, color 0.25s ease;
}
.season-track button[aria-selected="true"] {
  background: var(--clover);
  color: var(--cream-soft);
}

.season-panel { min-height: 120px; }
.season-panel[hidden] { display: none; }
.season-panel h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clover-deep);
  margin-bottom: 0.6rem;
}
.season-produce {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.season-produce li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--earth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.season-produce .glyph { font-size: 1.1rem; line-height: 1; }

.farms {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}
.farm {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
}
.farm .pin {
  width: 40px; height: 40px; flex: none;
  border-radius: 12px;
  background: var(--lime-soft);
  color: var(--clover-deep);
  display: grid; place-items: center;
}
.farm b { display: block; font-size: 0.98rem; color: var(--clover-ink); }
.farm span { font-size: 0.84rem; color: var(--earth-soft); }
.farm .km {
  margin-left: auto;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--clover);
  white-space: nowrap;
}

.produce-media { position: relative; }
.produce-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.produce-media .map-card {
  position: absolute;
  left: -6%;
  top: 8%;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
}
.produce-media .map-card b { color: var(--clover-ink); font-size: 0.95rem; display: block; }

@media (max-width: 820px) {
  .produce-grid { grid-template-columns: 1fr; }
  .produce-media { max-width: 440px; order: -1; }
  .produce-media .map-card { left: 0; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(28,74,49,.35));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-grid figure:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}

/* ============================================================
   PEOPLE / CHEF
   ============================================================ */
.chef {
  background: var(--clover-ink);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.chef::before {
  content: "";
  position: absolute;
  right: -10%; top: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(143,208,160,.22), transparent 70%);
  border-radius: 50%;
}
.chef-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
.chef-media img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: var(--blob-3);
  box-shadow: var(--shadow-lift);
}
.chef h2 { color: var(--cream); font-size: clamp(2rem, 1.4rem + 3vw, 3rem); }
.chef .eyebrow { color: var(--lime); }
.chef blockquote {
  margin: 1.2rem 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.1rem + 1.2vw, 1.9rem);
  line-height: 1.35;
  color: var(--cream-soft);
}
.chef .who { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.6rem; }
.chef .who .line { width: 40px; height: 2px; background: var(--lime); }
.chef .who b { font-size: 1.05rem; color: var(--cream); font-family: var(--serif); font-weight: 400; display: block; }
.chef .who span { color: var(--lime-soft); font-size: 0.9rem; display: block; }

@media (max-width: 780px) {
  .chef-grid { grid-template-columns: 1fr; }
  .chef-media { max-width: 360px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.review .stars { color: var(--sun); letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.review p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--clover-ink);
  flex: 1;
}
.review .rev-who { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.2rem; }
.review .av {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream-soft);
  background: var(--clover);
}
.review .rev-who b { font-size: 0.95rem; color: var(--earth); display: block; }
.review .rev-who span { font-size: 0.82rem; color: var(--earth-soft); }

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

/* ============================================================
   VISIT + CONTACT
   ============================================================ */
.visit { background: var(--cream-soft); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.visit-info h2 { font-size: clamp(2rem, 1.4rem + 3vw, 3rem); margin-bottom: 1rem; }
.info-block {
  display: flex;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.info-block .ico {
  width: 44px; height: 44px; flex: none;
  border-radius: 13px;
  background: var(--lime-soft);
  color: var(--clover-deep);
  display: grid; place-items: center;
}
.info-block b { display: block; color: var(--clover-ink); font-size: 1rem; }
.info-block span, .info-block a { color: var(--earth-soft); font-size: 0.93rem; }
.info-block a:hover { color: var(--clover); }
.hours-list { margin-top: 0.4rem; }
.hours-list li {
  display: flex; justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding: 0.2rem 0;
  color: var(--earth-soft);
}
.hours-list li b { color: var(--earth); font-family: var(--sans); font-weight: 600; }
.quick-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.btn--wa { --bg: #1faa59; --fg: #fff; }
.btn--call { --bg: transparent; --fg: var(--clover-ink); border-color: rgba(35,95,63,.4); box-shadow:none; }

/* Form */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lift);
}
.form-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}
.form-card > p { color: var(--earth-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--clover-deep);
  text-transform: uppercase;
}
.field label .req { color: var(--berry); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--earth);
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--clover);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(47,125,83,.14);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(61,58,46,.45); }
.form-submit {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.form-submit .reassure {
  font-size: 0.85rem;
  color: var(--earth-soft);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}
.form-submit .btn { flex: none; }

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .field-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--earth);
  color: rgba(241,244,234,.82);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(241,244,234,.14);
}
.footer-brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-name b { color: var(--lime); }
.footer-brand p { max-width: 34ch; font-size: 0.93rem; color: rgba(241,244,234,.72); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(241,244,234,.2);
  display: grid; place-items: center;
  color: var(--cream);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.footer-social a:hover { background: var(--clover); transform: translateY(-2px); border-color: var(--clover); }
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.93rem; color: rgba(241,244,234,.78); }
.footer-col a:hover { color: var(--cream); }
.footer-col .line-item { font-size: 0.9rem; color: rgba(241,244,234,.7); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.6rem;
  font-size: 0.85rem;
  color: rgba(241,244,234,.62);
}
.footer-bottom .studio a { color: var(--lime); font-weight: 600; }
.footer-bottom .studio a:hover { color: var(--cream); }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.ty-main {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(143,208,160,.28), transparent 60%),
    var(--cream);
}
.ty-card { max-width: 620px; }
.ty-mark {
  width: 92px; height: 92px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--clover);
  color: var(--cream-soft);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lift);
  animation: pop 0.6s cubic-bezier(.2,1.3,.4,1) both;
}
@keyframes pop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .ty-mark { animation: none; } }
.ty-card h1 { font-size: clamp(2.3rem, 1.6rem + 3.5vw, 3.6rem); margin-bottom: 1rem; }
.ty-card p { font-size: 1.1rem; color: var(--earth-soft); max-width: 46ch; margin-inline: auto; }
.ty-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2rem; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* contact.html specific */
.contact-hero {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(100% 80% at 100% 0%, rgba(143,208,160,.3), transparent 55%),
    var(--cream);
}
.contact-hero .wrap { display: grid; gap: 0.6rem; }
.contact-hero h1 { font-size: clamp(2.4rem, 1.7rem + 3.5vw, 4rem); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
