/* ─────────────── SELF-HOSTED FONTS ─────────────── */
/* Place woff2 files in css/fonts/ — download from https://gwfh.mranftl.com/fonts */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v22-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v22-latin-300italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v22-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-garamond-v22-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v15-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v15-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ─────────────── RESET & BASE ─────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --cream:   #f4ede0;
  --parch:   #ede5d4;
  --white:   #f9f6f0;
  --ink:     #1b1814;
  --deep:    #0e0d0b;
  --mid:     #6a6259;
  --muted:   #a9a19a;
  --border:  #d6cfc5;
  --teal:    #3c7874;
  --teal-lt: #4e9490;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain — light touch only */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.038'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 800; mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ─────────────── NAV ─────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  padding: 6px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: #ffffff;
  border-bottom: none;
}
.nav-logo img { height: 72px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 11px; letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.3s;
}
.nav-link:hover { color: var(--ink); }
.nav-btn {
  padding: 11px 26px;
  background: var(--ink); color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s;
}
.nav-btn:hover { background: var(--teal); }

/* ─────────────── HERO ─────────────── */
.hero {
  height: 100vh; min-height: 680px;
  display: grid; grid-template-columns: 52% 48%;
  overflow: hidden;
}

/* LEFT */
.hero-left {
  background: var(--white);
  padding: 96px 64px 72px 48px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; z-index: 2;
}

.hero-kicker {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 28px;
  opacity: 0; animation: up 0.9s 0.3s forwards;
}

.hero-h1 {
  font-size: clamp(48px, 4.6vw, 80px);
  color: var(--ink); margin-bottom: 24px;
  opacity: 0; animation: up 1s 0.55s forwards;
}
.hero-h1 em { font-style: italic; color: var(--teal); }

/* CLARITY ANCHOR — the critical new line */
.hero-clarity {
  font-size: 15px; color: var(--mid);
  line-height: 1.6; margin-bottom: 40px;
  max-width: 420px;
  border-left: 2px solid var(--teal);
  padding-left: 18px;
  opacity: 0; animation: up 1s 0.8s forwards;
}

.hero-pillars {
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 52px;
  opacity: 0; animation: up 1s 1s forwards;
}
.hero-pillar {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--mid); letter-spacing: 0.04em;
}
.pillar-dot { width: 4px; height: 4px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

.hero-ctas {
  display: flex; align-items: center; gap: 28px;
  opacity: 0; animation: up 1s 1.2s forwards;
}
.btn-primary {
  padding: 17px 44px;
  background: var(--ink); color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s; display: inline-block;
}
.btn-primary:hover { background: var(--teal); }
.btn-secondary {
  font-size: 12px; color: var(--muted); letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn-secondary:hover { color: var(--ink); border-color: var(--ink); }

/* RIGHT — photo */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpeg');
  background-size: cover; background-position: center 15%;
  animation: zoomOut 9s forwards ease-out;
}
@keyframes zoomOut {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(249,246,240,0.18) 0%, transparent 25%),
              linear-gradient(to top, rgba(14,13,11,0.28) 0%, transparent 45%);
}
.hero-caption {
  position: absolute; bottom: 36px; right: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-style: italic; font-weight: 300;
  color: rgba(244,237,224,0.55);
  text-align: right; line-height: 1.65;
  opacity: 0; animation: up 1s 1.6s forwards;
}

/* ─────────────── OFFER STRIP — appears right after hero ─────────────── */
/* "First Circle: Anger" visible early — strategic requirement */
.offer-strip {
  background: var(--ink);
  padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.offer-strip-left {}
.offer-kicker {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-lt); margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
.offer-kicker::before { content: ''; width: 24px; height: 1px; background: var(--teal); }
.offer-strip h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--cream);
}
.offer-strip h2 em { font-style: italic; color: rgba(244,237,224,0.4); }
.offer-strip-right {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.offer-tag {
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(244,237,224,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 18px;
  font-family: 'DM Sans', sans-serif;
}
.offer-strip-btn {
  margin-top: 8px;
  padding: 15px 36px;
  background: var(--teal); color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: background 0.3s;
}
.offer-strip-btn:hover { background: var(--teal-lt); }

/* ─────────────── SECTION COMMONS ─────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

.eyebrow {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 44px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--teal); }

/* ─────────────── PROBLEM ─────────────── */
.problem { padding: 128px 0; background: var(--white); border-top: 1px solid var(--border); }

.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.problem-l { padding-right: 80px; border-right: 1px solid var(--border); }
.problem-l h2 { font-size: clamp(48px, 4.8vw, 74px); color: var(--ink); margin-bottom: 32px; }
.problem-l h2 em { font-style: italic; color: var(--teal); }
.problem-l p { font-size: 17px; color: var(--mid); line-height: 1.85; max-width: 380px; }

.problem-r { padding-left: 80px; display: flex; flex-direction: column; justify-content: center; }
.p-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 36px 1fr; gap: 16px;
}
.p-item:first-child { border-top: 1px solid var(--border); }
.p-i { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; color: var(--muted); padding-top: 5px; }
.p-b h3 { font-size: 24px; color: var(--ink); margin-bottom: 7px; }
.p-b p { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ─────────────── FULL IMAGE + SHIFT ─────────────── */
.img-moment {
  height: 65vh; min-height: 380px;
  position: relative; overflow: hidden;
}
.img-moment-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: url('../img/photo-1.jpeg');
}
.img-moment-overlay {
  position: absolute; inset: 0;
  background: rgba(14,13,11,0.42);
  display: flex; align-items: center; justify-content: center;
}
.img-moment-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 58px);
  font-style: italic; font-weight: 300;
  color: rgba(244,237,224,0.82);
  text-align: center; padding: 0 48px; line-height: 1.25;
}

/* ─────────────── WHAT IS MINDY ─────────────── */
.what { padding: 128px 0; background: var(--parch); border-top: 1px solid var(--border); }

.what-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 72px; padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}
.what-header h2 { font-size: clamp(46px, 4.8vw, 72px); color: var(--ink); }
.what-header h2 em { font-style: italic; color: var(--teal); }
.what-header-r p { font-size: 17px; color: var(--mid); line-height: 1.9; }
.what-header-r p strong { color: var(--ink); font-weight: 400; }

.what-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.wcard {
  background: var(--white); padding: 48px 32px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.wcard::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.wc-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; font-weight: 300; color: var(--border);
  line-height: 1; margin-bottom: 28px; display: block;
  transition: color 0.35s;
}
.wcard h3 { font-size: 24px; color: var(--ink); margin-bottom: 13px; transition: color 0.35s; }
.wcard p { font-size: 13px; color: var(--mid); line-height: 1.75; transition: color 0.35s; }

/* ─────────────── HOW IT WORKS ─────────────── */
.how { padding: 128px 0; background: var(--white); border-top: 1px solid var(--border); }
.how-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.how-header h2 { font-size: clamp(46px, 4.8vw, 70px); color: var(--ink); }
.how-header p { font-size: 16px; color: var(--mid); line-height: 1.85; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.hstep { background: var(--parch); padding: 48px 32px; }
.hstep-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300; color: var(--border);
  line-height: 1; margin-bottom: 24px; display: block;
}
.hstep h3 { font-size: 22px; color: var(--ink); margin-bottom: 13px; }
.hstep p { font-size: 13px; color: var(--mid); line-height: 1.75; }

/* ─────────────── FIRST CIRCLE — ANGER ─────────────── */
.anger { padding: 128px 0; background: var(--deep); position: relative; overflow: hidden; }
.anger-ghost {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26vw; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.016);
  top: 50%; right: -3vw; transform: translateY(-50%);
  pointer-events: none; line-height: 1; white-space: nowrap;
  letter-spacing: -0.03em;
}
.anger-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  position: relative; z-index: 2;
}
.anger-l { padding-right: 80px; }
.anger-eyebrow {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal-lt); margin-bottom: 44px;
  display: flex; align-items: center; gap: 14px;
}
.anger-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--teal); }
.anger-l h2 { font-size: clamp(46px, 4.8vw, 72px); color: var(--cream); margin-bottom: 28px; }
.anger-l h2 em { font-style: italic; color: rgba(244,237,224,0.52); }
.anger-l .anger-hook {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; font-weight: 300;
  color: rgba(244,237,224,0.62); line-height: 1.55;
  margin-bottom: 36px;
}
.anger-l p { font-size: 16px; color: rgba(244,237,224,0.62); line-height: 1.85; margin-bottom: 48px; }
.anger-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.atag {
  padding: 8px 20px; border: 1px solid rgba(255,255,255,0.1);
  font-size: 10px; letter-spacing: 0.17em; text-transform: uppercase;
  color: rgba(244,237,224,0.55); font-family: 'DM Sans', sans-serif;
}

.anger-r {
  padding-left: 80px; border-left: 1px solid rgba(255,255,255,0.06);
}
.apoint {
  padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid; grid-template-columns: 36px 1fr; gap: 18px;
}
.apoint:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.ap-i { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; color: rgba(255,255,255,0.18); padding-top: 4px; }
.ap-b h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--cream); margin-bottom: 8px; font-weight: 400; }
.ap-b p { font-size: 13px; color: rgba(244,237,224,0.62); line-height: 1.75; }

/* ─────────────── PHOTO SPLIT ─────────────── */
.photo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; height: 55vh; min-height: 320px; }
.ps-item { position: relative; overflow: hidden; }
.ps-photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 6s ease; }
.ps-item:nth-child(1) .ps-photo { background-image: url('../img/photo-2.jpeg'); }
.ps-item:nth-child(2) .ps-photo { background-image: url('../img/photo-3.jpeg'); background-position: center top; }
.ps-overlay { position: absolute; inset: 0; background: rgba(14,13,11,0.22); transition: background 0.4s; }
.ps-label {
  position: absolute; bottom: 28px; left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-style: italic; font-weight: 300;
  color: rgba(244,237,224,0.6); letter-spacing: 0.04em;
}

/* ─────────────── OUTCOMES / EXPERIENCE ─────────────── */
.outcomes { padding: 128px 0; background: var(--white); border-top: 1px solid var(--border); }
.outcomes-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.outcomes-header h2 { font-size: clamp(46px, 4.8vw, 70px); color: var(--ink); }
.outcomes-header h2 em { font-style: italic; color: var(--teal); }
.outcomes-header p { font-size: 16px; color: var(--mid); line-height: 1.85; }
.olist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.oitem {
  background: var(--parch); padding: 48px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, background 0.35s;
}
.oi-n {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 40px; font-weight: 300;
  color: var(--border); display: block; margin-bottom: 24px;
  line-height: 1; transition: color 0.35s;
}
.oitem h3 { font-size: 19px; color: var(--ink); margin-bottom: 10px; transition: color 0.35s; }
.oitem p { font-size: 12px; color: var(--mid); line-height: 1.7; transition: color 0.35s; }

/* ─────────────── CTA / FORM ─────────────── */
.cta-section { padding: 128px 0; background: var(--parch); border-top: 1px solid var(--border); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; }

.cta-l { padding-right: 80px; border-right: 1px solid var(--border); }
.cta-l .resonance {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-style: italic; font-weight: 300;
  color: var(--mid); line-height: 1.35;
  margin-bottom: 48px;
}
.cta-l h2 { font-size: clamp(46px, 4.8vw, 68px); color: var(--ink); margin-bottom: 20px; }
.cta-l h2 em { font-style: italic; color: var(--teal); }
.cta-l p { font-size: 16px; color: var(--mid); line-height: 1.85; margin-bottom: 48px; }

.detail-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 18px 0; border-top: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: 1px solid var(--border); }
.dr-label { font-size: 10px; letter-spacing: 0.17em; text-transform: uppercase; color: var(--muted); min-width: 80px; padding-top: 3px; }
.dr-val { font-size: 14px; color: var(--ink); }

/* FORM */
.cta-r { padding-left: 80px; }
.form-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.form-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--teal); }
.frow { margin-bottom: 24px; }
.flabel { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); margin-bottom: 9px; }
.finput {
  width: 100%; padding: 13px 0;
  background: transparent; border: none; border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--ink); outline: none; transition: border-color 0.3s;
}
.finput::placeholder { color: var(--muted); }
.finput:focus { border-color: var(--teal); }
.fsend {
  width: 100%; margin-top: 12px;
  padding: 20px;
  background: var(--ink); color: var(--cream); border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
}
.fsend:hover { background: var(--teal); }
.fnote { font-size: 11px; color: var(--muted); margin-top: 18px; line-height: 1.7; }

.success { display: none; padding: 56px 0; text-align: center; }
.success.on { display: block; }
.success h3 { font-size: 38px; color: var(--ink); margin-bottom: 14px; }
.success p { font-size: 15px; color: var(--mid); line-height: 1.8; }

/* ─────────────── LANGUAGE SWITCH ─────────────── */
.lang-switch { position: relative; }
.lang-switch-mobile { display: none; }
.lang-current {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: none; border: 1px solid var(--ink); cursor: pointer;
  padding: 11px 18px; transition: color 0.2s, background 0.2s;
}
.lang-current:hover { background: var(--ink); color: #fff; }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--cream); border: 1px solid var(--border);
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s;
  min-width: 44px; text-align: center;
  z-index: 500;
}
.lang-switch:hover .lang-dropdown,
.lang-switch:focus-within .lang-dropdown,
.lang-switch.open .lang-dropdown {
  opacity: 1; pointer-events: all;
}
.lang-option {
  display: block; width: 100%; padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  color: var(--mid); transition: color 0.2s;
}
.lang-option:hover { color: var(--ink); }

/* ─────────────── FOOTER ─────────────── */
footer {
  background: var(--ink); padding: 56px 48px 36px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px;
}
.footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: 0.6; }
.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; font-weight: 300;
  color: rgba(244,237,224,0.25); max-width: 300px;
  text-align: right; line-height: 1.6;
}
.footer-bottom { display: flex; justify-content: space-between; }
.fc { font-size: 11px; color: rgba(244,237,224,0.2); letter-spacing: 0.06em; }
.fc-teal { color: var(--teal); }

/* ─────────────── REVEAL ─────────────── */
.r {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}
.r.in { opacity: 1; transform: none; }

/* ─────────────── ANIMATIONS ─────────────── */
@keyframes up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ─────────────── GR LANGUAGE ─────────────── */
[data-en] { display: block; }
[data-gr] { display: none; }
body.gr [data-en] { display: none; }
body.gr [data-gr] { display: block; }
/* inline spans */
span[data-en] { display: inline; }
span[data-gr] { display: none; }
body.gr span[data-en] { display: none; }
body.gr span[data-gr] { display: inline; }

/* ─────────────── POINTER HOVER ONLY ─────────────── */
@media (hover: hover) {
  .wcard:hover::after { transform: scaleX(1); }
  .wcard:hover { background: var(--ink); }
  .wcard:hover h3 { color: var(--cream); }
  .wcard:hover p { color: rgba(244,237,224,0.45); }
  .wcard:hover .wc-n { color: rgba(255,255,255,0.1); }

  .ps-item:hover .ps-photo { transform: scale(1.04); }
  .ps-item:hover .ps-overlay { background: rgba(14,13,11,0.35); }

  .oitem:hover { background: var(--ink); border-color: var(--teal); }
  .oitem:hover h3 { color: var(--cream); }
  .oitem:hover .oi-n, .oitem:hover p { color: rgba(244,237,224,0.45); }
}

/* ─────────────── HAMBURGER NAV ─────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 350;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 80px 32px 48px;
  gap: 0;
  transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.nav-drawer.open { transform: translateX(0); pointer-events: all; }
.nav-drawer-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--ink);
  text-decoration: none; line-height: 1.2;
  padding: 16px 0; border-bottom: 1px solid var(--border); width: 100%;
  transition: color 0.2s;
}
.nav-drawer-link:last-of-type { border-bottom: none; }
.nav-drawer-link:hover { color: var(--teal); }
.nav-drawer-cta {
  margin-top: 40px;
  padding: 18px 40px;
  background: var(--ink); color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: background 0.3s;
}
.nav-drawer-cta:hover { background: var(--teal); }

/* ─────────────── MOBILE 860px ─────────────── */
@media (max-width: 860px) {
  /* — NAV — */
  nav { padding: 18px 20px; }
  nav.solid { padding: 14px 20px; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  /* — HERO — */
  .hero { grid-template-columns: 1fr; height: auto; min-height: 100svh; }
  .hero-left { padding: 100px 20px 52px; }
  .hero-right { height: 50vw; min-height: 240px; order: -1; }
  .hero-kicker { font-size: 9px; letter-spacing: 0.2em; }
  .hero-h1 { font-size: clamp(36px, 8vw, 52px); margin-bottom: 16px; }
  .hero-clarity { font-size: 14px; max-width: 100%; margin-bottom: 28px; }
  .hero-pillars { margin-bottom: 36px; gap: 10px; }
  .hero-pillar { font-size: 12px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-primary { padding: 16px 36px; width: 100%; text-align: center; box-sizing: border-box; }
  .btn-secondary { white-space: normal; }

  /* — OFFER STRIP — */
  .offer-strip { padding: 40px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .offer-strip h2 { font-size: clamp(28px, 7vw, 40px); }
  .offer-strip-right { width: 100%; gap: 8px; }
  .offer-tag { font-size: 10px; padding: 6px 14px; }
  .offer-strip-btn { width: 100%; text-align: center; padding: 16px; }

  /* — SHARED LAYOUT — */
  .wrap { padding: 0 20px; }
  .problem-grid, .what-header, .how-header,
  .anger-grid, .outcomes-header, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem { padding: 80px 0; }
  .what { padding: 80px 0; }
  .how { padding: 80px 0; }
  .anger { padding: 80px 0; }
  .outcomes { padding: 80px 0; }

  /* — PROBLEM — */
  .problem-l { padding-right: 0; border-right: none; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
  .problem-l h2 { font-size: clamp(40px, 9vw, 56px); }
  .problem-r { padding-left: 0; }
  .p-item { grid-template-columns: 28px 1fr; }
  .p-b h3 { font-size: 18px; }

  /* — IMAGE MOMENT — */
  .img-moment { min-height: 260px; }
  .img-moment-text { font-size: clamp(22px, 6vw, 36px); padding: 0 20px; }

  /* — WHAT / HOW — */
  .what-cards, .how-steps { grid-template-columns: 1fr 1fr; }
  .wcard { padding: 32px 20px; }
  .wc-n { font-size: 40px; margin-bottom: 16px; }
  .wcard h3 { font-size: 18px; }
  .hstep { padding: 32px 20px; }
  .hstep-n { font-size: 44px; margin-bottom: 14px; }
  .hstep h3 { font-size: 18px; }

  /* — ANGER — */
  .anger-ghost { font-size: 14vw; opacity: 0.8; }
  .anger-l { padding-right: 0; }
  .anger-l h2 { font-size: clamp(36px, 8vw, 52px); }
  .anger-l .anger-hook { font-size: 18px; }
  .anger-l p { font-size: 15px; }
  .anger-r { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 40px; }
  .apoint { grid-template-columns: 28px 1fr; padding: 22px 0; }
  .ap-b h4 { font-size: 20px; }
  .ap-b p { font-size: 13px; }

  /* — PHOTO SPLIT — */
  .photo-split { grid-template-columns: 1fr; height: auto; }
  .ps-item { min-height: 280px; height: 50vw; }
  .ps-label { bottom: 16px; left: 16px; }

  /* — OUTCOMES — */
  .olist { grid-template-columns: 1fr 1fr; }
  .oitem { padding: 32px 20px; }
  .oi-n { font-size: 28px; margin-bottom: 12px; }
  .oitem h3 { font-size: 16px; }

  /* — CTA / FORM — */
  .cta-section { padding: 80px 0; }
  .cta-l { padding-right: 0; border-right: none; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
  .cta-l .resonance { font-size: clamp(20px, 5vw, 30px); }
  .cta-l h2 { font-size: clamp(36px, 8vw, 52px); }
  .cta-l p { font-size: 15px; }
  .cta-r { padding-left: 0; }
  .detail-row { gap: 12px; }
  .mt-48 { margin-top: 32px; }

  /* — FOOTER — */
  footer { padding: 48px 20px 32px; }
  .footer-top { flex-direction: column; gap: 20px; }
  .footer-logo img { height: 28px; }
  .footer-tag { text-align: left; font-size: 15px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .fc { font-size: 11px; }

  /* — LANG SWITCH + HAMBURGER — */
  .nav-end { display: flex; align-items: center; gap: 12px; }
  .lang-switch-mobile { display: block; }
  .lang-switch-mobile .lang-dropdown { left: auto; right: 0; transform: none; }

  /* — COOKIE BANNER — */
  #consent-banner { flex-direction: column; align-items: flex-start; padding: 20px 20px; gap: 14px; }
  .cb-text { font-size: 13px; }
  .cb-actions { width: 100%; gap: 10px; }
  .cb-accept, .cb-decline { flex: 1; text-align: center; padding: 13px 16px; }
}

/* ─────────────── MOBILE 600px (cards → 1 col) ─────────────── */
@media (max-width: 600px) {
  .what-cards, .how-steps, .olist { grid-template-columns: 1fr; }
  .wcard, .hstep, .oitem { padding: 28px 20px; }
  .hero-right { height: 55vw; }
  .offer-strip { padding: 32px 20px; }
  .offer-strip h2 { font-size: clamp(26px, 8vw, 36px); }
}

/* ─────────────── COOKIE CONSENT ─────────────── */
#consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  background: rgba(14,13,11,0.96); backdrop-filter: blur(12px);
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
#consent-banner[hidden] { display: none; }
.cb-text {
  font-size: 12px; color: rgba(244,237,224,0.55); line-height: 1.6;
  max-width: 600px;
}
.cb-text a { color: var(--teal-lt); text-decoration: underline; }
.cb-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cb-accept {
  padding: 10px 24px; background: var(--teal); color: var(--cream);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; transition: background 0.3s;
}
.cb-accept:hover { background: var(--teal-lt); }
.cb-decline {
  padding: 10px 24px; background: transparent; color: rgba(244,237,224,0.4);
  border: 1px solid rgba(255,255,255,0.1); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; transition: color 0.3s, border-color 0.3s;
}
.cb-decline:hover { color: var(--cream); border-color: rgba(255,255,255,0.3); }
@media (max-width: 860px) {
  #consent-banner { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
}

/* form privacy note */
.fnote-privacy {
  margin-top: 12px;
  font-size: 11px; color: var(--muted); line-height: 1.6;
}
.fnote-privacy a { color: var(--teal); }

/* spacing utilities used in CTA section */
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* ─────────────── SKIP LINK ─────────────── */
.skip-link {
  position: absolute; top: -100px; left: 24px; z-index: 9999;
  background: var(--ink); color: var(--cream);
  padding: 12px 20px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ─────────────── FOCUS STATES ─────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
/* inputs already have teal border on focus — remove double outline */
.finput:focus-visible { outline: none; }

/* ─────────────── LEGAL PAGES ─────────────── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 48px 120px;
}
.legal-title {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 8px;
}
.legal-date {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 72px;
  display: block;
}
.legal-wrap h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-top: 60px;
  margin-bottom: 14px;
}
.legal-wrap p {
  color: var(--mid);
  margin-bottom: 18px;
}
.legal-wrap ul, .legal-wrap ol {
  color: var(--mid);
  margin: 0 0 18px 22px;
  line-height: 1.8;
}
.legal-wrap a { color: var(--teal); }

/* 404 */
.not-found {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 48px;
}
.not-found .nf-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(96px, 20vw, 200px);
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}
.not-found h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 16px;
}
.not-found p { color: var(--mid); margin-bottom: 48px; }

@media (max-width: 860px) {
  .legal-wrap { padding: 110px 24px 80px; }
}
