/* ============================================================
   TOKENS
   ============================================================ */
:root{
  --ivory: #FBF8F1;
  --cream: #F2EBDB;
  --sage: #90A17E;
  --sage-deep: #5E6E4F;
  --forest: #24301F;
  --forest-soft: #3C4A34;
  --beige: #DFCDA6;
  --terracotta: #B8724C;
  --line: rgba(36,48,31,0.12);
  --paper: #FFFEFB;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 92px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}
body{
  margin:0;
  background:var(--ivory);
  color:var(--forest);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--serif); font-weight:500; margin:0; color:var(--forest); }
p{ margin:0; }
:focus-visible{ outline:2px solid var(--terracotta); outline-offset:3px; border-radius:2px; }

.wrap{ max-width:1280px; margin:0 auto; padding:0 6vw; }
@media (max-width:768px){ .wrap{ padding:0 24px; } }

.eyebrow{
  font-family:var(--sans); font-weight:700; font-size:12.5px; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--sage-deep);
}
.eyebrow::before{ content:"— "; }

section{ position:relative; }

/* ============================================================
   SCROLL PROGRESS — "growing stem" signature element
   ============================================================ */
.stem-progress{
  position:fixed; top:0; left:0; width:100%; height:3px; z-index:1000;
  background:transparent; pointer-events:none;
}
.stem-progress__fill{
  height:100%; width:0%;
  background:linear-gradient(90deg, var(--sage-deep), var(--terracotta));
  transform-origin:left; transition:width 0.08s linear;
}

/* ============================================================
   REVEAL ANIMATION UTILITIES
   ============================================================ */
.reveal{
  opacity:0; transform:translateY(28px);
  transition:opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-mask{ overflow:hidden; }
.reveal-mask > *{
  transform:translateY(105%);
  transition:transform 1s var(--ease);
}
.reveal-mask.is-visible > *{ transform:translateY(0); }
.stagger > *{ transition-delay:calc(var(--i,0) * 100ms); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; width:100%; z-index:900;
  height:var(--nav-h);
  display:flex; align-items:center;
  background:transparent;
  transition:height 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.nav.scrolled{
  height:68px;
  background:rgba(251,248,241,0.78);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 1px 0 var(--line);
}
.nav__inner{ width:100%; display:flex; align-items:center; justify-content:space-between; }
.nav__brand{ display:flex; flex-direction:column; line-height:1.1; }
.nav__brand-name{ font-family:var(--serif); font-size:24px; font-weight:600; letter-spacing:0.01em; }
.nav__brand-sub{ font-size:10.5px; letter-spacing:0.16em; text-transform:uppercase; color:var(--sage-deep); font-weight:600; margin-top:3px; }
.nav__links{ display:flex; align-items:center; gap:40px; }
.nav__links a{
  position:relative; font-size:14.5px; font-weight:600; color:var(--forest-soft);
  padding:6px 0;
}
.nav__links a::after{
  content:""; position:absolute; left:0; bottom:0; height:1.5px; width:0%;
  background:var(--terracotta); transition:width 0.4s var(--ease);
}
.nav__links a:hover::after{ width:100%; }
.nav__cta{
  font-size:13.5px; font-weight:700; letter-spacing:0.02em;
  padding:12px 24px; border-radius:100px;
  background:var(--forest); color:var(--ivory);
  border:1px solid var(--forest);
  transition:background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
  display:inline-block;
}
.nav__cta:hover{ background:transparent; color:var(--forest); transform:translateY(-2px); }
.nav__toggle{ display:none; background:none; border:none; width:32px; height:22px; position:relative; }
.nav__toggle span{ position:absolute; left:0; width:100%; height:2px; background:var(--forest); transition:transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.nav__toggle span:nth-child(1){ top:0; }
.nav__toggle span:nth-child(2){ top:10px; }
.nav__toggle span:nth-child(3){ top:20px; }
.nav__toggle.open span:nth-child(1){ transform:translateY(10px) rotate(45deg); }
.nav__toggle.open span:nth-child(2){ opacity:0; }
.nav__toggle.open span:nth-child(3){ transform:translateY(-10px) rotate(-45deg); }

.nav__mobile{
  position:fixed; top:0; right:0; height:100%; width:min(78vw,340px);
  background:var(--paper); z-index:950; padding:100px 32px 40px;
  transform:translateX(100%); transition:transform 0.5s var(--ease);
  box-shadow:-8px 0 30px rgba(36,48,31,0.08);
  display:flex; flex-direction:column; gap:26px;
}
.nav__mobile.open{ transform:translateX(0); }
.nav__mobile a{ font-family:var(--serif); font-size:26px; }
.nav__mobile .nav__cta{ align-self:flex-start; margin-top:12px; }
.nav__scrim{
  position:fixed; inset:0; background:rgba(36,48,31,0.35); z-index:940;
  opacity:0; pointer-events:none; transition:opacity 0.5s var(--ease);
}
.nav__scrim.open{ opacity:1; pointer-events:auto; }

@media (max-width:860px){
  .nav__links, .nav__cta.desktop-only{ display:none; }
  .nav__toggle{ display:block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  padding:calc(var(--nav-h) + 64px) 0 100px;
  position:relative;
  overflow:hidden;
}
.hero__blob{
  position:absolute; border-radius:50%; z-index:0; filter:blur(0px);
  background:var(--cream);
}
.hero__blob--1{ width:520px; height:560px; top:-120px; right:-140px; background:var(--cream); border-radius:44% 56% 62% 38% / 48% 42% 58% 52%; }
.hero__blob--2{ width:260px; height:260px; bottom:-60px; right:18%; background:var(--beige); opacity:0.55; border-radius:38% 62% 50% 50% / 55% 45% 55% 45%; }
.hero__grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center;
}
.hero__eyebrow{ margin-bottom:22px; }
.hero__title{
  font-size:clamp(40px,4.6vw,66px); line-height:1.06; letter-spacing:-0.01em;
  max-width:11.5em;
}
.hero__title em{ font-style:italic; color:var(--sage-deep); }
.hero__copy{
  margin-top:26px; font-size:18px; line-height:1.7; color:var(--forest-soft);
  max-width:46ch;
}
.hero__ctas{ margin-top:38px; display:flex; gap:18px; flex-wrap:wrap; align-items:center; }
.btn{
  position:relative; overflow:hidden;
  padding:16px 32px; border-radius:100px; font-size:14.5px; font-weight:700;
  letter-spacing:0.01em; transition:transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display:inline-flex; align-items:center; gap:10px;
}
.btn--solid{ background:var(--forest); color:var(--ivory); }
.btn--solid:hover{ transform:translateY(-3px); box-shadow:0 14px 28px -12px rgba(36,48,31,0.45); }
.btn--ghost{ background:transparent; color:var(--forest); border:1.5px solid var(--line); }
.btn--ghost:hover{ border-color:var(--forest); transform:translateY(-3px); }
.btn .arrow{ transition:transform 0.4s var(--ease); }
.btn:hover .arrow{ transform:translateX(5px); }

.hero__trustline{
  margin-top:56px; display:flex; align-items:center; gap:18px; flex-wrap:wrap;
  font-size:13px; font-weight:600; color:var(--sage-deep); text-transform:uppercase; letter-spacing:0.06em;
}
.hero__trustline .dot{ width:4px; height:4px; border-radius:50%; background:var(--beige); }

.hero__portrait{ position:relative; }
.hero__portrait-frame{
  position:relative; border-radius:38% 62% 58% 42% / 46% 40% 60% 54%;
  overflow:hidden; aspect-ratio:4/5; background:var(--cream);
  clip-path:polygon(0 0,100% 0,100% 100%,0 100%);
}
.hero__portrait-frame img{ width:100%; height:100%; object-fit:cover; }
.hero__portrait-caption{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:8px; color:var(--sage-deep); text-align:center; padding:20px;
  background:linear-gradient(180deg, rgba(242,235,219,0.2), rgba(242,235,219,0.55));
}
.hero__portrait-caption span:first-child{ font-family:var(--serif); font-style:italic; font-size:22px; }
.hero__portrait-caption span:last-child{ font-size:11px; letter-spacing:0.14em; text-transform:uppercase; font-weight:700; }

.hero__label{
  position:absolute; background:var(--paper); border:1px solid var(--line);
  border-radius:100px; padding:10px 18px; font-size:12.5px; font-weight:700;
  box-shadow:0 10px 24px -14px rgba(36,48,31,0.3);
  display:flex; align-items:center; gap:8px;
  will-change:transform;
}
.hero__label i{ width:6px; height:6px; border-radius:50%; background:var(--terracotta); display:inline-block; }
.hero__label--1{ top:6%; left:-6%; }
.hero__label--2{ top:46%; right:-8%; }
.hero__label--3{ bottom:4%; left:8%; }

@media (max-width:960px){
  .hero__grid{ grid-template-columns:1fr; gap:52px; }
  .hero__label{ display:none; }
  .hero__blob--1{ width:340px; height:340px; }
}

/* ============================================================
   SECTION HEADING (shared)
   ============================================================ */
.sec-head{ max-width:640px; }
.sec-head h2{ font-size:clamp(30px,3.4vw,44px); line-height:1.16; margin-top:16px; }
.sec-head p{ margin-top:18px; font-size:17px; color:var(--forest-soft); line-height:1.7; }
.sec-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ============================================================
   TRUST CARDS
   ============================================================ */
.trust{ padding:120px 0 100px; }
.trust__cards{
  margin-top:64px; display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.trust__card{
  background:var(--paper); border:1px solid var(--line); border-radius:22px;
  padding:40px 32px; transition:transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.trust__card:hover{ transform:translateY(-8px); box-shadow:0 24px 44px -26px rgba(36,48,31,0.28); border-color:transparent; }
.trust__num{ font-family:var(--serif); font-style:italic; font-size:15px; color:var(--beige); font-weight:600; }
.trust__icon{
  width:52px; height:52px; margin:18px 0 22px; border-radius:14px; background:var(--cream);
  display:flex; align-items:center; justify-content:center;
}
.trust__card h3{ font-size:22px; margin-bottom:10px; }
.trust__card p{ color:var(--forest-soft); font-size:15.5px; line-height:1.65; }
@media (max-width:860px){ .trust__cards{ grid-template-columns:1fr; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about{ padding:100px 0; background:var(--cream); }
.about__grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:72px; align-items:center; }
.about__img-wrap{ position:relative; border-radius:24px; overflow:hidden; aspect-ratio:3/4; }
.about__img-wrap img{ width:100%; height:100%; object-fit:cover; }
.about__handwritten{
  position:absolute; bottom:-22px; right:-18px; background:var(--paper);
  padding:14px 22px; border-radius:16px; font-family:var(--serif); font-style:italic; font-size:17px;
  box-shadow:0 16px 32px -18px rgba(36,48,31,0.3); transform:rotate(-2deg);
}
.about__content h2{ font-size:clamp(28px,3.2vw,40px); margin-top:16px; }
.about__content p{ margin-top:20px; font-size:17px; color:var(--forest-soft); line-height:1.75; max-width:56ch; }
.about__cta{ margin-top:32px; }
@media (max-width:900px){ .about__grid{ grid-template-columns:1fr; } .about__handwritten{ right:8px; } }

/* ============================================================
   PHILOSOPHY / TIMELINE (signature growing stem)
   ============================================================ */
.philosophy{ padding:130px 0 120px; position:relative; background:
  radial-gradient(ellipse at top right, rgba(144,161,126,0.10), transparent 60%),
  var(--ivory);
}
.philosophy__head{ max-width:640px; margin:0 auto; text-align:center; }
.timeline{ margin-top:90px; position:relative; }
.timeline__track{
  position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:0;
}
.timeline__line{
  position:absolute; top:26px; left:0; right:0; height:2px; background:var(--line); z-index:0;
}
.timeline__line-fill{
  position:absolute; top:0; left:0; height:100%; width:0%; background:var(--sage-deep);
  transition:width 1.4s var(--ease);
}
.timeline__step{ position:relative; z-index:1; padding:0 20px; text-align:left; }
.timeline__dot{
  width:52px; height:52px; border-radius:50%; background:var(--paper); border:2px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-style:italic;
  font-size:18px; color:var(--sage-deep); transition:background 0.6s var(--ease), border-color 0.6s var(--ease), color 0.6s var(--ease), transform 0.6s var(--ease);
}
.timeline__step.is-visible .timeline__dot{ background:var(--sage-deep); border-color:var(--sage-deep); color:var(--ivory); transform:scale(1.08); }
.timeline__step h3{ margin-top:24px; font-size:22px; }
.timeline__step p{ margin-top:10px; font-size:15px; color:var(--forest-soft); line-height:1.6; max-width:26ch; }
@media (max-width:860px){
  .timeline__track{ grid-template-columns:1fr; gap:44px; }
  .timeline__line{ top:0; bottom:0; left:26px; right:auto; width:2px; height:auto; }
  .timeline__line-fill{ width:100%; height:0%; }
  .timeline__step{ padding-left:80px; }
  .timeline__dot{ position:absolute; left:0; top:0; }
}

/* ============================================================
   FOOD & HABITS
   ============================================================ */
.habits{ padding:110px 0; }
.habits__head{ max-width:680px; }
.habits__grid{ margin-top:64px; display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.habits__card{ display:flex; flex-direction:column; }
.habits__img{
  border-radius:20px; overflow:hidden; aspect-ratio:4/5; background:var(--cream); position:relative;
}
.habits__img img{ width:100%; height:100%; object-fit:cover; transition:transform 0.8s var(--ease); }
.habits__card:hover .habits__img img{ transform:scale(1.06); }
.habits__card:nth-child(2) .habits__img{ margin-top:36px; }
.habits__card h3{ margin-top:22px; font-size:21px; }
.habits__card p{ margin-top:10px; font-size:15px; color:var(--forest-soft); line-height:1.6; }
@media (max-width:860px){ .habits__grid{ grid-template-columns:1fr; gap:44px; } .habits__card:nth-child(2) .habits__img{ margin-top:0; } }

/* ============================================================
   ARTICLES
   ============================================================ */
.articles{ padding:110px 0 60px; background:var(--cream); }
.articles__head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; }
.articles__grid{
  margin-top:60px; display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.article-card{
  background:var(--paper); border:1px solid var(--line); border-radius:20px; overflow:hidden;
  transition:transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
  display:flex; flex-direction:column;
}
.article-card:hover{ transform:translateY(-10px); box-shadow:0 30px 50px -28px rgba(36,48,31,0.32); border-color:transparent; }
.article-card__img{ position:relative; aspect-ratio:16/11; overflow:hidden; background:var(--cream); }
.article-card:nth-child(2) .article-card__img{ aspect-ratio:4/5; }
.article-card:nth-child(4) .article-card__img{ aspect-ratio:1/1; }
.article-card__img img{ width:100%; height:100%; object-fit:cover; transition:transform 0.8s var(--ease); }
.article-card:hover .article-card__img img{ transform:scale(1.05); }
.article-card__badge{
  position:absolute; top:16px; left:16px; background:var(--paper); font-size:11px; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; padding:7px 14px; border-radius:100px; color:var(--sage-deep);
  transition:background 0.4s var(--ease), color 0.4s var(--ease);
}
.article-card:hover .article-card__badge{ background:var(--sage-deep); color:var(--ivory); }
.article-card__body{ padding:26px 26px 28px; flex:1; display:flex; flex-direction:column; }
.article-card__body h3{ font-size:21px; line-height:1.32; }
.article-card__body p{
  margin-top:12px; font-size:14.5px; color:var(--forest-soft); line-height:1.6;
  max-height:0; opacity:0; overflow:hidden; transition:max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.5s var(--ease);
}
.article-card:hover .article-card__body p{ max-height:100px; opacity:1; }
.article-card__meta{
  margin-top:auto; padding-top:20px; display:flex; align-items:center; justify-content:space-between;
  font-size:13px; color:var(--sage-deep); font-weight:700;
}
.article-card__meta .read{ display:inline-flex; align-items:center; gap:6px; }
.article-card__meta .read .arrow{ transition:transform 0.4s var(--ease); }
.article-card:hover .article-card__meta .read .arrow{ transform:translateX(5px); }
@media (max-width:960px){ .articles__grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .articles__grid{ grid-template-columns:1fr; } }

/* Featured article */
.featured{ margin-top:26px; }
.featured__inner{
  background:var(--paper); border:1px solid var(--line); border-radius:26px; overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr; align-items:stretch;
}
.featured__img{ position:relative; min-height:340px; background:var(--cream); }
.featured__img img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.featured__content{ padding:56px; display:flex; flex-direction:column; justify-content:center; }
.featured__content h3{ font-size:clamp(24px,2.6vw,32px); margin-top:16px; line-height:1.24; }
.featured__content p{ margin-top:16px; color:var(--forest-soft); font-size:16px; line-height:1.7; }
@media (max-width:860px){ .featured__inner{ grid-template-columns:1fr; } .featured__content{ padding:36px; } .featured__img{ min-height:260px; } }

/* ============================================================
   PERSONAL APPROACH
   ============================================================ */
.approach{ padding:130px 0; }
.approach__wrap{ max-width:760px; margin:0 auto; text-align:center; }
.approach__statement{
  font-family:var(--serif); font-style:italic; font-size:clamp(26px,3.2vw,38px); line-height:1.4;
  color:var(--forest); margin-top:26px;
}
.approach__checks{
  margin-top:52px; display:flex; justify-content:center; gap:14px; flex-wrap:wrap;
}
.check{
  display:flex; align-items:center; gap:9px; background:var(--cream); padding:12px 20px;
  border-radius:100px; font-weight:700; font-size:14.5px; color:var(--forest-soft);
}
.check svg{ width:16px; height:16px; color:var(--sage-deep); flex-shrink:0; }

/* ============================================================
   QUOTE / SIGNATURE MOMENT
   ============================================================ */
.quote{ padding:110px 0; background:var(--forest); color:var(--ivory); text-align:center; }
.quote__mark{ font-family:var(--serif); font-size:80px; color:var(--sage); line-height:1; opacity:0.7; }
.quote blockquote{
  font-family:var(--serif); font-style:italic; font-size:clamp(26px,3.4vw,40px); line-height:1.35;
  max-width:820px; margin:0 auto; color:var(--ivory);
}
.quote__sig{ margin-top:36px; }
.quote__sig .name{ font-family:var(--serif); font-size:20px; }
.quote__sig .role{ margin-top:6px; font-size:12.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--sage); font-weight:700; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter{ padding:110px 0; background:var(--sage-deep); color:var(--ivory); }
.newsletter__inner{ max-width:640px; margin:0 auto; text-align:center; }
.newsletter h2{ color:var(--ivory); font-size:clamp(28px,3.4vw,42px); margin-top:16px; }
.newsletter p{ margin-top:18px; color:rgba(251,248,241,0.82); font-size:17px; line-height:1.7; }
.newsletter__eyebrow{ color:rgba(251,248,241,0.75); }
.newsletter__eyebrow::before{ color:var(--beige); }
.newsletter__form{
  margin-top:36px; display:flex; gap:12px; background:rgba(251,248,241,0.08);
  border:1px solid rgba(251,248,241,0.25); border-radius:100px; padding:6px;
}
.newsletter__form input{
  flex:1; background:transparent; border:none; padding:14px 20px; color:var(--ivory);
  font-size:15px; font-family:inherit;
}
.newsletter__form input::placeholder{ color:rgba(251,248,241,0.55); }
.newsletter__form button{
  background:var(--ivory); color:var(--forest); border:none; border-radius:100px; padding:14px 28px;
  font-weight:700; font-size:14px; transition:transform 0.4s var(--ease);
}
.newsletter__form button:hover{ transform:translateY(-2px); }
.newsletter__fine{ margin-top:18px; font-size:12.5px; color:rgba(251,248,241,0.6); }
@media (max-width:560px){ .newsletter__form{ flex-direction:column; border-radius:20px; } .newsletter__form button{ width:100%; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact{ padding:120px 0; }
.contact__grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px; }
.contact__intro h2{ font-size:clamp(28px,3.2vw,40px); margin-top:16px; }
.contact__intro p{ margin-top:18px; color:var(--forest-soft); font-size:16.5px; line-height:1.7; max-width:40ch; }
.contact__note{
  margin-top:40px; font-family:var(--serif); font-style:italic; font-size:19px; color:var(--sage-deep);
  position:relative; display:inline-block;
}
.form-grid{ display:flex; flex-direction:column; gap:20px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:13px; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; color:var(--sage-deep); }
.field input, .field textarea{
  font-family:inherit; font-size:15.5px; padding:15px 18px; border-radius:12px;
  border:1.5px solid var(--line); background:var(--paper); color:var(--forest);
  transition:border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.field input:focus, .field textarea:focus{ border-color:var(--sage-deep); box-shadow:0 0 0 4px rgba(94,110,79,0.12); outline:none; }
.field textarea{ resize:vertical; min-height:130px; }
.contact .btn--solid{ align-self:flex-start; margin-top:6px; }
@media (max-width:860px){ .contact__grid{ grid-template-columns:1fr; gap:48px; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer{ background:var(--forest); color:rgba(251,248,241,0.82); padding:70px 0 30px; }
.footer__top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:48px; border-bottom:1px solid rgba(251,248,241,0.14); }
.footer__brand-name{ font-family:var(--serif); color:var(--ivory); font-size:26px; }
.footer__brand-sub{ margin-top:8px; font-size:12.5px; letter-spacing:0.14em; text-transform:uppercase; color:var(--sage); font-weight:700; }
.footer__cols{ display:flex; gap:80px; flex-wrap:wrap; }
.footer__col h4{ color:var(--ivory); font-family:var(--sans); font-weight:700; font-size:13px; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:18px; }
.footer__col a{ display:block; font-size:14.5px; margin-bottom:12px; color:rgba(251,248,241,0.75); transition:color 0.3s var(--ease); }
.footer__col a:hover{ color:var(--ivory); }
.footer__bottom{ margin-top:34px; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; font-size:13px; color:rgba(251,248,241,0.55); }
.footer__disclaimer{ margin-top:16px; font-size:12.5px; color:rgba(251,248,241,0.42); max-width:70ch; line-height:1.6; }

/* Cursor dot (desktop only) */
.cursor-dot{
  position:fixed; top:0; left:0; width:10px; height:10px; border-radius:50%;
  background:var(--terracotta); pointer-events:none; z-index:9999; opacity:0;
  transition:opacity 0.3s ease, transform 0.15s ease-out;
  transform:translate(-50%,-50%);
}
@media (hover:hover) and (pointer:fine){ .cursor-dot.active{ opacity:0.55; } }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero{ padding:calc(var(--nav-h) + 56px) 0 0; }
.back-link{
  display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:700;
  color:var(--sage-deep); margin-bottom:28px; transition:gap 0.3s var(--ease);
}
.back-link:hover{ gap:12px; }
.article-hero__meta{ margin-top:22px; display:flex; align-items:center; gap:14px; flex-wrap:wrap; font-size:13.5px; font-weight:700; color:var(--sage-deep); }
.article-hero__meta .dot{ width:4px; height:4px; border-radius:50%; background:var(--beige); }
.article-hero h1{ margin-top:20px; font-size:clamp(32px,4.4vw,54px); line-height:1.1; max-width:16em; }
.article-hero__img{
  margin-top:48px; border-radius:24px; overflow:hidden; aspect-ratio:21/9; background:var(--cream);
}
@media (max-width:700px){ .article-hero__img{ aspect-ratio:4/3; } }

.article-body{ padding:70px 0 100px; }
.article-body__wrap{ max-width:700px; margin:0 auto; }
.article-body__wrap p{ font-size:17.5px; line-height:1.85; color:var(--forest-soft); margin-bottom:24px; }
.article-body__wrap h2{ font-size:clamp(24px,2.6vw,30px); margin:48px 0 18px; line-height:1.3; }
.article-body__wrap ul{ margin:0 0 24px; padding-left:22px; }
.article-body__wrap li{ font-size:17px; line-height:1.8; color:var(--forest-soft); margin-bottom:10px; }
.pull-quote{
  margin:44px 0; padding:8px 0 8px 28px; border-left:3px solid var(--sage-deep);
  font-family:var(--serif); font-style:italic; font-size:24px; line-height:1.5; color:var(--forest);
}
.article-disclaimer{
  margin-top:56px; padding:22px 24px; background:var(--cream); border-radius:16px;
  font-size:13.5px; color:var(--forest-soft); line-height:1.65;
}
.article-author{
  margin-top:56px; padding-top:36px; border-top:1px solid var(--line);
  display:flex; align-items:center; gap:18px;
}
.article-author__avatar{
  width:56px; height:56px; border-radius:50%; background:var(--cream); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-style:italic;
  font-size:12px; color:var(--sage-deep); text-align:center; overflow:hidden;
}
.article-author__name{ font-family:var(--serif); font-size:18px; }
.article-author__role{ font-size:13px; color:var(--sage-deep); font-weight:700; margin-top:2px; }
