/* ============================================================
   LEAFY DREAMS IOWA — Global Styles
   Rebuilt from live site computed styles, March 2026
   Fonts:  Marcellus (display/headings), PT Serif (body/nav)
   Colors: forest #284F3F | gold #E9A843 | cream #FEFAF6
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 16px;
  color: #284F3F;
  background: #FEFAF6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Brand tokens ────────────────────────────────────────── */
:root {
  --forest:  #284F3F;
  --gold:    #E9A843;
  --cream:   #FEFAF6;
  --gold-dark: #c98d2a;
  --font-display: 'Marcellus', Georgia, serif;
  --font-body:    'PT Serif', Georgia, serif;
  --btn-radius: 15px;
  /* --header-height — vertical space the absolute .site-header occupies.
     Use this to push hero content below it on pages where the section
     starts at top:0. Logo (80px) + paddings + 2-row nav at desktop. */
  --header-height: clamp(7rem, 14vw, 10.5rem);
}

/* ── Typography ──────────────────────────────────────────── */
/* H1: Marcellus, ~65px, cream on dark sections */
h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.07rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
/* H2: Marcellus, ~26px, gold color on bright sections */
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 1.615rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
/* H3: Marcellus, ~36px, forest on white sections */
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.23rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
/* H4 */
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
}
p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Section colour themes (from Squarespace data-section-theme) ── */
.theme-black { background-color: var(--forest); color: var(--cream); }
.theme-black h1,.theme-black h2,.theme-black h3,.theme-black h4 { color: var(--cream); }

.theme-white { background-color: var(--cream); color: var(--forest); }
.theme-white h1,.theme-white h2,.theme-white h3,.theme-white h4 { color: var(--forest); }

.theme-bright { background-color: var(--gold); color: var(--forest); }
.theme-bright h1,.theme-bright h2,.theme-bright h3,.theme-bright h4 { color: var(--forest); }

/* gold h2 on bright sections matches live site (h2 color = gold in live CSS, but on bright bg they show forest) */
.theme-bright h2 { color: var(--forest); }

.theme-light-bold { background-color: var(--cream); color: var(--forest); }

/* ── Buttons ─────────────────────────────────────────────── */
/* Primary gold pill (matches live site: bg gold, color forest, radius 15px, padding 24px 35px) */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  border-radius: var(--btn-radius);
  padding: 18px 35px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: filter 0.15s, transform 0.1s;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { filter: brightness(0.92); transform: translateY(-1px); }

.btn-gold   { background: var(--gold);   color: var(--forest); }
.btn-forest { background: var(--forest); color: var(--cream);  }
.btn-outline-cream { background: transparent; color: var(--cream); border: 2px solid var(--cream); }
.btn-sm { padding: 12px 24px; font-size: 0.9rem; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
   Live site: logo centered, social icons top-left,
   two rows of nav links, no sticky
   ══════════════════════════════════════════════════════════ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 24px 0 0;
  background: transparent;
}
.header-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding: 0 32px;
  margin-bottom: 18px;
}
.header-social {
  position: absolute;
  left: 32px;
  top: 6px;
  display: flex;
  gap: 14px;
}
.header-social a {
  color: var(--cream);
  opacity: 0.9;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
}
.header-social a:hover { opacity: 1; }
.header-social svg { width: 18px; height: 18px; fill: currentColor; }
.header-logo img {
  height: 80px;
  width: auto;
}
/* Nav: centered two-row layout */
.header-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 4px;
  padding: 0 32px 16px;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  padding: 8px 14px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.header-nav a:hover { opacity: 0.7; }
.header-nav a.active {
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Mobile burger */
.nav-burger {
  display: none;
  position: absolute;
  right: 24px;
  top: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cream);
  z-index: 201;
}
.nav-burger svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Nav overlay (mobile) — sits above page content, below site-header (z-index 300) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.2s;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

/* ── Non-hero pages: dark header ── */
.site-header.opaque {
  position: relative;
  background: var(--forest);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,79,63,0.38);
}
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 72px;
}
.hero-body h1 { color: var(--cream); max-width: 780px; }
.hero-body .btn { margin-top: 32px; }

/* Sub-page hero (shorter) */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,79,63,0.45);
}
.page-hero-text {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
}
.page-hero-text h1 { color: var(--cream); }

/* ══════════════════════════════════════════════════════════
   THREE-COLUMN FEATURES (Home: Who We Are / What We Do / Find Us)
   ══════════════════════════════════════════════════════════ */
.three-col-section {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.three-col-item {
  padding: 56px 40px 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.three-col-item.dark {
  background: var(--forest);
  color: var(--cream);
}
.three-col-item.dark h3 { color: var(--cream); }
.three-col-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin-bottom: 28px;
}
.three-col-item h3 {
  color: var(--forest);
  margin-bottom: 16px;
  font-size: 2rem;
}
.three-col-item p {
  flex: 1;
  margin-bottom: 28px;
  font-size: 0.97rem;
  line-height: 1.75;
}
.three-col-item .btn { align-self: flex-start; }

/* ══════════════════════════════════════════════════════════
   FULL-BLEED IMAGE BREAK
   ══════════════════════════════════════════════════════════ */
.image-break {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS — Record-stack / poster-flip carousel
   Active card centered; neighbours fan back at 3D angles like
   posters in a record-store bin. Click any card / arrows / dots,
   swipe on touch, keyboard ←/→ all advance.
   ══════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--gold); padding: 64px 0 24px; }
.testimonials-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: 6px;
}
.testimonials-sub {
  text-align: center;
  font-family: var(--font-body);
  color: var(--forest);
  opacity: 0.7;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0 0 36px;
}

.record-stack {
  position: relative;
  margin: 0 auto;
  padding: 36px 80px 96px;
  max-width: 1100px;
  user-select: none;
  outline: none;
}
.record-stack:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 4px;
  border-radius: 6px;
}
.record-stack-viewport {
  position: relative;
  height: 480px;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

/* Each card sits absolutely-centered; per-state classes shift, scale,
   tilt. Pure 2D transforms — works in every browser, no perspective.
   Card height fits the longest quote (Laura's) without clipping. */
.record-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(380px, 84vw);
  height: 460px;
  background:
    radial-gradient(ellipse at 20% 12%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(168deg, #335f4d 0%, #284F3F 55%, #1d3a2e 100%);
  color: var(--cream);
  padding: 36px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(233, 168, 67, 0.28);
  border-radius: 4px;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  transform-origin: center bottom;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transition:
    transform 0.7s cubic-bezier(.42,.05,.25,1),
    opacity 0.55s ease,
    filter 0.55s ease,
    box-shadow 0.45s ease;
  /* default = hidden offscreen */
  transform: translate(-50%, 0) scale(0.5) rotate(0);
  opacity: 0;
  pointer-events: none;
}

/* PREV — sits behind-left, smaller and tilted left like a poster
   leaning back in a bin. translateX uses % so it scales with card width. */
.record-card.is-prev {
  transform: translate(-130%, 18px) scale(0.78) rotate(-9deg);
  opacity: 0.7;
  z-index: 3;
  filter: brightness(0.85) saturate(0.9);
  pointer-events: auto;
  cursor: pointer;
}
.record-card.is-prev:hover {
  transform: translate(-128%, 8px) scale(0.82) rotate(-7deg);
  opacity: 0.95;
  filter: brightness(1);
}

/* ACTIVE — front-and-center, slight lean for that poster-lifted feel.
   Multiple offset shadows mimic the rest of the stack peeking from behind. */
.record-card.is-active {
  transform: translate(-50%, 0) scale(1) rotate(-1.5deg);
  opacity: 1;
  z-index: 6;
  pointer-events: auto;
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(233, 168, 67, 0.55),
    /* "Stack underneath" — successive cards peeking from the right */
    8px 4px 0 -2px rgba(40, 79, 63, 0.85),
    -8px 4px 0 -2px rgba(40, 79, 63, 0.7),
    14px 8px 0 -5px rgba(40, 79, 63, 0.55),
    -14px 8px 0 -5px rgba(40, 79, 63, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.record-card.is-active:hover {
  transform: translate(-50%, -4px) scale(1.012) rotate(-1.5deg);
}

/* NEXT — mirrored prev */
.record-card.is-next {
  transform: translate(30%, 18px) scale(0.78) rotate(9deg);
  opacity: 0.7;
  z-index: 3;
  filter: brightness(0.85) saturate(0.9);
  pointer-events: auto;
  cursor: pointer;
}
.record-card.is-next:hover {
  transform: translate(28%, 8px) scale(0.82) rotate(7deg);
  opacity: 0.95;
  filter: brightness(1);
}

/* Anything beyond ±1 stays hidden (the "rest of the bin" hinted by shadows) */
.record-card.is-prev2,
.record-card.is-next2 {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0) scale(0.5) rotate(0);
}

/* Card contents */
.record-card-mark {
  position: absolute;
  top: 14px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.record-card-quote {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--cream);
  flex: 1;
  padding-top: 32px;
  position: relative;
}
.record-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(233, 168, 67, 0.32);
  padding-top: 14px;
}
.record-card-author {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.record-card-num {
  font-family: var(--font-body);
  color: var(--cream);
  opacity: 0.55;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Arrows — vertically centered on the viewport */
.record-arrow {
  position: absolute;
  top: calc(36px + 240px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
  border: 2px solid var(--forest);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s var(--ease-out-soft),
    background 0.25s,
    color 0.25s,
    box-shadow 0.3s var(--ease-out-soft);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  padding: 0;
}
.record-arrow svg { width: 22px; height: 22px; }
.record-arrow:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
.record-arrow:active {
  transform: translateY(-50%) scale(0.96);
}
.record-arrow:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}
.record-arrow-prev { left: 14px; }
.record-arrow-next { right: 14px; }

/* Dots */
.record-dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 6;
}
.record-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.32;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    opacity 0.25s,
    transform 0.25s var(--ease-out-soft),
    width 0.35s var(--ease-out-soft),
    border-radius 0.35s;
}
.record-dot:hover { opacity: 0.65; }
.record-dot.is-active {
  opacity: 1;
  width: 26px;
  border-radius: 5px;
}
.record-dot:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

/* Tablet */
@media (max-width: 880px) {
  .record-stack { padding: 28px 60px 92px; }
  .record-stack-viewport { height: 500px; }
  .record-card { width: min(82vw, 340px); height: 480px; padding: 32px 26px 22px; }
  .record-card.is-prev {
    transform: translate(-115%, 14px) scale(0.78) rotate(-8deg);
    opacity: 0.65;
  }
  .record-card.is-next {
    transform: translate(15%, 14px) scale(0.78) rotate(8deg);
    opacity: 0.65;
  }
  .record-arrow { width: 42px; height: 42px; top: calc(28px + 250px); }
  .record-arrow-prev { left: 4px; }
  .record-arrow-next { right: 4px; }
}

/* Mobile — neighbours barely peek, focus stays on active.
   Slightly tighter type so long quotes don't push the card too tall. */
@media (max-width: 520px) {
  .record-stack { padding: 18px 48px 84px; }
  .record-stack-viewport { height: 540px; }
  .record-card { width: min(86vw, 300px); height: 520px; padding: 28px 22px 20px; }
  .record-card-quote { font-size: 0.92rem; line-height: 1.55; }
  .record-card.is-prev {
    transform: translate(-95%, 10px) scale(0.7) rotate(-7deg);
    opacity: 0.4;
  }
  .record-card.is-next {
    transform: translate(-5%, 10px) scale(0.7) rotate(7deg);
    opacity: 0.4;
  }
  .record-card-mark { font-size: 3.8rem; }
  .record-arrow { width: 38px; height: 38px; top: calc(18px + 270px); }
  .record-arrow-prev { left: 0; }
  .record-arrow-next { right: 0; }
}

/* Reduced motion: no flip, no tilt — just fade between cards */
@media (prefers-reduced-motion: reduce) {
  .record-card { transition: opacity 0.3s; }
  .record-card.is-active {
    transform: translate(-50%, 0) scale(1) rotate(0);
  }
  .record-card.is-prev,
  .record-card.is-next {
    transform: translate(-50%, 0) scale(0.94);
    opacity: 0;
    pointer-events: none;
  }
}

/* ══════════════════════════════════════════════════════════
   REVIEW + SHOP CTA (section between testimonials & subscribe)
   ══════════════════════════════════════════════════════════ */
.review-cta-section {
  background: var(--gold);
  padding: 24px 0 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   SUBSCRIBE SECTION
   Live site: dark green bg, plant bg-photo overlay, 3-col inline form
   ══════════════════════════════════════════════════════════ */
.subscribe-section {
  position: relative;
  background: var(--forest);
  padding: 72px 32px;
  text-align: center;
  overflow: hidden;
}
.subscribe-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.subscribe-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.subscribe-section h2 {
  color: var(--cream);
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.subscribe-section .sub-desc {
  color: var(--cream);
  margin-bottom: 36px;
  font-size: 1rem;
  opacity: 0.92;
}
.subscribe-form {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
}
.subscribe-form input {
  flex: 1;
  padding: 20px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  border-radius: 0;
  background: rgba(255,255,255,0.92);
  color: #333;
  outline: none;
  min-width: 0;
}
.subscribe-form input::placeholder { color: #777; }
.subscribe-form .btn-sub {
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 20px 40px;
  border: none;
  border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.15s;
}
.subscribe-form .btn-sub:hover { filter: brightness(0.92); }
.subscribe-privacy {
  color: var(--cream);
  opacity: 0.65;
  font-size: 0.875rem;
  margin-top: 16px;
}
.subscribe-thanks {
  display: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.4rem;
  padding: 20px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   Gold background, single row nav, FB+IG social icons
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--gold);
  padding: 36px 32px 28px;
  text-align: center;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 6px;
  margin-bottom: 20px;
  list-style: none;
}
.footer-nav li::after {
  content: '';
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--forest);
  padding: 4px 10px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s;
}
.footer-nav a:hover { opacity: 0.7; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}
.footer-social a {
  color: var(--forest);
  opacity: 0.85;
  transition: opacity 0.15s;
}
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 22px; height: 22px; fill: currentColor; }
.footer-copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--forest);
  opacity: 0.75;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ══════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-block {
  display: flex;
  flex-direction: column;
}
.product-block-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.product-block-body {
  padding: 48px 52px 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.product-block-body h2 {
  font-size: 2rem;
  color: var(--forest);
}
.product-block-body p { font-size: 0.97rem; line-height: 1.78; flex: 1; }
.product-block.on-dark .product-block-body {
  background: var(--forest);
  color: var(--cream);
}
.product-block.on-dark .product-block-body h2 { color: var(--cream); }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  padding: 80px 0;
}
.contact-info h2 { margin-bottom: 6px; font-size: 1.5rem; }
.contact-info p { margin-bottom: 8px; font-size: 0.97rem; line-height: 1.7; }
.contact-info a { text-decoration: underline; }
.contact-info .info-block { margin-bottom: 32px; }
.contact-form-wrap {}
.contact-form-wrap h2 { margin-bottom: 24px; font-size: 1.8rem; }
.cf-field { margin-bottom: 18px; }
.cf-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.65;
}
.cf-field input, .cf-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(40,79,63,0.25);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--forest);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.cf-field input:focus, .cf-field textarea:focus { border-color: var(--forest); }
.cf-field textarea { min-height: 130px; resize: vertical; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success-msg { display:none; padding:20px; background:var(--forest); color:var(--cream); border-radius:4px; text-align:center; font-family:var(--font-display); font-size:1.2rem; }

/* Contact map section */
.contact-map-section { padding: 24px 0 80px; }
.contact-map-heading { font-family: var(--font-display); font-size: 2rem; color: var(--forest); margin-bottom: 24px; text-align: center; }
.contact-map-wrapper { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(40,79,63,0.12); }
.contact-map-wrapper iframe { display: block; }
.contact-map-address {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--forest);
}
.contact-map-address svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.contact-map-address a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — story layout + gallery grid
   ══════════════════════════════════════════════════════════ */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 80px 0;
}
.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.story-text h2 { margin-bottom: 28px; font-size: 2.2rem; }
.story-text p { margin-bottom: 18px; font-size: 0.97rem; line-height: 1.8; }
.story-text .btn { margin-top: 12px; }

/* About gallery grid — masonry-style */
.about-gallery {
  padding: 0 0 80px;
}
.about-gallery-grid {
  columns: 4;
  column-gap: 8px;
}
.about-gallery-grid img {
  width: 100%;
  margin-bottom: 8px;
  break-inside: avoid;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.about-gallery-grid img:hover { opacity: 0.88; }

/* ══════════════════════════════════════════════════════════
   DREAMY DELIVERIES
   ══════════════════════════════════════════════════════════ */
.dd-intro-section {
  background: var(--cream);
  padding: 72px 0 56px;
}
.dd-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.dd-intro-inner h3 { font-size: 2rem; margin-bottom: 24px; }
.dd-intro-inner p { margin-bottom: 18px; font-size: 0.97rem; line-height: 1.82; }
.dd-cards-section { background: var(--cream); padding: 0 56px 80px; }
.dd-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.dd-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.dd-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.dd-card:hover img { transform: scale(1.03); }
.dd-card-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40,79,63,0.45);
  transition: background 0.25s;
}
.dd-card:hover .dd-card-label { background: rgba(40,79,63,0.6); }
.dd-card-label h3 {
  color: var(--cream);
  font-size: 1.5rem;
  text-align: center;
  padding: 0 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ── Small Batch / Box Options pages ── */
.blend-section { background: var(--gold); padding: 72px 0; }
.blend-header { text-align: center; padding: 0 32px; margin-bottom: 56px; }
.blend-header p:first-child { font-size: 1.1rem; opacity: 0.75; }
.blend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
}
.blend-item { display: flex; flex-direction: column; gap: 16px; }
.blend-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.blend-item h2 { font-size: 1.6rem; }
.blend-item p { font-size: 0.97rem; line-height: 1.78; }

/* ── Box options (photo grid only) ── */
.box-photo-grid {
  columns: 2;
  column-gap: 12px;
  padding: 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.box-photo-grid img {
  width: 100%;
  margin-bottom: 12px;
  break-inside: avoid;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   BLOG / EATS TREATS & MORE
   ══════════════════════════════════════════════════════════ */
.blog-listing-section { background: var(--cream); padding: 56px 0 80px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(40,79,63,0.08);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(40,79,63,0.14); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.blog-card-no-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-no-img span { font-size: 2.5rem; opacity: 0.4; }
.blog-card-body { padding: 22px 24px 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-meta { font-size: 0.78rem; opacity: 0.55; }
.blog-card h2 { font-size: 1.15rem; line-height: 1.35; color: var(--forest); }
.blog-card p { font-size: 0.88rem; line-height: 1.65; opacity: 0.75; flex: 1; }
.blog-card-readmore {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: underline;
  margin-top: auto;
}

/* ══════════════════════════════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════════════════════════════ */
.gallery-header-section {
  background: var(--cream);
  text-align: center;
  padding: 72px 32px 48px;
}
.gallery-header-section h1 { color: var(--forest); font-size: 2.6rem; }
.gallery-grid-section { background: var(--cream); padding: 0 32px 80px; }
.gallery-masonry {
  columns: 4;
  column-gap: 8px;
}
.gallery-masonry img {
  width: 100%;
  margin-bottom: 8px;
  break-inside: avoid;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.18s;
}
.gallery-masonry img:hover { opacity: 0.88; }

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 2.5rem;
  cursor: pointer; line-height: 1; opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .three-col-section { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .story-layout { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .dd-cards-grid { grid-template-columns: 1fr; }
  .blend-grid { grid-template-columns: 1fr; }
  .about-gallery-grid { columns: 3; }
  .gallery-masonry { columns: 3; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-slide { grid-template-columns: 1fr; gap: 20px; padding: 0 48px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    background: var(--forest);
    padding: 12px 20px 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* z-index is within .site-header's stacking context (z-index:300).
       Setting to 10 here just ensures it stacks above other children. */
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    max-height: 90svh;
    overflow-y: auto;
  }
  .header-nav.open a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.05rem;
  }
  .header-nav.open a:last-child { border-bottom: none; }
  .nav-burger { display: flex; align-items: center; }
  .hero-body { padding: 0 24px 56px; }
  .page-hero-text { padding: 40px 24px; }
  .three-col-item { padding: 40px 24px 48px; }
  .product-block-body { padding: 36px 28px 44px; }
  .dd-cards-section { padding: 0 20px 56px; }
  .blend-grid { padding: 0 20px; gap: 40px; }
  .box-photo-grid { padding: 20px; }
  .about-gallery-grid { columns: 2; }
  .gallery-masonry { columns: 2; }
  .blog-grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form .btn-sub { border-radius: var(--btn-radius); }
  .footer-nav { gap: 0 4px; }
  .cf-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .about-gallery-grid { columns: 1; }
  .gallery-masonry { columns: 1; }
}

/* ══════════════════════════════════════════════════════════
   MOTION & POLISH PASS — added on polish/motion-pass branch
   All non-essential motion is gated by .js (set inline at <head>)
   so non-JS visitors see content immediately, and by
   prefers-reduced-motion which kills every animation.
   ══════════════════════════════════════════════════════════ */

:root {
  --ease-out-soft: cubic-bezier(.2,.7,.2,1);
  --ease-in-out-soft: cubic-bezier(.4,0,.2,1);
}

/* ── Reveal-on-scroll ── */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.7s var(--ease-out-soft),
    transform 0.8s var(--ease-out-soft);
  will-change: opacity, transform;
}
.js [data-reveal="left"]  { transform: translate3d(-22px, 0, 0); }
.js [data-reveal="right"] { transform: translate3d(22px, 0, 0); }
.js [data-reveal="zoom"]  { transform: scale(0.97); }
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
/* Stagger via inline --i custom property (set by JS) */
.js [data-reveal] { transition-delay: calc(var(--i, 0) * 80ms); }

/* ── Hero entrance stagger ── */
.js [data-hero-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: heroIn 0.7s var(--ease-out-soft) forwards;
}
.js [data-hero-stagger] > *:nth-child(1) { animation-delay: 0.10s; }
.js [data-hero-stagger] > *:nth-child(2) { animation-delay: 0.22s; }
.js [data-hero-stagger] > *:nth-child(3) { animation-delay: 0.34s; }
.js [data-hero-stagger] > *:nth-child(4) { animation-delay: 0.46s; }
.js [data-hero-stagger] > *:nth-child(5) { animation-delay: 0.58s; }
@keyframes heroIn {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ── Ken Burns slow-zoom on hero imagery ── */
.js [data-kenburns] {
  animation: kenBurns 22s var(--ease-in-out-soft) infinite alternate;
  transform-origin: center center;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1.5%, -1%); }
}

/* ── Sticky / glass header on scroll ── */
.site-header {
  transition:
    background-color 0.35s var(--ease-out-soft),
    backdrop-filter 0.35s var(--ease-out-soft),
    box-shadow 0.35s var(--ease-out-soft),
    padding 0.35s var(--ease-out-soft);
}
/* Hero pages: header is absolute over hero. Once scrolled, lock to fixed
   and switch to the glass treatment so the nav stays available. */
.site-header.is-stuck {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(40, 79, 63, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  padding: 12px 0 0;
  animation: headerSlideDown 0.35s var(--ease-out-soft);
}
.site-header.is-stuck .header-top { margin-bottom: 8px; }
.site-header.is-stuck .header-logo img { height: 56px; transition: height 0.3s var(--ease-out-soft); }
.site-header .header-logo img { transition: height 0.3s var(--ease-out-soft); }
@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
/* Opaque header (sub-pages): make it sticky & gain shadow when scrolled */
.site-header.opaque {
  position: sticky;
  top: 0;
}
.site-header.opaque.is-stuck {
  position: sticky;
  background: rgba(40, 79, 63, 0.94);
  animation: none;
}

/* ── Header nav link underline-draw ── */
.header-nav a {
  position: relative;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out-soft);
}
.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.header-nav a.active::after {
  transform: scaleX(1);
}
/* Suppress the default underline on .active now that we draw our own */
.header-nav a.active { text-decoration: none; }

/* ── Buttons: refined hover/active + shine on primary ── */
.btn {
  position: relative;
  overflow: hidden;
  transition:
    filter 0.2s var(--ease-out-soft),
    transform 0.18s var(--ease-out-soft),
    box-shadow 0.25s var(--ease-out-soft);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(40, 79, 63, 0.18);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(40, 79, 63, 0.18);
  filter: brightness(0.94);
}
.btn-gold::before,
.btn-forest::before {
  content: "";
  position: absolute;
  inset: 0 -120%;
  background: linear-gradient(
    100deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out-soft);
  pointer-events: none;
}
.btn-gold:hover::before,
.btn-forest:hover::before {
  transform: translateX(100%);
}
.btn > * { position: relative; z-index: 1; }

/* Pulse on primary CTA (hero, find-us). Opt-in via .btn-pulse */
.btn-pulse {
  animation: ctaPulse 2.6s var(--ease-out-soft) infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 168, 67, 0.55); }
  50%      { box-shadow: 0 0 0 14px rgba(233, 168, 67, 0); }
}

/* ── Card lifts: shared across feature/product/blend/blog/offer ── */
.three-col-item,
.product-block,
.blend-item,
.offer-card,
.blog-card,
.dd-card {
  transition:
    transform 0.35s var(--ease-out-soft),
    box-shadow 0.35s var(--ease-out-soft);
}
.three-col-item:hover,
.blend-item:hover,
.offer-card:hover {
  transform: translateY(-4px);
}
.offer-card:hover {
  box-shadow: 0 18px 40px rgba(40, 79, 63, 0.16);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(40, 79, 63, 0.18);
}

/* ── Image hover zoom: shared (overrides existing .dd-card scale value) ── */
.three-col-item img,
.blend-item img,
.product-block-img,
.blog-card-img,
.dd-card img {
  transition: transform 0.6s var(--ease-out-soft);
}
.three-col-item:hover img,
.blend-item:hover img,
.product-block:hover .product-block-img,
.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}
/* The product-block & blog-card-img need overflow:hidden on the parent to
   contain the scale. Add it where missing. */
.product-block, .blog-card { overflow: hidden; }

/* ── Mobile menu: smooth slide ── */
.header-nav.open {
  animation: navSlide 0.32s var(--ease-out-soft);
}
@keyframes navSlide {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-overlay { transition: opacity 0.25s var(--ease-out-soft); }
.nav-burger svg line {
  transition: transform 0.25s var(--ease-out-soft), opacity 0.2s;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] svg line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] svg line:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] svg line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Lightbox open animation ── */
.lightbox.open {
  animation: lbFade 0.25s var(--ease-out-soft);
}
.lightbox.open .lightbox-img {
  animation: lbZoom 0.32s var(--ease-out-soft);
}
@keyframes lbFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lbZoom {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Gallery thumbs: subtle settle ── */
.gallery-masonry img,
.about-gallery-grid img,
.box-photo-grid img {
  transition: opacity 0.25s, transform 0.45s var(--ease-out-soft);
}
.gallery-masonry img:hover,
.about-gallery-grid img:hover {
  opacity: 1;
  transform: scale(1.015);
}

/* ── Form inputs: nicer focus ring ── */
.cf-field input:focus,
.cf-field textarea:focus,
.subscribe-form input:focus {
  box-shadow: 0 0 0 3px rgba(233, 168, 67, 0.28);
}

/* ── Find Us / map block: gentle settle on hover ── */
.home-find-us-wrapper,
.contact-map-wrapper,
.map-wrapper {
  transition: box-shadow 0.4s var(--ease-out-soft), transform 0.4s var(--ease-out-soft);
}
.home-find-us-wrapper:hover,
.contact-map-wrapper:hover,
.map-wrapper:hover {
  box-shadow: 0 14px 38px rgba(40, 79, 63, 0.22);
}

/* ── Reduced-motion: kill it all ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .js [data-hero-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .js [data-kenburns] { animation: none !important; }
  .btn-pulse { animation: none !important; }
}

