/* ==========================================================================
   NO MORE PAIN — Design System
   Signature motif: the "Ease Line" — a stroke that starts jagged (tension)
   and resolves into a calm wave (relief). Used in the hero, dividers and
   small accents throughout. Ingredient/eyebrow labels use a mono type to
   echo a supplement-panel label.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  /* Color */
  --ink:        #16281F;
  --ink-70:     rgba(22,40,31,.70);
  --ink-45:     rgba(22,40,31,.45);
  --paper:      #F1ECDC;
  --paper-dim:  #E7DFC7;
  --paper-line: #D9CFAE;
  --fern-900:   #16281F;
  --fern-700:   #2F5233;
  --fern-600:   #3C6642;
  --fern-500:   #4C7A56;
  --sage-200:   #D9E4D1;
  --sage-100:   #E9EFE2;
  --menthol:    #2FAE8B;
  --menthol-dark:#1F8A6D;
  --amber-500:  #D9891F;
  --amber-600:  #B36A12;
  --amber-100:  #F6E3C4;
  --rose-600:   #B5482F;
  --white:      #FFFFFF;

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 10px 30px -14px rgba(22,40,31,.35);
  --shadow-pop: 0 20px 46px -18px rgba(22,40,31,.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font: inherit; cursor: pointer; }
h1,h2,h3,h4,p{ margin:0; }
input, textarea, select{ font: inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap{
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Type scale ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fern-600);
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.eyebrow::before{
  content:"";
  width: 18px; height: 1px;
  background: currentColor;
  display: inline-block;
}

h1, .h1{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.04;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
}
h2, .h2{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.08;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}
h3, .h3{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
}
.lede{
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-70);
  max-width: 46ch;
}
.section-head{
  max-width: 640px;
  margin-bottom: clamp(2.2rem, 5vw, 3.4rem);
}
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head h2{ margin-top: .6rem; }
.section-head p{ margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6em;
  padding: .95em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--amber-500);
  color: var(--fern-900);
  box-shadow: 0 10px 24px -10px rgba(217,137,31,.65);
}
.btn-primary:hover{ background: var(--amber-600); box-shadow: 0 14px 28px -10px rgba(179,106,18,.6); }
.btn-ghost{
  background: transparent;
  border-color: currentColor;
  color: var(--fern-900);
}
.btn-ghost:hover{ background: var(--fern-900); color: var(--paper); }
.btn-on-dark{ color: var(--paper); border-color: rgba(241,236,220,.5); }
.btn-on-dark:hover{ background: var(--paper); color: var(--fern-900); }
.btn-sm{ padding: .7em 1.3em; font-size: .85rem; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky; top:0; z-index: 60;
  background: rgba(241,236,220,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--paper-line);
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: 82px;
}
.logo{
  display:flex; align-items:center; gap:.6rem;
  font-family: var(--font-display); font-weight:800; font-size:1.18rem;
  letter-spacing:-.01em;
}
.logo .mark{ width:34px; height:34px; }
.logo span{ color: var(--fern-700); }
.main-nav{ display:flex; align-items:center; gap: clamp(1.1rem, 2vw, 2.1rem); }
.main-nav a:not(.btn){
  font-weight:600; font-size:.94rem; color: var(--ink-70);
  position: relative; padding: 6px 0;
}
.main-nav a:not(.btn):hover{ color: var(--ink); }
.main-nav a:not(.btn)::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background: var(--amber-500); transition: right .22s ease;
}
.main-nav a:not(.btn):hover::after{ right:0; }
.nav-links{ display:flex; align-items:center; gap: clamp(1rem, 1.8vw, 1.8rem); }
.nav-actions{ display:flex; align-items:center; gap:.9rem; }
.cart-btn{
  position: relative; display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%; border:1.5px solid var(--ink-45);
}
.cart-count{
  position:absolute; top:-4px; right:-4px; min-width:18px; height:18px; padding:0 4px;
  background: var(--rose-600); color:#fff; border-radius:999px;
  font-family: var(--font-mono); font-size:.65rem; font-weight:600;
  display:flex; align-items:center; justify-content:center;
}
.nav-toggle{ display:none; }

@media (max-width: 900px){
  .nav-toggle{
    display:flex; align-items:center; justify-content:center;
    width:42px; height:42px; border:1.5px solid var(--ink-45); border-radius:50%;
    background:none;
  }
  .nav-links{
    position: fixed; inset: 82px 0 0 0; background: var(--paper);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-8px); opacity:0; pointer-events:none;
    transition: transform .22s ease, opacity .22s ease;
    overflow-y:auto;
  }
  .nav-links.is-open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-links a{ width:100%; padding: 1rem 0; border-bottom:1px solid var(--paper-line); }
  .nav-links .btn{ margin-top:1rem; }
}

/* ---------- Ease line (signature motif) ---------- */
.ease-line{ display:block; width:100%; height:auto; }
.ease-divider{ position: relative; }
.ease-divider svg{ width:100%; height:56px; display:block; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -10%, var(--sage-200), transparent 60%),
    var(--paper);
}
.hero .wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero-copy .eyebrow{ margin-bottom: 1.3rem; }
.hero-copy h1{ margin-bottom: 1.25rem; }
.hero-copy .lede{ margin-bottom: 2rem; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap: .9rem; margin-bottom: 2.1rem; }
.hero-trust{ display:flex; flex-wrap:wrap; gap: 1.6rem 2rem; }
.hero-trust .item{
  display:flex; align-items:center; gap:.55rem;
  font-family: var(--font-mono); font-size:.78rem; letter-spacing:.03em; color: var(--ink-70);
}
.hero-trust svg{ width:18px; height:18px; color: var(--fern-600); flex-shrink:0; }

.hero-art{ position:relative; }
.hero-art .art-card{
  position:relative; background: var(--fern-900); border-radius: var(--radius-lg);
  aspect-ratio: 4/4.6; overflow:hidden; box-shadow: var(--shadow-pop);
}
.hero-art .art-card svg{ width:100%; height:100%; }
.hero-art .float-chip{
  position:absolute; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: .9rem 1.1rem;
  display:flex; align-items:center; gap:.7rem;
}
.hero-art .chip-relief{ top: 8%; left: -8%; }
.hero-art .chip-relief .num{ font-family:var(--font-display); font-weight:800; font-size:1.5rem; color:var(--fern-700); }
.hero-art .chip-relief .lbl{ font-family:var(--font-mono); font-size:.62rem; letter-spacing:.06em; color: var(--ink-45); text-transform:uppercase; }
.hero-art .chip-natural{ bottom: 9%; right: -6%; }
.hero-art .chip-natural svg{ width:20px; height:20px; color: var(--menthol-dark); }
.hero-art .chip-natural span{ font-weight:600; font-size:.85rem; }

@media (max-width: 900px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; max-width: 420px; margin-inline:auto; width:100%; }
  .hero-art .chip-relief, .hero-art .chip-natural{ left:auto; right:6%; }
  .hero-art .chip-relief{ top:-4%; }
}

/* ---------- Generic section ---------- */
.section{ padding-block: clamp(3.4rem, 7vw, 6.5rem); }
.section-alt{ background: var(--paper-dim); }
.section-dark{ background: var(--fern-900); color: var(--paper); }
.section-dark .eyebrow{ color: var(--menthol); }
.section-dark .lede{ color: rgba(241,236,220,.72); }

/* ---------- How it works ---------- */
.steps{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem);
  counter-reset: step;
}
.step-card{ position:relative; padding-top: .5rem; }
.step-card .step-icon{
  width:64px; height:64px; border-radius: 18px; background: var(--sage-200);
  display:flex; align-items:center; justify-content:center; margin-bottom: 1.4rem;
}
.step-card .step-icon svg{ width:30px; height:30px; color: var(--fern-700); }
.step-card .step-no{
  font-family: var(--font-mono); font-size:.75rem; color: var(--fern-600); font-weight:600;
  letter-spacing:.08em; display:block; margin-bottom:.5rem;
}
.step-card h3{ margin-bottom:.55rem; }
.step-card p{ color: var(--ink-70); font-size:.97rem; }
.step-connector{
  position:absolute; top:32px; left: calc(100% + .2rem); width: calc(2 * clamp(1.4rem,3vw,2.4rem) / 2 + 20px);
}
@media (max-width: 820px){
  .steps{ grid-template-columns: 1fr; gap: 2.2rem; }
}

.disclaimer{
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  padding: 1.1rem 1.3rem;
  border: 1px dashed var(--ink-45);
  border-radius: var(--radius-sm);
  font-size: .8rem;
  color: var(--ink-70);
  max-width: 760px;
}
.disclaimer.on-dark{ border-color: rgba(241,236,220,.35); color: rgba(241,236,220,.66); }

/* ---------- Ingredients ---------- */
.ingredients-layout{
  display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items:start;
}
.ingredient-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.ingredient-card{
  background: var(--white); border-radius: var(--radius-md); padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-card); display:flex; flex-direction:column; gap: .8rem;
}
.ingredient-card .ico{
  width:42px; height:42px; border-radius:12px; background: var(--sage-200);
  display:flex; align-items:center; justify-content:center;
}
.ingredient-card .ico svg{ width:22px; height:22px; color:var(--fern-700); }
.ingredient-card h4{ font-family:var(--font-display); font-weight:700; font-size:1rem; }
.ingredient-card p{ font-size:.84rem; color: var(--ink-70); }
.badge-natural{
  display:inline-flex; align-items:center; gap:.5rem; margin-top: 1.6rem;
  font-family: var(--font-mono); font-size:.75rem; letter-spacing:.05em; text-transform:uppercase;
  color: var(--fern-700); background: var(--sage-200); padding:.55rem .9rem; border-radius:999px;
}
.badge-natural svg{ width:16px; height:16px; }
.free-from{ margin-top:1.4rem; font-size:.9rem; color: var(--ink-70); }
@media (max-width: 860px){
  .ingredients-layout{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .ingredient-grid{ grid-template-columns: 1fr 1fr; }
}

/* ---------- Benefits ---------- */
.benefits-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.benefit-card{
  background: var(--white); border-radius: var(--radius-md); padding: 1.6rem 1.3rem;
  border: 1px solid var(--paper-line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.benefit-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.benefit-card .ico{
  width:48px; height:48px; border-radius:14px; background: var(--amber-100);
  display:flex; align-items:center; justify-content:center; margin-bottom:1.1rem;
}
.benefit-card .ico svg{ width:24px; height:24px; color: var(--amber-600); }
.benefit-card h4{ font-family:var(--font-display); font-size:1.02rem; font-weight:700; margin-bottom:.5rem; }
.benefit-card p{ font-size:.86rem; color: var(--ink-70); }
@media (max-width: 960px){ .benefits-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .benefits-grid{ grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testi-track{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.testi-card{
  background: var(--paper); border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  border: 1px solid var(--paper-line); position:relative;
}
.testi-card .quote-mark{ width:34px; height:26px; color: var(--menthol); margin-bottom: 1rem; }
.testi-card p.quote{ font-family: var(--font-display); font-size: 1.08rem; font-weight:600; line-height:1.4; margin-bottom: 1.4rem; }
.testi-card .who{ display:flex; align-items:center; gap:.7rem; }
.testi-card .avatar{
  width:38px; height:38px; border-radius:50%; background: var(--fern-700); color:var(--paper);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:.85rem;
}
.testi-card .stars{ display:flex; gap:2px; margin-top:.15rem; }
.testi-card .stars svg{ width:13px; height:13px; color: var(--amber-500); }
.testi-card .name{ font-weight:600; font-size:.88rem; }
.testi-card .ctx{ font-size:.76rem; color: var(--ink-45); }
@media (max-width: 900px){ .testi-track{ grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list{ max-width: 780px; margin-inline:auto; }
.faq-item{ border-bottom: 1px solid var(--paper-line); }
.faq-q{
  width:100%; background:none; border:none; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding: 1.5rem 0; font-family: var(--font-display); font-weight:600; font-size:1.02rem; color: var(--ink);
}
.faq-q .plus{
  width:28px; height:28px; border-radius:50%; border:1.5px solid var(--ink-45); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; position:relative; transition: transform .25s ease, background .2s ease, border-color .2s ease;
}
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background: var(--ink); border-radius:2px; }
.faq-q .plus::before{ width:11px; height:2px; }
.faq-q .plus::after{ width:2px; height:11px; transition: opacity .2s ease; }
.faq-item.is-open .faq-q .plus{ background: var(--fern-900); border-color: var(--fern-900); transform: rotate(180deg); }
.faq-item.is-open .faq-q .plus::before, .faq-item.is-open .faq-q .plus::after{ background: var(--paper); }
.faq-item.is-open .faq-q .plus::after{ opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-a p{ padding-bottom: 1.5rem; color: var(--ink-70); max-width:64ch; font-size:.96rem; }

/* ---------- Shop / product grid ---------- */
.product-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.product-card{
  background: var(--white); border-radius: var(--radius-lg); overflow:hidden;
  border: 1px solid var(--paper-line); display:flex; flex-direction:column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.product-card:hover{ box-shadow: var(--shadow-pop); transform: translateY(-3px); }
.product-media{
  aspect-ratio: 1/1; background: var(--sage-100); position:relative; overflow:hidden;
}
.product-media svg{ width:100%; height:100%; }
.product-media .tag{
  position:absolute; top:14px; left:14px; background: var(--fern-900); color: var(--paper);
  font-family: var(--font-mono); font-size:.66rem; letter-spacing:.06em; text-transform:uppercase;
  padding: .4rem .7rem; border-radius:999px;
}
.product-body{ padding: 1.4rem 1.3rem 1.6rem; display:flex; flex-direction:column; gap:.7rem; flex:1; }
.product-body .size{ font-family: var(--font-mono); font-size:.72rem; color: var(--ink-45); text-transform:uppercase; letter-spacing:.05em; }
.product-body h3{ font-size:1.12rem; }
.product-body p{ font-size:.87rem; color: var(--ink-70); flex:1; }
.product-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:.4rem; gap: .8rem;}
.price{ font-family: var(--font-display); font-weight:700; font-size:1.2rem; }
.price .was{ font-family: var(--font-mono); font-size:.75rem; color: var(--ink-45); text-decoration: line-through; margin-left:.4rem; }
@media (max-width: 960px){ .product-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .product-grid{ grid-template-columns: 1fr; max-width:420px; margin-inline:auto; } }

/* ---------- Cart drawer ---------- */
.cart-overlay{
  position: fixed; inset:0; background: rgba(22,40,31,.5); z-index: 90;
  opacity:0; pointer-events:none; transition: opacity .25s ease;
}
.cart-overlay.is-open{ opacity:1; pointer-events:auto; }
.cart-drawer{
  position: fixed; top:0; right:0; bottom:0; width: min(420px, 92vw); background: var(--paper);
  z-index: 95; transform: translateX(100%); transition: transform .3s ease;
  display:flex; flex-direction:column; box-shadow: -20px 0 40px -20px rgba(0,0,0,.3);
}
.cart-drawer.is-open{ transform: translateX(0); }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding: 1.4rem var(--gutter); border-bottom:1px solid var(--paper-line); }
.cart-head h3{ font-size:1.2rem; }
.cart-close{ width:36px; height:36px; border-radius:50%; border:1.5px solid var(--ink-45); display:flex; align-items:center; justify-content:center; background:none; }
.cart-items{ flex:1; overflow-y:auto; padding: 1rem var(--gutter); display:flex; flex-direction:column; gap: 1rem; }
.cart-empty{ padding: 3rem 0; text-align:center; color: var(--ink-45); }
.cart-line{ display:flex; gap: .9rem; background: var(--white); border-radius: var(--radius-sm); padding: .8rem; }
.cart-line .thumb{ width:56px; height:56px; border-radius:10px; background: var(--sage-100); flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.cart-line .thumb svg{ width:34px; height:34px; }
.cart-line .info{ flex:1; min-width:0; }
.cart-line .info h4{ font-size:.92rem; font-family: var(--font-body); font-weight:600; }
.cart-line .info .size{ font-size:.72rem; color: var(--ink-45); font-family: var(--font-mono); }
.cart-line .qty{ display:flex; align-items:center; gap:.5rem; margin-top:.5rem; }
.cart-line .qty button{ width:22px; height:22px; border-radius:50%; border:1px solid var(--ink-45); background:none; font-size:.8rem; line-height:1; }
.cart-line .remove{ font-size:.72rem; color: var(--rose-600); font-family: var(--font-mono); margin-top:.4rem; background:none; border:none; padding:0; }
.cart-line .lineprice{ font-family: var(--font-display); font-weight:700; font-size:.95rem; white-space:nowrap; }
.cart-foot{ padding: 1.2rem var(--gutter) 1.6rem; border-top:1px solid var(--paper-line); }
.cart-subtotal{ display:flex; justify-content:space-between; font-family: var(--font-display); font-weight:700; font-size:1.15rem; margin-bottom:1rem; }
.cart-note{ font-size:.75rem; color: var(--ink-45); margin-top:.8rem; text-align:center; }

/* ---------- Contact / forms ---------- */
.form-grid{ display:grid; gap: 1.1rem; max-width: 620px; }
.field{ display:flex; flex-direction:column; gap:.45rem; }
.field label{ font-family: var(--font-mono); font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; color: var(--ink-70); }
.field input, .field textarea, .field select{
  border: 1.5px solid var(--ink-45); background: var(--white); border-radius: var(--radius-sm);
  padding: .85rem 1rem; color: var(--ink); resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--fern-700); }
.form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
@media (max-width:560px){ .form-row-2{ grid-template-columns:1fr; } }
.form-success{ display:none; background: var(--sage-200); border-radius: var(--radius-sm); padding:1.1rem 1.3rem; font-size:.92rem; }
.form-success.is-visible{ display:block; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--fern-900); color: var(--paper); padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer-top{
  display:grid; grid-template-columns: 1.3fr repeat(3, .8fr); gap: 2.5rem;
  padding-bottom: 2.6rem; border-bottom: 1px solid rgba(241,236,220,.15);
}
.footer-brand .logo{ color: var(--paper); margin-bottom: 1rem; }
.footer-brand .logo span{ color: var(--menthol); }
.footer-brand p{ color: rgba(241,236,220,.65); font-size: .9rem; max-width: 34ch; }
.footer-social{ display:flex; gap:.7rem; margin-top:1.3rem; }
.footer-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(241,236,220,.3); display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:16px; height:16px; }
.footer-col h4{ font-family: var(--font-mono); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color: rgba(241,236,220,.55); margin-bottom:1.1rem; }
.footer-col ul{ display:flex; flex-direction:column; gap:.75rem; }
.footer-col a{ font-size:.9rem; color: rgba(241,236,220,.85); }
.footer-col a:hover{ color: var(--menthol); }
.footer-bottom{ display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:flex-start; padding-top: 2rem; }
.footer-bottom .copy{ font-size:.8rem; color: rgba(241,236,220,.55); }
.footer-legal{ font-size: .74rem; color: rgba(241,236,220,.5); max-width: 640px; line-height:1.6; }
@media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{ padding-block: clamp(2.6rem,6vw,4rem) clamp(2rem,4vw,3rem); }
.page-hero .eyebrow{ margin-bottom: 1rem; }
.page-hero h1{ font-size: clamp(2.1rem, 4vw, 3.2rem); }
.page-hero .lede{ margin-top:1rem; }
.breadcrumb{ font-family: var(--font-mono); font-size:.75rem; color: var(--ink-45); margin-bottom: 1.2rem; }
.breadcrumb a{ color: var(--fern-700); }

/* ---------- Utility ---------- */
.center{ text-align:center; }
.mt-0{ margin-top:0; }
.stack{ display:flex; flex-direction:column; }
.gap-sm{ gap:.6rem; } .gap-md{ gap:1.2rem; } .gap-lg{ gap:2rem; }
.pill{
  display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-mono); font-size:.72rem;
  letter-spacing:.05em; text-transform:uppercase; background: var(--sage-200); color: var(--fern-700);
  padding:.45rem .8rem; border-radius:999px;
}
.skip-link{
  position:absolute; left:-999px; top:0; background:var(--fern-900); color:var(--paper); padding:.8rem 1.2rem; z-index:200;
}
.skip-link:focus{ left: var(--gutter); top: var(--gutter); }

.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
