/* ============================================================
   THE SHALIMOVA METHOD — shared design system
   Palette: ivory · warm charcoal · deep aubergine · soft gold
   Type: Cormorant Garamond (display) · Hanken Grotesk (text)
   Used by the theme templates AND the block patterns.
   ============================================================ */

:root {
  --ivory: oklch(0.972 0.014 80);
  --ivory-deep: oklch(0.945 0.020 78);
  --ivory-card: oklch(0.985 0.010 80);
  --charcoal: oklch(0.205 0.014 40);
  --charcoal-2: oklch(0.255 0.018 38);
  --ink: oklch(0.28 0.014 50);
  --ink-soft: oklch(0.47 0.012 55);
  --ink-faint: oklch(0.62 0.010 60);
  --plum: oklch(0.40 0.098 350);
  --plum-deep: oklch(0.31 0.085 352);
  --plum-soft: oklch(0.58 0.075 350);
  --gold: oklch(0.77 0.085 78);
  --gold-deep: oklch(0.66 0.095 72);
  --line: oklch(0.86 0.012 78);
  --line-dark: oklch(1 0 0 / 0.14);
  --paper-on-dark: oklch(0.95 0.012 80);
  --ink-on-dark: oklch(0.80 0.012 75);
  --blue: oklch(0.52 0.07 215);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;

  --pad-x: clamp(22px, 6vw, 124px);
  --section-y: clamp(88px, 13vh, 168px);
  --maxw: 1260px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); }
::selection { background: var(--plum); color: var(--ivory); }

/* ---------- layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); width: 100%; }
.section { position: relative; }
.section-pad { padding-block: var(--section-y); }
.narrow { max-width: 900px; margin-inline: auto; }

.dark { background: var(--charcoal); color: var(--ink-on-dark); }
.dark h1, .dark h2, .dark h3, .dark .lead { color: var(--paper-on-dark); }
.tint { background: var(--ivory-deep); }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; color: var(--charcoal); }
h1 { font-size: clamp(44px, 7vw, 92px); line-height: 1.0; }
h2 { font-size: clamp(36px, 5.2vw, 74px); }
h3 { font-size: clamp(23px, 2.8vw, 34px); line-height: 1.1; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
em, .it { font-style: italic; }
.accent { color: var(--plum); font-style: italic; }
.dark .accent { color: var(--gold); }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold-deep); display: inline-block; }
.eyebrow.center { justify-content: center; }
.dark .eyebrow { color: var(--gold); }
.dark .eyebrow::before { background: var(--gold); }

.lead { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 34px); line-height: 1.36; color: var(--ink); letter-spacing: -0.005em; }
.body-text { color: var(--ink-soft); font-size: clamp(16px, 1.15vw, 18.5px); line-height: 1.72; max-width: 62ch; }
.dark .body-text { color: var(--ink-on-dark); }
.measure { max-width: 62ch; }
.pull { font-family: var(--serif); font-style: italic; font-size: clamp(22px,2.4vw,30px); color: var(--plum); line-height: 1.3; margin: 30px 0; padding-left: 26px; border-left: 2px solid var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  padding: 17px 30px;
  background: var(--plum); color: var(--ivory);
  border: 1px solid var(--plum); border-radius: 100px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s, box-shadow .35s;
  box-shadow: 0 14px 34px -16px oklch(0.40 0.098 350 / 0.7);
}
.btn .ar { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.btn:hover { background: var(--plum-deep); transform: translateY(-2px); color: var(--ivory); }
.btn:hover .ar { transform: translateX(5px); }
.btn-ghost { background: transparent; color: var(--charcoal); border: 1px solid var(--line); box-shadow: none; }
.btn-ghost:hover { background: transparent; border-color: var(--charcoal); color: var(--charcoal); }
.dark .btn-ghost { color: var(--paper-on-dark); border-color: var(--line-dark); }
.dark .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--charcoal); border-color: var(--gold); box-shadow: 0 14px 34px -16px oklch(0.77 0.085 78 / 0.8); }
.btn-gold:hover { background: var(--gold-deep); color: var(--charcoal); }

.textlink {
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  color: var(--plum); text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color .3s, gap .3s;
}
.textlink:hover { border-color: var(--plum); gap: 13px; }
.dark .textlink { color: var(--gold); }

/* ---------- site header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad-x);
  transition: background .5s, padding .5s, box-shadow .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: oklch(0.972 0.014 80 / 0.85);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  padding-block: 14px; border-color: var(--line);
}
.brand { font-family: var(--serif); font-size: 23px; letter-spacing: 0.02em; color: var(--charcoal); text-decoration: none; line-height: 1; }
.brand b { font-weight: 600; }
.brand span { display: block; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-faint); margin-top: 5px; }
.nav-wrap { display: flex; align-items: center; gap: 38px; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 34px; margin: 0; padding: 0; }
.main-nav a { font-family: var(--sans); font-size: 14.5px; font-weight: 500; color: var(--ink); text-decoration: none; letter-spacing: 0.01em; transition: color .3s; position: relative; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--plum); transition: width .3s; }
.main-nav a:hover { color: var(--plum); }
.main-nav a:hover::after { width: 100%; }
.main-nav .current-menu-item > a { color: var(--plum); }
.site-header .btn { padding: 12px 24px; box-shadow: none; font-size: 14px; }
.main-nav .mobile-book { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; background: none; border: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { display: block; height: 1.5px; width: 26px; background: var(--charcoal); transition: transform .3s, opacity .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* main content offset so fixed header doesn't overlap */
.site-main { padding-top: 0; }
.page-hero { padding-top: clamp(140px, 20vh, 220px); padding-bottom: var(--section-y); text-align: center; background: radial-gradient(120% 120% at 50% 0%, var(--ivory-deep), var(--ivory) 60%); }
.page-hero .body-text { margin: 22px auto 0; }
.page-hero h1 { margin-top: 18px; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *{animation:none!important;transition-duration:.001s!important;scroll-behavior:auto} [data-reveal]{opacity:1!important;transform:none!important} }

/* ---------- section heading grid ---------- */
.head-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 80px); align-items: end; margin-bottom: clamp(44px, 7vh, 84px); }
.head-grid h2 { margin-top: 20px; }
.head-grid .head-aside { color: var(--ink-soft); font-size: clamp(16px, 1.15vw, 18.5px); line-height: 1.72; padding-bottom: 8px; }
.dark .head-grid .head-aside { color: var(--ink-on-dark); }

/* ---------- BRAIN method ---------- */
.brain-list { display: grid; gap: 0; margin-top: clamp(38px,5vh,60px); border-top: 1px solid var(--line); }
.brain-row { display: grid; grid-template-columns: 130px 1fr; gap: clamp(20px,3vw,44px); align-items: center; padding: clamp(22px,3vw,32px) 6px; border-bottom: 1px solid var(--line); transition: background .4s, padding-left .4s; }
.brain-row:hover { background: var(--ivory-deep); padding-left: 16px; }
.brain-letter { font-family: var(--serif); font-size: clamp(52px,7vw,100px); line-height: .8; color: var(--gold-deep); text-align: center; }
.brain-copy h3 { margin-bottom: 8px; }
.brain-copy p { color: var(--ink-soft); font-size: clamp(16px,1.1vw,18px); line-height: 1.68; max-width: 64ch; }

/* ---------- split grid (aside + content) ---------- */
.split-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,5vw,90px); align-items: start; }
.split-grid .split-sticky { position: sticky; top: 110px; }
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 28px; } .split-grid .split-sticky { position: static; } }

/* ---------- method accordion ---------- */
.steps { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-top: clamp(30px,4vh,48px); }
.step { border-bottom: 1px solid var(--line); }
.step-head { display: flex; align-items: center; gap: 24px; padding: 28px 6px; cursor: pointer; user-select: none; }
.step-num { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold-deep); width: 34px; flex: none; }
.step-title { font-family: var(--serif); font-size: clamp(24px, 3vw, 40px); color: var(--ink-faint); flex: 1; transition: color .4s; line-height: 1.05; }
.step.open .step-title, .step:hover .step-title { color: var(--charcoal); }
.step.open .step-title { color: var(--plum); }
.step-plus { width: 20px; height: 20px; position: relative; flex: none; opacity: .6; transition: transform .5s, opacity .4s; }
.step-plus::before, .step-plus::after { content: ""; position: absolute; background: var(--charcoal); }
.step-plus::before { left: 0; top: 9.5px; width: 20px; height: 1.5px; }
.step-plus::after { top: 0; left: 9.5px; height: 20px; width: 1.5px; transition: transform .5s; }
.step.open .step-plus { transform: rotate(180deg); opacity: 1; }
.step.open .step-plus::after { transform: scaleY(0); }
.step-body { max-height: 0; overflow: hidden; transition: max-height .6s cubic-bezier(.4,0,.2,1); }
.step-body-inner { padding: 0 6px 32px 64px; }
.step-body-inner p { color: var(--ink-soft); font-size: clamp(16px,1.1vw,18px); line-height: 1.72; max-width: 60ch; }
.step.open .step-body { max-height: 520px; }

/* ---------- Spirit · Soul · Body ---------- */
.triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); max-width: 980px; margin: clamp(30px,4vh,52px) auto 0; text-align: left; }
.triad-col { padding-top: 20px; border-top: 2px solid var(--line); }
.triad-h { font-family: var(--serif); font-size: clamp(22px,2.4vw,30px); color: var(--charcoal); display: flex; align-items: center; gap: 11px; line-height: 1; }
.triad-h .dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.t-spirit { border-top-color: var(--plum-soft); } .t-spirit .dot { background: var(--plum); }
.t-soul   { border-top-color: var(--gold-deep); } .t-soul .dot { background: var(--gold-deep); }
.t-body   { border-top-color: var(--blue); } .t-body .dot { background: var(--blue); }
.triad-sub { font-family: var(--serif); font-style: italic; font-size: 16.5px; color: var(--ink-soft); margin-top: 9px; }
.triad-words { font-family: var(--sans); font-size: 14.5px; line-height: 1.65; color: var(--ink); margin-top: 13px; }
.triad-coherence { text-align:center; margin: clamp(28px,4vh,42px) auto 0; font-family: var(--serif); font-style: italic; color: var(--plum); font-size: clamp(18px,2vw,24px); }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,30px); margin-top: clamp(36px,5vh,60px); }
.testi-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-inline: auto; }
.testi-grid.cols-1 { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
.testi-card { background: var(--ivory-card); border: 1px solid var(--line); border-radius: 18px; padding: clamp(26px,3vw,38px); display: flex; flex-direction: column; gap: 20px; box-shadow: 0 20px 45px -30px oklch(0.31 0.085 352 / 0.5); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s; }
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 32px 56px -30px oklch(0.31 0.085 352 / 0.55); }
.testi-avatar { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--plum); color: var(--ivory); font-family: var(--serif); font-size: 17px; letter-spacing: .06em; flex: none; overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-card blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(19px,1.8vw,24px); line-height: 1.38; color: var(--charcoal); margin: 0; }
.testi-card .testi-full { font-family: var(--serif); font-size: clamp(17px,1.4vw,20px); line-height: 1.5; color: var(--ink); font-style: italic; }
.testi-card figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 7px; padding-top: 16px; border-top: 1px solid var(--line); }
.testi-name { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: .02em; }
.testi-tag { font-family: var(--sans); font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-deep); }
.testi-more { text-align: center; margin-top: clamp(34px,5vh,54px); }

/* ---------- space cards ---------- */
.space-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: center; }
.space-quote { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 52px); line-height: 1.24; color: var(--paper-on-dark); letter-spacing: -0.01em; }
.space-quote .accent { color: var(--gold); }
.space-cards { display: flex; flex-direction: column; gap: 2px; }
.space-card { padding: 24px 28px; background: oklch(1 0 0 / 0.03); border: 1px solid var(--line-dark); border-radius: 14px; transition: background .4s, transform .4s; }
.space-card:hover { background: oklch(1 0 0 / 0.06); transform: translateX(8px); }
.space-card h3 { color: var(--paper-on-dark); font-size: 23px; margin-bottom: 6px; }
.space-card p { color: var(--ink-on-dark); font-size: 15.5px; line-height: 1.6; margin: 0; }

/* ---------- story / two-col media ---------- */
.story-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(36px,5vw,84px); align-items: center; }
.story-photo { position: relative; }
.story-photo .frame { position: relative; border-radius: 200px 200px 18px 18px; overflow: hidden; background: linear-gradient(180deg, var(--ivory-card), var(--ivory-deep)); aspect-ratio: 4/5; box-shadow: 0 40px 80px -40px oklch(0.31 0.085 352 / 0.4); }
.story-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.story-photo .badge { position: absolute; right: -14px; bottom: 36px; background: var(--plum); color: var(--ivory); padding: 18px 22px; border-radius: 14px; font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.2; max-width: 200px; box-shadow: 0 20px 40px -18px oklch(0.31 0.085 352 / 0.6); }
.story-body h2 { margin: 18px 0 24px; }

/* ---------- final CTA ---------- */
.final { background: radial-gradient(120% 130% at 50% 0%, var(--plum-deep), var(--charcoal) 70%); color: var(--paper-on-dark); text-align: center; overflow: hidden; }
.final h2 { color: var(--paper-on-dark); font-size: clamp(38px, 6vw, 88px); }
.final .accent { color: var(--gold); }
.final .lead { color: var(--ink-on-dark); max-width: 42ch; margin: 26px auto 0; }
.final .btn-ghost { color: var(--paper-on-dark); border-color: var(--line-dark); }
.final .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.final-cta { margin-top: 42px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- price / offer card (services) ---------- */
.offer { max-width: 780px; margin: clamp(36px,5vh,56px) auto 0; background: var(--ivory-card); border: 1px solid var(--line); border-radius: 22px; padding: clamp(32px,4vw,54px); text-align: center; box-shadow: 0 30px 60px -40px oklch(0.31 0.085 352 / 0.45); }
.offer .price { font-family: var(--serif); font-size: clamp(44px,6vw,72px); color: var(--plum); line-height: 1; margin: 6px 0 4px; }
.offer .price small { font-size: 0.34em; color: var(--ink-faint); letter-spacing: 0.02em; }
.offer ul { list-style: none; margin: 26px 0 30px; padding: 0; display: inline-flex; flex-direction: column; gap: 12px; text-align: left; }
.offer ul li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 16px; }
.offer ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-deep); font-size: 13px; top: 3px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 22px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-method h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.contact-method a { color: var(--ink); text-decoration: none; font-size: 18px; }
.contact-method a:hover { color: var(--plum); }
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 textarea,
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; margin-bottom: 16px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: 15px; background: var(--ivory-card); color: var(--ink); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: clamp(28px,3vw,44px); margin-top: clamp(40px,6vh,64px); }
.post-card { display: flex; flex-direction: column; background: var(--ivory-card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .4s, box-shadow .4s; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -34px oklch(0.31 0.085 352 / 0.5); }
.post-card .thumb { aspect-ratio: 16/10; background: var(--ivory-deep); overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .post-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card .post-meta { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }
.post-card h3 { font-size: clamp(21px,2vw,26px); }
.post-card h3 a { color: var(--charcoal); text-decoration: none; }
.post-card h3 a:hover { color: var(--plum); }
.post-card p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }
.post-card .readmore { margin-top: auto; }

.single-article { max-width: 760px; margin: 0 auto; }
.single-article h2 { font-size: clamp(28px,3vw,42px); margin: 1.4em 0 .5em; }
.single-article h3 { margin: 1.2em 0 .4em; }
.single-article p { color: var(--ink); margin: 0 0 1.2em; }
.single-article img { border-radius: 12px; margin: 1.6em 0; }
.single-article .lead { margin-bottom: 1em; }
.single-article .pull { margin: 1.5em 0; }
/* Article sign-off: name, credentials, and the Spirit · Soul · Body rule. */
.post-signature { font-family: var(--serif); font-style: italic; font-size: clamp(19px,1.7vw,23px); color: var(--plum); margin: 2em 0 0; line-height: 1.4; }
.post-signature span { display: block; font-family: var(--sans); font-style: normal; font-size: 13px; letter-spacing: .04em; color: var(--ink-faint); margin-top: 8px; }
.post-tricolon { text-align: center; font-family: var(--sans); font-size: 11.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep); margin: 2.6em 0 0; padding-top: 2em; border-top: 1px solid var(--line); }

/* Article subtitle + byline (set in Posts > Article details) */
.post-subtitle { font-family: var(--serif); font-style: italic; font-size: clamp(20px,2.2vw,28px);
  line-height: 1.35; color: var(--plum); max-width: 46ch; margin: 18px auto 0; }
.page-hero .post-meta { margin-top: 20px; font-family: var(--sans); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.article-header { text-align: center; margin-bottom: clamp(34px,5vh,56px); }

.pager { display: flex; justify-content: center; gap: 10px; margin-top: clamp(44px,6vh,72px); }
.pager a, .pager span { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: 14px; }
.pager .current { background: var(--plum); color: var(--ivory); border-color: var(--plum); }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal-2); color: var(--ink-on-dark); padding-block: clamp(56px, 8vh, 92px) 36px; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.site-footer .brand { color: var(--paper-on-dark); font-size: 27px; }
.site-footer .brand span { color: var(--ink-on-dark); }
.site-footer p { color: var(--ink-on-dark); font-size: 15px; line-height: 1.7; max-width: 40ch; margin-top: 16px; }
.site-footer h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
/* Brainz Magazine — quiet external credibility signal, never competing. */
.footer-featured { margin-top: 34px; }
.footer-featured .featured-row { display: flex; align-items: center; gap: 22px; margin-top: 14px; flex-wrap: wrap; }
.footer-featured img { width: clamp(128px, 13vw, 164px); height: auto; display: block; opacity: .75; transition: opacity .3s; }
.footer-featured img.lcc { width: clamp(46px, 4.4vw, 56px); border-radius: 50%; }
.footer-featured a:hover img { opacity: 1; }
/* Credentials: Brainz + Life Coach Code, each a logo beside its own label.
   Wraps to one per line on narrow screens rather than shrinking to nothing. */
.story-credential { display: flex; align-items: center; flex-wrap: wrap; gap: 22px 38px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.story-credential .cred { display: flex; align-items: center; gap: 15px; text-decoration: none; min-width: 0; }
.story-credential img { width: clamp(88px, 8.6vw, 112px); height: auto; display: block; flex: none; opacity: .92; transition: opacity .3s; }
.story-credential .cred-lcc { width: clamp(50px, 4.8vw, 62px); border-radius: 50%; }
.story-credential .cred:hover img { opacity: 1; }
.story-credential span { font-family: var(--sans); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); line-height: 1.65; }
@media (max-width: 700px) {
  .story-credential { gap: 18px 24px; }
  .story-credential .cred { flex: 1 1 100%; }
  .story-credential span { font-size: 11px; letter-spacing: .13em; }
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; }
.site-footer ul a { color: var(--ink-on-dark); text-decoration: none; font-size: 15px; transition: color .3s; }
.site-footer ul a:hover { color: var(--gold); }
.footer-base { max-width: var(--maxw); margin: clamp(44px,6vh,72px) auto 0; padding: 26px var(--pad-x) 0; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ink-faint); }
.footer-base a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line-dark); padding-bottom: 2px; transition: color .3s, border-color .3s; }
.footer-base a:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .head-grid, .space-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-photo { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 860px) {
  .testi-grid, .testi-grid.cols-2 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .triad { grid-template-columns: 1fr; gap: 0; }
  .triad-col { border-top: none; border-left: 3px solid var(--line); padding: 4px 0 4px 18px; margin-bottom: 22px; }
  .t-spirit { border-left-color: var(--plum-soft); } .t-soul { border-left-color: var(--gold-deep); } .t-body { border-left-color: var(--blue); }
}
.nav-close { display: none; position: absolute; top: 20px; right: 22px; width: 42px; height: 42px; border: none; background: var(--ivory-deep); border-radius: 50%; font-size: 26px; line-height: 1; color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }
.nav-close:hover { background: var(--plum); color: var(--ivory); }
body.nav-open { overflow: hidden; }
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); height: 100dvh; background: var(--ivory); box-shadow: -20px 0 60px -30px rgba(0,0,0,.4); transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.2,1); padding: 92px 34px 40px; z-index: 130; display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain; }
  .nav-open .main-nav { transform: none; }
  .nav-close { display: flex; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }
  .main-nav a { font-size: 21px; font-family: var(--serif); }
  .nav-wrap { gap: 0; }
  .site-header .btn { display: none; }
  .main-nav .btn.mobile-book { display: inline-flex; margin-top: 20px; color: var(--ivory); }
}
@media (max-width: 620px) {
  body { font-size: 16.5px; }
  .brain-row { grid-template-columns: 56px 1fr; gap: 14px; }
  .brain-letter { font-size: 42px; }
  .story-photo .badge { right: 0; }
}

/* ============================================================
   FAQ (accordion, grouped)
   ============================================================ */
.faq-wrap { max-width: 840px; margin: clamp(36px,5vh,56px) auto 0; }
.faq-group { margin-top: clamp(34px,5vh,52px); }
.faq-group:first-child { margin-top: 0; }
.faq-group-title { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); }
.faq { border-bottom: 1px solid var(--line); }
.faq-head { display: flex; align-items: flex-start; gap: 20px; padding: 24px 4px; cursor: pointer; user-select: none; }
.faq-q { font-family: var(--serif); font-size: clamp(19px,1.9vw,25px); color: var(--ink-faint); flex: 1; transition: color .3s; line-height: 1.25; }
.faq:hover .faq-q { color: var(--charcoal); }
.faq.open .faq-q { color: var(--plum); }
.faq-plus { width: 18px; height: 18px; position: relative; flex: none; margin-top: 9px; opacity: .55; transition: transform .5s, opacity .4s; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--charcoal); }
.faq-plus::before { left: 0; top: 8.25px; width: 18px; height: 1.5px; }
.faq-plus::after { top: 0; left: 8.25px; height: 18px; width: 1.5px; transition: transform .5s; }
.faq.open .faq-plus { transform: rotate(180deg); opacity: 1; }
.faq.open .faq-plus::after { transform: scaleY(0); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.4,0,.2,1); }
.faq-body-inner { padding: 0 38px 26px 0; }
.faq-body-inner p { color: var(--ink-soft); font-size: clamp(15.5px,1.1vw,17.5px); line-height: 1.72; margin: 0 0 12px; max-width: 66ch; }
.faq-body-inner p:last-child { margin-bottom: 0; }
.faq-body-inner ul { margin: 0 0 12px; padding-left: 20px; color: var(--ink-soft); font-size: clamp(15.5px,1.1vw,17.5px); line-height: 1.7; }
.faq-body-inner .faq-letters { list-style: none; padding: 0; }
.faq-body-inner .faq-letters li { padding: 3px 0; }
.faq-body-inner .faq-letters b { color: var(--plum); font-family: var(--serif); font-size: 1.05em; }
.faq.open .faq-body { max-height: 1200px; }

/* ============================================================
   CALENDLY MODAL
   ============================================================ */
.sh-cal-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 18px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease; }
.sh-cal-modal.open { opacity: 1; visibility: visible; pointer-events: auto; }
.sh-cal-backdrop { position: absolute; inset: 0; background: oklch(0.205 0.014 40 / 0.55); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.sh-cal-box { position: relative; z-index: 1; background: var(--ivory); border-radius: 18px; width: min(940px, 96vw); height: min(760px, 92vh); box-shadow: 0 50px 120px -30px rgba(0,0,0,.55); display: flex; flex-direction: column; overflow: hidden; transform: translateY(14px) scale(.98); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.sh-cal-modal.open .sh-cal-box { transform: none; }
.sh-cal-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 14px 22px; border-bottom: 1px solid var(--line); flex: none; }
.sh-cal-title { font-family: var(--serif); font-size: 19px; color: var(--charcoal); }
.sh-cal-close { width: 42px; height: 42px; border: none; background: var(--ivory-deep); border-radius: 50%; cursor: pointer; font-size: 24px; line-height: 1; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.sh-cal-close:hover { background: var(--plum); color: var(--ivory); }
.sh-cal-frame { position: relative; flex: 1; background: var(--ivory); }
.sh-cal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sh-cal-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 30px; color: var(--ink-soft); font-family: var(--sans); }
body.sh-noscroll { overflow: hidden; }
@media (max-width: 620px) { .sh-cal-box { height: 94vh; width: 100vw; border-radius: 14px; } }

/* ============================================================
   THE SWITCH WITHIN (flagship)
   ============================================================ */
.switch-hero { background: radial-gradient(130% 120% at 78% 15%, oklch(0.58 0.075 350 / 0.16), transparent 55%), radial-gradient(120% 120% at 50% 0%, var(--ivory-deep), var(--ivory) 62%); }
.switch-badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--plum); background: oklch(0.40 0.098 350 / 0.08); border: 1px solid oklch(0.40 0.098 350 / 0.2); padding: 8px 16px; border-radius: 100px; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 44px); margin-top: clamp(36px,5vh,56px); }
.compare-col { background: var(--ivory-card); border: 1px solid var(--line); border-radius: 18px; padding: clamp(26px,3vw,38px); }
.compare-col.accent-col { background: linear-gradient(180deg, oklch(0.40 0.098 350 / 0.06), var(--ivory-card)); border-color: oklch(0.40 0.098 350 / 0.2); }
.compare-col h3 { font-size: clamp(22px,2.3vw,28px); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.compare-col h3 .mk { width: 34px; height: 34px; border-radius: 50%; background: var(--charcoal); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 15px; flex: none; }
.compare-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.compare-list li { padding: 14px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: clamp(15px,1.1vw,17px); line-height: 1.5; }
.compare-list li:first-child { border-top: none; }
.compare-note { text-align: center; max-width: 760px; margin: clamp(30px,4vh,44px) auto 0; font-family: var(--serif); font-style: italic; font-size: clamp(20px,2.2vw,28px); color: var(--charcoal); line-height: 1.35; }
.compare-note .accent { color: var(--plum); }

.tenets { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px,1.6vw,20px); margin-top: clamp(36px,5vh,56px); }
.tenet { background: var(--ivory-card); border: 1px solid var(--line); border-radius: 16px; padding: clamp(20px,2vw,26px); text-align: center; display: flex; flex-direction: column; gap: 14px; }
.tenet .num { width: 42px; height: 42px; margin: 0 auto; border-radius: 50%; background: oklch(0.58 0.075 350 / 0.16); color: var(--plum); font-family: var(--serif); font-size: 20px; display: flex; align-items: center; justify-content: center; }
.tenet h3 { font-size: clamp(18px,1.5vw,21px); line-height: 1.12; }
.tenet p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
@media (max-width: 900px) { .tenets { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tenets { grid-template-columns: 1fr; } }

.sessions-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px,4vw,64px); align-items: start; margin-top: clamp(36px,5vh,56px); }
.session-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.session { border-bottom: 1px solid var(--line); }
.session-head { display: grid; grid-template-columns: 44px 1fr auto; gap: 18px; align-items: center; padding: 22px 4px; cursor: pointer; }
.session-idx { width: 40px; height: 40px; border-radius: 50%; background: var(--charcoal); color: var(--gold); font-family: var(--serif); font-size: 17px; display: flex; align-items: center; justify-content: center; }
.session-t { font-family: var(--serif); font-size: clamp(20px,2vw,26px); color: var(--charcoal); line-height: 1.1; }
.session-when { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.session-body { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.4,0,.2,1); }
.session-body-inner { padding: 0 4px 22px 62px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.session.open .session-body { max-height: 260px; }
.outcome-card { background: var(--charcoal); color: var(--ink-on-dark); border-radius: 20px; padding: clamp(28px,3vw,40px); position: sticky; top: 100px; }
.outcome-card h3 { color: var(--paper-on-dark); font-size: clamp(23px,2.4vw,30px); margin-bottom: 20px; }
.outcome-card ul { list-style: none; margin: 0; padding: 0; }
.outcome-card li { padding: 14px 0; border-top: 1px solid var(--line-dark); font-size: 15.5px; color: var(--paper-on-dark); display: flex; gap: 12px; align-items: flex-start; }
.outcome-card li::before { content: "\2726"; color: var(--gold); font-size: 12px; margin-top: 4px; }
@media (max-width: 900px) { .sessions-grid { grid-template-columns: 1fr; } .outcome-card { position: static; } }

.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,30px); margin-top: clamp(36px,5vh,56px); }
.tool-col { background: var(--ivory-card); border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px,2.6vw,34px); }
.tool-col h3 { font-size: clamp(20px,2vw,25px); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); display: inline-block; }
.tool-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.tool-col li { color: var(--ink-soft); font-size: 15.5px; padding-left: 22px; position: relative; }
.tool-col li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--plum-soft); }
@media (max-width: 860px) { .tools-grid { grid-template-columns: 1fr; } }

.loop-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px,1.6vw,22px); margin-top: clamp(36px,5vh,56px); }
.loop-node { text-align: center; background: var(--ivory-card); border: 1px solid var(--line); border-radius: 50% 50% 16px 16px; padding: 26px 18px 24px; }
.loop-node .ln { width: 30px; height: 30px; border-radius: 50%; background: var(--plum); color: var(--ivory); font-family: var(--serif); font-size: 15px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.loop-node .lk { font-family: var(--serif); font-size: 20px; color: var(--gold-deep); font-weight: 600; }
.loop-node h3 { font-size: 17px; margin: 4px 0 10px; line-height: 1.1; }
.loop-node p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }
@media (max-width: 900px) { .loop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .loop-grid { grid-template-columns: 1fr; } }

.invest { max-width: 720px; margin: clamp(36px,5vh,56px) auto 0; background: radial-gradient(120% 130% at 50% 0%, var(--plum-deep), var(--charcoal) 75%); color: var(--paper-on-dark); border-radius: 24px; padding: clamp(34px,4vw,56px); text-align: center; }
.invest .eyebrow { color: var(--gold); justify-content: center; }
.invest .eyebrow::before { background: var(--gold); }
.invest h3 { color: var(--paper-on-dark); font-size: clamp(30px,3.4vw,44px); margin: 12px 0; }
.invest .price { font-family: var(--serif); font-size: clamp(52px,7vw,84px); color: var(--gold); line-height: 1; margin: 6px 0 2px; }
.invest .price small { font-size: .28em; color: var(--ink-on-dark); letter-spacing: .02em; display: block; margin-top: 10px; }
.invest p { color: var(--ink-on-dark); max-width: 46ch; margin: 16px auto 26px; }

.leadmagnet { max-width: 900px; margin: 0 auto; background: var(--ivory-card); border: 1px solid var(--line); border-radius: 22px; padding: clamp(30px,4vw,52px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,52px); align-items: center; box-shadow: 0 30px 60px -40px oklch(0.31 0.085 352 / 0.45); }
.lm-cover { aspect-ratio: 3/4; border-radius: 12px; background: linear-gradient(160deg, var(--plum-deep), var(--charcoal)); color: var(--paper-on-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 26px; box-shadow: 0 26px 50px -26px oklch(0.31 0.085 352 / 0.6); }
.lm-cover .k { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.lm-cover .ttl { font-family: var(--serif); font-size: clamp(21px,2vw,27px); line-height: 1.15; }
.sh-lead-form input[type=text], .sh-lead-form input[type=email] { width: 100%; padding: 14px 16px; margin-bottom: 14px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: 15px; background: var(--ivory); color: var(--ink); }
.sh-lead-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin: 4px 0 18px; line-height: 1.5; }
.sh-lead-consent input { margin-top: 3px; }
.sh-lead-msg { margin-top: 14px; font-size: 14px; min-height: 20px; }
.sh-lead-msg.ok { color: var(--plum); }
.sh-lead-msg.err { color: #b3261e; }
.sh-note-msg { margin-top: 6px; font-size: 14px; min-height: 20px; }
.sh-note-msg.ok { color: var(--plum); font-weight: 600; }
.sh-note-msg.err { color: #b3261e; }
@media (max-width: 760px) { .leadmagnet { grid-template-columns: 1fr; } .lm-cover { max-width: 260px; margin: 0 auto; } }

/* ============================================================
   LANDING PAGE
   ============================================================ */
.lp-hero { min-height: 92vh; min-height: 92svh; display: flex; align-items: center; text-align: center; padding-top: clamp(120px,16vh,180px); padding-bottom: var(--section-y); }
.lp-hero h1 { font-size: clamp(46px, 7.4vw, 104px); line-height: 0.98; }
.lp-sub { max-width: 40ch; margin: 26px auto 0; color: var(--ink-soft); font-size: clamp(17px,1.35vw,20px); line-height: 1.6; }
.lp-cta { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lp-cta .reassure { font-size: 13.5px; color: var(--ink-faint); letter-spacing: .01em; }

.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 12px; margin-top: 40px; }
.chip { font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: .03em; color: var(--ink-soft); background: var(--ivory-card); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.chip .d { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-deep); flex: none; }

.recognition-band { text-align: center; }
.recognition-band p { font-family: var(--serif); font-style: italic; font-size: clamp(24px,3.2vw,42px); line-height: 1.3; max-width: 20ch; margin: 0 auto; color: var(--charcoal); }
.recognition-band .accent { font-style: italic; }

.shift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,30px); margin-top: clamp(36px,5vh,56px); }
.shift { text-align: center; padding: clamp(26px,2.8vw,38px); background: var(--ivory-card); border: 1px solid var(--line); border-radius: 18px; transition: transform .4s, box-shadow .4s; }
.shift:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -34px oklch(0.31 0.085 352 / 0.45); }
.shift .from { color: var(--ink-faint); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; }
.shift .ar2 { font-family: var(--serif); font-size: 24px; color: var(--gold-deep); display: block; margin: 8px 0; }
.shift h3 { font-size: clamp(21px,2vw,26px); margin: 0; }
@media (max-width: 760px) { .shift-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

.authority { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px,5vw,72px); align-items: center; }
.authority .a-photo { aspect-ratio: 4/5; border-radius: 180px 180px 18px 18px; background: linear-gradient(180deg, var(--ivory-card), var(--ivory-deep)); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--ink-faint); font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding: 20px; overflow: hidden; }
.authority .a-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .authority { grid-template-columns: 1fr; } .authority .a-photo { max-width: 320px; margin: 0 auto; } }

/* ============================================================
   PORTRAIT PHOTO (reused across landing / about)
   ============================================================ */
.has-portrait { position: relative; overflow: hidden; }
.has-portrait > * { position: relative; z-index: 1; }
.has-portrait::after { content: ""; position: absolute; inset: 0; z-index: 0; background-image: url(../img/yevheniya.png); background-size: cover; background-position: center 10%; background-repeat: no-repeat; }

/* ============================================================
   MOBILE: no horizontal scroll; stack before/after comparisons
   ============================================================ */
html { overflow-x: hidden; }
.compare, .head-grid, .sessions-grid, .authority, .contact-grid, .story-grid, .space-grid { max-width: 100%; }
@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
}
