:root{
  --forest:        #2C4A3E;
  --forest-deep:   #1F3530;
  --moss:          #6B8A6A;
  --sage:          #B8C9A8;
  --cream:         #FAF6EE;
  --cream-warm:    #F2EADB;
  --bark:          #1F2A24;
  --bark-soft:     #4A554F;
  --sunrise:       #E97A3B;
  --sunrise-deep:  #C9601F;
  --sun:           #F4C26B;
  --terracotta:    #D96E2C;

  --r-sm: 12px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-pill: 999px;

  --shadow-soft: 0 4px 24px -8px rgba(31,42,36,.10), 0 1px 2px rgba(31,42,36,.05);
  --shadow-lift: 0 18px 40px -22px rgba(31,42,36,.25), 0 2px 6px rgba(31,42,36,.06);

  --ease: cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size:17px;
  line-height:1.65;
  color:var(--bark);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; border:0; background:none; }
input{ font:inherit; }

h1,h2,h3,h4{
  font-family:'Fraunces', Georgia, serif;
  font-weight:600;
  font-variation-settings:"SOFT" 80, "opsz" 144;
  letter-spacing:-.02em;
  line-height:1.08;
  color:var(--forest-deep);
  margin:0;
}
h1{ font-size:clamp(2.4rem, 5.4vw, 4.4rem); font-weight:700; }
h2{ font-size:clamp(2rem, 4vw, 3.2rem); }
h3{ font-size:clamp(1.2rem, 2vw, 1.5rem); font-weight:600; }
em{ font-style:italic; color:var(--sunrise-deep); font-weight:500; }

.eyebrow{
  display:inline-block;
  font-family:'Inter', sans-serif;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--sunrise);
  margin-bottom:1.1rem;
}
.eyebrow--dark{ color:var(--moss); }

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

.btn{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.95rem 1.6rem;
  border-radius:var(--r-pill);
  font-weight:600;
  font-size:.95rem;
  letter-spacing:-.005em;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease),
             background .2s var(--ease), color .2s var(--ease);
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn:focus-visible{ outline:3px solid var(--sun); outline-offset:3px; }

.btn--forest{ background:var(--forest); color:var(--cream); box-shadow:var(--shadow-soft); }
.btn--forest:hover{ background:var(--forest-deep); box-shadow:var(--shadow-lift); }

.btn--sun{ background:var(--sunrise); color:#fff; box-shadow:0 8px 22px -10px rgba(233,122,59,.55); }
.btn--sun:hover{ background:var(--sunrise-deep); }

.btn--earth{ background:var(--bark); color:var(--cream); }
.btn--earth:hover{ background:#000; }

.btn--ghost{
  background:transparent; color:var(--forest-deep);
  box-shadow:inset 0 0 0 1.5px var(--forest);
}
.btn--ghost:hover{ background:var(--forest); color:var(--cream); box-shadow:none; }

.btn--block{ width:100%; justify-content:center; }

.nav{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  gap:1.5rem;
  padding:1rem clamp(1.2rem, 4vw, 3rem);
  background:rgba(250,246,238,.85);
  backdrop-filter:saturate(160%) blur(14px);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid rgba(44,74,62,.08);
}
.nav__brand{
  display:flex; align-items:center; gap:.6rem;
  color:var(--forest);
}
.logo-mark{
  display:grid; place-items:center;
  width:36px; height:36px; border-radius:50%;
  background:var(--cream-warm);
  color:var(--forest);
}
.logo-mark svg{ width:22px; height:22px; }
.logo-mark--lg{ width:46px; height:46px; }
.logo-mark--lg svg{ width:28px; height:28px; }
.logo-word{
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:1.55rem;
  letter-spacing:-.02em;
  color:var(--forest-deep);
}
.nav__links{
  display:flex; gap:2.2rem;
  font-size:.95rem; font-weight:500;
  color:var(--bark-soft);
}
.nav__links a{ position:relative; padding:.25rem 0; transition:color .2s; }
.nav__links a:hover{ color:var(--forest-deep); }
.nav__links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px;
  height:2px; background:var(--sunrise); border-radius:2px;
  transform:scaleX(0); transform-origin:center;
  transition:transform .3s var(--ease);
}
.nav__links a:hover::after{ transform:scaleX(1); }

@media (max-width: 820px){
  .nav__links{ display:none; }
}


/* HERO with tree animation */
.hero{
  position:relative; overflow:hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.2rem, 4vw, 3rem) clamp(7rem, 11vw, 10rem);
  background:
    radial-gradient(80% 50% at 0% 100%, rgba(184,201,168,.30), transparent 60%),
    var(--cream-warm);
}
.hero__inner{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:clamp(2rem, 4vw, 4rem);
  align-items:center;
  position:relative;
}
.hero__copy{ max-width:560px; }
.hero__title{ margin-top:.5rem; }
.hero__lede{
  font-size:clamp(1.05rem, 1.4vw, 1.18rem);
  color:var(--bark-soft);
  margin:1.4rem 0 2rem;
}
.hero__cta{ display:flex; gap:.85rem; flex-wrap:wrap; }
.hero__chips{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:2.2rem; }
.chip{
  font-size:.8rem; font-weight:600; color:var(--forest-deep);
  background:rgba(255,255,255,.65);
  border:1px solid rgba(44,74,62,.15);
  padding:.45rem .85rem;
  border-radius:var(--r-pill);
}

.hero__scene{
  position:relative;
  aspect-ratio: 400 / 520;
  max-width:480px;
  justify-self:end;
  width:100%;
}
.tree{ width:100%; height:100%; overflow:visible; }

@media (max-width: 880px){
  .hero__inner{ grid-template-columns:1fr; }
  .hero__scene{ order:-1; max-width:340px; margin:0 auto; }
}

.hero__hill{
  position:absolute; left:0; right:0; bottom:-1px;
  width:100%; height:120px;
}


/* tree growth animation
   timeline:
     0.0s — sun fades in, hills appear
     0.4s — seedling sprouts from soil
     2.0s — seedling fades out
     2.0s — trunk grows from ground (scaleY from base)
     4.0s — branches extend, staggered
     4.8s — canopy of leaves bloom in
     6.0s — fruits ripen
     7.0s — gentle sway begins, petals drift
*/

.tree__sun{
  transform-origin: 320px 120px;
  opacity:0;
  animation: sunIn 2.4s var(--ease) forwards;
}
@keyframes sunIn{
  0%   { opacity:0; transform:scale(.3); }
  100% { opacity:.9; transform:scale(1); }
}

.tree__hills path{
  opacity:0;
  animation: hillIn 1.6s ease forwards;
}
.tree__hills path:nth-child(1){ animation-delay:.1s; }
.tree__hills path:nth-child(2){ animation-delay:.4s; }
@keyframes hillIn{ to{ opacity:.7; } }

.tree__shadow{
  opacity:0;
  animation: shadowIn 1s ease forwards 2.4s;
}
@keyframes shadowIn{ to{ opacity:.18; } }

/* seedling sprouts first */
.tree__seed{
  opacity:0;
  animation: seedIn .9s var(--ease) forwards .4s,
             seedOut .8s ease forwards 2.0s;
}
@keyframes seedIn{
  0%   { opacity:0; transform: translateY(8px); }
  100% { opacity:1; transform: translateY(0); }
}
@keyframes seedOut{
  to{ opacity:0; }
}
.seed__leaf{
  transform-origin: 200px 510px;
  transform: scale(0);
  animation: leafUnfurl .7s var(--ease) forwards;
}
.seed__leaf--l{ animation-delay:.8s; }
.seed__leaf--r{ animation-delay:.95s; }
@keyframes leafUnfurl{ to{ transform: scale(1); } }

/* TRUNK grows upward from the ground */
.trunk-group{
  transform-origin: 200px 514px;
  transform: scaleY(0);
  animation: trunkGrow 2.6s cubic-bezier(.25,.8,.3,1) forwards 1.8s;
}
@keyframes trunkGrow{
  0%   { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

/* root flares appear once trunk is grown */
.trunk-root{
  transform-origin: center;
  transform: scaleX(0);
  animation: rootSpread .7s var(--ease) forwards;
}
.tr1{ animation-delay: 3.4s; }
.tr2{ animation-delay: 3.5s; }
@keyframes rootSpread{ to{ transform: scaleX(1); } }

/* branches extend with stroke-dasharray reveal */
.branch{
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: drawLine 1s var(--ease) forwards;
}
.branch--1{ animation-delay: 3.8s; }
.branch--2{ animation-delay: 3.9s; }
.branch--3{ animation-delay: 4.2s; }
.branch--4{ animation-delay: 4.3s; }
.branch--5{ animation-delay: 4.5s; }
.branch--6{ animation-delay: 4.55s; }
@keyframes drawLine{ to{ stroke-dashoffset:0; } }

/* canopy bloom */
.canopy-glow{
  opacity:0;
  animation: fadeIn 1.2s ease forwards 4.6s;
}
@keyframes fadeIn{ to{ opacity:1; } }

.leaf{
  transform-origin: center;
  transform: scale(0);
  animation: popIn .8s var(--ease) forwards;
}
.l1 { animation-delay: 4.7s; }
.l2 { animation-delay: 4.85s; }
.l3 { animation-delay: 4.85s; }
.l4 { animation-delay: 5.0s; }
.l5 { animation-delay: 5.0s; }
.l6 { animation-delay: 5.15s; }
.l7 { animation-delay: 5.15s; }
.l8 { animation-delay: 5.3s; }
.l9 { animation-delay: 5.3s; }
.l10{ animation-delay: 5.45s; }
.l11{ animation-delay: 5.45s; }
.l12{ animation-delay: 5.6s; }
.l13{ animation-delay: 5.6s; }

@keyframes popIn{
  0%   { transform: scale(0); }
  60%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.fruit{
  transform-origin: center;
  transform: scale(0);
  animation: popIn .6s var(--ease) forwards;
}
.f1{ animation-delay: 6.0s; }
.f2{ animation-delay: 6.15s; }
.f3{ animation-delay: 6.3s; }
.f4{ animation-delay: 6.45s; }
.f5{ animation-delay: 6.6s; }
.f6{ animation-delay: 6.75s; }

/* gentle sway after blooming */
.canopy{
  transform-origin: 200px 280px;
  animation: sway 7s ease-in-out infinite alternate 7s;
}
.branches{
  transform-origin: 200px 380px;
  animation: sway 7s ease-in-out infinite alternate 7s;
}
@keyframes sway{
  0%  { transform: rotate(-1.2deg); }
  100%{ transform: rotate(1.2deg); }
}

/* petals drift away */
.petal{
  opacity:0;
  animation: drift 8s ease-in-out infinite;
}
.p1{ animation-delay: 7s; }
.p2{ animation-delay: 8.5s; }
.p3{ animation-delay: 9s; }
.p4{ animation-delay: 10.5s; }

@keyframes drift{
  0%   { opacity:0; transform: translate(0,0); }
  25%  { opacity:.9; }
  100% { opacity:0; transform: translate(-35px, -70px); }
}


/* MISSION */
.mission{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap:clamp(2rem, 5vw, 5rem);
  align-items:center;
  max-width:1180px;
  margin:0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
}
.mission__art{ position:relative; }
.mission__art svg{
  width:100%;
  max-width:380px;
  animation:gentleFloat 8s ease-in-out infinite;
}
@keyframes gentleFloat{
  0%,100%{ transform:translateY(0); }
  50%   { transform:translateY(-10px); }
}
.mission__copy h2{ margin-bottom:1.2rem; }
.mission__copy p{
  color:var(--bark-soft);
  font-size:1.08rem;
  margin:0 0 1.8rem;
  max-width:36em;
}
.values{
  list-style:none; padding:0; margin:0;
  display:flex; gap:.55rem; flex-wrap:wrap;
}
.values li{
  background:var(--cream-warm);
  color:var(--forest-deep);
  padding:.55rem 1.05rem;
  border-radius:var(--r-pill);
  font-size:.9rem; font-weight:600;
  border:1px solid rgba(44,74,62,.08);
}

@media (max-width: 820px){
  .mission{ grid-template-columns:1fr; }
  .mission__art{ order:2; margin-inline:auto; }
}


/* PILLARS */
.pillars{
  background:var(--forest);
  color:var(--cream);
  padding:clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
  position:relative;
  overflow:hidden;
  border-radius:var(--r-lg) var(--r-lg) 0 0;
}
.pillars::before{
  content:''; position:absolute; inset:auto -20% -40% -20%;
  height:60%;
  background:radial-gradient(ellipse at center, rgba(244,194,107,.12), transparent 60%);
  pointer-events:none;
}
.pillars__head{
  max-width:760px;
  margin:0 auto 3rem;
  text-align:center;
}
.pillars__head h2{ color:var(--cream); }
.pillars__head .eyebrow--dark{ color:var(--sun); }
.pillars__head p{ color:rgba(250,246,238,.78); font-size:1.08rem; }

.pillars__grid{
  max-width:1180px; margin:0 auto;
  display:grid; gap:1.4rem;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
}
.pillar{
  position:relative;
  padding:2.4rem 2rem;
  background:rgba(250,246,238,.05);
  border:1px solid rgba(250,246,238,.12);
  border-radius:var(--r-md);
  backdrop-filter:blur(8px);
  transition:transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.pillar:hover{
  transform:translateY(-6px);
  background:rgba(250,246,238,.09);
  border-color:rgba(244,194,107,.4);
}
.pillar__icon{
  width:58px; height:58px;
  border-radius:18px;
  display:grid; place-items:center;
  margin-bottom:1.3rem;
}
.pillar__icon svg{ width:32px; height:32px; }
.pillar--leaf .pillar__icon{ background:rgba(184,201,168,.18); color:var(--sage); }
.pillar--sun  .pillar__icon{ background:rgba(244,194,107,.15); color:var(--sun); }
.pillar--earth .pillar__icon{ background:rgba(233,122,59,.15); color:var(--sunrise); }

.pillar h3{ color:var(--cream); margin-bottom:.7rem; }
.pillar p{
  color:rgba(250,246,238,.78);
  margin:0 0 1.5rem;
  font-size:.98rem;
}
.pillar__link{
  font-weight:600; font-size:.92rem;
  color:var(--sun);
  border-bottom:1px solid transparent;
  transition:border-color .2s;
}
.pillar__link:hover{ border-color:var(--sun); }


/* STORIES */
.stories{
  background:var(--forest);
  color:var(--cream);
  padding:0 clamp(1.2rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem);
}
.stories__head{
  max-width:1180px; margin:0 auto 2.4rem;
}
.stories__head h2{ color:var(--cream); }
.stories__head .eyebrow{ color:var(--sun); }

.stories__grid{
  max-width:1180px; margin:0 auto;
  display:grid; gap:1.4rem;
  grid-template-columns:repeat(12, 1fr);
}
.story{
  margin:0;
  padding:2.2rem;
  border-radius:var(--r-md);
  background:var(--cream);
  color:var(--bark);
  display:flex; flex-direction:column; justify-content:space-between;
  min-height:240px;
}
.story--quote{ grid-column:span 5; background:var(--cream); }
.story--stat { grid-column:span 3; background:var(--sun); color:var(--forest-deep); }
.story--image{ grid-column:span 4; padding:0; overflow:hidden; }
.story--light{ grid-column:span 7; background:var(--cream-warm); }

.story blockquote{
  margin:0;
  font-family:'Fraunces', serif;
  font-size:clamp(1.15rem, 1.7vw, 1.45rem);
  line-height:1.35;
  font-weight:500;
  color:var(--forest-deep);
}
.story figcaption{
  margin-top:1.6rem;
  display:flex; flex-direction:column;
  font-size:.9rem;
  color:var(--bark-soft);
}
.story figcaption strong{
  color:var(--forest-deep); font-weight:700; font-size:1rem;
}
.story--stat .story__big{
  font-family:'Fraunces', serif;
  font-size:clamp(4rem, 7vw, 6rem);
  font-weight:700;
  line-height:1;
  color:var(--forest-deep);
}
.story--stat p{
  margin:.5rem 0 0;
  font-size:.95rem;
  color:var(--forest-deep);
  font-weight:500;
}
.story--image svg{ width:100%; height:100%; }

@media (max-width: 900px){
  .story--quote, .story--stat, .story--image, .story--light{ grid-column:span 12; }
}


/* IMPACT */
.impact{
  background:var(--cream-warm);
  padding:clamp(2rem, 4vw, 3rem) clamp(1.2rem, 4vw, 3rem);
  border-bottom:1px solid rgba(44,74,62,.08);
}
.impact ul{
  max-width:1180px; margin:0 auto; padding:0;
  list-style:none;
  display:grid; gap:1.2rem;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  text-align:center;
}
.impact li{
  display:flex; flex-direction:column; gap:.3rem;
  padding:1rem;
}
.impact__num{
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:clamp(2.2rem, 3.5vw, 3rem);
  color:var(--sunrise-deep);
  line-height:1;
}
.impact__label{
  font-size:.88rem;
  color:var(--bark-soft);
  max-width:22ch;
  margin-inline:auto;
}


/* EVENTS */
.events{
  max-width:1180px;
  margin:0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
}
.events__head{
  max-width:560px;
  margin-bottom:2.6rem;
}
.events__head p{ color:var(--bark-soft); margin-top:.8rem; }
.events__grid{
  display:grid; gap:1.2rem;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
}
.event-card{
  display:flex; gap:1.4rem;
  padding:1.8rem;
  background:#fff;
  border:1px solid rgba(44,74,62,.08);
  border-radius:var(--r-md);
  box-shadow:var(--shadow-soft);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.event-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lift);
}
.event-card__date{
  flex-shrink:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  width:64px; height:74px;
  background:var(--cream-warm);
  border-radius:var(--r-sm);
  color:var(--forest-deep);
}
.event-card__date span{
  font-size:.7rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--sunrise-deep);
}
.event-card__date strong{
  font-family:'Fraunces', serif;
  font-size:1.8rem; font-weight:700; line-height:1;
}
.event-card__body h3{ margin-bottom:.3rem; }
.event-card__body p{
  margin:0 0 .9rem;
  font-size:.92rem;
  color:var(--bark-soft);
}
.tag{
  display:inline-block;
  font-size:.72rem; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase;
  padding:.3rem .7rem;
  border-radius:var(--r-pill);
}
.tag--sun  { background:rgba(244,194,107,.25); color:var(--sunrise-deep); }
.tag--leaf { background:rgba(184,201,168,.4); color:var(--forest-deep); }
.tag--earth{ background:rgba(31,42,36,.08); color:var(--bark); }


/* SUPPORT */
.support{
  position:relative;
  overflow:hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
  background:
    radial-gradient(80% 60% at 100% 100%, rgba(184,201,168,.4), transparent 65%),
    radial-gradient(60% 60% at 0% 0%, rgba(244,194,107,.25), transparent 70%),
    var(--cream);
}
.support__shape{
  position:absolute; bottom:-180px; left:-180px;
  width:520px; height:520px;
  background:var(--sage);
  border-radius:48% 52% 70% 30% / 50% 40% 60% 50%;
  opacity:.35;
  animation:morph 14s ease-in-out infinite alternate;
}
@keyframes morph{
  to{ border-radius:60% 40% 35% 65% / 40% 60% 40% 60%; transform:rotate(20deg); }
}
.support__inner{
  position:relative;
  max-width:1180px;
  margin:0 auto;
}
.support__inner > h2{ margin-bottom:3rem; max-width:16ch; }
.support__cards{
  display:grid; gap:1.4rem;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
}
.support-card{
  padding:2.4rem;
  background:#fff;
  border-radius:var(--r-md);
  border:1px solid rgba(44,74,62,.08);
  box-shadow:var(--shadow-soft);
  display:flex; flex-direction:column; gap:.9rem;
  transition:transform .3s var(--ease);
}
.support-card:hover{ transform:translateY(-4px); }
.support-card h3{ margin-bottom:.2rem; }
.support-card p{
  color:var(--bark-soft);
  font-size:.96rem;
  margin:0 0 .6rem;
}
.support-card .btn{ margin-top:auto; }

.support-card--center{
  background:var(--forest);
  color:#FFFFFF;
  transform:translateY(-12px);
  box-shadow:var(--shadow-lift);
}
.support-card--center h3{ color:#FFFFFF; }
.support-card--center p{ color:#FAF6EE; opacity:1; }


/* NEWSLETTER */
.newsletter{
  background:var(--cream-warm);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 4vw, 3rem);
}
.newsletter__inner{
  max-width:1180px; margin:0 auto;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:3rem;
  align-items:center;
}
.newsletter__inner p{
  color:var(--bark-soft); margin-top:.6rem;
  max-width:36ch;
}
.newsletter__form{
  display:flex; gap:.6rem; flex-wrap:wrap;
  position:relative;
}
.newsletter__form input{
  flex:1; min-width:220px;
  padding:1rem 1.3rem;
  background:#fff;
  border:1.5px solid rgba(44,74,62,.18);
  border-radius:var(--r-pill);
  font-size:1rem;
  color:var(--bark);
  transition:border-color .2s, box-shadow .2s;
}
.newsletter__form input:focus{
  outline:none;
  border-color:var(--forest);
  box-shadow:0 0 0 4px rgba(44,74,62,.12);
}
.newsletter__ok{
  flex-basis:100%;
  margin-top:.5rem;
  color:var(--forest-deep);
  font-weight:600; font-size:.9rem;
}
@media (max-width: 820px){
  .newsletter__inner{ grid-template-columns:1fr; }
}


/* FOOTER */
.foot{
  background:var(--forest-deep);
  color:var(--cream);
  padding: clamp(3rem, 5vw, 4rem) clamp(1.2rem, 4vw, 3rem) 2rem;
}
.foot__top{
  max-width:1180px; margin:0 auto;
  display:grid; gap:3rem;
  grid-template-columns: 1.1fr 2fr;
  padding-bottom:2.5rem;
  border-bottom:1px solid rgba(250,246,238,.12);
}
.foot__brand .logo-mark{ background:rgba(250,246,238,.08); color:var(--sun); }
.foot__tag{
  font-family:'Fraunces', serif;
  font-size:1.2rem;
  line-height:1.35;
  margin-top:1rem;
  max-width:28ch;
  color:var(--cream);
}
.foot__cols{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2rem;
}
.foot__cols h4{
  font-family:'Inter', sans-serif;
  color:var(--sun);
  font-size:.78rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  margin-bottom:1rem;
}
.foot__cols a{
  display:block;
  padding:.35rem 0;
  font-size:.95rem;
  color:rgba(250,246,238,.75);
  transition:color .2s;
}
.foot__cols a:hover{ color:var(--sun); }

.foot__hash{
  max-width:1180px; margin:2rem auto;
  display:flex; flex-wrap:wrap; gap:.5rem;
}
.foot__hash span{
  font-size:.78rem; font-weight:500;
  padding:.4rem .8rem;
  background:rgba(250,246,238,.06);
  border:1px solid rgba(250,246,238,.10);
  border-radius:var(--r-pill);
  color:rgba(250,246,238,.7);
}

.foot__base{
  max-width:1180px; margin:0 auto;
  padding-top:1.5rem;
  border-top:1px solid rgba(250,246,238,.10);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem;
  font-size:.82rem;
  color:rgba(250,246,238,.55);
}

@media (max-width: 820px){
  .foot__top{ grid-template-columns:1fr; gap:2rem; }
  .foot__cols{ grid-template-columns:repeat(2, 1fr); }
}


@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
  .branch{ stroke-dashoffset:0 !important; }
  .leaf, .fruit, .seed__leaf{ transform: scale(1) !important; }
  .trunk-group{ transform: scaleY(1) !important; }
  .trunk-root{ transform: scaleX(1) !important; }
  .tree__seed{ opacity:0 !important; }
  .tree__sun{ opacity:.9 !important; transform: scale(1) !important; }
  .tree__shadow{ opacity:.18 !important; }
  .canopy-glow{ opacity:1 !important; }
}
