/* VARAS Food — shared design system (tokens, reset, nav, buttons, section base, reveal, footer) */
    /* ── TOKENS ── */
    :root {
      --g1: #213D25;  /* deepened from Material green-800 → earthy olive-green */
      --g2: #2A6030;  /* deepened mid-tone */
      --g3: #4CAF50;
      --g-pale: #F0F7F0;
      --g-light: #E8F5E9;
      --white: #FFFFFF;
      --off-white: #FAFCFA;
      --gold: #C8922A;
      --gold-l: #E0B050;
      --dark: #151A15;
      --body: #3D4A3D;
      --muted: #6B7B6B;
      --border: #D8E8D8;
      --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
      --ease: cubic-bezier(0.4, 0, 0.2, 1);
      --shadow-sm: 0 2px 12px rgba(27,94,32,0.07);
      --shadow-md: 0 6px 28px rgba(27,94,32,0.1);
      --shadow-lg: 0 16px 56px rgba(27,94,32,0.15);
    }

    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font); color: var(--body); background: var(--white); overflow-x: hidden; line-height: 1.7; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; outline: none; background: none; font-family: var(--font); }
    ul { list-style: none; }

    /* ── NAVBAR ── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      height: 76px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 6%;
      transition: background .35s var(--ease), box-shadow .35s var(--ease);
    }
    #nav.solid {
      background: var(--white);
      box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    }
    /* Logo */
    .logo { display: flex; align-items: center; }
    .logo img { height: 116px; width: auto; object-fit: contain; }
    /* Logo: natural colour always — drop shadow for visibility over dark hero */
    #logo-img {
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
      opacity: 1;
      transition: filter .35s, opacity .35s;
    }
    #nav.solid #logo-img { filter: none; opacity: 1; }
    /* Nav links */
    .nav-links { display: flex; align-items: center; gap: 36px; }
    .nav-links a {
      font-size: .72rem; font-weight: 600; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(255,255,255,.78);
      transition: color .22s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: rgba(255,255,255,.6);
      transition: width .28s var(--ease);
    }
    .nav-links a:hover { color: rgba(255,255,255,1); }
    .nav-links a:hover::after { width: 100%; }
    #nav.solid .nav-links a { color: var(--dark); }
    #nav.solid .nav-links a:hover { color: var(--g2); }
    #nav.solid .nav-links a::after { background: var(--g2); }
    /* Hamburger */
    .ham {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px;
    }
    .ham span {
      display: block; width: 24px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: .3s var(--ease);
    }
    #nav.solid .ham span { background: var(--dark); }
    .ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .ham.open span:nth-child(2) { opacity: 0; }
    .ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    /* Mobile drawer */
    .mob-nav {
      display: none; position: fixed; top: 76px; left: 0; right: 0;
      background: var(--white); z-index: 899;
      padding: 20px 6% 32px;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border);
      flex-direction: column; gap: 4px;
    }
    .mob-nav.open { display: flex; }
    .mob-nav a {
      padding: 14px 0; font-size: 1rem; font-weight: 700;
      color: var(--dark); border-bottom: 1px solid var(--border);
      transition: color .2s;
    }
    .mob-nav a:last-child { border: none; }
    .mob-nav a:hover { color: var(--g2); }

    /* ── HERO — ultra-premium full-viewport editorial ── */
    #hero {
      position: relative;
      height: 100vh; min-height: 720px;
      overflow: hidden;
      display: flex; align-items: center;
      background-color: #0c0a07;
    }
    /* Full-screen background shifted right via transform — no layout change, no gap visible */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/hero-bg.jpeg') 64% center / cover no-repeat;
      z-index: 0;
      animation: heroZoom 2.8s cubic-bezier(0.0, 0.0, 0.2, 1) forwards;
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        90deg,
        rgba(0,0,0,.93) 0%,
        rgba(0,0,0,.93) 9%,
        rgba(0,0,0,.83) 16%,
        rgba(0,0,0,.61) 22%,
        rgba(0,0,0,.26) 27%,
        rgba(0,0,0,.06) 31%,
        rgba(0,0,0,0)   34%
      );
    }
    .hero-content {
      position: absolute;
      left: 52px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      color: #F5F2EA;
      max-width: 470px;
      display: flex; flex-direction: column; align-items: flex-start;
    }
    /* Logo mark in hero — hidden; navbar logo is sufficient */
    .hero-logo-mark { display: none; }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 18px;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.66rem; font-weight: 400;
      letter-spacing: 0.28em; text-transform: uppercase;
      color: rgba(245, 242, 234, 0.48);
      margin-bottom: 30px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block; flex-shrink: 0;
      width: 32px; height: 1px;
      background: rgba(201, 163, 92, 0.60);
    }
    /* Playfair Display — closest freely-available analogue to Canela Medium */
    .hero-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(3.0rem, 5.2vw, 5.6rem);
      font-weight: 500;
      line-height: 1.04;
      letter-spacing: -0.01em;
      text-transform: none;
      color: #F5F2EA;
      margin: 0 0 32px 0;
      text-shadow: 0 4px 60px rgba(0,0,0,0.20);
    }
    /* Italic contrast — editorial typographic tension */
    .hero-title em {
      font-style: italic;
      font-weight: 400;
      color: rgba(245, 242, 234, 0.72);
    }
    /* Thin gold rule — Flamingo Estate / Aesop signature detail */
    .hero-rule {
      width: 40px; height: 1px;
      background: rgba(201, 163, 92, 0.50);
      margin: 0 0 30px 0;
    }
    .hero-sub {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: clamp(0.80rem, 1.0vw, 0.92rem);
      font-weight: 300; line-height: 1.82;
      letter-spacing: 0.012em;
      color: rgba(245, 242, 234, 0.58);
      max-width: 380px;
      margin: 0 0 50px 0;
    }
    .hero-btns { display: flex; flex-direction: row; gap: 1rem; flex-wrap: nowrap; align-items: center; }
    /* Primary — charcoal block, gold hover (Apple / Loewe energy) */
    .btn-charcoal {
      display: inline-flex; align-items: center; justify-content: center;
      background: #151515; color: #F5F2EA;
      padding: 15px 38px; border-radius: 2px;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.70rem; font-weight: 500;
      letter-spacing: 0.15em; text-transform: uppercase;
      transition: background .28s ease, color .28s ease, transform .18s ease;
      box-shadow: 0 2px 24px rgba(0,0,0,0.32);
      white-space: nowrap;
    }
    .btn-charcoal:hover {
      background: #C9A35C; color: #151515;
      transform: translateY(-2px);
    }
    /* Secondary — minimal ghost, gold hover border */
    .btn-ghost-cream {
      display: inline-flex; align-items: center; justify-content: center;
      background: transparent; color: rgba(245, 242, 234, 0.78);
      padding: 14px 36px; border-radius: 2px;
      border: 1px solid rgba(245, 242, 234, 0.28);
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.70rem; font-weight: 400;
      letter-spacing: 0.15em; text-transform: uppercase;
      transition: border-color .28s ease, color .28s ease, background .28s ease, transform .18s ease;
      white-space: nowrap;
    }
    .btn-ghost-cream:hover {
      border-color: rgba(201, 163, 92, 0.65);
      color: #C9A35C;
      background: rgba(201, 163, 92, 0.06);
      transform: translateY(-2px);
    }
    /* Minimal scroll indicator — single vertical line + animated dot */
    .scroll-mouse {
      position: absolute; bottom: 36px; left: 50%; z-index: 10;
      transform: translateX(-50%);
      width: 1px; height: 48px;
      background: rgba(245, 242, 234, 0.18);
      overflow: hidden;
    }
    .scroll-mouse::after {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 1px; height: 16px;
      background: rgba(201, 163, 92, 0.70);
      animation: scrollLine 2.4s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%   { top: -16px; opacity: 0; }
      20%  { opacity: 1; }
      80%  { opacity: 1; }
      100% { top: 48px; opacity: 0; }
    }
    @keyframes heroZoom {
      from { transform: translateX(145px) scale(1.06); }
      to   { transform: translateX(145px) scale(1.0); }
    }
    @keyframes heroZoomMobile {
      from { transform: translateX(0) scale(1.06); }
      to   { transform: translateX(0) scale(1.0); }
    }
    /* Keep btn-solid and btn-ghost for use in other sections */
    .btn-solid {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--g1); color: var(--white);
      padding: 15px 34px; border-radius: 50px;
      font-family: var(--font); font-size: .9rem; font-weight: 700;
      letter-spacing: .05em; transition: background .25s, transform .2s;
    }
    .btn-solid:hover { background: var(--g2); transform: translateY(-2px); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--white);
      padding: 14px 34px; border-radius: 50px;
      border: 2px solid rgba(255,255,255,.45);
      font-family: var(--font); font-size: .9rem; font-weight: 700;
      letter-spacing: .05em; transition: border-color .25s, background .25s, transform .2s;
    }
    .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }

    /* ── SECTION BASE ── */
    section { padding: 96px 6%; }
    .s-header { text-align: center; margin-bottom: 60px; }
    .s-label {
      display: inline-block; color: var(--g2); font-size: .75rem;
      font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .s-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.9rem, 3.5vw, 2.9rem);
      font-weight: 500; color: var(--dark); line-height: 1.18;
      margin-bottom: 14px;
    }
    .s-desc { font-size: 1rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

    /* ── PRODUCTS ── */
    #products { background: var(--white); }
    .prod-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 20px; max-width: 1280px; margin: 0 auto;
    }
    .prod-card {
      border-radius: 16px; overflow: hidden;
      border: 1.5px solid var(--border); background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: transform .35s var(--ease), box-shadow .35s var(--ease);
      cursor: pointer;
      display: flex; flex-direction: column; justify-content: space-between;
    }
    .prod-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(200,146,42,.22); border-color: rgba(200,146,42,.3); }
    .prod-img {
      height: 224px; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .prod-img img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .6s var(--ease);
    }
    .prod-card:hover .prod-img img { transform: scale(1.06); }
    .prod-img .img-fallback {
      position: absolute; inset: 0;
      display: none;
    }
    .prod-badge {
      display: inline-block; align-self: flex-start;
      background: #FEF8EC; color: #9A6E1A;
      border: 1px solid rgba(200,146,42,.22);
      font-size: .63rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 4px;
      margin-bottom: 15px;
    }
    /* Card body */
    .prod-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
    .prod-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.18rem; font-weight: 500; color: var(--dark); margin-bottom: 3px; }
    .prod-aka { font-size: .75rem; font-weight: 700; color: var(--g2); letter-spacing: .04em; margin-bottom: 12px; }
    .prod-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
    .pill {
      background: var(--g-light); color: var(--g1);
      font-size: .72rem; font-weight: 700; padding: 4px 13px;
      border-radius: 50px; letter-spacing: .03em;
    }
    .prod-desc {
      font-size: .88rem; color: var(--muted); line-height: 1.72;
      margin-bottom: 20px;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
      overflow: hidden; transition: all .4s var(--ease);
    }
    .prod-card.open .prod-desc { -webkit-line-clamp: unset; }
    .prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 4px; }
    .btn-quote {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--g1); color: var(--white);
      padding: 11px 24px; border-radius: 50px;
      font-family: var(--font); font-size: .82rem; font-weight: 700;
      letter-spacing: .04em; transition: background .25s, transform .2s;
    }
    .btn-quote:hover { background: var(--g2); transform: translateY(-1px); }
    .toggle-btn {
      display: flex; align-items: center; gap: 5px;
      color: var(--g2); font-size: .78rem; font-weight: 700;
      letter-spacing: .04em; transition: color .2s;
      flex-shrink: 0;
    }
    .toggle-btn svg { transition: transform .35s var(--ease); }
    .prod-card.open .toggle-btn svg { transform: rotate(180deg); }

    /* ── ABOUT ── */
    /* ── OUR STORY ── */
    #about { background: #F2EFE8; }
    .about-inner { max-width: 1080px; margin: 0 auto; }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 112px; align-items: start;
      margin-bottom: 80px;
    }
    /* Left column */
    .about-img-col { display: flex; flex-direction: column; }
    .about-founder-label { margin-bottom: 28px; }
    .about-founder-tag {
      display: block;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: .62rem; font-weight: 500;
      letter-spacing: .26em; text-transform: uppercase;
      color: #C9A35C; margin-bottom: 9px;
    }
    .about-founder-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.5rem; font-weight: 500;
      color: #151515; line-height: 1.2; margin-bottom: 5px;
    }
    .about-founder-role {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: .76rem; font-weight: 400;
      color: #5B5A2B; letter-spacing: .04em;
    }
    .about-img-wrap {
      position: relative;
      border-radius: 3px;
      overflow: hidden;
    }
    .about-img-wrap img {
      width: 100%; height: 620px;
      object-fit: cover; object-position: center 15%;
      display: block;
      transition: transform .9s ease;
    }
    .about-img-wrap:hover img { transform: scale(1.025); }
    .about-img-bg { display: none; }
    .about-stamp { display: none; }
    .about-img-meta {
      display: grid; grid-template-columns: repeat(4,1fr);
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(21,21,21,.12);
    }
    .about-img-meta-item {
      display: flex; flex-direction: column; align-items: center;
      padding: 0 8px;
      border-right: 1px solid rgba(21,21,21,.10);
    }
    .about-img-meta-item:first-child { align-items: flex-start; padding-left: 0; }
    .about-img-meta-item:last-child { align-items: flex-end; border-right: none; padding-right: 0; }
    .about-meta-val {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.15rem; font-weight: 500;
      color: #151515; line-height: 1; margin-bottom: 5px;
    }
    .about-meta-lbl {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: .58rem; font-weight: 500;
      letter-spacing: .18em; text-transform: uppercase;
      color: rgba(21,21,21,.42);
    }
    /* Right column */
    .about-text { padding-top: 8px; }
    .about-text .s-header { text-align: left; margin-bottom: 0; }
    .about-text .s-header .s-label { margin-bottom: 22px; }
    .about-quote {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.05rem; font-style: italic; font-weight: 400;
      color: #5B5A2B; line-height: 1.65;
      margin: 0 0 32px 0;
      padding-left: 20px;
      border-left: 2px solid #C9A35C;
    }
    .about-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.25rem, 3.4vw, 3.25rem);
      font-weight: 500; line-height: 1.18;
      color: #151515; letter-spacing: -.01em;
      margin: 0 0 36px 0;
    }
    .about-paras p {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: .90rem; color: rgba(21,21,21,.60);
      line-height: 1.92; margin-bottom: 22px;
    }
    .about-paras p strong { color: #151515; font-weight: 600; }
    .about-signature {
      margin-top: 44px; padding-top: 36px;
      border-top: 1px solid rgba(21,21,21,.10);
      margin-bottom: 40px;
    }
    .about-sig-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.3rem; font-weight: 500; font-style: italic;
      color: #151515; margin-bottom: 7px;
    }
    .about-sig-role {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: .66rem; font-weight: 500;
      letter-spacing: .22em; text-transform: uppercase;
      color: rgba(21,21,21,.38);
    }
    .about-trust {
      display: flex; flex-wrap: wrap; gap: 12px 28px;
    }
    .about-trust-item {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: .70rem; font-weight: 500;
      letter-spacing: .08em; text-transform: uppercase;
      color: #38452D;
    }
    .about-trust-item svg { width: 13px; height: 13px; flex-shrink: 0; color: #C9A35C; }
    /* Stats row */
    .stats {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 0;
      padding: 56px 0;
      border-top: 1px solid rgba(21,21,21,.10);
      border-bottom: 1px solid rgba(21,21,21,.10);
      margin-bottom: 64px;
    }
    .stat {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(21,21,21,.10);
    }
    .stat:last-child { border-right: none; }
    .stat-n {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 2.8rem; font-weight: 500;
      color: #151515; line-height: 1;
      margin-bottom: 10px; letter-spacing: -.02em;
    }
    .stat-l {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: .64rem; font-weight: 500;
      color: rgba(21,21,21,.42);
      letter-spacing: .16em; text-transform: uppercase;
    }
    .about-closing {
      max-width: 660px; margin: 0 auto;
      text-align: center;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(1.05rem, 1.6vw, 1.35rem);
      font-weight: 400; font-style: italic;
      color: #38452D; line-height: 1.78;
    }

    /* ── MILESTONES (founder timeline) ── */
    .milestones { max-width: 1080px; margin: 0 auto 64px; }
    .milestones .s-header { margin-bottom: 0; }
    .milestone-row {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 22px; position: relative; margin-top: 44px;
    }
    .milestone-row::before {
      content: ''; position: absolute; top: 5px; left: 3%; right: 3%;
      height: 2px; background: var(--border); z-index: 0;
    }
    .milestone { position: relative; z-index: 1; padding-top: 28px; }
    .milestone::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 12px; height: 12px; border-radius: 50%;
      background: var(--white); border: 2.5px solid var(--g2);
    }
    .milestone-year {
      display: block; font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.25rem; font-weight: 600; color: var(--g2);
      margin-bottom: 8px;
    }
    .milestone p { font-size: .84rem; color: var(--body); line-height: 1.55; }
    .milestone p strong { color: var(--dark); }
    .milestone-photo p { min-height: 6.2em; }
    .milestone-photo img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      border-radius: 8px; border: 1px solid var(--border);
      box-shadow: var(--shadow-sm); margin-top: 12px;
    }
    .milestone-note {
      margin-top: 30px; font-size: .78rem; color: var(--muted); text-align: center;
    }
    @media (max-width: 860px) {
      .milestone-row { grid-template-columns: 1fr; gap: 30px; }
      .milestone-row::before { display: none; }
      .milestone { padding-left: 28px; padding-top: 0; }
      .milestone::before { top: 3px; left: 0; }
      .milestone-photo img { aspect-ratio: 16/10; }
      .milestone-photo p { min-height: 0; }
    }

    /* ── WHY US ── */
    #why { background: var(--white); }
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 26px; max-width: 1080px; margin: 0 auto;
    }
    .why-card {
      border-radius: 20px; padding: 40px 30px;
      border: 1.5px solid var(--border); background: var(--white);
      text-align: center;
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
      display: flex; flex-direction: column; align-items: center;
      min-height: 300px;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(200,146,42,.45); }
    .why-icon-wrap {
      width: 68px; height: 68px; margin: 0 auto 22px;
      background: var(--g-light); border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      transition: background .3s;
    }
    .why-card:hover .why-icon-wrap { background: var(--g1); }
    .why-icon-wrap svg { width: 32px; height: 32px; color: var(--g1); transition: color .3s; }
    .why-card:hover .why-icon-wrap svg { color: var(--white); }
    .why-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.12rem; font-weight: 500; color: var(--dark); margin-bottom: 10px; }
    .why-desc { font-size: .875rem; color: var(--muted); line-height: 1.72; }

    /* ── CONTACT ── */
    #contact { background: var(--g-pale); }
    .contact-grid {
      display: grid; grid-template-columns: 1.15fr 1fr;
      gap: 52px; max-width: 1080px; margin: 0 auto;
    }
    /* Form card */
    .form-card {
      background: var(--white); border-radius: 24px;
      padding: 46px 44px; box-shadow: var(--shadow-md);
    }
    .form-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.55rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
    .form-card > p { font-size: .88rem; color: var(--muted); margin-bottom: 30px; line-height: 1.65; }
    .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .f-group { margin-bottom: 18px; }
    .f-group label {
      display: block; font-size: .78rem; font-weight: 700;
      color: var(--dark); margin-bottom: 7px; letter-spacing: .04em;
    }
    .f-group label .req { color: var(--g2); margin-left: 2px; }
    .f-group input,
    .f-group textarea,
    .f-group select {
      width: 100%; padding: 13px 16px;
      border: 1.5px solid var(--border); border-radius: 12px;
      font-family: var(--font); font-size: .88rem; color: var(--dark);
      background: var(--white); outline: none; -webkit-appearance: none; appearance: none;
      transition: border-color .25s, box-shadow .25s;
    }
    .f-group input:focus, .f-group textarea:focus, .f-group select:focus {
      border-color: var(--g2); box-shadow: 0 0 0 3px rgba(46,125,50,.1);
    }
    .f-group textarea { resize: vertical; min-height: 110px; }
    .f-group select { cursor: pointer; }
    .btn-send {
      width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px;
      background: var(--g1); color: var(--white); padding: 16px;
      border-radius: 12px; font-family: var(--font); font-size: .95rem; font-weight: 700;
      letter-spacing: .05em; transition: background .25s, transform .2s;
    }
    .btn-send:hover { background: var(--g2); transform: translateY(-2px); }
    .f-note { text-align: center; font-size: .75rem; color: var(--muted); margin-top: 14px; }
    .security-note {
      display: flex; align-items: flex-start; gap: 10px;
      background: var(--g-pale); border: 1px solid var(--border);
      border-radius: 10px; padding: 14px 16px; margin-top: 18px;
      font-size: .82rem; line-height: 1.5; color: var(--body);
    }
    .security-note svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; color: var(--g2); }
    .security-note strong { color: var(--dark); }
    .security-note a { color: var(--g2); font-weight: 600; }
    /* Contact info */
    .c-info h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.45rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
    .c-info > p { font-size: .88rem; color: var(--muted); margin-bottom: 32px; line-height: 1.65; }
    .c-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 26px; }
    .c-icon {
      width: 46px; height: 46px; flex-shrink: 0;
      background: var(--white); border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    }
    .c-icon svg { width: 20px; height: 20px; color: var(--g1); }
    .c-item-text .lbl {
      font-size: .72rem; font-weight: 700; color: var(--g2);
      letter-spacing: .12em; text-transform: uppercase; margin-bottom: 3px;
    }
    .c-item-text .val { font-size: .9rem; color: var(--dark); line-height: 1.65; }
    .c-item-text .val a { color: var(--dark); transition: color .2s; }
    .c-item-text .val a:hover { color: var(--g2); }
    .wa-cta {
      display: flex; align-items: center; gap: 12px;
      background: #25D366; color: var(--white);
      padding: 15px 26px; border-radius: 14px;
      font-weight: 700; font-size: .92rem; margin-top: 32px;
      transition: background .25s, transform .2s;
    }
    .wa-cta:hover { background: #1DA852; transform: translateY(-2px); }
    .wa-cta svg { width: 22px; height: 22px; flex-shrink: 0; }

    /* ── FOOTER ── */
    footer {
      background: #0c1c0e; color: rgba(255,255,255,.6);
      padding: 64px 6% 32px;
    }
    .ft-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 56px; padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.07);
      margin-bottom: 32px;
    }
    .ft-brand svg { height: 48px; width: auto; margin-bottom: 14px; }
    .ft-tag { font-size: .88rem; line-height: 1.72; max-width: 290px; margin-bottom: 22px; }
    .ft-social { display: flex; gap: 10px; }
    .soc-btn {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: center;
      transition: background .25s;
    }
    .soc-btn:hover { background: var(--g2); }
    .soc-btn svg { width: 17px; height: 17px; color: rgba(255,255,255,.7); }
    .ft-col h5 {
      font-size: .73rem; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: var(--white); margin-bottom: 18px;
    }
    .ft-col ul { display: flex; flex-direction: column; gap: 11px; }
    .ft-col ul a { font-size: .86rem; color: rgba(255,255,255,.55); transition: color .2s; }
    .ft-col ul a:hover { color: var(--white); }
    .ft-bottom {
      display: flex; align-items: center; justify-content: space-between;
      font-size: .8rem; flex-wrap: wrap; gap: 12px;
    }
    .ft-bottom a { color: rgba(255,255,255,.35); margin-left: 20px; transition: color .2s; }
    .ft-bottom a:hover { color: rgba(255,255,255,.7); }

    /* ── BENEFITS ── */
    #benefits {
      background: #141008;
      padding: 96px 6%;
      position: relative; overflow: hidden;
    }
    #benefits::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 90% 10%, rgba(200,146,42,.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 5% 90%, rgba(200,146,42,.05) 0%, transparent 60%);
      pointer-events: none;
    }
    #benefits .s-label { color: var(--gold-l); }
    #benefits .s-title { color: #fff; }
    #benefits .s-desc  { color: rgba(255,255,255,.55); }

    /* Benefit cards */
    .ben-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1080px; margin: 0 auto 72px;
    }
    .ben-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px; padding: 40px 32px;
      text-align: center;
      transition: background .3s, border-color .3s, transform .35s var(--ease);
    }
    .ben-card:hover {
      background: rgba(255,255,255,.08);
      border-color: rgba(200,146,42,.35);
      transform: translateY(-5px);
    }
    .ben-icon-ring {
      width: 64px; height: 64px; margin: 0 auto 18px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(200,146,42,.25), rgba(224,176,80,.1));
      border: 1.5px solid rgba(200,146,42,.3);
      display: flex; align-items: center; justify-content: center;
      transition: background .3s, border-color .3s;
    }
    .ben-card:hover .ben-icon-ring {
      background: linear-gradient(135deg, rgba(200,146,42,.35), rgba(224,176,80,.15));
      border-color: rgba(200,146,42,.6);
    }
    .ben-icon-ring svg { width: 28px; height: 28px; color: var(--gold-l); transition: color .3s; }
    .ben-card:hover .ben-icon-ring svg { color: #F0C870; }
    .ben-title {
      font-size: .95rem; font-weight: 900; color: #fff;
      margin-bottom: 8px; line-height: 1.3;
    }
    .ben-desc {
      font-size: .8rem; color: rgba(255,255,255,.5);
      line-height: 1.65;
    }

    /* Nutrition strip */
    .nutr-strip {
      max-width: 1080px; margin: 0 auto;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 24px; padding: 40px 48px;
    }
    .nutr-top {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 36px; flex-wrap: wrap; gap: 16px;
    }
    .nutr-top h3 { font-size: 1.05rem; font-weight: 900; color: #fff; }
    .nutr-top span { font-size: .75rem; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; }
    .nutr-bars { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
    .nutr-bar-item {}
    .nutr-bar-label {
      display: flex; justify-content: space-between; align-items: baseline;
      margin-bottom: 8px;
    }
    .nutr-bar-label span:first-child {
      font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.75);
    }
    .nutr-bar-label span:last-child {
      font-size: .82rem; font-weight: 900; color: var(--gold-l);
    }
    .nutr-track {
      height: 5px; background: rgba(255,255,255,.08);
      border-radius: 50px; overflow: hidden;
    }
    .nutr-fill {
      height: 100%; border-radius: 50px;
      background: linear-gradient(90deg, var(--g2), var(--g3));
      width: 0; transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nutr-fill.gold { background: linear-gradient(90deg, var(--gold), var(--gold-l)); }
    .nutr-note {
      margin-top: 24px; font-size: .72rem;
      color: rgba(255,255,255,.25); text-align: right;
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(44px);
      transition: opacity .75s var(--ease), transform .75s var(--ease);
    }
    .reveal.show { opacity: 1; transform: translateY(0); }
    .reveal.d1 { transition-delay: .15s; }
    .reveal.d2 { transition-delay: .30s; }
    .reveal.d3 { transition-delay: .45s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1280px) {
      .hero-content { left: 64px; max-width: 500px; }
    }
    @media (max-width: 1024px) {
      .about-grid { gap: 56px; }
      .hero-content { left: 48px; max-width: 460px; }
      .hero-title { font-size: clamp(2.6rem, 4.8vw, 4.6rem); }
    }
    @media (max-width: 860px) {
      .logo img { height: 65px; }
      .nav-links { display: none; }
      .ham { display: flex; }
      /* ── MOBILE HERO: full photo + bottom gradient + text overlay ── */
      #hero {
        height: 100vh;
        height: 100svh;
        min-height: 600px;
        padding-top: 0;
        overflow: hidden;
        background-color: #000;
      }
      #hero::before {
        top: 0; left: 0; right: 0; bottom: 0;
        background-size: auto 290px;
        background-position: 40% 22%;
        animation-name: heroZoomMobile;
      }
      .hero-overlay {
        display: block;
        background:
          linear-gradient(to bottom,
            rgba(0,0,0,1.00)  0%,
            rgba(0,0,0,1.00)  14%,
            rgba(0,0,0,.70)   17%,
            rgba(0,0,0,.25)   20%,
            rgba(0,0,0,.05)   25%,
            rgba(0,0,0,0)     29%
          ),
          linear-gradient(
            to top,
            rgba(0,0,0,1.00)  0%,
            rgba(0,0,0,1.00)  45%,
            rgba(0,0,0,.93)   52%,
            rgba(0,0,0,.65)   58%,
            rgba(0,0,0,.22)   62%,
            rgba(0,0,0,0)     66%
          );
      }
      .hero-content {
        position: absolute;
        top: auto; bottom: 60px;
        left: 24px; right: 24px;
        transform: none;
        max-width: none;
        width: auto;
        padding: 0;
        background: none;
      }
      .hero-eyebrow { display: none; }
      .hero-title { font-size: clamp(2.4rem, 8.5vw, 3.4rem); line-height: 0.9; margin-bottom: 16px; }
      .hero-rule { margin: 0 0 14px 0; }
      .hero-sub { font-size: .88rem; line-height: 1.70; margin-bottom: 28px; }
      .hero-btns { flex-direction: row; gap: 12px; }
      .btn-charcoal { flex: 1; min-width: 0; max-width: none; width: auto; padding-left: 14px; padding-right: 14px; font-size: .72rem; justify-content: center; background: #D6B46A; color: #151515; animation: none; }
      .btn-ghost-cream { flex: 1; min-width: 0; max-width: none; width: auto; padding-left: 14px; padding-right: 14px; font-size: .72rem; justify-content: center; border-color: #D6B46A; color: #D6B46A; }
      .prod-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
      .ben-grid  { grid-template-columns: repeat(2, 1fr); }

      .about-grid { grid-template-columns: 1fr; margin-bottom: 48px; }
      .about-img-wrap img { height: 460px; }
      .stats { grid-template-columns: repeat(2,1fr); }
      .stat { border-right: none; border-bottom: 1px solid rgba(21,21,21,.10); padding: 24px 0; }
      .stat:nth-child(odd) { border-right: 1px solid rgba(21,21,21,.10); }
      .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
      .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .why-card { min-height: unset; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-card { padding: 32px 26px; }
      .ft-top { grid-template-columns: 1fr; gap: 36px; }
    }
    @media (max-width: 560px) {
      section { padding: 72px 5%; }
      .prod-grid { grid-template-columns: 1fr; max-width: 380px; }
      .ben-grid  { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
      .f-row { grid-template-columns: 1fr; }
      .hero-title { font-size: clamp(1.8rem, 8.5vw, 2.4rem); }
      .stats { grid-template-columns: 1fr 1fr; }
      .ft-bottom { flex-direction: column; text-align: center; }
    }

    /* ════════════════════════════════════════════════════
       MICRO-IMPRESSIONS BLOCK
       Each sub-section can be removed independently.
       ════════════════════════════════════════════════════ */

    /* ── MI-1: Selection color ── */
    ::selection { background: rgba(200,146,42,.18); color: inherit; }

    /* ── MI-2: Focus ring (keyboard nav, accessibility) ── */
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

    /* ── MI-3: Button press (all buttons scale down on click) ── */
    .btn-charcoal:active  { transform: scale(0.97) !important; }
    .btn-ghost-cream:active { transform: scale(0.97) !important; }
    .btn-solid:active     { transform: scale(0.97) !important; }
    .btn-quote:active     { transform: scale(0.97) !important; }
    .btn-send:active      { transform: scale(0.97) !important; }
    .wa-cta:active        { transform: scale(0.97) !important; }

    /* ── MI-4: CTA hero pulse — subtle glow breathes every 4s ── */
    @keyframes ctaPulse {
      0%, 100% { box-shadow: 0 2px 24px rgba(0,0,0,0.32); }
      50%       { box-shadow: 0 2px 24px rgba(0,0,0,0.32), 0 0 18px 4px rgba(201,163,92,0.22); }
    }
    .btn-charcoal { animation: ctaPulse 4s ease-in-out infinite; }
    .btn-charcoal:hover { animation: none; }

    /* ── MI-5: s-label shimmer on scroll reveal ── */
    @keyframes labelShimmer {
      from { background-position: -200% center; }
      to   { background-position: 200% center; }
    }
    .s-header.show .s-label {
      background: linear-gradient(90deg, var(--g2) 20%, #C9A35C 50%, var(--g2) 80%);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: labelShimmer 1.8s ease forwards;
    }
    /* Dark-bg sections override (Benefits section) */
    #benefits .s-header.show .s-label {
      background: linear-gradient(90deg, var(--gold-l) 20%, #fff 50%, var(--gold-l) 80%);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: labelShimmer 1.8s ease forwards;
    }

    /* ── MI-6: Active nav link (scroll spy) ── */
    #nav.solid .nav-links a.nav-active { color: var(--gold) !important; }
    #nav.solid .nav-links a.nav-active::after { width: 100%; background: var(--gold); }
    /* On transparent hero nav — gold active glow */
    #nav:not(.solid) .nav-links a.nav-active { color: rgba(201,163,92,0.95) !important; }

    /* ── MI-7: Product pill hover subtle highlight ── */
    .pill { transition: background .2s, color .2s; }
    .pill:hover { background: rgba(33,61,37,.1); color: var(--g1); }

    /* ── MI-8: Why card icon inverts to gold on hover (was green→white) ── */
    .why-card:hover .why-icon-wrap { background: rgba(200,146,42,.12); }
    .why-card:hover .why-icon-wrap svg { color: var(--gold); }

    /* ── MI-9: Form label micro-transitions ── */
    .f-group label { transition: color .2s; }
    .f-group input:focus ~ label,
    .f-group textarea:focus ~ label { color: var(--g2); }
    .f-group input:focus,
    .f-group textarea:focus,
    .f-group select:focus { background: #FAFFF9; }

    /* ── MI-10: Smooth scroll-line indicator color matches gold ── */
    /* (already gold in existing CSS — confirmed) */

    /* ════════════════════════════════════════
       RESPONSIVE FIXES
       ════════════════════════════════════════ */

    /* ── RF-1: Nutrition bars — 2 columns on tablet/mobile ── */
    @media (max-width: 780px) {
      .nutr-bars { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; }
    }
    @media (max-width: 480px) {
      .nutr-bars { grid-template-columns: 1fr; }
    }

    /* ── RF-2: About founder meta strip — 2×2 on mobile ── */
    @media (max-width: 620px) {
      .about-img-meta { grid-template-columns: repeat(2, 1fr); }
      .about-img-meta-item { align-items: center !important; }
      .about-img-meta-item:nth-child(2) { border-right: none; }
      .about-img-meta-item:nth-child(3) { border-right: 1px solid rgba(21,21,21,.10); padding-top: 18px; border-top: 1px solid rgba(21,21,21,.08); }
      .about-img-meta-item:nth-child(4) { padding-top: 18px; border-top: 1px solid rgba(21,21,21,.08); border-right: none; }
    }

    /* ════════════════════════════════════════
       FOOTER LOGO — no filter, no background
       ════════════════════════════════════════ */
    .ft-brand img {
      display: block;
    }

  .proof-wrap { max-width: 1200px; margin: 0 auto; }
  .proof-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .proof-main { position: relative; aspect-ratio: 1400 / 2592; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
  .proof-main img {
    width: 100%; height: 100%; object-fit: cover; object-position: center center;
    border-radius: 16px;
    transition: transform .5s var(--ease);
  }
  .proof-main img:hover { transform: scale(1.03); }
  .proof-video-wrap { background: #000; box-shadow: var(--shadow-md); }
  .proof-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (max-width: 900px) {
    .proof-grid { grid-template-columns: 1fr 1fr; }
    .proof-video-wrap { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
    .proof-video-wrap video { object-fit: contain; }
  }
  .proof-caption {
    position: absolute; left: 12px; bottom: 12px; z-index: 2;
    background: rgba(0,0,0,.55); backdrop-filter: blur(2px);
    color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .01em;
    padding: 6px 14px; border-radius: 999px; pointer-events: none;
  }
  @media (max-width: 700px) {
    .proof-grid { grid-template-columns: 1fr; }
  }


/* ════════════════════════════════════════
   SUBPAGES — variety pages, Our Farm, blog
   ════════════════════════════════════════ */

/* Generic hero for non-home pages: shorter, simpler, no left-shifted framing */
.hero-alt { height: 72vh; min-height: 480px; }
.hero-alt::before { animation: none !important; transform: none !important; background-position: center 30% !important; }
.hero-alt .hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.78) 20%, rgba(0,0,0,.42) 42%, rgba(0,0,0,.10) 60%, rgba(0,0,0,0) 72%);
}
.hero-alt .hero-content { max-width: 560px; }
@media (max-width: 860px) {
  .hero-alt { height: 62vh; min-height: 420px; }
  .hero-alt::before { background-position: 45% 30% !important; }
}

/* Breadcrumb */
.crumbs { max-width: 1080px; margin: 0 auto 8px; font-size: .78rem; color: var(--muted); }
.crumbs a { color: var(--g2); font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 6px; opacity: .5; }

/* Intro prose */
.prose { max-width: 720px; margin: 0 auto 56px; }
.prose p { font-size: .96rem; color: var(--body); line-height: 1.85; margin-bottom: 20px; }
.prose p strong { color: var(--dark); }

/* Spec grid (reuses why-card visual language) */
.spec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1080px; margin: 0 auto 64px;
}
.spec-card {
  border: 1.5px solid var(--border); border-radius: 16px; padding: 26px 20px;
  text-align: center; background: var(--white);
}
.spec-val { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.spec-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g2); }
@media (max-width: 700px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }

/* Section title used mid-page on subpages (not the hero) */
.subpage-hero-info { max-width: 1080px; margin: 0 auto; }

/* Retail / private-label gallery */
.retail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.retail-card { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); background: var(--white); box-shadow: var(--shadow-sm); }
.retail-card img { width: 100%; height: 480px; object-fit: contain; background: #f4f2ec; }
.retail-card .retail-cap { padding: 16px 18px; }
.retail-card .retail-cap strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 1.02rem; color: var(--dark); margin-bottom: 4px; }
.retail-card .retail-cap span { font-size: .82rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 760px) { .retail-grid { grid-template-columns: 1fr; } }

/* Ordering process step list (how-to-buy.html) */
.step-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.step-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--g1); color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 600;
}
.step-body h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.step-body p { font-size: .9rem; color: var(--body); line-height: 1.7; margin: 0; }
.step-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 10px; }
.step-col-lbl { font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--g2); margin-bottom: 4px; }
.step-col-val { font-size: .84rem; color: var(--body); line-height: 1.5; }
@media (max-width: 640px) { .step-cols { grid-template-columns: 1fr; gap: 10px; } }

/* Related varieties row */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
.related-card {
  display: block; border-radius: 14px; overflow: hidden; position: relative;
  aspect-ratio: 4/3; box-shadow: var(--shadow-sm);
}
.related-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.related-card:hover img { transform: scale(1.05); }
.related-card .related-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff; font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 500;
}
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }

/* Simple CTA band reused on subpages */
.cta-band {
  max-width: 1080px; margin: 0 auto; text-align: center;
  padding: 56px 40px; border-radius: 24px;
  background: var(--g-pale); border: 1px solid var(--border);
}
.cta-band h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; font-weight: 500; color: var(--dark); margin-bottom: 12px; }
.cta-band p { font-size: .92rem; color: var(--muted); margin-bottom: 26px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .hero-btns { justify-content: center; }
.cta-band .btn-charcoal, .cta-band .btn-ghost-cream { animation: none; }
.cta-band .btn-ghost-cream { border-color: rgba(21,21,21,.25); color: var(--dark); }
.cta-band .btn-ghost-cream:hover { border-color: var(--g2); color: var(--g2); background: rgba(46,125,50,.06); }

/* Our Farm — large video centerpiece */
.farm-video-block {
  max-width: 980px; margin: 0 auto 20px; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); background: #000; position: relative;
}
.farm-video-block video { width: 100%; display: block; max-height: 640px; object-fit: contain; background:#000; }
.farm-video-cap { text-align: center; font-size: .82rem; color: var(--muted); margin-bottom: 64px; }

/* Blog index cards */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 900px; margin: 0 auto; }
.blog-card { border-radius: 18px; overflow: hidden; border: 1.5px solid var(--border); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card .bc-body { padding: 22px 24px 26px; }
.blog-card .bc-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g2); margin-bottom: 8px; display:block; }
.blog-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 500; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.blog-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.blog-card .bc-read { font-size: .82rem; font-weight: 700; color: var(--g2); }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }

/* Article body typography */
.article-wrap { max-width: 740px; margin: 0 auto; }
.article-wrap h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 500; color: var(--dark); margin: 40px 0 16px; }
.article-wrap h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; font-weight: 500; color: var(--dark); margin: 30px 0 12px; }
.article-wrap p { font-size: .96rem; color: var(--body); line-height: 1.9; margin-bottom: 20px; }
.article-wrap ul { margin: 0 0 22px 0; }
.article-wrap li { font-size: .95rem; color: var(--body); line-height: 1.8; margin-bottom: 10px; padding-left: 22px; position: relative; }
.article-wrap li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.article-wrap table { width: 100%; border-collapse: collapse; margin: 24px 0 28px; font-size: .88rem; }
.article-wrap th, .article-wrap td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.article-wrap th { font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--g2); }
.article-meta { text-align: center; font-size: .78rem; color: var(--muted); margin-bottom: 8px; letter-spacing: .04em; text-transform: uppercase; }
.article-hero-img { max-width: 900px; margin: 0 auto 48px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.article-hero-img img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
