/* =========================================================
   UNTAMED YOU — Design System
   Warm · earthy · editorial · a whisper of the wild
   ========================================================= */

:root{
  /* Surfaces — warm paper carried over from the new design (client prefers it) */
  --cream:      #F4ECDD;   /* primary paper */
  --cream-2:    #EFE5D2;   /* raised / alt section */
  --cream-3:    #E7DAC2;   /* deeper sand panel */
  --paper-edge: #E2D4BC;

  /* Ink — dark plum from the original CI (#1D0C18) */
  --ink:        #1D0C18;   /* logo text plum */
  --ink-2:      #3D2A38;
  --ink-soft:   #62505C;
  --ink-faint:  #8A7884;

  /* Brand — original CI palette: sage-forest green, ochre, pale mint */
  --forest:     #4B6C52;   /* CI logo-ring green */
  --forest-2:   #3F5C44;
  --forest-deep:#2E4536;   /* deep green for dark sections + footer */
  --clay:       #C9782C;   /* CI ochre — primary CTA / accent */
  --clay-2:     #D88A3C;   /* hover */
  --clay-soft:  #E3B07E;   /* soft ochre on dark sections */
  --brass:      #B0894C;   /* gold accent, sparing */
  --mint:       #E4F1EF;   /* CI pale teal — section accent */
  --mint-deep:  #33524C;

  /* Type — original CI fonts: Nixie One display + Nunito Sans body */
  --serif: "Nixie One", "Cormorant Garamond", Georgia, serif;
  --sans:  "Nunito Sans", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-size:18px;
  line-height:1.72;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--clay); color:#fff; }

/* ---------- Layout helpers ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.narrow{ max-width:820px; }
.section{ padding-block:clamp(72px, 11vw, 148px); position:relative; }
.section--cream2{ background:var(--cream-2); }
.section--sand{ background:var(--cream-3); }
.section--mint{ background:var(--mint); }   /* CI pale-teal accent section */
.section--ink{ background:var(--forest-deep); color:#EFE7D6; }
.section--clay{ background:var(--clay); color:#FBF3E9; }

/* ---------- Type ---------- */
.eyebrow{
  font-family:var(--sans);
  font-weight:700;
  font-size:.74rem;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:var(--clay);
  display:inline-flex; align-items:center; gap:.7em;
  margin:0 0 1.1rem;
}
.eyebrow::before{
  content:""; width:30px; height:1px; background:currentColor; opacity:.6;
}
.eyebrow.center{ justify-content:center; }
.eyebrow.stack{ display:block; line-height:1.7; }
.eyebrow.stack::before{ display:inline-block; vertical-align:middle; margin-right:.7em; }
.eyebrow.center::after{
  content:""; width:30px; height:1px; background:currentColor; opacity:.6;
}
.section--ink .eyebrow,
.section--clay .eyebrow{ color:var(--clay-soft); }
.section--clay .eyebrow{ color:#F4D9C4; }

/* Nixie One is a single-weight (400) art-deco display face — keep headings at
   400 (no faux-bold) and give the airy letterforms a touch more breathing room. */
h1,h2,h3{ font-family:var(--serif); font-weight:400; line-height:1.1; margin:0; letter-spacing:.005em; }
h1{ font-size:clamp(2.7rem, 6.8vw, 5.2rem); }
h2{ font-size:clamp(2.1rem, 4.4vw, 3.5rem); }
h3{ font-size:clamp(1.5rem, 2.4vw, 2.05rem); }
.display{ font-size:clamp(2.9rem, 7.6vw, 6rem); line-height:1.02; }
.serif-accent{ color:var(--clay); }
.lead{ font-size:clamp(1.18rem, 1.7vw, 1.42rem); line-height:1.62; color:var(--ink-2); }
p{ margin:0 0 1.15rem; }
p:last-child{ margin-bottom:0; }
strong{ font-weight:800; color:var(--ink); }

/* ---------- Buttons ---------- */
.btn{
  --bg:var(--clay); --fg:#FBF3E9;
  display:inline-flex; align-items:center; gap:.6em;
  font-family:var(--sans); font-weight:700; font-size:.86rem;
  letter-spacing:.13em; text-transform:uppercase;
  padding:1.08em 1.9em; border-radius:100px;
  background:var(--bg); color:var(--fg);
  border:1.5px solid var(--bg);
  cursor:pointer; transition:transform .4s var(--ease), background .3s, box-shadow .4s, color .3s, border-color .3s;
  box-shadow:0 10px 26px -14px rgba(150,88,30,.6);
  position:relative; isolation:isolate;
}
.btn:hover{ transform:translateY(-3px); background:var(--clay-2); border-color:var(--clay-2); box-shadow:0 18px 36px -16px rgba(150,88,30,.7); }
.btn .lucide{ width:1.05em; height:1.05em; }
.btn--ghost{ --bg:transparent; --fg:var(--ink); border-color:rgba(42,32,36,.32); box-shadow:none; }
.btn--ghost:hover{ background:var(--ink); border-color:var(--ink); color:var(--cream); box-shadow:0 14px 30px -18px rgba(0,0,0,.5); }
.btn--on-dark{ --fg:var(--forest-deep); --bg:var(--cream); border-color:var(--cream); }
.btn--on-dark:hover{ background:#fff; border-color:#fff; }
.btn--lg{ padding:1.25em 2.4em; font-size:.94rem; }
.btn--block{ display:flex; justify-content:center; width:100%; }

/* ---------- Nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:60;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:14px var(--gutter);
  background:rgba(244,236,221,0);
  transition:background .4s var(--ease), box-shadow .4s, padding .4s;
}
.nav::before{
  content:""; position:absolute; left:0; right:0; top:0; height:215%;
  background:linear-gradient(to bottom, rgba(244,236,221,.98) 0%, rgba(244,236,221,.86) 42%, rgba(244,236,221,0) 100%);
  pointer-events:none; z-index:-1; transition:opacity .4s var(--ease);
}
.nav.scrolled::before{ opacity:0; }
.nav.scrolled{
  background:rgba(244,236,221,.86);
  backdrop-filter:blur(14px) saturate(1.1);
  box-shadow:0 1px 0 rgba(42,32,36,.08), 0 14px 30px -26px rgba(0,0,0,.4);
  padding-block:8px;
}
.nav__logo{ display:flex; align-items:center; gap:.7em; flex-shrink:0; }
.nav__logo img{ height:54px; width:auto; transition:height .4s var(--ease); }
.nav.scrolled .nav__logo img{ height:44px; }
.nav__links{ display:flex; align-items:center; gap:30px; }
.nav__links a{
  font-size:.82rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-2); position:relative; padding-block:6px;
}
.nav__links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1.5px;
  background:var(--clay); transition:right .35s var(--ease);
}
.nav__links a:hover::after{ right:0; }
.nav__right{ display:flex; align-items:center; gap:18px; flex-shrink:0; }

/* language toggle */
.lang{
  display:inline-flex; align-items:center; border:1.5px solid rgba(42,32,36,.25);
  border-radius:100px; overflow:hidden; font-weight:800; font-size:.74rem; letter-spacing:.08em;
  white-space:nowrap; flex-shrink:0;
}
.lang button{ flex-shrink:0; }
.lang button{
  appearance:none; border:0; background:transparent; cursor:pointer;
  padding:.5em .85em; color:var(--ink-soft); font:inherit; transition:.25s;
}
.lang button.active{ background:var(--ink); color:var(--cream); }

.nav__burger{ display:none; background:none; border:0; cursor:pointer; padding:6px; color:var(--ink); }

/* mobile menu */
.mobile-menu{
  position:fixed; inset:0; z-index:55; background:var(--cream);
  display:flex; flex-direction:column; justify-content:center; gap:8px;
  padding:var(--gutter); transform:translateX(100%); transition:transform .5s var(--ease);
  pointer-events:none;
}
.mobile-menu.open{ transform:translateX(0); pointer-events:auto; }
.mobile-menu a{ font-family:var(--serif); font-size:2.4rem; font-weight:400; padding:.25em 0; border-bottom:1px solid var(--paper-edge); }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:100svh; display:grid;
  grid-template-columns:1.05fr .95fr; align-items:stretch;
}
.hero__copy{
  display:flex; flex-direction:column; justify-content:center;
  padding:140px var(--gutter) 80px clamp(20px,8vw,110px);
  position:relative; z-index:2;
}
.hero__media{ position:relative; overflow:hidden; background:var(--cream-3); }
.hero__media img{ width:100%; height:100%; object-fit:cover; object-position:50% 28%; }
.hero__media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, var(--cream) 0%, rgba(244,236,221,.0) 26%);
}
.hero h1{ margin:0 0 .35em; }
.hero .lead{ max-width:33ch; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:16px; margin-top:2.2rem; align-items:center; }
.hero__scroll{ margin-top:3rem; display:inline-flex; align-items:center; gap:.7em; font-size:.74rem; letter-spacing:.22em; text-transform:uppercase; color:var(--ink-faint); }
.hero__scroll .dot{ width:34px; height:34px; border:1.5px solid var(--paper-edge); border-radius:50%; display:grid; place-items:center; animation:bob 2.4s var(--ease) infinite; }
@keyframes bob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(5px);} }

/* leopard texture accent */
.leo-bg{ position:relative; }
.leo-bg::before{
  content:""; position:absolute; inset:0; z-index:0;
  background-image:url('../assets/leopard-texture.png');
  background-size:560px; opacity:.05; pointer-events:none;
  mix-blend-mode:multiply;
}
.leo-bg > *{ position:relative; z-index:1; }

/* divider rosette */
.rosette-divider{ display:flex; align-items:center; justify-content:center; gap:22px; color:var(--paper-edge); }
.rosette-divider::before,.rosette-divider::after{ content:""; height:1px; width:min(120px,18vw); background:currentColor; }
.rosette-divider img{ width:38px; height:38px; opacity:.85; }

/* ---------- Section heading block ---------- */
.head{ max-width:760px; }
.head.center{ margin-inline:auto; text-align:center; }
.head .lead{ margin-top:1.3rem; }
.section--ink .head.center,
.head.center.spaced{ margin-bottom:clamp(2.2rem, 5vw, 4rem); }

/* ---------- Recognition / checklist ---------- */
.check-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:14px; margin-top:3rem; }
.check{
  display:flex; gap:16px; align-items:flex-start;
  background:var(--cream); border:1px solid var(--paper-edge); border-radius:10px;
  padding:22px 24px;
}
.section--cream2 .check{ background:#fff9ef; }
.check .ic{ flex-shrink:0; width:40px; height:40px; border-radius:50%; display:grid; place-items:center;
  background:rgba(201,120,44,.1); color:var(--clay); }
.check .ic .lucide{ width:20px; height:20px; }
.check p{ margin:0; font-size:1.04rem; line-height:1.5; color:var(--ink-2); }

/* ---------- Feature rows (mission bullets) ---------- */
.benefits{ display:grid; gap:0; margin-top:3rem; border-top:1px solid var(--paper-edge); }
.benefit{ display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,2fr); gap:24px clamp(24px,6vw,80px);
  padding:34px 0; border-bottom:1px solid var(--paper-edge); align-items:start; }
.benefit__t{ font-family:var(--serif); font-size:clamp(1.4rem,2vw,1.85rem); font-weight:400; line-height:1.18; display:flex; gap:.5em; align-items:baseline; }
.benefit__t .lucide{ width:24px; height:24px; color:var(--clay); transform:translateY(4px); }
.benefit p{ margin:0; color:var(--ink-2); }

/* ---------- Three steps ---------- */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,2.4vw,34px); margin-top:3.4rem; }
.step{ position:relative; padding-top:30px; }
.step__n{ font-family:var(--serif); font-size:4.6rem; line-height:.8; color:var(--clay); opacity:.85; font-weight:400; }
.step h3{ margin:1rem 0 .7rem; }
.step p{ color:var(--ink-2); margin:0; }
.step__img{ width:100%; aspect-ratio:4/3; border-radius:10px; margin-bottom:18px; overflow:hidden; }
.step__img image-slot{ width:100%; height:100%; }

/* ---------- Pillars ---------- */
.pillar{
  display:grid; grid-template-columns:.42fr 1.1fr .9fr; gap:clamp(24px,4vw,64px);
  align-items:center; padding-block:clamp(40px,6vw,72px); border-top:1px solid rgba(255,255,255,.16);
}
.section--ink .pillar:first-of-type{ border-top:0; }
.pillar__n{ font-family:var(--serif); font-size:clamp(3.4rem,7vw,6rem); line-height:.8; color:var(--clay-soft); font-weight:400; }
.pillar__main h3{ font-size:clamp(1.9rem,3vw,2.6rem); margin-bottom:1rem; }
.pillar__main .tag{ font-size:.74rem; letter-spacing:.28em; text-transform:uppercase; color:var(--clay-soft); display:block; margin-bottom:.7rem; font-weight:700; }
.pillar__main p{ color:rgba(239,231,214,.82); margin:0; }
.pillar__list{ list-style:none; margin:0; padding:0; display:grid; gap:14px; }
.pillar__list li{ display:flex; gap:12px; align-items:flex-start; font-size:1rem; line-height:1.5; color:rgba(239,231,214,.9); }
.pillar__list .lucide{ width:18px; height:18px; color:var(--clay-soft); flex-shrink:0; margin-top:4px; }
.pillar__img{ width:100%; aspect-ratio:3/4; border-radius:12px; overflow:hidden; }

/* ---------- Transformation statements ---------- */
.statements{ display:grid; gap:0; max-width:880px; margin:3rem auto 0; }
.statement{ font-family:var(--serif); font-size:clamp(1.7rem,3.4vw,2.7rem); font-weight:400; line-height:1.24;
  padding:26px 0; border-bottom:1px solid var(--paper-edge); }
.statement:first-child{ border-top:1px solid var(--paper-edge); }
.statement .was{ color:var(--ink-faint); }
.statement .now{ color:var(--clay); }

/* ---------- Testimonials ---------- */
.tcard{
  background:var(--cream); border:1px solid var(--paper-edge); border-radius:14px;
  padding:38px 38px 34px; position:relative;
}
.section--sand .tcard{ background:#FBF3E6; }
.tcard__quote{ font-family:var(--serif); font-size:clamp(1.3rem,2.2vw,1.7rem); line-height:1.42; color:var(--ink); margin:0 0 1.4rem; }
.tcard__mark{ font-family:var(--serif); font-size:4.5rem; line-height:.5; color:var(--clay-soft); height:.4em; display:block; }
.tcard__who{ display:flex; align-items:center; gap:14px; }
.tcard__who .av{ width:48px; height:48px; border-radius:50%; background:var(--cream-3); overflow:hidden; flex-shrink:0; }
.tcard__who .av image-slot{ width:100%; height:100%; }
.tcard__name{ font-weight:800; font-size:.95rem; letter-spacing:.02em; }
.tcard__role{ font-size:.82rem; color:var(--ink-faint); }

.tslider{ position:relative; margin-top:3rem; }
.ttrack{ display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:14px; scrollbar-width:none; }
.ttrack::-webkit-scrollbar{ display:none; }
.ttrack > *{ scroll-snap-align:center; flex:0 0 min(560px,86vw); }
.tnav{ display:flex; gap:12px; margin-top:24px; justify-content:center; }
.tnav button{ width:46px; height:46px; border-radius:50%; border:1.5px solid var(--paper-edge); background:transparent; cursor:pointer; color:var(--ink); display:grid; place-items:center; transition:.25s; }
.tnav button:hover{ background:var(--ink); color:var(--cream); border-color:var(--ink); }

/* video testimonials — cover-flow gallery */
.coverflow{ position:relative; margin-top:3.4rem; display:flex; align-items:center; justify-content:center; perspective:2000px;
  /* Height tracks the active card's height so the portrait card stays fully
     contained and the dots below never overlap it. Card width is 30vw
     (clamped 230–332px); height = width × 16/9 ≈ 53.3vw, plus breathing room. */
  height:clamp(450px, calc(53.34vw + 44px), 632px);
  /* The rotated side cards extend past the stage; clip them horizontally so they
     don't add page-wide horizontal scroll (which pushed the gallery off-centre on
     mobile). overflow-x:clip keeps the y-axis visible so card shadows still breathe. */
  width:100%; max-width:100%; overflow-x:clip; overflow-clip-margin:24px; }
.cf-stage{ position:relative; width:100%; height:100%; transform-style:preserve-3d; }
.cf-card{
  position:absolute; top:50%; left:50%; width:clamp(230px, 30vw, 332px); aspect-ratio:9/16;
  border-radius:20px; overflow:hidden; background:var(--forest-deep);
  transform:translate(-50%,-50%); transform-origin:center center;
  transition:transform .65s var(--ease), opacity .65s var(--ease), filter .65s var(--ease), box-shadow .65s;
  box-shadow:0 30px 70px -34px rgba(0,0,0,.65); cursor:pointer; will-change:transform,opacity;
  -webkit-backface-visibility:hidden; backface-visibility:hidden;
}
.cf-card.is-active{ cursor:default; box-shadow:0 44px 90px -34px rgba(0,0,0,.7); }
.cf-card .cf-poster,.cf-card .cf-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.cf-card .cf-video{ opacity:0; transition:opacity .5s var(--ease); background:#000; z-index:2; }
.cf-card.is-playing .cf-video{ opacity:1; }
.cf-card__scrim{ position:absolute; inset:0; z-index:3; background:linear-gradient(to top, rgba(20,16,10,.7) 0%, transparent 38%); pointer-events:none; }
.cf-card__play{ position:absolute; inset:0; display:grid; place-items:center; z-index:4; pointer-events:none; transition:opacity .4s; }
.cf-card.is-playing .cf-card__play{ opacity:0; }
.cf-card__play span{ width:74px; height:74px; border-radius:50%; background:rgba(244,236,221,.94); display:grid; place-items:center; box-shadow:0 14px 34px -10px rgba(0,0,0,.55); }
.cf-card.is-active .cf-card__play span{ animation:playBreath 2.8s var(--ease) infinite; }
.cf-card__play .lucide{ width:26px; height:26px; color:var(--clay); margin-left:3px; }
.cf-card__label{ position:absolute; left:0; right:0; bottom:0; z-index:4; padding:42px 20px 18px;
  color:#F4ECDD; font-family:var(--serif); font-size:1.18rem; line-height:1.2; pointer-events:none; opacity:0; transition:opacity .5s; }
.cf-card.is-active .cf-card__label{ opacity:1; }
.cf-card__label small{ display:block; font-family:var(--sans); font-weight:500; opacity:.78; font-size:.78rem; margin-top:3px; }
@keyframes playBreath{ 0%,100%{ transform:scale(1); box-shadow:0 0 0 0 rgba(227,176,126,.5);} 55%{ transform:scale(1.07); box-shadow:0 0 0 14px rgba(227,176,126,0);} }
.cf-nav{ position:absolute; top:50%; transform:translateY(-50%); z-index:20; width:54px; height:54px; border-radius:50%;
  border:1.5px solid var(--paper-edge); background:rgba(244,236,221,.85); backdrop-filter:blur(6px); color:var(--ink);
  display:grid; place-items:center; cursor:pointer; transition:.25s; }
.cf-nav:hover{ background:var(--ink); color:var(--cream); border-color:var(--ink); }
.cf-nav .lucide{ width:22px; height:22px; }
.cf-prev{ left:max(8px, 2vw); } .cf-next{ right:max(8px, 2vw); }
.cf-dots{ display:flex; gap:10px; justify-content:center; margin-top:26px; }
.cf-dots button{ width:9px; height:9px; padding:0; border-radius:50%; border:0; background:var(--paper-edge); cursor:pointer; transition:.3s; }
.cf-dots button.active{ background:var(--clay); transform:scale(1.3); }

/* ---------- Included list ---------- */
.included{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(30px,5vw,72px); align-items:center; }
.inc-list{ display:grid; gap:4px; }
.inc{ display:grid; grid-template-columns:auto 1fr; gap:20px; padding:22px 0; border-bottom:1px solid var(--paper-edge); align-items:start; }
.inc:first-child{ border-top:1px solid var(--paper-edge); }
.inc__ic{ width:46px; height:46px; border-radius:12px; background:var(--mint); color:var(--mint-deep); display:grid; place-items:center; }
.inc__ic .lucide{ width:22px; height:22px; }
.inc h4{ font-family:var(--serif); font-weight:400; font-size:1.4rem; margin:0 0 .3rem; }
.inc p{ margin:0; font-size:.98rem; color:var(--ink-2); line-height:1.5; }
.inc__media{ position:relative; }
.inc__media image-slot{ width:100%; height:auto; aspect-ratio:2/3; }
.inc__badge{ position:absolute; bottom:-22px; right:-18px; background:var(--clay); color:#FBF3E9;
  border-radius:50%; width:130px; height:130px; display:grid; place-items:center; text-align:center;
  font-family:var(--serif); font-size:1.05rem; line-height:1.15; padding:14px; transform:rotate(-7deg);
  box-shadow:0 18px 40px -16px rgba(150,88,30,.6); }
.inc__badge b{ display:block; font-size:2.1rem; font-weight:400; }

/* ---------- About Franzi ---------- */
.about{ display:grid; grid-template-columns:.92fr 1.08fr; gap:clamp(32px,5vw,80px); align-items:center; }
.about__media{ position:relative; }
.about__media image-slot{ width:100%; height:auto; aspect-ratio:5/6; }
.about__media .stamp{ position:absolute; bottom:24px; left:-24px; }
.quals{ list-style:none; margin:1.6rem 0 0; padding:0; display:grid; gap:11px; }
.quals li{ display:flex; gap:12px; align-items:flex-start; font-size:1rem; color:var(--ink-2); }
.quals .lucide{ width:18px; height:18px; color:var(--forest-2); flex-shrink:0; margin-top:5px; }
.sign{ font-family:var(--serif); font-size:1.9rem; color:var(--clay); margin-top:1.6rem; }

/* ---------- Fit / not fit ---------- */
.fitgrid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(20px,3vw,40px); margin-top:3rem; align-items:start; }
.fitcard{ border-radius:16px; padding:clamp(28px,3vw,42px); }
.fitcard--yes{ background:var(--forest-deep); color:#EFE7D6; }
.fitcard--no{ background:var(--cream); border:1px solid var(--paper-edge); }
.fitcard h3{ display:flex; align-items:center; gap:.5em; margin-bottom:1.4rem; }
.fitcard--yes h3 .lucide{ color:var(--clay-soft); }
.fitcard--no h3 .lucide{ color:var(--ink-faint); }
.fitlist{ list-style:none; margin:0; padding:0; display:grid; gap:16px; }
.fitlist li{ display:flex; gap:14px; align-items:flex-start; line-height:1.5; font-size:1.02rem; }
.fitcard--yes .fitlist li{ color:rgba(239,231,214,.9); }
.fitcard--no .fitlist li{ color:var(--ink-2); }
.fitlist .lucide{ width:19px; height:19px; flex-shrink:0; margin-top:4px; }
.fitcard--yes .fitlist .lucide{ color:var(--clay-soft); }
.fitcard--no .fitlist .lucide{ color:var(--clay); }

/* ---------- Values ---------- */
.values{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,2.6vw,38px); margin-top:3.4rem; }
.value{ background:var(--cream); border:1px solid var(--paper-edge); border-radius:16px; padding:38px 32px; transition:transform .5s var(--ease), box-shadow .5s; }
.section--cream2 .value{ background:#FBF3E6; }
.value:hover{ transform:translateY(-6px); box-shadow:0 26px 50px -30px rgba(80,50,20,.5); }
.value__ic{ width:58px; height:58px; border-radius:50%; background:rgba(201,120,44,.1); color:var(--clay); display:grid; place-items:center; margin-bottom:22px; }
.value__ic .lucide{ width:26px; height:26px; }
.value h3{ margin-bottom:.7rem; }
.value p{ color:var(--ink-2); margin:0; font-size:1rem; }

/* ---------- Instagram ---------- */
.ig-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.ig-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:2.6rem; }
.ig-tile{ position:relative; aspect-ratio:1; border-radius:10px; overflow:hidden; background:var(--cream-3); }
.ig-tile image-slot{ width:100%; height:100%; }
.ig-tile__ic{ position:absolute; top:12px; right:12px; z-index:3; color:#fff; opacity:.9; pointer-events:none; filter:drop-shadow(0 2px 4px rgba(0,0,0,.4)); }
.ig-tile__ic .lucide{ width:20px; height:20px; }

/* Instagram feed — privacy-aware click-to-load (Behold). The consent card is the
   stylish placeholder shown until the visitor agrees to load the feed. */
.ig-feed{ margin-top:2.6rem; }
.ig-consent{ position:relative; overflow:hidden; border:1px solid var(--paper-edge); border-radius:18px;
  background:linear-gradient(150deg, var(--mint) 0%, var(--cream) 72%);
  padding:clamp(34px,5vw,60px) clamp(22px,4vw,48px); text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:15px; }
.ig-consent__ic{ width:62px; height:62px; border-radius:50%; display:grid; place-items:center;
  background:var(--clay); color:#fff; box-shadow:0 14px 30px -14px rgba(150,88,30,.6); }
.ig-consent__ic .lucide{ width:28px; height:28px; }
.ig-consent__title{ font-family:var(--serif); font-weight:400; font-size:clamp(1.5rem,3vw,2rem); color:var(--ink); margin:0; }
.ig-consent__text{ max-width:56ch; color:var(--ink-2); font-size:1rem; line-height:1.6; margin:0; }
.ig-consent__text a{ color:var(--clay); text-decoration:underline; text-underline-offset:2px; }
.ig-consent .btn{ margin-top:.2rem; }
.ig-consent__remember{ display:inline-flex; align-items:center; gap:.5em; font-size:.84rem; color:var(--ink-soft); cursor:pointer; }
.ig-consent__remember input{ accent-color:var(--clay); width:16px; height:16px; }
behold-widget{ display:block; }

/* ---------- FAQ ---------- */
.faq{ max-width:880px; margin-inline:auto; margin-top:3rem; border-top:1px solid var(--paper-edge); }
.qa{ border-bottom:1px solid var(--paper-edge); }
.qa__q{ width:100%; text-align:left; background:none; border:0; cursor:pointer; font-family:var(--serif);
  font-size:clamp(1.3rem,2vw,1.65rem); font-weight:400; color:var(--ink); padding:28px 56px 28px 0;
  position:relative; display:block; }
.qa__q .pm{ position:absolute; right:6px; top:50%; transform:translateY(-50%); width:34px; height:34px;
  border:1.5px solid var(--paper-edge); border-radius:50%; display:grid; place-items:center; transition:.4s var(--ease); color:var(--clay); }
.qa.open .qa__q .pm{ transform:translateY(-50%) rotate(45deg); background:var(--clay); color:#fff; border-color:var(--clay); }
.qa__q .pm .lucide{ width:18px; height:18px; }
.qa__a{ overflow:hidden; max-height:0; transition:max-height .5s var(--ease); }
.qa__a > div{ padding:0 56px 30px 0; color:var(--ink-2); }

/* ---------- Final CTA ---------- */
.final{ text-align:center; position:relative; }
.final h2{ max-width:18ch; margin-inline:auto; }
.recap{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:3.4rem auto 0; max-width:1000px; text-align:left; }
.recap__item{ background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); border-radius:14px; padding:24px; }
.recap__item .lucide{ width:24px; height:24px; color:var(--clay-soft); margin-bottom:12px; }
.recap__item h4{ font-family:var(--serif); font-weight:400; font-size:1.3rem; margin:0 0 .35rem; }
.recap__item p{ margin:0; font-size:.92rem; color:rgba(239,231,214,.78); line-height:1.45; }

.cta-band{ display:flex; flex-direction:column; align-items:center; gap:14px; margin-top:3.4rem; }
.cta-note{ font-size:.92rem; color:rgba(239,231,214,.72); }
.section--clay .cta-note{ color:rgba(251,243,233,.85); }

/* zen "pull" toward the final button */
.cta-thread{ width:1px; height:72px; margin:0 auto -4px; position:relative; overflow:hidden;
  background:linear-gradient(to bottom, transparent, rgba(227,176,126,.45)); }
.cta-thread::after{ content:""; position:absolute; left:-2px; top:-20%; width:5px; height:24px; border-radius:3px;
  background:linear-gradient(to bottom, rgba(245,224,190,0), var(--clay-soft), rgba(245,224,190,0));
  filter:blur(1px); animation:threadFall 2.8s var(--ease) infinite; }
@keyframes threadFall{ 0%{ transform:translateY(-30px); opacity:0;} 30%{ opacity:1;} 100%{ transform:translateY(72px); opacity:0;} }
.cta-pulse{ position:relative; display:inline-grid; place-items:center; }
.cta-pulse .cta-ring{ position:absolute; inset:0; border-radius:100px; border:1.5px solid var(--clay-soft);
  opacity:0; pointer-events:none; animation:ctaRing 4s var(--ease) infinite; }
.cta-pulse .cta-ring.r2{ animation-delay:2s; }
@keyframes ctaRing{ 0%{ transform:scale(1); opacity:.55;} 70%{ opacity:0;} 100%{ transform:scale(1.55); opacity:0;} }
.cta-pulse .btn{ position:relative; z-index:1; animation:ctaBreath 4.4s ease-in-out infinite; }
@keyframes ctaBreath{ 0%,100%{ box-shadow:0 0 0 0 rgba(227,176,126,0), 0 14px 30px -18px rgba(0,0,0,.5);} 50%{ box-shadow:0 0 42px 5px rgba(227,176,126,.4), 0 14px 30px -18px rgba(0,0,0,.5);} }
@media (prefers-reduced-motion: reduce){
  .cta-thread::after,.cta-pulse .cta-ring,.cta-pulse .btn{ animation:none; }
  .cta-thread::after{ opacity:0; }
}

/* ---------- Footer ---------- */
.footer{ background:var(--forest-deep); color:#D8CDB8; padding-block:64px 36px; }
.footer__top{ display:flex; flex-wrap:wrap; gap:40px; justify-content:space-between; align-items:flex-start; }
.footer__brand{ max-width:320px; }
.footer__brand img{ height:84px; margin-bottom:16px; filter:brightness(0) invert(1) opacity(.92); }
.footer__brand p{ font-size:.95rem; color:rgba(216,205,184,.8); }
.footer__col h5{ font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; color:var(--clay-soft); margin:0 0 16px; font-weight:800; }
.footer__col a{ display:block; font-size:.96rem; padding:5px 0; color:rgba(216,205,184,.86); transition:.2s; }
.footer__col a:hover{ color:#fff; }
.footer__social{ display:flex; gap:12px; margin-top:6px; }
.footer__social a{ width:42px; height:42px; border:1px solid rgba(255,255,255,.22); border-radius:50%; display:grid; place-items:center; transition:.25s; }
.footer__social a:hover{ background:var(--clay); border-color:var(--clay); color:#fff; }
.footer__bottom{ display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between; align-items:center;
  margin-top:48px; padding-top:24px; border-top:1px solid rgba(255,255,255,.14); font-size:.84rem; color:rgba(216,205,184,.6); }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; } .reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; } .reveal.d4{ transition-delay:.32s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } *{ scroll-behavior:auto; } }

/* image-slot base look */
image-slot{ background:var(--cream-3); border-radius:12px; }

/* lang visibility handled by JS swap; helper for elements that are DE/EN only */
[data-en]{ }

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .nav__links{ display:none; }
  .nav__burger{ display:block; }
  .nav .apply{ display:none; }
  .nav__right{ gap:12px; }
  .hero{ grid-template-columns:1fr; min-height:auto; }
  .hero__media{ order:-1; height:54vh; min-height:380px; }
  .hero__media::after{ background:linear-gradient(to top, var(--cream) 1%, rgba(244,236,221,0) 30%); }
  .hero__copy{ padding:40px var(--gutter) 60px; }
  .pillar{ grid-template-columns:1fr; gap:18px; }
  .pillar__img{ aspect-ratio:16/10; max-width:520px; }
  .included{ grid-template-columns:1fr; }
  .inc__media{ width:100%; max-width:460px; margin-inline:auto; }
  .about{ grid-template-columns:1fr; }
  .about__media{ max-width:480px; }
}
@media (max-width:760px){
  body{ font-size:17px; }
  .steps{ grid-template-columns:1fr; gap:34px; }
  .fitgrid{ grid-template-columns:1fr; }
  .values{ grid-template-columns:1fr; }
  .recap{ grid-template-columns:1fr; }
  .cf-card{ width:clamp(210px, 62vw, 290px); }
  /* mobile card height = 62vw × 16/9 ≈ 110vw; keep the band tall enough to contain it */
  .coverflow{ height:clamp(440px, 116vw, 548px); }
  .ig-grid{ grid-template-columns:repeat(2,1fr); }
  .benefit{ grid-template-columns:1fr; gap:10px; }
  .statement{ font-size:1.5rem; }
}
@media (max-width:440px){
  .cf-nav{ width:46px; height:46px; }
}

/* ---------- Modals ---------- */
.modal{ position:fixed; inset:0; z-index:200; display:none; }
.modal.open{ display:block; }
.modal__overlay{ position:absolute; inset:0; background:rgba(34,28,20,.6); backdrop-filter:blur(5px); opacity:0; transition:opacity .4s var(--ease); }
.modal.open .modal__overlay{ opacity:1; }
.modal__panel{ position:absolute; top:50%; left:50%; width:min(820px, 94vw); max-height:90vh;
  transform:translate(-50%,-44%); opacity:0; background:var(--cream); border-radius:20px; overflow:hidden;
  display:flex; flex-direction:column; box-shadow:0 50px 110px -34px rgba(0,0,0,.66);
  transition:transform .5s var(--ease), opacity .45s var(--ease); }
.modal.open .modal__panel{ transform:translate(-50%,-50%); opacity:1; }
.modal__head{ display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:20px clamp(20px,3vw,32px); border-bottom:1px solid var(--paper-edge); flex-shrink:0; }
.modal__head .eyebrow{ margin:0 0 .35rem; }
.modal__head h3{ font-size:clamp(1.4rem,2.4vw,1.9rem); }
.modal__close{ flex-shrink:0; width:44px; height:44px; border-radius:50%; border:1.5px solid var(--paper-edge);
  background:transparent; color:var(--ink); display:grid; place-items:center; cursor:pointer; transition:.25s; }
.modal__close:hover{ background:var(--ink); color:var(--cream); border-color:var(--ink); transform:rotate(90deg); }
.modal__close .lucide{ width:20px; height:20px; }
.modal__body{ overflow-y:auto; padding:clamp(22px,3vw,34px) clamp(20px,3vw,40px) clamp(30px,4vw,46px); }
.modal__body::-webkit-scrollbar{ width:10px; }
.modal__body::-webkit-scrollbar-thumb{ background:var(--paper-edge); border-radius:10px; border:3px solid var(--cream); }

/* legal typography */
.legal{ color:var(--ink-2); font-size:1rem; line-height:1.66; }
.legal h4{ font-family:var(--serif); font-weight:400; font-size:1.45rem; color:var(--ink); margin:1.9rem 0 .6rem; }
.legal h4:first-child{ margin-top:0; }
.legal h5{ font-family:var(--sans); font-weight:800; font-size:.78rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--clay); margin:1.5rem 0 .5rem; }
.legal p{ margin:0 0 .9rem; }
.legal address{ font-style:normal; line-height:1.6; margin:0 0 .9rem; }
.legal ul{ margin:0 0 1rem; padding-left:1.2rem; }
.legal li{ margin:.25rem 0; }
.legal a{ color:var(--clay); text-decoration:underline; text-underline-offset:2px; }
.legal hr{ border:0; border-top:1px solid var(--paper-edge); margin:2rem 0; }
.legal .lead-note{ font-family:var(--serif); font-size:1.25rem; color:var(--ink); margin-bottom:1.4rem; }

/* jotform modal */
.modal--form .modal__panel{ width:min(680px, 96vw); height:90vh; max-height:90vh; }
.modal--form .modal__body{ padding:0; flex:1; display:flex; overflow:hidden; }
.modal--form iframe{ width:100%; height:100%; border:0; display:block; }
.modal__formfallback{ padding:24px 30px; }
