/* ─────────────────────────────────────────────────────────────────────────
 * Lifeframe Studio — site-wide stylesheet (v3, design-system edition)
 *
 * Design posture: editorial, restrained, warm, slow.
 * Closer to a small literary press or an obituary in a serious newspaper
 * than to a SaaS product. Paper-on-paper, not floating-glass.
 *
 * Type system (per BRAND_GUIDELINES.md):
 *   Serif    → Source Serif 4 (display + body)
 *   UI sans  → Inter (labels, eyebrows, nav, micro)
 *   Mono     → JetBrains Mono (prices, durations, numerical data only)
 *
 * Palette principles:
 *   - Paper cream dominant, paper-bright for elevated surfaces
 *   - Ink near-black for text; brown undertone, never pure black
 *   - Ember (dried-rose) the only chromatic accent — italic emphasis + CTA
 *   - Brass (aged) for dividers, marks, eyebrows
 *   - Moss exclusive to the dignity-guarantee strip
 *
 * Shape: max radius 6px. No pills. Hairlines do the work.
 * Motion: one easing — cubic-bezier(0.2, 0.6, 0.2, 1). No bounce.
 *
 * Backwards-compat: legacy tokens (--cognac, --gold, --paper-edge, --rad-md)
 * are aliased so existing class refs in HTML keep working.
 * ───────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300..700;1,8..60,300..700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* ── Base palette ─────────────────────────────────────────────────── */
  --ink:           #1C1A17;
  --ink-soft:      #2C2925;
  --paper:         #F5EFE6;
  --paper-bright:  #FBF7F0;
  --paper-deep:    #ECE4D6;

  --stone-50:      #F2EDE4;
  --stone-100:     #E6DFD3;
  --stone-200:     #D6CDBE;
  --stone-300:     #BCB09D;
  --stone-400:     #9B8E78;
  --stone-500:     #7A6F5C;
  --stone-600:     #5C5345;
  --stone-700:     #443E33;
  --stone-800:     #2E2A22;
  --stone-900:     #1C1A17;

  --ember:         #8C3A2B;
  --ember-soft:    #A8503E;
  --brass:         #A88A4E;
  --brass-soft:    #C2A56A;
  --moss:          #3F5544;
  --moss-soft:     #587563;

  /* ── Semantic tokens ─────────────────────────────────────────────── */
  --fg-1:          var(--ink);
  --fg-2:          var(--stone-600);
  --fg-3:          var(--stone-400);
  --fg-accent:     var(--ember);
  --fg-on-ink:     var(--paper-bright);

  --bg-1:          var(--paper);
  --bg-2:          var(--paper-bright);
  --bg-3:          var(--paper-deep);
  --bg-ink:        var(--ink);

  --border-1:      var(--stone-200);
  --border-2:      var(--stone-300);
  --border-strong: var(--ink);
  --border-brass:  var(--brass);

  /* ── Backwards-compat aliases (do not remove) ────────────────────── */
  --cognac:        var(--ember);         /* legacy → ember */
  --cognac-deep:   var(--ember-soft);
  --gold:          var(--brass);          /* legacy → brass */
  --ink-mute:      var(--stone-500);      /* legacy → stone-500 */
  --paper-edge:    var(--stone-200);      /* legacy → stone-200 */
  --slate:         var(--ink);            /* legacy → ink */

  /* ── Shape ───────────────────────────────────────────────────────── */
  --radius-0:      0;
  --radius-xs:     2px;
  --radius-sm:     4px;
  --radius-md:     6px;       /* maximum radius in the system */

  --rad-sm:        var(--radius-sm);
  --rad-md:        var(--radius-md);
  --rad-lg:        var(--radius-md);      /* clamp legacy "lg" to 6px */

  /* ── Hairlines ───────────────────────────────────────────────────── */
  --hairline:       1px solid var(--border-1);
  --hairline-ink:   1px solid var(--ink);
  --hairline-brass: 1px solid var(--brass);

  /* ── Elevation (paper, not glass) ────────────────────────────────── */
  --shadow-paper:   0 1px 0 0 rgba(28, 26, 23, 0.06);
  --shadow-lift:    0 8px 24px -16px rgba(28, 26, 23, 0.25);
  --shadow-soft:    var(--shadow-paper);
  --shadow-deep:    var(--shadow-lift);

  /* ── Spacing — 4px base scale ────────────────────────────────────── */
  --space-1:       4px;
  --space-2:       8px;
  --space-3:       12px;
  --space-4:       16px;
  --space-5:       24px;
  --space-6:       32px;
  --space-7:       48px;
  --space-8:       64px;
  --space-9:       96px;
  --space-10:      128px;

  /* ── Layout widths ───────────────────────────────────────────────── */
  --content-max:   1200px;
  --prose-max:     640px;

  --page-narrow:   var(--prose-max);
  --page-text:     720px;
  --page-wide:     1080px;
  --page-bleed:    var(--content-max);

  /* ── Motion ──────────────────────────────────────────────────────── */
  --ease:          cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-fast:      200ms;
  --dur-base:      400ms;
  --dur-slow:      700ms;
  --transition:    var(--dur-fast) var(--ease);

  /* ── Type families ───────────────────────────────────────────────── */
  --font-serif:    "Source Serif 4", "Source Serif Pro", "Iowan Old Style",
                   "Charter", Georgia, "Times New Roman", serif;
  --font-sans:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                   Helvetica, Arial, sans-serif;
  --font-mono:     "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  --serif:         var(--font-serif);      /* legacy */
  --sans:          var(--font-sans);       /* legacy */

  /* ── Type scale — fluid clamps ───────────────────────────────────── */
  --t-display-xl:  clamp(48px, 6vw, 72px);
  --t-display:     clamp(36px, 4.5vw, 56px);
  --t-h1:          clamp(28px, 3vw, 40px);
  --t-h2:          clamp(22px, 2vw, 28px);
  --t-h3:          18px;
  --t-body-lg:     19px;
  --t-body:        17px;
  --t-body-sm:     15px;
  --t-meta:        13px;
  --t-eyebrow:     12px;
  --t-mono:        15px;

  --t-xs:          12px;          /* legacy */
  --t-sm:          14px;          /* legacy */
  --t-base:        17px;          /* legacy */
  --t-md:          19px;          /* legacy */
  --t-lg:          24px;          /* legacy */
  --t-xl:          28px;          /* legacy */
  --t-2xl:         44px;          /* legacy */
  --t-3xl:         60px;          /* legacy */
  --t-4xl:         72px;          /* legacy */

  /* ── Leading + tracking ──────────────────────────────────────────── */
  --lh-tight:      1.1;
  --lh-snug:       1.25;
  --lh-normal:     1.45;
  --lh-prose:      1.6;
  --lh-loose:      1.75;

  --tracking-display: -0.015em;
  --tracking-normal:  0;
  --tracking-eyebrow: 0.16em;
  --tracking-meta:    0.02em;
}

/* ── Reset + base ─────────────────────────────────────────────────── */
* { box-sizing: border-box; }

::selection {
  background: var(--brass);
  color: var(--paper-bright);
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-serif);
  font-size: var(--t-body);
  line-height: var(--lh-prose);
  color: var(--fg-1);
  background: var(--bg-1);
  font-feature-settings: "kern", "liga", "onum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

/* Skip-to-main link — visually hidden until focused (WCAG 2.4.1). */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--paper-bright);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: var(--t-meta);
  font-weight: 500;
  letter-spacing: var(--tracking-meta);
  z-index: 1000;
  transition: top 120ms var(--ease);
  border-bottom: none;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* ── Links ────────────────────────────────────────────────────────── */
a {
  color: var(--fg-1);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--ink);
  text-underline-offset: 3px;
  transition: text-decoration-thickness var(--dur-fast) var(--ease),
              text-decoration-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
a:hover {
  text-decoration-thickness: 2px;
  text-decoration-color: var(--ember);
  color: var(--ink);
}
a:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Headings ────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--fg-1);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-display);
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: var(--t-display-xl); line-height: var(--lh-tight); }
h2 { font-size: var(--t-display); }
h3 { font-size: var(--t-h2); font-weight: 500; line-height: var(--lh-snug); }
h4 { font-size: var(--t-h3); font-weight: 600; letter-spacing: var(--tracking-normal); }
h5 {
  font-family: var(--font-sans);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--brass);
}

/* Italic phrases inside roman headlines are the brand's signature move. */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}

p {
  margin: 0 0 var(--space-4);
  color: var(--fg-1);
  font-size: var(--t-body);
  line-height: var(--lh-prose);
  text-wrap: pretty;
}

em, i {
  font-style: italic;
  color: inherit;
}

strong { font-weight: 600; color: var(--fg-1); }

/* ── Layout containers ───────────────────────────────────────────── */
.wrap {
  max-width: var(--page-text);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.wrap-narrow { max-width: var(--page-narrow); }
.wrap-wide   { max-width: var(--page-wide); }
.wrap-bleed  { max-width: var(--page-bleed); }

section {
  padding: var(--space-9) 0;
  position: relative;
}
section + section { padding-top: var(--space-8); }
section.cream-deep { background: var(--bg-3); }
section.no-pad-top { padding-top: 0; }
section.no-pad-bot { padding-bottom: 0; }

/* Brass hairline divider (decorative). */
.rule {
  width: 60px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto var(--space-5);
  opacity: 0.6;
  border: 0;
}

/* Aldus-leaf divider — brass hairline with ❦ centered. */
.aldus {
  position: relative;
  text-align: center;
  margin: var(--space-9) 0;
  height: 1px;
  background: var(--brass);
  border: 0;
  overflow: visible;
}
.aldus::after {
  content: "❦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-1);
  padding: 0 var(--space-3);
  color: var(--brass);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1;
}
section.cream-deep .aldus::after { background: var(--bg-3); }

/* ── Eyebrow ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--space-4);
}

/* ── Topbar ──────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: var(--hairline);
  padding: 18px 0;
  box-shadow: var(--shadow-paper);
  transition: background var(--transition);
}
.topbar .wrap {
  max-width: var(--content-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.brand span {
  color: var(--ember);
  font-style: italic;
  font-weight: 400;
}
.nav {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  font-family: var(--font-serif);
}
.nav a {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--fg-2);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--ember);
  text-decoration: none;
}
.nav a:hover::after { display: none; }

/* Primary nav CTA — small dark rectangle, never a pill. */
.nav a.cta-mini {
  background: var(--ink);
  color: var(--paper-bright);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background var(--transition), transform var(--transition);
}
.nav a.cta-mini:hover {
  background: var(--ink-soft);
  color: var(--paper-bright);
  border-color: var(--ink-soft);
}
.nav a.cta-mini:active { transform: translateY(1px); }
.nav a.cta-mini::after { display: none; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 32px;
  position: relative;
  border-bottom: var(--hairline);
}
.hero .wrap { max-width: var(--content-max); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-7); }
}
.hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: var(--tracking-display);
  margin: 0 0 var(--space-5);
  font-weight: 400;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}
.hero .lede {
  font-family: var(--font-serif);
  font-size: var(--t-body-lg);
  line-height: var(--lh-normal);
  color: var(--fg-2);
  margin: 0 0 var(--space-4);
  max-width: 520px;
  text-wrap: pretty;
}
.hero .lede strong {
  font-weight: 500;
  color: var(--fg-1);
}
.hero .sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 var(--space-6);
  max-width: 520px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin: var(--space-6) 0 0;
  padding-top: var(--space-5);
  border-top: var(--hairline);
  font-family: var(--font-serif);
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.4;
}
.hero-meta strong {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
@media (max-width: 760px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}

/* ── Offer line (hero) — quiet ember callout above CTAs ──────── */
.offer-line {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-1);
  margin: 0 0 var(--space-6);
  padding: 14px 18px;
  background: var(--bg-2);
  border-left: 3px solid var(--ember);
  border-radius: var(--radius-sm);
  max-width: 540px;
  text-wrap: pretty;
}
.offer-line strong {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
}

/* ── CTAs ──────────────────────────────────────────────────────── */
.cta, a.cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--ink);
  color: var(--paper-bright);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cta:hover {
  background: var(--ink-soft);
  color: var(--paper-bright);
  text-decoration: none;
}
.cta:active { transform: translateY(1px); }

.cta.cta-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.cta.cta-light:hover {
  background: var(--ink);
  color: var(--paper-bright);
  border-color: var(--ink);
}
.cta-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-1);
}
.cta-arrow {
  display: inline-block;
  font-family: var(--font-serif);
  transition: transform var(--transition);
}
.cta:hover .cta-arrow { transform: translateX(3px); }

/* ── Sample / video frame ─────────────────────────────────────── */
.sample { margin: 0; position: relative; }
.sample-frame {
  background: var(--ink);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.sample-frame video {
  width: 100%;
  display: block;
  background: var(--ink);
}
.sample-caption {
  font-size: 12.5px;
  color: var(--fg-2);
  margin-top: 14px;
  font-style: italic;
  line-height: 1.5;
  font-family: var(--font-serif);
  text-wrap: pretty;
}
.sample-caption strong {
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
}
.sample-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--brass);
  background: transparent;
  padding: 0;
  border: 0;
  margin-bottom: var(--space-3);
}

/* ── How-it-works steps ────────────────────────────────────────── */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: var(--space-7) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-top: var(--space-5);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.04em;
}
.steps h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: var(--lh-snug);
  color: var(--ink);
  margin: 0 0 var(--space-3);
}
.steps p {
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* ── Pricing tier card ─────────────────────────────────────────── */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-7);
}
.tiers-single { max-width: 560px; margin-left: auto; margin-right: auto; }

.tier {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.tier-eyebrow {
  display: inline-block;
  background: var(--ember);
  color: var(--paper-bright);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  margin: 0 0 var(--space-4);
  letter-spacing: 0.12em;
  font-size: 11px;
}
.tier h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 var(--space-2);
}

/* Two-tier price stack: "first video on us" + "every render after" */
.price-stack {
  display: flex;
  align-items: stretch;
  gap: var(--space-5);
  margin: var(--space-4) 0 0;
  flex-wrap: wrap;
}
.price-first, .price-then {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-first .mono {
  font-size: 44px;
  font-weight: 500;
  color: var(--ember);
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-then .mono {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.price-label {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.4;
  text-wrap: pretty;
}
.price-divider {
  width: 1px;
  background: var(--border-1);
  align-self: stretch;
  flex: none;
}
@media (max-width: 600px) {
  .price-stack { flex-direction: column; gap: var(--space-3); }
  .price-divider { display: none; }
}
.tier .price {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.01em;
}
.tier .price span {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--fg-2);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0;
}
.tier .price-note {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: var(--space-3) 0 var(--space-5);
}
.tier .price-note .mono {
  font-family: var(--font-mono);
  color: var(--ink);
  font-size: 14px;
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier ul li {
  font-family: var(--font-serif);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  padding: 0 0 0 22px;
  position: relative;
  border-bottom: 0;
}
.tier ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--brass);
  font-family: var(--font-serif);
}

/* ── Dignity guarantee ─────────────────────────────────────────── */
.guarantee {
  background: var(--bg-3);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.guarantee h2 { text-align: left; }
.guarantee-list {
  list-style: none;
  padding: 0;
  margin: var(--space-7) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}
.guarantee-list li {
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-left: 3px solid var(--moss);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  font-family: var(--font-serif);
  font-size: 15.5px;
  color: var(--fg-2);
  line-height: 1.5;
  text-wrap: pretty;
  transition: border-color var(--transition);
}
.guarantee-list li:hover {
  border-color: var(--ink);
  border-left-color: var(--moss);
}
.guarantee-list li strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: var(--space-2);
  letter-spacing: 0;
}

/* ── Pull quote (editorial callout) ────────────────────────────── */
.pullquote {
  border-left: var(--hairline-brass);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  margin: var(--space-7) 0;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 26px);
  line-height: var(--lh-normal);
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  text-wrap: pretty;
}
.pullquote-attr {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  color: var(--fg-2);
  letter-spacing: var(--tracking-meta);
}

/* ── Request / form CTA section ───────────────────────────────── */
.request {
  background: var(--ink);
  color: var(--paper-bright);
  text-align: left;
  padding: var(--space-9) 0;
}
.request .wrap { max-width: var(--page-text); }
.request .eyebrow { color: var(--brass-soft); }
.request h2 {
  color: var(--paper-bright);
  font-style: normal;
  font-weight: 400;
  margin: var(--space-3) 0 var(--space-5);
  text-wrap: balance;
}
.request h2 em { color: var(--brass-soft); font-style: italic; font-weight: 400; }
.request p {
  color: rgba(251, 247, 240, 0.72);
  margin: 0 0 var(--space-6);
  max-width: 580px;
}
.request .cta {
  background: var(--paper-bright);
  color: var(--ink);
  border-color: var(--paper-bright);
}
.request .cta:hover {
  background: var(--stone-100);
  color: var(--ink);
  border-color: var(--stone-100);
}
.request a:not(.cta) {
  color: var(--brass-soft);
  text-decoration-color: rgba(194, 165, 106, 0.4);
}
.request a:not(.cta):hover {
  color: var(--paper-bright);
  text-decoration-color: var(--paper-bright);
}
.request .micro { color: rgba(251, 247, 240, 0.5); }

/* ── Comparison table (Tukios vs Lifeframe) ───────────────────── */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-7) 0;
  font-family: var(--font-serif);
  font-size: 15.5px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.compare th, .compare td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-1);
  border-left: 1px solid var(--border-1);
  vertical-align: top;
  line-height: 1.45;
}
.compare th:first-child, .compare td:first-child { border-left: 0; }
.compare th {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-2);
  background: var(--bg-3);
  border-bottom: 1px solid var(--border-1);
}
.compare th.col-us { color: var(--ink); }
.compare td:first-child {
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
}
.compare td.col-us {
  color: var(--ink);
  background: transparent;
}
.compare td.col-us em { font-style: italic; color: var(--ink); }
.compare td:not(:first-child):not(.col-us) { color: var(--fg-2); }
.compare tr:last-child td { border-bottom: 0; }

/* ── Page head (interior page heroes) ──────────────────────────── */
.page-head { padding: 80px 0 32px; }
.page-head h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  margin: var(--space-3) 0 var(--space-5);
  font-weight: 400;
  color: var(--ink);
}
.page-head h1 em { font-style: italic; color: var(--ember); font-weight: 400; }
.page-head .lede {
  font-family: var(--font-serif);
  font-size: var(--t-body-lg);
  color: var(--fg-2);
  line-height: var(--lh-normal);
  max-width: var(--prose-max);
  margin: 0;
  font-weight: 400;
  text-wrap: pretty;
}

/* ── Prose pages (privacy/terms/about/journal) ─────────────────── */
.prose {
  max-width: var(--prose-max);
  margin: 0 auto;
  font-family: var(--font-serif);
}
.prose h2 {
  margin-top: var(--space-7);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: var(--lh-snug);
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin-top: var(--space-6);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.prose p, .prose li {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--fg-1);
  line-height: var(--lh-prose);
  text-wrap: pretty;
}
.prose ul, .prose ol { padding-left: 22px; }
.prose ul li { margin-bottom: var(--space-2); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: inherit; font-style: italic; }
.prose .updated {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-2);
  font-style: normal;
  letter-spacing: var(--tracking-meta);
  margin: -8px 0 var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: var(--hairline);
}

/* ── FAQ list (details/summary) ────────────────────────────────── */
.faq-list { list-style: none; padding: 0; margin: var(--space-7) 0 0; }
.faq-list > li { border-bottom: var(--hairline); }
.faq-list > li:first-child { border-top: var(--hairline); }
.faq-list details { padding: 20px 0; }
.faq-list summary {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-5);
  line-height: 1.35;
  text-wrap: balance;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--brass);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-list details[open] summary::after {
  content: '–';
}
.faq-list details p {
  margin: var(--space-3) 0 0;
  color: var(--fg-2);
  font-size: 17px;
  line-height: var(--lh-prose);
  max-width: 600px;
  text-wrap: pretty;
}

/* ── Micro-text ────────────────────────────────────────────────── */
.micro {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.55;
  letter-spacing: var(--tracking-meta);
  max-width: 60ch;
  margin: var(--space-6) auto 0;
}
.micro strong { color: var(--ink); font-weight: 500; }

/* ── Footer ────────────────────────────────────────────────────── */
footer {
  background: var(--bg-2);
  border-top: var(--hairline-brass);
  color: var(--fg-1);
  padding: 64px 0 48px;
  margin-top: var(--space-8);
}
footer .wrap {
  max-width: var(--content-max);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
@media (max-width: 760px) {
  footer .wrap { grid-template-columns: 1fr; gap: var(--space-6); }
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: var(--space-3);
  text-decoration: none;
  letter-spacing: var(--tracking-display);
}
.footer-brand:hover { text-decoration: none; }
.footer-brand span {
  color: var(--ember);
  font-style: italic;
  font-weight: 400;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--fg-2);
  margin: 0 0 var(--space-5);
  max-width: 32ch;
}
.footer-address {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0;
}
.footer-address a {
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.footer-address a:hover {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--fg-3);
  margin: 0 0 var(--space-4);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--fg-1);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--transition);
}
.footer-col a:hover { border-bottom-color: var(--ember); color: var(--ink); }

.footer-legal {
  border-top: var(--hairline);
  padding-top: var(--space-5);
  margin: var(--space-8) auto 0;
  max-width: var(--content-max);
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: var(--tracking-meta);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-legal .text-center { text-align: left; flex: 1; }
@media (max-width: 760px) {
  .footer-legal { flex-direction: column; }
}

/* ── Mono utility — for prices, durations, numerical atoms ─── */
.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  letter-spacing: -0.01em;
}
code {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  font-feature-settings: "tnum";
}

/* ── Helper utilities ────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-0  { margin-top: 0; }
.mt-md { margin-top: var(--space-5); }
.mt-lg { margin-top: var(--space-7); }
.mt-xl { margin-top: var(--space-8); }
.mb-md { margin-bottom: var(--space-5); }

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ── Mobile tweaks ───────────────────────────────────────────── */
@media (max-width: 760px) {
  section { padding: 56px 0; }
  .hero { padding: 56px 0 32px; }
  .nav { gap: var(--space-3); }
  .nav a:not(.cta-mini) { display: none; }
  .topbar .wrap { gap: var(--space-3); padding: 0 var(--space-5); }
  .tier { padding: 28px 24px; }
  .request { padding: 64px 0; }
  .pullquote { font-size: 19px; padding-left: 20px; margin: var(--space-6) 0; }
}
