:root {
  --bg: #fdfaf5;
  --bg-soft: #faf3e8;
  --bg-elev: #ffffff;
  --ink: #2b1e13;
  --ink-soft: #5c4a38;
  --ink-mute: #7d6b54;
  --accent: #b45309;
  --accent-dark: #78350f;
  --accent-soft: #fde8c8;
  --border: #ead7b8;
  --rule: #ecd9b8;
  --shadow-sm: 0 2px 10px -4px rgba(45,30,15,0.12);
  --shadow-md: 0 14px 38px -20px rgba(45,30,15,0.25);
  --radius: 14px;
  --measure: 65ch;

  --catalyst: #ad260d;
  --servant: #b8860b;
  --erudite: #5c4033;
  --enthusiast: #c07c5c;
  --host: #0d7c4a;
  --strategist: #525252;
  --lover: #6a5c89;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --fs-xs: clamp(0.78rem, 0.75rem + 0.1vw, 0.82rem);
  --fs-sm: clamp(0.9rem, 0.87rem + 0.12vw, 0.95rem);
  --fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --fs-lg: clamp(1.1rem, 1rem + 0.4vw, 1.22rem);
  --fs-xl: clamp(1.35rem, 1.15rem + 0.8vw, 1.6rem);
  --fs-2xl: clamp(1.7rem, 1.3rem + 1.5vw, 2.3rem);
  --fs-3xl: clamp(2.1rem, 1.6rem + 2.2vw, 3.1rem);
  --fs-4xl: clamp(2.6rem, 1.8rem + 3.5vw, 4.2rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141009;
    --bg-soft: #1d170e;
    --bg-elev: #241c11;
    --ink: #f4ead7;
    --ink-soft: #d7c4a3;
    --ink-mute: #a69277;
    --accent: #f0a65c;
    --accent-dark: #f8c489;
    --accent-soft: #3a2510;
    --border: #3a2c18;
    --rule: #33261400;
    --shadow-sm: 0 2px 14px -4px rgba(0,0,0,0.5);
    --shadow-md: 0 20px 40px -20px rgba(0,0,0,0.7);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: var(--fs-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

p { max-width: var(--measure); }

a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-dark); }

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

:focus { outline: none; }
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent-soft); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip link */
.skip-link {
  position: absolute; left: 10px; top: -200px;
  background: var(--accent); color: #fff; padding: 10px 16px;
  border-radius: 8px; font-weight: 600; z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 10px; color: #fff; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600;
  color: var(--ink);
}
.nav-brand img { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ink-soft); font-size: 0.95rem; font-weight: 500;
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-toggle {
  display: none; background: none; border: none; font-size: 1.5rem;
  color: var(--ink); cursor: pointer; padding: 6px 10px; border-radius: 6px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); flex-direction: column; padding: 16px 24px;
    border-bottom: 1px solid var(--border); gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-links a { padding: 8px 0; }
}

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 9vw, 110px) 0; }
.section-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* Decorative rule */
.rule {
  width: 64px; height: 2px; background: var(--accent);
  margin: 20px auto; opacity: 0.6;
}

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 50% -10%, #faeedb 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding: clamp(70px, 12vw, 130px) 24px clamp(60px, 10vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (prefers-color-scheme: dark) {
  .hero {
    background:
      radial-gradient(1200px 500px at 50% -10%, #2a1e0d 0%, transparent 60%),
      linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  }
}
.hero-logo { width: clamp(110px, 14vw, 160px); height: auto; margin: 0 auto 28px; filter: drop-shadow(0 10px 24px rgba(45,30,15,0.18)); }
.hero h1 {
  font-size: var(--fs-4xl);
  line-height: 1.05; margin-bottom: 22px;
  max-width: 14ch; margin-left: auto; margin-right: auto;
}
.hero h1 .accent { display: block; color: var(--accent); font-style: italic; }
.hero .lead {
  font-size: var(--fs-lg); color: var(--ink-soft);
  max-width: 640px; margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero-cta .text-link {
  color: var(--ink-soft); font-weight: 500; font-size: 0.98rem;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
}
.hero-cta .text-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 10px; font-weight: 600; font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer; border: 2px solid transparent;
  font-family: inherit;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-soft); color: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--ink-soft); border-color: var(--border); }
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-soft); }

.verse {
  font-style: italic; color: var(--ink-soft);
  max-width: 680px; margin: 0 auto;
  font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.5;
}
.verse .ref {
  display: block; font-size: 0.85rem; margin-top: 10px;
  font-style: normal; font-weight: 600; color: var(--accent);
  font-family: var(--font-sans); letter-spacing: 0.04em; text-transform: uppercase;
}

/* Constellation */
.constellation {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(10px, 2.5vw, 22px); flex-wrap: wrap;
  margin: 42px auto 0; max-width: 680px;
}
.constellation a {
  display: block; width: clamp(42px, 6vw, 56px);
  opacity: 0.75; transition: transform 0.25s ease, opacity 0.25s ease;
  filter: drop-shadow(0 4px 10px rgba(45,30,15,0.15));
}
.constellation a:hover { opacity: 1; transform: translateY(-4px) scale(1.08); }
.constellation img { width: 100%; height: auto; }

/* Continue banner */
.continue-banner {
  max-width: 760px; margin: 28px auto 0;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px; padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; box-shadow: var(--shadow-sm);
  text-align: left;
}
.continue-banner .msg { color: var(--ink-soft); font-size: 0.96rem; }
.continue-banner .msg strong { color: var(--ink); }
.continue-banner a.btn { padding: 8px 16px; font-size: 0.88rem; }
@media (max-width: 600px) {
  .continue-banner { flex-direction: column; text-align: center; }
}

/* Section headings */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: var(--fs-3xl); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: var(--fs-lg); max-width: 680px; margin: 0 auto; }

/* Trinity cards */
.trinity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.trinity-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trinity-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trinity-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem; margin-bottom: 22px;
}
.trinity-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.trinity-card .ref { color: var(--ink-mute); font-size: 0.82rem; margin-bottom: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.trinity-card p { color: var(--ink-soft); font-size: 1rem; }

/* Gift cards — simplified */
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.gift-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 26px 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.gift-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--gift-color, var(--accent)) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.35s ease;
  z-index: -1;
}
.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -24px color-mix(in srgb, var(--gift-color, var(--accent)) 45%, transparent);
  border-color: color-mix(in srgb, var(--gift-color, var(--accent)) 40%, var(--border));
}
.gift-card:hover::before { opacity: 0.08; }
.gift-card .logo {
  width: 80px; height: 80px; margin: 0 auto 16px;
  filter: drop-shadow(0 6px 14px color-mix(in srgb, var(--gift-color, var(--accent)) 45%, transparent));
}
.gift-card .pill {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--gift-color, var(--accent)); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 12px;
}
.gift-card h3 { font-size: 1.55rem; text-align: center; margin-bottom: 4px; }
.gift-card .sub { text-align: center; color: var(--ink-mute); font-weight: 500; font-size: 0.88rem; margin-bottom: 16px; letter-spacing: 0.02em; }
.gift-card .hook { color: var(--ink-soft); text-align: center; font-size: 0.96rem; max-width: 100%; margin-bottom: 18px; }
.gift-card .arrow {
  margin-top: auto;
  color: var(--gift-color, var(--accent)); font-weight: 600; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.gift-card .arrow::after { content: "→"; transition: transform 0.2s ease; }
.gift-card:hover .arrow::after { transform: translateX(4px); }

/* Next step block */
.nextstep {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 36px 24px;
}
.nextstep h3 { font-size: var(--fs-2xl); margin-bottom: 14px; }
.nextstep p { color: var(--ink-soft); margin: 0 auto 22px; }

/* Gift detail page */
.gift-hero {
  padding: 90px 24px 70px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gift-hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 40px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.gift-hero img { width: 150px; height: 150px; margin: 0 auto 24px; filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35)); }
.gift-hero h1 { color: #fff; font-size: var(--fs-4xl); }
.gift-hero .subtitle { font-size: 1.3rem; opacity: 0.92; margin-top: 8px; letter-spacing: 0.02em; }
.gift-hero .metaphor {
  display: inline-block; margin-top: 22px; padding: 7px 20px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.breadcrumb {
  max-width: 900px; margin: 32px auto 0; padding: 0 24px;
  font-size: 0.88rem; color: var(--ink-mute);
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; }

.gift-body { padding: 32px 24px 80px; max-width: 900px; margin: 0 auto; }
.gift-body h2 {
  font-size: var(--fs-2xl); margin: 48px 0 18px;
  color: var(--ink); position: relative; padding-bottom: 10px;
}
.gift-body h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 48px; height: 3px; background: var(--gift-color, var(--accent));
  border-radius: 2px;
}
.gift-body p {
  margin-bottom: 16px; color: var(--ink-soft);
  font-size: 1.07rem; max-width: var(--measure);
}
.gift-body .lead-para { font-size: 1.18rem; color: var(--ink); font-family: var(--font-serif); line-height: 1.55; }
.gift-attrs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 30px 0; }
.gift-attr {
  background: var(--bg-soft); padding: 20px;
  border-radius: 12px; border-left: 4px solid var(--gift-color);
}
.gift-attr b {
  display: block; font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gift-color); margin-bottom: 6px; font-weight: 700;
}
.word-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.word-chips span {
  background: var(--bg-soft); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: 999px; font-size: 0.86rem;
  color: var(--ink-soft); font-weight: 500;
}

/* Thrives / struggles columns */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 20px 0 20px;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
.two-col .col {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 26px;
}
.two-col .col h3 {
  font-size: 1.05rem; font-family: var(--font-sans); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gift-color, var(--accent)); margin-bottom: 14px;
}
.two-col .col ul { list-style: none; padding: 0; }
.two-col .col li {
  padding: 9px 0 9px 22px; position: relative;
  color: var(--ink-soft); font-size: 0.98rem; border-bottom: 1px dashed var(--border);
}
.two-col .col li:last-child { border-bottom: none; }
.two-col .col li::before {
  content: "•"; position: absolute; left: 4px; top: 8px;
  color: var(--gift-color, var(--accent)); font-size: 1.2rem;
}

/* Complements */
.complements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
@media (max-width: 600px) { .complements-grid { grid-template-columns: 1fr; } }
.comp-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.comp-card:hover { transform: translateY(-2px); border-color: var(--comp-color); }
.comp-card img { width: 52px; height: 52px; }
.comp-card .name { color: var(--ink); font-weight: 600; }
.comp-card .sub { color: var(--ink-mute); font-size: 0.85rem; }

/* Content pages */
.content-page { padding: 70px 24px; }
.content-layout {
  display: grid; grid-template-columns: 230px 1fr;
  gap: 56px; max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .content-layout { grid-template-columns: 1fr; gap: 0; } }
.content-toc {
  position: sticky; top: 96px; align-self: start;
  font-size: 0.9rem;
  border-left: 2px solid var(--border); padding: 8px 0 8px 20px;
}
.content-toc h4 {
  font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-mute); margin-bottom: 14px;
}
.content-toc ol { list-style: none; padding: 0; counter-reset: toc; }
.content-toc li { padding: 6px 0; counter-increment: toc; }
.content-toc a { color: var(--ink-soft); }
.content-toc a::before {
  content: counter(toc, decimal-leading-zero) " ";
  color: var(--ink-mute); font-variant-numeric: tabular-nums;
}
.content-toc a:hover, .content-toc a.active { color: var(--accent); }
@media (max-width: 900px) { .content-toc { display: none; } }

.content-main h1 { font-size: var(--fs-3xl); margin-bottom: 18px; }
.content-main .lead { color: var(--ink-soft); font-size: var(--fs-lg); max-width: var(--measure); margin-bottom: 36px; }
.content-main h2 { font-size: var(--fs-2xl); margin: 48px 0 16px; color: var(--ink); }
.content-main h2::before {
  content: ""; display: block; width: 44px; height: 2px;
  background: var(--accent); margin-bottom: 16px; opacity: 0.8;
}
.content-main h3 { font-size: 1.35rem; margin: 28px 0 10px; }
.content-main p, .content-main li { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 14px; max-width: var(--measure); }
.content-main ul { padding-left: 22px; margin-bottom: 18px; }
.content-main li { margin-bottom: 8px; }
.content-main strong { color: var(--ink); }

/* Drop cap */
.content-main .lead-drop::first-letter {
  font-family: var(--font-serif); font-size: 4.8em;
  float: left; line-height: 0.85; padding: 6px 10px 0 0;
  color: var(--accent); font-weight: 600;
}

/* Pull quote */
.pullquote {
  max-width: 720px; margin: 40px auto;
  padding: 24px 28px 24px 36px;
  border-left: 4px solid var(--accent);
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.25rem, 1.7vw, 1.6rem); line-height: 1.35;
  color: var(--ink); position: relative;
}
.pullquote::before {
  content: "\201C"; position: absolute;
  left: 6px; top: -8px; font-size: 3.5rem; color: var(--accent);
  opacity: 0.35; line-height: 1;
}
.pullquote cite {
  display: block; margin-top: 12px; font-style: normal;
  font-family: var(--font-sans); font-size: 0.82rem;
  color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase;
}

/* Scripture card */
.scripture-card {
  max-width: 760px; margin: 32px auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 40px;
  position: relative; box-shadow: var(--shadow-sm);
}
.scripture-card::before,
.scripture-card::after {
  content: ""; display: block; width: 80%;
  height: 1px; background: var(--accent); opacity: 0.5;
  margin: 0 auto;
}
.scripture-card::before { margin-bottom: 20px; }
.scripture-card::after { margin-top: 20px; }
.scripture-card .text {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.3rem; line-height: 1.55; color: var(--ink);
  text-align: center; max-width: none;
}
.scripture-card .ref {
  display: block; margin-top: 14px; text-align: center;
  font-family: var(--font-sans); font-style: normal;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}

/* Assessment */
.assessment {
  max-width: 780px; margin: 0 auto; padding: 60px 24px;
}
.assessment h1 { font-size: var(--fs-3xl); text-align: center; margin-bottom: 12px; }
.assessment .lead { text-align: center; color: var(--ink-soft); margin: 0 auto 36px; max-width: 640px; }

.progress-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; font-size: 0.85rem; color: var(--ink-mute);
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.progress { height: 6px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; margin-bottom: 28px; border: 1px solid var(--border); }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); transition: width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1); width: 0; }

.question-card {
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: 18px; padding: 36px 34px;
  box-shadow: var(--shadow-sm);
}
.question-card .num {
  font-size: 0.78rem; color: var(--accent);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.question-card .q-text {
  font-size: var(--fs-xl); margin: 12px 0 26px;
  font-family: var(--font-serif); font-weight: 500; color: var(--ink); line-height: 1.3;
}
.options { display: flex; flex-direction: column; gap: 10px; }
.option {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 20px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--bg); cursor: pointer; text-align: left;
  font-size: 1rem; color: var(--ink-soft); line-height: 1.4;
  transition: border-color 0.18s, background 0.18s, color 0.18s, transform 0.18s;
  font-family: inherit; width: 100%;
}
.option:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--ink); }
.option .key {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--bg-soft); color: var(--ink-mute);
  font-size: 0.78rem; font-weight: 700; font-family: var(--font-sans);
  border: 1px solid var(--border); flex-shrink: 0; margin-top: 1px;
}
.option:hover .key { background: var(--accent); color: #fff; border-color: var(--accent); }
.option.selected {
  border-color: var(--accent); background: var(--accent-soft); color: var(--ink);
}
.option.selected .key { background: var(--accent); color: #fff; border-color: var(--accent); }

.assessment-nav { display: flex; justify-content: space-between; margin-top: 22px; align-items: center; gap: 12px; }
.assessment-nav .hint { color: var(--ink-mute); font-size: 0.82rem; }
@media (max-width: 600px) { .assessment-nav .hint { display: none; } }

/* Results */
.results { padding: 60px 24px; max-width: 900px; margin: 0 auto; }
.results h1 { text-align: center; font-size: var(--fs-3xl); margin-bottom: 10px; }
.results .lead { text-align: center; color: var(--ink-soft); margin: 0 auto 30px; max-width: 640px; }

.narrative {
  max-width: 720px; margin: 0 auto 40px;
  font-family: var(--font-serif); font-size: 1.35rem;
  text-align: center; color: var(--ink); line-height: 1.5;
}
.narrative a { font-weight: 700; }

.top-gift {
  background: var(--bg-elev);
  border: 2px solid var(--accent); border-radius: 20px;
  padding: 40px 32px; text-align: center; margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}
.top-gift img { width: 120px; height: 120px; margin: 0 auto 20px; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15)); }
.top-gift h2 { font-size: 2.3rem; margin-bottom: 6px; }
.top-gift .sub { color: var(--ink-mute); margin-bottom: 16px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; font-size: 0.82rem; }
.top-gift p { color: var(--ink-soft); max-width: 620px; margin: 0 auto 20px; }

.score-section h3 {
  font-size: 1.05rem; font-family: var(--font-sans); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute);
  margin: 20px 0 16px;
}
.score-row {
  display: grid; grid-template-columns: 180px 1fr 60px; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.score-row .name { font-weight: 600; color: var(--ink); }
.score-bar-wrap { height: 10px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; border: 1px solid var(--border); }
.score-bar { height: 100%; transition: width 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); border-radius: 999px; }
@media (max-width: 600px) { .score-row { grid-template-columns: 120px 1fr 50px; font-size: 0.9rem; } }

.results-actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-top: 40px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; padding: 90px 24px; text-align: center;
}
.cta h2 { color: #fff; font-size: var(--fs-3xl); margin-bottom: 14px; }
.cta p { font-size: 1.15rem; opacity: 0.94; max-width: 640px; margin: 0 auto 30px; }
.cta .btn-primary { background: #fff; color: var(--accent-dark); }
.cta .btn-primary:hover { background: var(--accent-soft); color: var(--accent-dark); }
.cta .btn-outline { color: #fff; border-color: #fff; }
.cta .btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Footer */
.footer {
  background: var(--ink); color: #d7c8b3;
  padding: 48px 24px; text-align: center; font-size: 0.92rem;
}
.footer a { color: var(--accent-soft); }
.footer p + p { margin-top: 10px; opacity: 0.75; }

/* Utility */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
