/* ==========================================================================
   EveReset™ — styles
   --------------------------------------------------------------------------
   To change a colour or font across the whole site, edit the tokens in
   :root below. Everything else reads from them.
   ========================================================================== */

:root {
  /* palette — midnight navy × champagne gold */
  --black:     #080B12;   /* page background, near-black navy */
  --navy:      #0E1624;   /* alternate section background */
  --navy-2:    #16202F;   /* cards */
  --charcoal:  #1B1E24;
  --line:      rgba(200, 169, 104, 0.22);   /* thin gold borders */
  --line-soft: rgba(243, 238, 230, 0.08);
  --gold:      #C8A968;   /* champagne gold — buttons, highlights */
  --gold-lt:   #E2CB93;
  --bronze:    #9C6B3E;
  --wine:      #7A3B3B;   /* only used deep in the emotional cycle */
  --ivory:     #F3EEE6;   /* headlines */
  --text:      #C9C4BB;   /* body copy */
  --muted:     #8C877F;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --max: 1200px;
  --gutter: clamp(16px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }
em { font-style: italic; }
.gold { color: var(--gold); }
sup.tm { font-size: 0.42em; vertical-align: 0.9em; font-style: normal; margin-left: 1px; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.08;
}
h1 em, h2 em { color: var(--gold); font-weight: 400; }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.005em; }
h3 { font-size: 1.6rem; }

/* ---------- small shared pieces ---------- */

.eyebrow, .kicker, .small-caps {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.kicker span {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--gold-lt);
}
.kicker::after { content: ""; width: 48px; height: 1px; background: var(--line); }
.center .kicker { justify-content: center; }
.center .kicker::before { content: ""; width: 48px; height: 1px; background: var(--line); order: -1; }

.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold) 55%, var(--bronze));
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200, 169, 104, 0.25); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: rgba(200, 169, 104, 0.08); }
.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.66rem; }

.section { padding: clamp(80px, 11vw, 150px) var(--gutter); max-width: var(--max); margin: 0 auto; }
.section-head { margin-bottom: clamp(48px, 6vw, 80px); }
.section-head.center { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.section-intro { margin-top: 1.6rem; color: var(--text); max-width: 640px; margin-left: auto; margin-right: auto; }
.lede { font-size: 1.12rem; color: var(--text); }

/* full-bleed alternate backgrounds, while content stays centred */
.cycle, .process, .sessions { position: relative; }
.cycle::before, .process::before, .sessions::before {
  content: ""; position: absolute; inset: 0 calc(50% - 50vw); z-index: -1;
  background: var(--navy);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: 1.6rem var(--gutter);
}
.nav {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
/* note: written as `.nav .logo`, not `.logo`, so it outranks `.nav a` */
.nav .logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ivory);
  text-decoration: none;
  text-transform: none;
}
.nav .logo-tm { font-size: 0.4em; vertical-align: super; margin-left: 2px; color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; }
.nav a {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); text-decoration: none; transition: color .2s;
}
.nav a:hover { color: var(--gold); }
.nav .btn { color: var(--gold); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: min(100vh, 1000px);
  display: flex; align-items: center;
  padding: 140px var(--gutter) 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(200, 169, 104, 0.10), transparent 70%),
    radial-gradient(ellipse 80% 60% at 10% 100%, rgba(156, 107, 62, 0.14), transparent 70%),
    linear-gradient(180deg, #0B1220 0%, var(--black) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 20% 0 0 0;
  background: url("../img/candles.svg") bottom center / cover no-repeat;
  opacity: 0.32;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.6) 50%, transparent 85%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.6) 50%, transparent 85%);
}

/* the photo sits on the right and fades into the dark on its left edge */
.hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0; width: 52%;
  z-index: -1;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 35%;
  filter: grayscale(0.35) sepia(0.25) brightness(0.62) contrast(1.12);
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
}
.hero-photo::after {   /* warm side-light + bottom fade */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--black) 0%, transparent 30%),
    linear-gradient(270deg, rgba(200, 169, 104, 0.14) 0%, transparent 40%);
  pointer-events: none;
}
.hero-words {
  position: absolute; right: var(--gutter); bottom: 110px;
  text-align: right;
  font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ivory); opacity: 0.8; line-height: 2.3;
}

.hero-copy {
  position: relative;
  max-width: var(--max); width: 100%; margin: 0 auto;
}
.hero-copy > * { max-width: 640px; }
.hero-copy > h1 { max-width: 800px; }
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 1.4rem 0 2.2rem;
}
.hero h1 em { text-transform: none; font-style: italic; letter-spacing: 0; }
.hero-lines { margin-bottom: 1.6rem; border-left: 1px solid var(--line); padding-left: 1.4rem; }
.hero-lines p { font-family: var(--serif); font-size: 1.35rem; color: var(--ivory); line-height: 1.5; }
.hero-lines .gold { font-style: italic; }
.hero .lede { font-size: 1rem; margin-bottom: 1.6rem; }
.hero-close { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--gold-lt); margin-bottom: 2.2rem; line-height: 1.5; }
.hero-meta { margin-top: 1.4rem; font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }

/* the four-pillar strip */
.pillars {
  max-width: var(--max); margin: -60px auto 0; position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(14, 22, 36, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
}
.pillar { padding: 2.2rem 1rem; text-align: center; }
.pillar + .pillar { border-left: 1px solid var(--line); }
.pillar svg {
  width: 40px; height: 40px; margin: 0 auto 1rem;
  fill: none; stroke: var(--gold); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round;
}
.pillar-name { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ivory); }
.pillar-sub { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1.05rem; }

/* ==========================================================================
   01 — THE GAP
   ========================================================================== */

.gap-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.gap-known li {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--ivory);
  padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft);
}
.gap-known li::before { content: "✓"; color: var(--gold); font-family: var(--sans); font-size: 0.9rem; margin-right: 1rem; }
.gap-turn { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold); margin-bottom: 1rem; }
.gap-done li {
  padding: 0.9rem 0 0.9rem 2rem; position: relative;
  border-bottom: 1px solid var(--line-soft); font-size: 1.05rem;
}
.gap-done li::before {
  content: ""; position: absolute; left: 0; top: 1.55rem; width: 14px; height: 1px; background: var(--bronze);
}

.big-quote { text-align: center; margin: clamp(72px, 9vw, 120px) 0 2rem; }
.big-quote .small { font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.big-quote p:last-child {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.6rem); color: var(--ivory); line-height: 1;
}
.gap-close { text-align: center; font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.5; color: var(--text); }

/* ==========================================================================
   02 — THE CYCLE
   ========================================================================== */

.cycle { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.cycle-intro { position: sticky; top: 40px; }
.cycle-intro h2 { margin-bottom: 1.2rem; }
.cycle-intro .lede { margin-bottom: 2.6rem; font-family: var(--serif); font-size: 1.5rem; line-height: 1.4; }
.cycle-intro .lede em { color: var(--gold); }
.cycle .small-caps { display: block; margin-bottom: 1.2rem; }

.sequence { counter-reset: seq; }
.sequence li {
  display: grid; grid-template-columns: 120px 1fr; gap: 1rem; align-items: baseline;
  padding: 0.85rem 0; border-top: 1px solid var(--line-soft); font-size: 0.98rem;
}
.sequence li span {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}
.sequence li:not(:last-child) span::after { content: " →"; color: var(--muted); letter-spacing: 0; }

/* the ten-step timeline; --heat (0–9) drifts each step from gold toward wine */
.flow { position: relative; padding-left: 0; }
.flow::before {
  content: ""; position: absolute; left: 21px; top: 22px; bottom: 22px; width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--bronze) 50%, var(--wine));
}
.flow-step {
  --tone: color-mix(in srgb, var(--wine) calc(var(--heat) * 11%), var(--gold));
  position: relative;
  display: grid; grid-template-columns: 44px 1fr; gap: 1.4rem;
  padding: 0 0 1.6rem;
}
.flow-num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy);
  border: 1px solid var(--tone);
  color: var(--tone);
  font-family: var(--serif); font-size: 1.05rem;
  position: relative; z-index: 1;
}
.flow-step h3 {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--tone);
  margin: 0.75rem 0 0.35rem;
}
.flow-step p { font-size: 0.96rem; line-height: 1.6; }
.flow-step .q { font-family: var(--serif); font-style: italic; font-size: 1.28rem; color: var(--ivory); }

.flow-repeat {
  display: flex; gap: 1.2rem; align-items: center;
  margin-top: 0.6rem; padding: 1.4rem 1.6rem;
  border: 1px solid var(--line); background: rgba(200, 169, 104, 0.05);
}
.flow-repeat svg {
  width: 44px; height: 44px; flex: none;
  fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}
.flow-repeat-title { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.flow-repeat-chain { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ivory); }
.flow-repeat-chain span { color: var(--gold); font-style: normal; }

/* ==========================================================================
   03 — WHAT WE WORK ON
   ========================================================================== */

.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.card {
  background: var(--black); padding: 2.6rem 2.2rem;
  transition: background .3s;
}
.card:hover { background: var(--navy); }
.card h3 {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.card-quote { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--ivory); line-height: 1.2; margin-bottom: 1rem; }
.card p:last-child { font-size: 0.96rem; line-height: 1.65; }

/* ==========================================================================
   04 — ABOUT EVE
   ========================================================================== */

.about { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.about-side { position: sticky; top: 40px; }
.about h2 { font-size: clamp(3rem, 6vw, 5rem); }
.about-photo { width: 100%; height: auto; border-radius: 4px; margin: 1.6rem 0; display: block; }
.about-role { margin: 0.8rem 0 2.6rem; font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.about-pull {
  font-family: var(--serif); font-size: 1.7rem; line-height: 1.35; color: var(--ivory);
  border-left: 1px solid var(--gold); padding-left: 1.6rem;
}
.about-pull span { display: block; color: var(--gold); font-style: italic; margin-top: 0.4rem; }
.about-story p { margin-bottom: 1.3rem; }
.about-lead { font-family: var(--serif); font-size: 1.6rem; line-height: 1.4; color: var(--ivory); }
.about-been { margin: 0.4rem 0 2rem; border-top: 1px solid var(--line-soft); }
.about-been li { padding: 0.75rem 0 0.75rem 1.8rem; border-bottom: 1px solid var(--line-soft); position: relative; }
.about-been li::before { content: "—"; position: absolute; left: 0; color: var(--bronze); }
.about-been em { font-family: var(--serif); font-size: 1.15rem; color: var(--ivory); }

/* ==========================================================================
   05 — PROCESS
   ========================================================================== */

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative; padding: 2.4rem 2rem 2.2rem;
  background: linear-gradient(180deg, var(--navy-2), rgba(22, 32, 47, 0.4));
  border: 1px solid var(--line-soft);
  border-top: 1px solid var(--gold);
}
.step-num { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--gold); opacity: 0.55; display: block; margin-bottom: 1rem; }
.step h3 { font-size: 1.1rem; font-family: var(--sans); font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 0.8rem; }
.step p { font-size: 0.96rem; line-height: 1.65; }
.step-wide {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: auto 1fr; gap: 2.4rem; align-items: center;
  background:
    radial-gradient(ellipse 50% 120% at 0% 50%, rgba(200, 169, 104, 0.14), transparent 70%),
    var(--navy-2);
  border: 1px solid var(--gold);
  padding: 2.6rem 2.6rem;
}
.step-wide .step-num { font-size: 5rem; opacity: 0.9; margin: 0; }
.step-wide h3 { color: var(--gold); font-size: 1.3rem; }
.step-wide p { font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; color: var(--ivory); }

/* ==========================================================================
   06 — WHAT YOU CAN EXPECT (the awareness map)
   ========================================================================== */

.expect-map {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px) 1fr;
  grid-template-rows: repeat(3, auto);
  grid-template-areas: "n1 core n4" "n2 core n5" "n3 core n6";
  gap: 28px 56px; align-items: center;
}
.n1 { grid-area: n1; } .n2 { grid-area: n2; } .n3 { grid-area: n3; }
.n4 { grid-area: n4; } .n5 { grid-area: n5; } .n6 { grid-area: n6; }
.expect-core { grid-area: core; display: grid; place-items: center; }
.expect-ring {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 18px rgba(200, 169, 104, 0.04), 0 0 0 38px rgba(200, 169, 104, 0.025), 0 0 80px rgba(200, 169, 104, 0.12) inset;
  background: radial-gradient(circle, rgba(200, 169, 104, 0.10), transparent 70%);
}
.expect-core-label { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--ivory); line-height: 1.25; }

.expect-node { position: relative; padding: 1.4rem 1.6rem; border: 1px solid var(--line); background: var(--navy); }
.expect-node::after {   /* connector toward the centre circle */
  content: ""; position: absolute; top: 50%; width: 56px; height: 1px; background: var(--line);
}
.n1::after, .n2::after, .n3::after { right: -57px; }
.n4::after, .n5::after, .n6::after { left: -57px; }
.n1, .n2, .n3 { text-align: right; }
.expect-node h3 { font-family: var(--sans); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.expect-node p { font-size: 0.95rem; line-height: 1.55; }

/* ==========================================================================
   07 — SESSIONS
   ========================================================================== */

.session-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.session {
  display: flex; flex-direction: column;
  padding: 2.6rem 2.2rem;
  background: var(--black);
  border: 1px solid var(--line);
  position: relative;
}
.session-step { font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }
.session h3 { font-size: 2rem; }
.session-tag { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold-lt); margin: 0.3rem 0 1.4rem; }
.session-price {
  font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--ivory);
  padding-bottom: 1.4rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.session-price span { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--gold); vertical-align: super; }
.session-price small { font-family: var(--sans); font-size: 0.85rem; color: var(--muted); letter-spacing: 0.08em; }
.session-desc { font-size: 0.96rem; margin-bottom: 1.4rem; }
.session-label { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.ticks li { position: relative; padding: 0.3rem 0 0.3rem 1.6rem; font-size: 0.94rem; line-height: 1.5; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 0.4rem; }
.session-outcome {
  margin: 1.6rem 0 2rem; padding: 1.2rem 1.3rem;
  background: rgba(200, 169, 104, 0.06); border-left: 2px solid var(--gold);
}
.session-outcome p:last-child { font-family: var(--serif); font-size: 1.18rem; line-height: 1.45; color: var(--ivory); }
.session .btn { margin-top: auto; justify-content: center; }

/* ==========================================================================
   08 — WHO IT'S FOR
   ========================================================================== */

.who-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.who-col { padding: 2.6rem 2.4rem; border: 1px solid var(--line); }
.who-yes { background: linear-gradient(160deg, rgba(200, 169, 104, 0.08), transparent 60%); }
.who-no { border-color: var(--line-soft); }
.who-col h3 { font-size: 1.7rem; margin-bottom: 1.4rem; }
.who-no h3 em { color: var(--bronze); }
.who-col li { position: relative; padding: 0.8rem 0 0.8rem 2rem; border-top: 1px solid var(--line-soft); }
.who-yes li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.who-no li { color: var(--muted); }
.who-no li::before { content: "✕"; position: absolute; left: 0; color: var(--bronze); }

/* ==========================================================================
   09 — FAQ
   ========================================================================== */

.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.6rem 0;
  font-family: var(--serif); font-size: 1.5rem; color: var(--ivory);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--gold);
  transition: transform .25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 3rem 1.8rem 0; }

/* ==========================================================================
   CLOSING + FOOTER
   ========================================================================== */

.closing {
  text-align: center;
  padding: clamp(90px, 12vw, 160px) var(--gutter);
  background:
    radial-gradient(ellipse 50% 70% at 50% 100%, rgba(200, 169, 104, 0.12), transparent 70%),
    var(--navy);
  border-top: 1px solid var(--line-soft);
}
.closing h2 { margin: 1.4rem 0 2.6rem; }

.site-footer { padding: 3rem var(--gutter) 2.4rem; border-top: 1px solid var(--line); background: var(--black); }
.disclaimer { max-width: 820px; margin: 0 auto 2.4rem; text-align: center; font-size: 0.8rem; line-height: 1.7; color: var(--muted); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--muted);
}
.powered-by a { color: var(--gold); text-decoration: none; }
.powered-by a:hover { text-decoration: underline; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .card-grid, .process-grid, .session-grid { grid-template-columns: 1fr 1fr; }
  .session-grid .session:last-child { grid-column: 1 / -1; }
  .cycle, .about { grid-template-columns: 1fr; }
  .cycle-intro, .about-side { position: static; }
}

@media (max-width: 860px) {
  /* hero: photo becomes a darkened backdrop behind the copy */
  .hero { align-items: flex-end; padding-top: 120px; }
  .hero-photo { width: 100%; }
  .hero-photo img {
    object-position: 70% 20%;
    filter: grayscale(0.35) sepia(0.25) brightness(0.4) contrast(1.1);
    mask-image: linear-gradient(180deg, #000 30%, transparent 85%);
    -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 85%);
  }
  .hero-words { display: none; }
  .pillars { grid-template-columns: 1fr 1fr; margin: 0 var(--gutter); }
  .pillar:nth-child(3) { border-left: 0; }
  .pillar:nth-child(n+3) { border-top: 1px solid var(--line); }

  .gap-grid, .who-grid { grid-template-columns: 1fr; }

  .expect-map { grid-template-columns: 1fr; grid-template-areas: "core" "n1" "n2" "n3" "n4" "n5" "n6"; gap: 14px; }
  .expect-core { max-width: 240px; margin: 0 auto 2rem; width: 100%; }
  .expect-node::after { display: none; }
  .n1, .n2, .n3 { text-align: left; }
  .expect-node { border-left: 2px solid var(--gold); }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .nav .logo { font-size: 1.6rem; }
  .hero h1 { font-size: 2.3rem; }
  .hero h1 br { display: none; }
  .nav .btn-sm { padding: 0.55rem 1rem; letter-spacing: 0.16em; }
  .card-grid, .process-grid, .session-grid { grid-template-columns: 1fr; }
  .step-wide { grid-template-columns: 1fr; gap: 1rem; padding: 2.2rem 1.8rem; }
  .step-wide .step-num { font-size: 3.6rem; }
  .sequence li { grid-template-columns: 1fr; gap: 0.1rem; }
  .flow-step { gap: 1rem; }
  .flow-repeat { flex-direction: column; align-items: flex-start; }
  .faq-list summary { font-size: 1.25rem; }
  .faq-list details p { padding-right: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
