:root {
  --rose: #bf849c;
  --rose-deep: #9e617b;
  --rose-pale: #f5e9ed;
  --rose-blush: #efd7de;
  --cream: #f9f7f3;
  --cream-warm: #f2ede4;
  --paper: #fffefd;
  --mist: #f1eee9;
  --ink: #26201d;
  --ink-soft: #3d3532;
  --ink-muted: #6d6660;
  --line: #e5e0d9;
  --line-soft: #eee9e1;
  --sage: #6b8574;
  --sage-pale: #e8efea;
  --charcoal: #2a2422;
  --radius: 12px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(38, 32, 29, 0.04), 0 1px 3px rgba(38, 32, 29, 0.05);
  --shadow-md: 0 8px 30px -8px rgba(38, 32, 29, 0.10), 0 3px 8px -2px rgba(38, 32, 29, 0.05);
  --shadow-lg: 0 30px 60px -20px rgba(38, 32, 29, 0.20), 0 10px 20px -5px rgba(38, 32, 29, 0.08);
  --font-sans: "Manrope", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-serif: "Fraunces", Georgia, serif;
  --container: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ HEADER ============ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--rose);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand__name em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}

.primary-nav { display: flex; gap: 2rem; font-size: 0.94rem; color: var(--ink-muted); }
.primary-nav a { text-decoration: none; transition: color 0.15s; }
.primary-nav a:hover { color: var(--rose-deep); }

.header-cta {
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 900px) {
  .primary-nav { display: none; }
}
@media (max-width: 520px) {
  .header-cta { display: none; }
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  background: var(--rose-pale);
  border-radius: 999px;
}
.eyebrow--sage { color: #3f5d4c; background: var(--sage-pale); }
.eyebrow--paper { color: var(--paper); background: rgba(255,254,253,0.08); border: 1px solid rgba(255,254,253,0.18); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.6rem, 5.8vw, 4.8rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.35rem; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}

p { margin: 0 0 1rem; color: var(--ink-soft); }
.lede { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.55; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head p { font-size: 1.05rem; margin-top: 1rem; }
.section-head--dark h2 { color: var(--paper); }
.section-head--dark p { color: rgba(255,254,253,0.7); }

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--font-sans);
}
.button--rose { background: var(--rose); color: var(--paper); box-shadow: 0 8px 20px -8px rgba(158, 97, 123, 0.5); }
.button--rose:hover { background: var(--rose-deep); transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(158, 97, 123, 0.6); }
.button--wide { width: 100%; justify-content: center; padding: 1.1rem 1.7rem; }
.button--lg { padding: 1.15rem 2rem; font-size: 1.02rem; }

.text-link {
  color: var(--rose-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.text-link:hover { border-color: var(--rose); }

.fine-print { font-size: 0.85rem; color: var(--ink-muted); text-align: center; margin-top: 1rem; }

.note {
  margin: 1rem 0 0;
  padding: 0.9rem 1.1rem;
  background: var(--cream-warm);
  border-radius: var(--radius);
  font-size: 0.94rem;
  color: var(--ink);
  border-left: 3px solid var(--rose);
}
.note strong { color: var(--rose-deep); }

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 2rem auto 5rem;
  padding: 0 var(--pad);
  align-items: center;
}
.hero__copy .eyebrow { margin-bottom: 1.5rem; }
.hero__copy h1 { margin-bottom: 1.5rem; }
.hero__copy p.lede { max-width: 520px; }
.hero__actions { display: flex; align-items: center; gap: 1.75rem; margin: 2rem 0; flex-wrap: wrap; }

.hero__proof {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.92rem; color: var(--ink-muted);
}
.hero__proof li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__proof li::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--rose);
}

.hero__figure {
  position: relative;
  margin: 0;
  padding: 0 1rem;
}
.hero__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--rose-blush);
  transform: rotate(-2deg);
}
.hero__frame::before {
  content: "";
  position: absolute; inset: -15% -5% -5% -15%;
  background: radial-gradient(closest-side, var(--rose-blush), transparent 70%);
  z-index: -1;
  filter: blur(30px);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__caption {
  position: absolute;
  bottom: 1rem; left: 0.5rem;
  background: var(--paper);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 0.15rem;
  transform: rotate(2deg);
}
.hero__caption-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-deep); font-weight: 700;
}
.hero__caption-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--ink);
}
.hero__caption-tag { font-size: 0.82rem; color: var(--ink-muted); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; margin: 1rem auto 3rem; }
  .hero__figure { max-width: 380px; margin: 0 auto; }
}

/* ============ QUOTE STRIP ============ */
.quote-strip {
  max-width: var(--container);
  margin: 0 auto 5rem;
  padding: 2.5rem var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.quote-strip p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.quote-strip em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1.8em;
  line-height: 0;
  position: relative;
  top: 0.15em;
  margin: 0 0.15em;
}

/* ============ CALCULATOR ============ */
.calculator {
  max-width: var(--container);
  margin: 0 auto 6rem;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  background: var(--paper);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.calculator-form {
  background: var(--cream);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
}

.step { padding: 1.5rem 0; border-bottom: 1px dashed var(--line); }
.step:first-child { padding-top: 0; }
.step:last-of-type { border-bottom: 0; padding-bottom: 0.5rem; }

.step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.step-title {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 999px;
  background: var(--paper);
  color: var(--rose-deep);
  font-size: 0.82rem; font-weight: 700;
  font-family: var(--font-sans);
  border: 1px solid var(--rose-blush);
}

.unit-toggle, .segmented {
  display: inline-flex;
  background: var(--paper);
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.unit-toggle button, .segmented button {
  border: 0; background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--ink-muted);
  transition: background 0.15s, color 0.15s;
}
.unit-toggle button.active, .segmented button.active {
  background: var(--ink);
  color: var(--paper);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.grid-2:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field label, .field .label {
  font-size: 0.87rem; font-weight: 600;
  color: var(--ink); display: flex; align-items: center; gap: 0.35rem;
  letter-spacing: 0.01em;
}
.info {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.1rem; height: 1.1rem; border-radius: 999px;
  background: var(--mist); color: var(--ink-muted);
  font-size: 0.7rem; font-family: var(--font-display); font-style: italic;
  cursor: help;
}

.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap input, .field select {
  width: 100%;
  padding: 0.85rem 3.5rem 0.85rem 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field select {
  padding-right: 2.5rem; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%236d6660' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.input-wrap input:focus, .field select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(191, 132, 156, 0.18);
}
.input-unit {
  position: absolute; right: 1rem;
  font-size: 0.82rem; color: var(--ink-muted);
  pointer-events: none; font-weight: 500;
}
.input-row { display: flex; gap: 0.65rem; }
.input-row .input-wrap { flex: 1; }

.goal-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
@media (max-width: 720px) { .goal-grid { grid-template-columns: 1fr; } }

.goal-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: left;
  display: flex; flex-direction: column; gap: 0.35rem;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  position: relative;
}
.goal-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--cream-warm);
  color: var(--rose-deep);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.65rem;
  transition: background 0.15s;
}
.goal-card strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.goal-card__desc { font-size: 0.87rem; color: var(--ink-muted); line-height: 1.45; }
.goal-card:hover { border-color: var(--rose); transform: translateY(-1px); }
.goal-card.active {
  border-color: var(--rose);
  background: var(--rose-pale);
}
.goal-card.active .goal-card__icon { background: var(--rose); color: var(--paper); }

.calculator-form > button[type=submit] { margin-top: 2rem; }

.calculator-aside {
  background: linear-gradient(160deg, var(--cream-warm) 0%, var(--rose-pale) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  position: sticky; top: 2rem;
}
.aside-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 1rem 0 1rem;
  letter-spacing: -0.02em;
}
.aside-headline em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.aside-list { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; display: grid; gap: 0.75rem; }
.aside-list li { position: relative; padding-left: 1.5rem; font-size: 0.95rem; color: var(--ink); }
.aside-list li::before {
  content: ""; position: absolute; left: 0; top: 0.7rem;
  width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--rose);
}

@media (max-width: 900px) {
  .calculator-grid { grid-template-columns: 1fr; }
  .calculator-aside { position: static; }
}

/* ============ RESULT ============ */
.result {
  max-width: 1000px;
  margin: 5rem auto;
  padding: 0 var(--pad);
}
.result[hidden] { display: none; }

.result-target {
  background: linear-gradient(160deg, var(--paper) 0%, var(--cream) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border: 1px solid var(--line-soft);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
}
.result-target .eyebrow { margin-bottom: 0.75rem; }
.result-target__number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--ink);
  line-height: 1;
  margin: 0.5rem 0;
  letter-spacing: -0.04em;
}
.result-target__number .unit {
  display: block;
  font-size: 0.85rem; font-weight: 500; color: var(--ink-muted);
  margin-top: 0.5rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-family: var(--font-sans);
}
.result-caption { max-width: 500px; margin: 1rem auto 2rem; font-size: 1.02rem; }
.result-caption strong { color: var(--ink); font-weight: 600; }

.energy-gauge {
  position: relative;
  height: 44px;
  max-width: 560px;
  margin: 1.5rem auto 3rem;
  background: linear-gradient(90deg, var(--mist), var(--rose-pale), var(--mist));
  border-radius: 999px;
}
.energy-gauge__range {
  position: absolute; top: 0; height: 100%;
  background: rgba(191, 132, 156, 0.4);
  border-radius: 999px;
}
.energy-gauge__marker {
  position: absolute; top: -6px;
  width: 4px; height: 56px;
  background: var(--rose-deep);
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(158, 97, 123, 0.4);
}
.energy-gauge__min, .energy-gauge__max {
  position: absolute; top: 56px;
  font-size: 0.8rem; color: var(--ink-muted);
  font-weight: 500;
}
.energy-gauge__min { left: 0; }
.energy-gauge__max { right: 0; }

.result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 620px) { .result-cards { grid-template-columns: 1fr; } }

.info-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.info-card--rose { background: var(--rose-pale); border-color: transparent; }
.info-card__label { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 0.5rem; font-weight: 700; }
.info-card__value {
  font-family: var(--font-display); font-weight: 600; font-size: 2.2rem;
  color: var(--ink); margin: 0 0 0.5rem; letter-spacing: -0.02em; line-height: 1;
}
.info-card__value .unit { font-size: 0.85rem; font-weight: 500; color: var(--ink-muted); margin-left: 0.5rem; font-family: var(--font-sans); letter-spacing: 0.1em; text-transform: uppercase; }
.info-card__detail { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }

.macro-strip {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  display: grid;
  gap: 1.5rem;
}
.macro-strip__heading .eyebrow { margin-bottom: 0.5rem; }
.macro-strip__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.4rem; margin: 0.5rem 0 0.35rem;
  color: var(--ink); letter-spacing: -0.01em;
}
.macro-strip__title em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.macro-strip__sub { font-size: 0.92rem; margin: 0; }

.macro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.macro-stat {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}
.macro-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.macro-stat .macro-unit { font-size: 1rem; color: var(--ink-muted); margin-left: 0.15rem; }
.macro-stat .macro-label {
  display: block; margin-top: 0.4rem;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 700;
}

.result-cta {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  color: var(--paper);
}
.result-cta .eyebrow { color: var(--rose); background: rgba(191,132,156,0.14); border: 0; }
.result-cta h3 { font-size: 1.55rem; color: var(--paper); margin: 0.75rem 0 0; }
.result-cta h3 em { color: var(--rose); }
.result-cta p { color: rgba(255,254,253,0.72); margin: 0 0 1.25rem; }
@media (max-width: 720px) { .result-cta { grid-template-columns: 1fr; } }

.disclaimer { text-align: center; font-size: 0.85rem; color: var(--ink-muted); margin: 2rem auto 0; max-width: 640px; }

/* ============ WHY NUMBERS ============ */
.why-numbers {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 6rem auto;
  padding: 0 var(--pad);
  align-items: center;
}
.why-numbers__aside {
  background: linear-gradient(160deg, var(--rose-pale) 0%, var(--cream-warm) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 5vw, 4rem) clamp(2rem, 3vw, 2.5rem);
  text-align: center;
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; justify-content: center;
}
.why-badge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  display: flex; flex-direction: column; gap: 0.35rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.why-badge__word { }
.why-badge__plus {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--rose-deep);
  font-weight: 400;
}
.why-badge__sub {
  margin: 1.5rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.94rem; color: var(--ink-soft);
  font-style: normal;
}
.why-numbers__copy .eyebrow { margin-bottom: 1.25rem; }
.why-numbers__copy .lede { margin-bottom: 1.5rem; }
.why-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 0.75rem; }
.why-list li {
  padding: 1.1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius);
  font-size: 0.96rem; color: var(--ink-soft);
}
.why-list li strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .why-numbers { grid-template-columns: 1fr; margin: 4rem auto; }
  .why-numbers__aside { aspect-ratio: auto; padding: 3rem 2rem; }
}

/* ============ METHOD (dark section) ============ */
.method {
  max-width: var(--container);
  margin: 6rem auto;
  padding: clamp(4rem, 7vw, 6rem) var(--pad);
  background: var(--ink);
  border-radius: var(--radius-xl);
  color: var(--paper);
}
.method-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; max-width: var(--container); }
.method article {
  background: rgba(255,254,253,0.05);
  border: 1px solid rgba(255,254,253,0.10);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.method__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--rose);
  display: block; margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.method h3 { color: var(--paper); font-size: 1.35rem; margin-bottom: 0.65rem; }
.method article p { font-size: 0.94rem; margin: 0; color: rgba(255,254,253,0.72); line-height: 1.6; }

@media (max-width: 860px) {
  .method-grid { grid-template-columns: 1fr; }
}

/* ============ CLOSING ============ */
.closing {
  max-width: 760px;
  margin: 6rem auto;
  padding: 0 var(--pad);
  text-align: center;
}
.closing .eyebrow { margin-bottom: 1.5rem; }
.closing p { font-size: 1.1rem; max-width: 540px; margin: 1rem auto 2rem; }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem var(--pad);
  max-width: var(--container);
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-footer p { margin: 0; font-size: 0.9rem; color: var(--ink-muted); }
.site-footer a { color: var(--rose-deep); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.site-footer a:hover { border-bottom: 1px solid var(--rose); }
