/* ========================================
   ECOLAND — Mobile-first, lightweight CSS
   ======================================== */

/* ---------- DESIGN TOKENS ---------- */
:root{
  --cream:#FFF8E7;
  --cream-2:#F9EFD2;
  --ink:#2A3D1F;
  --ink-soft:#5C6F4F;
  --forest:#7CB342;
  --forest-deep:#4A7A2C;
  --terra:#E89B3A;
  --terra-deep:#C77A1E;
  --gold:#F4B72A;
  --line:rgba(31,42,28,.12);
  --shadow-sm: 0 1px 2px rgba(31,42,28,.06);
  --shadow-md: 0 6px 24px -8px rgba(31,42,28,.18);
  --shadow-lg: 0 24px 60px -20px rgba(31,42,28,.25);
  --radius:14px;
  --radius-lg:24px;
  --container:1200px;

  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- RESET ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}



body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img,svg,video{max-width:100%;height:auto;display:block}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
a{color:inherit;text-decoration:none}
ul{list-style:none;padding:0;margin:0}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;line-height:1.15;letter-spacing:-0.01em;margin:0}
em{font-style:italic;color:var(--terra)}
.eyebrow{
  display:inline-block;
  font-family:var(--font-body);
  font-size:.75rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--forest);
  padding:.4rem .75rem;
  border:1px solid var(--line);
  border-radius:99px;
  background:rgba(255,255,255,.5);
}

/* ---------- LAYOUT ---------- */
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 1.25rem;
}
@media (min-width:768px){.container{padding:0 2rem}}

.skip-link{
  position:absolute;left:-9999px;top:0;
  background:var(--forest);color:#fff;padding:.75rem 1rem;
  border-radius:0 0 8px 0;z-index:9999;
}
.skip-link:focus{left:0}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement{
  background:var(--forest-deep);
  color:var(--cream);
  padding:.55rem 0;
  font-size:.78rem;
  letter-spacing:.05em;
  overflow:hidden;
  position:relative;
}
.announcement-track{
  display:flex;
  gap:1.5rem;
  white-space:nowrap;
  width:max-content;
  animation:scroll 32s linear infinite;
}
.announcement-track span{font-weight:500}
.announcement-track span:nth-child(even){opacity:.5;font-size:.7rem}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ---------- HEADER ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(245,239,227,.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:.85rem 1.25rem;gap:1rem;
  max-width:var(--container);margin:0 auto;
}
@media (min-width:768px){.header-inner{padding:1.1rem 2rem}}

.brand{display:flex;align-items:center;gap:.6rem;flex-shrink:0}
.brand-logo{width:38px;height:38px;object-fit:contain}
.brand-fallback{
  display:inline-block;width:38px;height:38px;
  background:var(--forest);color:var(--cream);
  border-radius:50%;text-align:center;line-height:38px;
  font-family:var(--font-display);font-weight:600;font-size:1.1rem;
}
.brand-name{
  font-family:var(--font-display);
  font-size:1.4rem;font-weight:600;letter-spacing:-.02em;
  color:var(--forest-deep);
}

.primary-nav{display:none;gap:2rem}
.primary-nav a{
  font-size:.92rem;font-weight:500;
  position:relative;padding:.25rem 0;
  transition:color .2s;
}
.primary-nav a:hover{color:var(--terra)}
.primary-nav a::after{
  content:"";position:absolute;left:0;bottom:0;
  width:0;height:1.5px;background:var(--terra);
  transition:width .25s;
}
.primary-nav a:hover::after{width:100%}
@media (min-width:960px){.primary-nav{display:flex}}

.header-cta{display:flex;align-items:center;gap:.5rem}
.icon-btn{
  width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink);transition:background .2s,color .2s;
  position:relative;
}
.icon-btn:hover{background:var(--cream-2);color:var(--forest)}
.cart-count{
  position:absolute;top:2px;right:2px;
  background:var(--terra);color:#fff;
  font-size:.62rem;font-weight:700;
  width:16px;height:16px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}

.menu-toggle{
  display:flex;flex-direction:column;justify-content:center;gap:4px;
  width:40px;height:40px;border-radius:8px;padding:0 10px;
}
.menu-toggle span{
  display:block;width:20px;height:1.5px;background:var(--ink);
  transition:transform .25s, opacity .2s;
}
.menu-toggle.is-open span:nth-child(1){transform:translateY(5.5px) rotate(45deg)}
.menu-toggle.is-open span:nth-child(2){opacity:0}
.menu-toggle.is-open span:nth-child(3){transform:translateY(-5.5px) rotate(-45deg)}
@media (min-width:960px){.menu-toggle{display:none}}

.mobile-nav{
  display:none;flex-direction:column;
  padding:1rem 1.5rem 2rem;
  background:var(--cream);
  border-bottom:1px solid var(--line);
}
.mobile-nav.is-open{display:flex}
.mobile-nav a{
  padding:.85rem 0;
  border-bottom:1px solid var(--line);
  font-size:1.05rem;font-weight:500;
}
.mobile-nav a:last-child{border-bottom:0}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:2.5rem 0 3rem;
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(212,162,76,.18), transparent 70%),
    radial-gradient(50% 40% at 10% 80%, rgba(45,74,43,.10), transparent 70%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
  align-items:center;
}
.hero-copy h1{
  font-size:clamp(2.4rem, 7vw, 4.5rem);
  margin:1rem 0 1.25rem;
  font-weight:600;
}
.hero-sub{
  font-size:1.05rem;color:var(--ink-soft);
  max-width:48ch;margin:0 0 1.75rem;
}
.hero-ctas{display:flex;gap:.75rem;flex-wrap:wrap;margin-bottom:2rem}
.hero-trust{
  display:flex;gap:1.5rem;flex-wrap:wrap;
  padding-top:1.5rem;border-top:1px solid var(--line);
}
.hero-trust div{display:flex;flex-direction:column}
.hero-trust strong{
  font-family:var(--font-display);
  font-size:1.6rem;font-weight:600;color:var(--forest);
  line-height:1;
}
.hero-trust span{font-size:.8rem;color:var(--ink-soft);margin-top:.2rem}

/* ---------- HERO VISUAL — editorial product stack ---------- */
.hero-visual{
  position:relative;
  height:340px;
  display:none;
}

.hero-stack{
  position:relative;
  width:100%;
  height:100%;
}

/* Soft warm-textured "table surface" — the backdrop the products sit on */
.hero-stack-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(212,162,76,.18), transparent 65%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(166,107,67,.10), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  box-shadow:inset 0 -40px 60px -30px rgba(31,42,28,.06);
  z-index:0;
}

/* The product photographs themselves — composed as a still life */
.hero-product{
  position:absolute;
  margin:0;
  z-index:1;
}
.hero-product img{
  width:100%;height:auto;
  display:block;
  filter:drop-shadow(0 30px 40px rgba(31,42,28,.18))
         drop-shadow(0 8px 12px rgba(31,42,28,.10));
}
.hero-product-primary{
  top:6%;
  right:8%;
  width:62%;
  transform:rotate(-3deg);
}
.hero-product-secondary{
  bottom:0%;
  left:4%;
  width:48%;
  transform:rotate(4deg);
  z-index:2;
}

/* Heritage stamp — small editorial mark in the corner */
.hero-stack-mark{
  position:absolute;
  bottom:1.25rem;
  right:1.5rem;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:.15rem;
  font-family:var(--font-display);
  font-style:italic;
  z-index:3;
}
.hero-stack-mark-line{
  font-size:.95rem;
  color:var(--forest);
  letter-spacing:.01em;
  padding:.15rem .55rem;
  background:rgba(255,255,255,.7);
  border-radius:99px;
  border:1px solid var(--line);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}

@media (min-width:900px){
  .hero{padding:4rem 0 5rem}
  .hero-inner{grid-template-columns:1.1fr .9fr;gap:3rem}
  .hero-visual{display:block;height:520px}
}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.85rem 1.5rem;
  border-radius:99px;
  font-weight:600;font-size:.95rem;
  letter-spacing:.01em;
  transition:transform .15s, background .2s, color .2s, box-shadow .2s;
  white-space:nowrap;
  border:1.5px solid transparent;
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--forest);color:var(--cream);box-shadow:var(--shadow-md)}
.btn-primary:hover{background:var(--forest-deep)}
.btn-ghost{background:transparent;color:var(--forest);border-color:var(--forest)}
.btn-ghost:hover{background:var(--forest);color:var(--cream)}
.btn-outline{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-outline:hover{border-color:var(--forest);color:var(--forest)}
.btn-small{padding:.5rem 1rem;font-size:.85rem;background:var(--ink);color:var(--cream)}
.btn-small:hover{background:var(--terra)}
.btn-lg{padding:1.1rem 2rem;font-size:1rem}

/* ---------- USP STRIP ---------- */
.usp{padding:3rem 0;background:var(--cream-2);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.usp-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.5rem;
}
.usp-item{text-align:left}
.usp-icon{font-size:1.8rem;margin-bottom:.6rem}
.usp-item h3{font-size:1.05rem;margin-bottom:.3rem;font-weight:600}
.usp-item p{font-size:.88rem;color:var(--ink-soft);margin:0;line-height:1.5}
@media (min-width:768px){
  .usp-grid{grid-template-columns:repeat(4,1fr);gap:2rem}
  .usp-item h3{font-size:1.15rem}
}

/* ---------- SECTION HEADERS ---------- */
.section-head{text-align:center;max-width:680px;margin:0 auto 3rem}
.section-head h2{
  font-size:clamp(2rem, 5vw, 3rem);
  margin:1rem 0 .75rem;
}
.section-head p{color:var(--ink-soft);font-size:1.02rem;margin:0}
.section-foot{text-align:center;margin-top:3rem}

/* ---------- PRODUCTS ---------- */
.products{padding:5rem 0}
.product-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.25rem;
}
.product-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  transition:transform .25s, box-shadow .25s;
  display:flex;flex-direction:column;
}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.product-media{
  position:relative;
  aspect-ratio:1/1;
  background:var(--cream-2);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.product-media img{
  width:75%;height:75%;
  object-fit:contain;
  transition:transform .4s ease;
}
.product-card:hover .product-media img{transform:scale(1.06)}
.badge{
  position:absolute;top:1rem;left:1rem;
  background:var(--terra);color:#fff;
  font-size:.68rem;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;
  padding:.3rem .7rem;border-radius:99px;
}
.product-body{padding:1.25rem;display:flex;flex-direction:column;gap:.5rem;flex:1}
.product-body h3{font-size:1.2rem;font-weight:600}
.product-body h3 a:hover{color:var(--terra)}
.product-body p{font-size:.88rem;color:var(--ink-soft);margin:0;flex:1}
.product-foot{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:.75rem;padding-top:.75rem;border-top:1px solid var(--line);
}
.price{font-family:var(--font-display);font-size:1.15rem;font-weight:600;color:var(--forest)}

@media (min-width:560px){.product-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}}
@media (min-width:960px){.product-grid{grid-template-columns:repeat(3,1fr);gap:2rem}}

/* ---------- STORY ---------- */
.story{
  padding:5rem 0;
  background:linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.story-inner{display:grid;gap:3rem;grid-template-columns:1fr;align-items:center}
.story-copy h2{font-size:clamp(2rem, 5vw, 3rem);margin:1rem 0 1.25rem}
.story-copy p{color:var(--ink-soft);margin-bottom:1rem;max-width:55ch}
.story-marks{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1rem;
}
.mark{
  background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:1.5rem 1rem;
  text-align:center;
}
.mark strong{
  display:block;
  font-family:var(--font-display);
  font-size:2.2rem;font-weight:600;color:var(--forest);
  line-height:1;margin-bottom:.4rem;
}
.mark span{font-size:.78rem;color:var(--ink-soft);line-height:1.3}
@media (min-width:900px){
  .story-inner{grid-template-columns:1.1fr .9fr;gap:5rem}
  .story-marks{grid-template-columns:1fr;gap:1rem}
  .mark{text-align:left;padding:1.5rem 1.75rem;display:flex;align-items:center;gap:1.5rem}
  .mark strong{font-size:2.6rem;margin:0}
  .mark span{font-size:.92rem}
}

/* ---------- WHY ---------- */
.why{padding:5rem 0;background:var(--forest-deep);color:var(--cream)}
.why .eyebrow{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.15);color:var(--gold)}
.why .section-head h2{color:var(--cream)}
.why .section-head h2 em{color:var(--gold)}
.why-grid{
  display:grid;grid-template-columns:1fr;gap:1.5rem;
}
.why-item{
  padding:2rem 1.5rem;
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  transition:background .2s, border-color .2s;
}
.why-item:hover{background:rgba(255,255,255,.06);border-color:rgba(212,162,76,.3)}
.why-num{
  font-family:var(--font-display);
  font-size:.9rem;color:var(--gold);
  letter-spacing:.1em;font-weight:600;
}
.why-item h3{font-size:1.25rem;margin:.75rem 0 .5rem;color:var(--cream)}
.why-item p{font-size:.92rem;color:rgba(245,239,227,.75);margin:0;line-height:1.6}
@media (min-width:768px){.why-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}}
@media (min-width:1100px){.why-grid{grid-template-columns:repeat(4,1fr)}}

/* ---------- FAQ ---------- */
.faq{padding:5rem 0}
.faq-inner{max-width:780px;margin:0 auto}
.faq-list{display:flex;flex-direction:column;gap:.75rem}
.faq details{
  background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:0;
  transition:border-color .2s, box-shadow .2s;
}
.faq details[open]{border-color:var(--forest);box-shadow:var(--shadow-md)}
.faq summary{
  list-style:none;cursor:pointer;
  padding:1.25rem 1.5rem;
  font-weight:600;font-size:1rem;
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";
  font-family:var(--font-display);font-size:1.5rem;font-weight:400;
  color:var(--forest);transition:transform .25s;
  flex-shrink:0;
}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq details p{
  margin:0;padding:0 1.5rem 1.25rem;
  color:var(--ink-soft);font-size:.95rem;line-height:1.65;
}

/* ---------- CTA BANNER ---------- */
.cta-banner{
  padding:4rem 0;
  background:var(--terra);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,.1), transparent 50%);
  pointer-events:none;
}
.cta-inner{
  position:relative;
  display:flex;flex-direction:column;align-items:center;gap:1.5rem;
  text-align:center;
}
.cta-inner h2{font-size:clamp(1.8rem, 4.5vw, 2.6rem);max-width:18ch}
.cta-inner h2 em{color:var(--cream);font-style:italic}
.cta-banner .btn-primary{background:#fff;color:var(--terra-deep)}
.cta-banner .btn-primary:hover{background:var(--cream)}
@media (min-width:768px){
  .cta-inner{flex-direction:row;justify-content:space-between;text-align:left}
  .cta-inner h2{margin:0}
}


/* =========================
   ABOUT PAGE
========================= */

  /* Breadcrumb */
  .breadcrumb{
    padding:1rem 0 0;
    font-size:.82rem;
    color:var(--ink-soft);
  }
  .breadcrumb a{color:var(--ink-soft)}
  .breadcrumb a:hover{color:var(--forest)}
  .breadcrumb .sep{margin:0 .4rem;opacity:.4}
  .breadcrumb [aria-current]{color:var(--forest);font-weight:500}

  /* ========= HERO ========= */
  .about-hero{
    padding:3rem 0 4rem;
    background:linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    position:relative;
  }
  .about-hero-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:2.5rem;
    align-items:center;
  }
  @media (min-width:900px){
    .about-hero-grid{grid-template-columns:1.1fr .9fr;gap:4rem}
  }
  .about-hero h1{
    font-size:clamp(2.4rem, 6vw, 4rem);
    line-height:1.05;
    font-weight:600;
    letter-spacing:-0.02em;
    margin:1.25rem 0 1.5rem;
  }
  .about-hero h1 em{
    color:var(--terra);
    font-style:italic;
    font-weight:500;
  }
  .about-hero-lede{
    font-size:1.1rem;
    color:var(--ink-soft);
    line-height:1.65;
    max-width:48ch;
    margin-bottom:2rem;
  }
  .about-hero-stats{
    display:flex;
    gap:2rem;
    flex-wrap:wrap;
    padding-top:1.5rem;
    border-top:1px solid var(--line);
  }
  .about-hero-stat strong{
    display:block;
    font-family:var(--font-display);
    font-size:1.8rem;
    color:var(--forest);
    line-height:1;
    font-weight:600;
  }
  .about-hero-stat span{
    display:block;
    font-size:.78rem;
    color:var(--ink-soft);
    margin-top:.3rem;
    letter-spacing:.04em;
  }

  /* Hero image — single editorial portrait */
  .about-hero-image{
    position:relative;
    aspect-ratio:4/5;
    background:linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid var(--line);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .about-hero-image-placeholder{
    text-align:center;
    color:var(--cream);
    padding:2rem;
  }
  .about-hero-image-placeholder svg{
    width:120px;
    height:120px;
    margin-bottom:1.5rem;
    opacity:.4;
  }
  .about-hero-image-placeholder p{
    font-family:var(--font-display);
    font-size:1rem;
    font-style:italic;
    color:rgba(245,239,227,.6);
    line-height:1.5;
    max-width:24ch;
    margin:0 auto;
  }
  .about-hero-image-overlay{
    position:absolute;
    bottom:1.5rem;left:1.5rem;right:1.5rem;
    padding:1rem 1.25rem;
    background:rgba(245,239,227,.95);
    backdrop-filter:blur(8px);
    border-radius:12px;
    z-index:2;
    font-family:var(--font-display);
    font-style:italic;
    font-size:.95rem;
    color:var(--ink);
    line-height:1.5;
  }
  .about-hero-image-overlay::before{
    content:"";
    display:inline-block;
    width:24px;height:1px;
    background:var(--terra);
    vertical-align:middle;
    margin-right:.5rem;
  }

  /* ========= SECTION SHARED ========= */
  .about-section{padding:5rem 0;border-top:1px solid var(--line)}
  .about-section h2{
    font-family:var(--font-display);
    font-size:clamp(2rem, 4.5vw, 2.8rem);
    font-weight:600;
    line-height:1.1;
    letter-spacing:-0.015em;
    margin-bottom:1.5rem;
  }
  .about-section h2 em{color:var(--terra);font-style:italic;font-weight:500}

  /* ========= STORY ========= */
  .story-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:2.5rem;
  }
  @media (min-width:900px){
    .story-grid{grid-template-columns:1fr 1.2fr;gap:5rem}
  }
  .story-text p{
    font-size:1.02rem;
    color:var(--ink-soft);
    line-height:1.75;
    margin-bottom:1.25rem;
    max-width:58ch;
  }
  .story-text .lead{
    font-family:var(--font-display);
    font-size:1.35rem;
    font-style:italic;
    color:var(--forest);
    line-height:1.5;
    margin-bottom:1.75rem;
    padding-left:1.25rem;
    border-left:2px solid var(--gold);
  }
  .story-asides{
    display:flex;
    flex-direction:column;
    gap:1rem;
  }
  .story-aside{
    background:var(--cream-2);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:1.5rem 1.75rem;
  }
  .story-aside h3{
    font-family:var(--font-display);
    font-size:1.1rem;
    font-weight:600;
    margin-bottom:.5rem;
    color:var(--forest);
  }
  .story-aside p{
    font-size:.92rem;
    color:var(--ink-soft);
    line-height:1.6;
    margin:0;
  }
  .story-aside .quote-mark{
    font-family:var(--font-display);
    font-size:2.5rem;
    color:var(--gold);
    line-height:.5;
    display:block;
    margin-bottom:.5rem;
  }

  /* ========= VALUES ========= */
  .values{background:var(--cream-2)}
  .values-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:1.25rem;
  }
  @media (min-width:700px){.values-grid{grid-template-columns:repeat(2,1fr)}}
  @media (min-width:1100px){.values-grid{grid-template-columns:repeat(4,1fr)}}
  .value-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:2rem 1.75rem;
    transition:transform .25s, box-shadow .25s;
  }
  .value-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
  .value-num{
    font-family:var(--font-display);
    font-size:.92rem;
    color:var(--terra);
    letter-spacing:.1em;
    font-weight:600;
    margin-bottom:1rem;
    display:block;
  }
  .value-card h3{
    font-family:var(--font-display);
    font-size:1.25rem;
    font-weight:600;
    margin-bottom:.6rem;
  }
  .value-card p{
    font-size:.92rem;
    color:var(--ink-soft);
    line-height:1.55;
  }

  /* ========= TIMELINE ========= */
  .timeline{
    background:var(--forest-deep);
    color:var(--cream);
  }
  .timeline h2{color:var(--cream)}
  .timeline h2 em{color:var(--gold)}
  .timeline-lede{
    color:rgba(245,239,227,.75);
    font-size:1rem;
    line-height:1.7;
    max-width:55ch;
    margin-bottom:2.5rem;
  }
  .timeline-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  @media (min-width:700px){.timeline-grid{grid-template-columns:repeat(2,1fr)}}
  @media (min-width:1100px){.timeline-grid{grid-template-columns:repeat(4,1fr)}}
  .milestone{
    position:relative;
    padding:1.75rem;
    border:1px solid rgba(255,255,255,.1);
    border-radius:var(--radius);
    background:rgba(255,255,255,.03);
  }
  .milestone-year{
    font-family:var(--font-display);
    font-size:2rem;
    color:var(--gold);
    line-height:1;
    font-weight:600;
    margin-bottom:.75rem;
    letter-spacing:-0.01em;
  }
  .milestone h3{
    font-family:var(--font-display);
    font-size:1.15rem;
    font-weight:600;
    margin-bottom:.5rem;
    color:var(--cream);
  }
  .milestone p{
    font-size:.9rem;
    color:rgba(245,239,227,.7);
    line-height:1.55;
  }

  /* ========= TEAM ========= */
  .team-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:1.5rem;
    margin-top:2rem;
  }
  @media (min-width:700px){.team-grid{grid-template-columns:repeat(3,1fr)}}
  .team-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
    text-align:center;
  }
  .team-photo{
    aspect-ratio:4/5;
    background:linear-gradient(135deg, var(--cream-2) 0%, var(--cream) 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
  }
  .team-photo-placeholder{
    font-family:var(--font-display);
    font-size:4rem;
    color:var(--gold);
    opacity:.5;
    font-weight:600;
  }
  .team-info{padding:1.5rem 1.25rem}
  .team-info h3{
    font-family:var(--font-display);
    font-size:1.2rem;
    font-weight:600;
    margin-bottom:.25rem;
  }
  .team-role{
    font-size:.78rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--terra);
    font-weight:600;
    margin-bottom:1rem;
    display:block;
  }
  .team-info p{
    font-size:.88rem;
    color:var(--ink-soft);
    line-height:1.5;
  }

  /* ========= FARM LOCATION ========= */
  .farm-location{background:var(--cream-2)}
  .farm-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:2.5rem;
    align-items:center;
  }
  @media (min-width:900px){
    .farm-grid{grid-template-columns:1fr 1fr;gap:4rem}
  }
  .farm-text p{
    font-size:1rem;
    color:var(--ink-soft);
    line-height:1.7;
    margin-bottom:1rem;
    max-width:48ch;
  }
  .farm-address{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:1.5rem 1.75rem;
    margin:1.5rem 0;
  }
  .farm-address-label{
    font-size:.72rem;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:var(--terra);
    font-weight:700;
    margin-bottom:.5rem;
    display:block;
  }
  .farm-address-text{
    font-family:var(--font-display);
    font-size:1.1rem;
    color:var(--ink);
    line-height:1.5;
    margin:0;
  }
  .farm-map{
    aspect-ratio:4/3;
    background:linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid var(--line);
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:var(--shadow-lg);
  }
  .farm-map-illustration{
    position:absolute;
    inset:0;
    background-image:
      radial-gradient(circle at 30% 40%, rgba(212,162,76,.15) 0%, transparent 30%),
      radial-gradient(circle at 70% 65%, rgba(212,162,76,.10) 0%, transparent 35%);
  }
  .farm-map-illustration::before{
    content:"";
    position:absolute;
    top:50%;left:50%;
    transform:translate(-50%, -50%);
    width:24px;height:24px;
    border-radius:50%;
    background:var(--terra);
    box-shadow:
      0 0 0 6px rgba(198,106,61,.25),
      0 0 0 14px rgba(198,106,61,.12),
      0 0 0 28px rgba(198,106,61,.05);
  }
  .farm-map-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:var(--cream);
    padding:2rem;
  }
  .farm-map-content h3{
    font-family:var(--font-display);
    font-size:1.5rem;
    color:var(--gold);
    margin-bottom:.5rem;
    font-weight:600;
  }
  .farm-map-content p{
    color:rgba(245,239,227,.8);
    font-size:.95rem;
    margin-bottom:1.5rem;
    line-height:1.5;
  }
  .farm-map-cta{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.85rem 1.4rem;
    background:var(--cream);
    color:var(--forest-deep);
    border-radius:99px;
    font-weight:600;
    font-size:.9rem;
    text-decoration:none;
    transition:transform .15s;
  }
  .farm-map-cta:hover{transform:translateY(-2px)}
  .farm-map-cta svg{width:16px;height:16px}

  /* ========= CTA ========= */
  .about-cta{
    background:var(--terra);
    color:#fff;
    text-align:center;
    padding:5rem 0;
  }
  .about-cta h2{
    color:#fff;
    margin-bottom:1rem;
    font-size:clamp(1.8rem, 4vw, 2.4rem);
  }
  .about-cta h2 em{color:var(--cream);font-style:italic}
  .about-cta p{
    font-size:1.05rem;
    color:rgba(255,255,255,.85);
    margin-bottom:2rem;
    max-width:48ch;
    margin-left:auto;
    margin-right:auto;
  }
  .about-cta-buttons{
    display:flex;
    gap:.75rem;
    justify-content:center;
    flex-wrap:wrap;
  }
  .about-cta .btn{
    padding:1rem 1.75rem;
    font-size:1rem;
  }
  .about-cta .btn-primary{
    background:#fff;
    color:var(--terra-deep);
  }
  .about-cta .btn-primary:hover{background:var(--cream)}
  .about-cta .btn-ghost{
    background:transparent;
    color:#fff;
    border:1.5px solid #fff;
  }
  .about-cta .btn-ghost:hover{background:#fff;color:var(--terra-deep)}

















/* ---------- FOOTER ---------- */
.site-footer{
  background:var(--forest-deep);color:var(--cream);
  padding:4rem 0 1.5rem;
}
.footer-grid{
  display:grid;grid-template-columns:1fr;gap:2.5rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand img{margin-bottom:1rem;background:#fff;padding:.4rem;border-radius:8px}
.footer-brand p{color:rgba(245,239,227,.7);font-size:.92rem;max-width:32ch;margin:0}
.footer-brand-fallback{background:var(--cream)!important;color:var(--forest)!important;margin-bottom:1rem}
.site-footer h4{
  font-family:var(--font-body);font-size:.78rem;letter-spacing:.15em;
  text-transform:uppercase;color:var(--gold);font-weight:600;
  margin-bottom:1rem;
}
.site-footer ul{display:flex;flex-direction:column;gap:.6rem}
.site-footer li,.site-footer a{font-size:.92rem;color:rgba(245,239,227,.8)}
.site-footer a:hover{color:var(--gold)}
.footer-bottom{
  display:flex;flex-direction:column;gap:.5rem;
  padding-top:1.5rem;
  font-size:.8rem;color:rgba(245,239,227,.55);
}
@media (min-width:768px){
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr}
  .footer-bottom{flex-direction:row;justify-content:space-between}
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  .announcement-track{animation:none}
}

/* ---------- PRINT (clean) ---------- */
@media print{
  .announcement,.site-header,.cta-banner,.site-footer{display:none}
  body{background:#fff;color:#000}
}




