/* =========================================================
   Dr. Christine Sigg — drchristinesigg.com
   Shared stylesheet
   Two palettes are defined. To switch globally, change the
   class on <body> from "theme-plum" to "theme-sage".
   ========================================================= */

/* ---------- THEME: PLUM (current brand: brown / beige / plum) ---------- */
.theme-plum {
  --bg:           #F5EFE6;   /* warm beige */
  --bg-alt:       #EDE3D4;   /* deeper beige for sections */
  --bg-card:      #FBF7F1;   /* near-cream card */
  --ink:          #2E2018;   /* deep espresso for body text */
  --ink-soft:     #5C4A3D;   /* muted brown for subhead/body */
  --brand:        #6B2D5C;   /* plum primary */
  --brand-deep:   #4A1F40;   /* hover/dark plum */
  --brand-soft:   #B98AAA;   /* muted plum */
  --accent:       #B7895A;   /* warm caramel/gold */
  --line:         #D8C9B6;   /* hairline beige */
  --shadow:       0 10px 30px rgba(74, 31, 64, 0.08);
}

/* ---------- THEME: NOIR (Laney-inspired: black / cream / dusty plum) ---------- */
.theme-noir {
  --bg:           #0B0B0B;   /* near-pitch */
  --bg-alt:       #141414;   /* slightly lifted black */
  --bg-card:      #F5EFE6;   /* cream CTA card */
  --ink:          #EDE3D4;   /* warm cream for headlines */
  --ink-soft:     #A89B8C;   /* warm grey body */
  --brand:        #B58968;   /* dusty bronze-plum accent */
  --brand-deep:   #9C7050;
  --brand-soft:   #C9A876;   /* warmer tan */
  --accent:       #C9A876;
  --line:         #2A2520;   /* hairline on dark */
  --shadow:       0 30px 60px rgba(0,0,0,0.45);
}

/* ---------- THEME: SAGE (warm & feminine: sage / cream / gold) ---------- */
.theme-sage {
  --bg:           #F8F4ED;   /* cream */
  --bg-alt:       #EFE9DB;   /* soft oat */
  --bg-card:      #FFFFFF;
  --ink:          #2C3E2D;   /* deep forest */
  --ink-soft:     #5A6B57;   /* muted sage-grey */
  --brand:        #7A8B6B;   /* sage primary */
  --brand-deep:   #556349;   /* deep sage */
  --brand-soft:   #B6C2A6;   /* light sage */
  --accent:       #C9A961;   /* warm gold */
  --line:         #D9D0BD;   /* hairline oat */
  --shadow:       0 10px 30px rgba(86, 99, 73, 0.10);
}

/* ============================== RESET ============================== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-deep); }

/* ============================== BASE =============================== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 1rem;
}

/* ============================== LAYOUT ============================= */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
section.tight { padding: 56px 0; }

/* ============================================================
   .has-photo — hides "YOUR PHOTO" / "EDITORIAL PHOTO" placeholder
   text on any image box once you've added a real photo. Just add
   the class to the same element and set background-image inline.
   Example:
     <div class="hero-img has-photo" style="background-image:url('images/me.jpg');"></div>
   ============================================================ */
.has-photo::after { content: none !important; }
.has-photo { background-image: none; background-size: cover; background-position: center; }

/* ============================ NAVIGATION =========================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.theme-sage .nav { background: rgba(248, 244, 237, 0.92); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 18px 24px;
}
.brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--ink); letter-spacing: 0.02em;
}
.brand-mark span { color: var(--brand); }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink-soft); font-size: 0.95rem; font-weight: 500;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  background: var(--brand); color: #fff !important;
  padding: 10px 18px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600;
}
.nav-cta:hover { background: var(--brand-deep); color: #fff !important; }

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: flex-end;
  }
  .nav-links a { font-size: 0.82rem; }
  .nav-cta { padding: 8px 14px; font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .brand-mark { font-size: 1.1rem; }
  .nav-inner { padding: 12px 16px; }
}

/* ============================== BUTTONS ============================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 0;
}
.btn-primary {
  background: var(--brand); color: #fff !important;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  color: #fff !important;
}
.btn-ghost {
  background: transparent; color: var(--brand) !important;
  border: 1.5px solid var(--brand);
}
.btn-ghost:hover { background: var(--brand); color: #fff !important; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============================== HERO =============================== */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(107,45,92,0.12), transparent 60%),
    radial-gradient(800px 400px at 0% 20%, rgba(183,137,90,0.18), transparent 60%);
}
.theme-sage .hero {
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(122,139,107,0.16), transparent 60%),
    radial-gradient(800px 400px at 0% 20%, rgba(201,169,97,0.14), transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero h1 span.accent { color: var(--brand); font-style: italic; }
.hero p.lede {
  font-size: 1.15rem; color: var(--ink-soft); margin: 1.5rem 0 2rem;
  max-width: 560px;
}
.hero-img {
  background: var(--bg-card);
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-image:
    linear-gradient(135deg, var(--brand-soft) 0%, var(--accent) 100%);
  position: relative; overflow: hidden;
}
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem; font-weight: 600;
}

/* ============================== CARDS ============================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.grid-3 {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  display: grid; gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 880px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================ VSL PLAYER =========================== */
.vsl-wrap {
  max-width: 880px; margin: 0 auto;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  position: relative;
}
.vsl-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: #fff; text-align: center;
  padding: 24px;
}
.vsl-placeholder .play {
  width: 86px; height: 86px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  border: 2px solid rgba(255,255,255,0.6);
}
.vsl-placeholder .play::before {
  content: ''; display: block;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

/* ============================== LISTS ============================== */
ul.checks { list-style: none; padding: 0; margin: 0; }
ul.checks li {
  position: relative; padding: 8px 0 8px 36px;
  color: var(--ink); font-size: 1rem;
}
ul.checks li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

/* ============================== FAQ ================================ */
details.faq {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 12px;
}
details.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+'; font-size: 1.6rem; color: var(--brand); font-weight: 300;
}
details.faq[open] summary::after { content: '−'; }
details.faq p { margin-top: 12px; }

/* ============================ TESTIMONIAL ========================== */
.quote {
  background: var(--bg-alt);
  border-left: 4px solid var(--brand);
  padding: 28px 32px;
  border-radius: 0 14px 14px 0;
  font-style: italic;
  color: var(--ink);
  font-size: 1.05rem;
}
.quote .who {
  display: block; margin-top: 14px;
  font-style: normal; font-weight: 600;
  color: var(--ink-soft); font-size: 0.92rem;
}

/* ============================== FOOTER ============================= */
footer {
  background: var(--bg-alt);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
footer a { color: var(--ink-soft); }

/* ============================== UTILITIES ========================== */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1.5rem; }
.mt-4 { margin-top: 3rem; }
.section-alt { background: var(--bg-alt); }

/* ============================================================
   LANEY-STRUCTURED COMPONENTS
   ============================================================ */

/* Top scrolling marquee */
.marquee {
  background: var(--ink);
  color: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 42s linear infinite;
}
.marquee-track span { margin: 0 24px; opacity: 0.92; }
.marquee-track span.dot { color: var(--accent); margin: 0 10px; opacity: 1; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Pre-call hero — split, eyebrow + serif headline + italic accent + lede + video right */
.pc-hero { padding: 96px 0 80px; background: var(--bg); }
.pc-hero .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 880px) { .pc-hero .grid { grid-template-columns: 1fr; gap: 40px; } }
.pc-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.05;
  margin: 14px 0 22px;
  font-weight: 500;
}
.pc-hero h1 em { font-style: italic; color: var(--brand); display: block; }
.pc-hero p.lede { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; max-width: 520px; }

/* VSL player wrap */
.vsl-wrap {
  max-width: 880px; margin: 0 auto;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  position: relative;
}

/* Stats strip */
.stats-row { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0; }
.stats-row .grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center; max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
@media (max-width: 720px) { .stats-row .grid { grid-template-columns: repeat(2, 1fr); } }
.stats-row .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--ink); line-height: 1; font-weight: 500; }
.stats-row .lab { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }

/* Big image-text split for the personal-story / 01-02-03 sections */
.pc-split { background: var(--bg); display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.pc-split.alt { background: var(--bg-alt); }
@media (max-width: 880px) { .pc-split { grid-template-columns: 1fr; } }
.pc-split .img-box {
  min-height: 540px;
  background-size: cover; background-position: center;
  background-image: linear-gradient(135deg, var(--brand-soft) 0%, var(--accent) 100%);
  position: relative;
}
.pc-split .txt-box {
  padding: 90px 72px; display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 880px) { .pc-split .txt-box { padding: 60px 28px; } .pc-split .img-box { min-height: 320px; } }
.pc-split h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink); font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.1; margin: 14px 0 20px;
  font-weight: 500;
}
.pc-split h2 em { font-style: italic; color: var(--brand); display: block; }
.pc-split p { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.pc-split .outcome { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.pc-split .outcome .lab { color: var(--brand); font-family: 'Inter', sans-serif; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 8px; }
.pc-split .outcome p { font-style: italic; color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; line-height: 1.5; margin: 0; }

/* Methodology — phase-tabs + pillars */
.method-section { background: var(--bg-alt); padding: 110px 0; text-align: center; }
.method-tabs {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  border-bottom: 1px solid var(--line); padding: 18px 0; margin: 24px auto 60px;
  max-width: 1000px;
}
.method-tabs .tab {
  font-family: 'Inter', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
  padding: 6px 4px; position: relative;
}
.method-tabs .tab.active { color: var(--ink); }
.method-tabs .tab.active::after {
  content: ''; position: absolute; bottom: -19px; left: 0; right: 0;
  height: 2px; background: var(--brand);
}
.method-card { max-width: 1000px; margin: 0 auto; padding: 0 24px; text-align: left; }
.method-card .phase { font-family: 'Inter', sans-serif; color: var(--ink-soft); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; }
.method-card h3 { font-family: 'Cormorant Garamond', serif; color: var(--ink); font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 12px 0 6px; font-weight: 500; }
.method-card .sub { font-family: 'Cormorant Garamond', serif; color: var(--brand); font-style: italic; font-size: 1.15rem; margin-bottom: 18px; }
.method-card .desc { color: var(--ink-soft); max-width: 720px; }
.method-card .pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
@media (max-width: 720px) { .method-card .pillars { grid-template-columns: 1fr; } }
.method-card .pillar { border-top: 1px solid var(--line); padding-top: 20px; }
.method-card .pillar .ltr { font-family: 'Cormorant Garamond', serif; color: var(--brand); font-size: 1.4rem; font-style: italic; font-weight: 500; }
.method-card .pillar h4 { font-family: 'Inter', sans-serif; color: var(--ink); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 6px 0 8px; font-weight: 600; }
.method-card .pillar p { color: var(--ink-soft); font-size: 0.95rem; }

/* "Here's exactly what we cover" stair-stepper */
.cover-section { background: var(--bg); padding: 110px 0; }
.cover-section .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 880px) { .cover-section .grid { grid-template-columns: 1fr; } }
.cover-section .img-box {
  min-height: 580px;
  background-image: linear-gradient(135deg, var(--brand-soft) 0%, var(--brand) 60%, var(--accent) 100%);
  position: relative;
}
.cover-section h2 { color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 500; }
.cover-section .step { display: grid; grid-template-columns: 80px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.cover-section .step:last-child { border-bottom: 0; }
.cover-section .step .n { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.6rem; color: var(--brand); }
.cover-section .step h3 { color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; margin: 0 0 6px; }
.cover-section .step p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* Testimonial grid */
.words-section { background: var(--bg-alt); padding: 110px 0; }
.words-section h2 { color: var(--ink); text-align: center; font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 500; margin-bottom: 56px; }
.words-section .eyebrow { text-align: center; }
.words-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 880px) { .words-grid { grid-template-columns: 1fr; } }
.words-grid .word { border: 1px solid var(--line); padding: 32px; background: var(--bg-card); border-radius: 4px; box-shadow: var(--shadow); }
.words-grid .word p { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--ink); font-size: 1.1rem; line-height: 1.5; margin: 0 0 22px; }
.words-grid .word .role { font-family: 'Inter', sans-serif; color: var(--ink-soft); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; }

/* FAQ: left-title / right-accordion */
.faq-section { background: var(--bg); padding: 110px 0; }
.faq-section .grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 880px) { .faq-section .grid { grid-template-columns: 1fr; gap: 24px; } }
.faq-section h2 { color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 500; }
.faq-section .lede { color: var(--ink-soft); margin-top: 14px; max-width: 360px; }
.faq-laney { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-laney summary {
  list-style: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; color: var(--ink);
  font-size: 1.3rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-laney summary::-webkit-details-marker { display: none; }
.faq-laney summary::after { content: '+'; font-size: 1.6rem; color: var(--brand); font-weight: 300; }
.faq-laney[open] summary::after { content: '−'; }
.faq-laney p { color: var(--ink-soft); margin-top: 16px; line-height: 1.7; }

/* Final cream-card CTA */
.final-cta-section { background: var(--bg); padding: 110px 0; }
.final-cta-section .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1140px; margin: 0 auto; padding: 0 24px; box-shadow: var(--shadow); border-radius: 4px; overflow: hidden; }
@media (max-width: 880px) { .final-cta-section .grid { grid-template-columns: 1fr; } }
.final-cta-section .img-box { min-height: 420px; background-image: linear-gradient(135deg, var(--brand-soft) 0%, var(--brand) 100%); }
.final-cta-section .panel { background: var(--bg-card); padding: 80px 56px; display: flex; flex-direction: column; justify-content: center; }
.final-cta-section .panel .eyebrow { color: var(--brand); }
.final-cta-section .panel h2 { color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 500; }
.final-cta-section .panel p { color: var(--ink-soft); max-width: 360px; margin: 14px 0 28px; }
.final-cta-section .panel .btn-watch {
  display: inline-block; align-self: flex-start;
  background: var(--ink); color: var(--bg) !important;
  padding: 18px 36px; font-family: 'Inter', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; border-radius: 999px;
}
.final-cta-section .panel .btn-watch:hover { background: var(--brand); }

/* ============================================================
   THE RESTORE SCORECARD — quiz page
   ============================================================ */
.sc-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.sc-hero { padding: 80px 0 40px; text-align: center; background: var(--bg); }
.sc-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.sc-hero h1 em { color: var(--brand); font-style: italic; }
.sc-hero p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.sc-meta { display: inline-flex; gap: 24px; margin-top: 18px; font-size: 0.85rem; color: var(--ink-soft); }
.sc-meta span::before { content: "•"; color: var(--brand); margin-right: 8px; }
.sc-form { padding: 40px 0 80px; background: var(--bg); }
.sc-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 36px; box-shadow: var(--shadow); margin-bottom: 28px; }
.sc-card h2 { font-size: 1.7rem; margin: 0 0 6px; }
.sc-card .lab { font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--brand); font-weight: 600; }
.sc-card .desc { color: var(--ink-soft); font-size: 0.95rem; margin: 8px 0 22px; }
.sc-capture { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .sc-capture { grid-template-columns: 1fr; } }
.sc-capture label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.sc-capture input { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink); font-family: inherit; font-size: 1rem; }
.sc-capture input:focus { outline: none; border-color: var(--brand); }
.sc-q { padding: 22px 0; border-bottom: 1px solid var(--line); }
.sc-q:last-child { border-bottom: 0; }
.sc-q .prompt { font-family: 'Cormorant Garamond', serif; color: var(--ink); font-size: 1.2rem; line-height: 1.3; margin: 0 0 14px; font-weight: 500; }
.sc-scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.sc-scale label { cursor: pointer; }
.sc-scale label input { position: absolute; opacity: 0; pointer-events: none; }
.sc-scale label span {
  display: block; text-align: center; padding: 14px 0;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-weight: 600; color: var(--ink-soft);
  background: var(--bg); transition: all 0.15s ease;
}
.sc-scale label:hover span { border-color: var(--brand-soft); color: var(--ink); }
.sc-scale label input:checked + span { background: var(--brand); border-color: var(--brand); color: #fff; }
.sc-scale-legend { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.78rem; color: var(--ink-soft); }
.sc-submit { text-align: center; margin: 16px 0; }
.sc-error { display: none; background: #fee; color: #a33; padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 0.9rem; }
#sc-results { display: none; }
#sc-results.show { display: block; }
.sc-result-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 44px; box-shadow: var(--shadow); margin-bottom: 28px; }
.sc-result-card .crown { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--brand); font-size: 1.2rem; margin-bottom: 6px; }
.sc-result-card h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 8px; }
.sc-result-card h2 em { color: var(--brand); font-style: italic; }
.sc-result-card .interp { font-size: 1.05rem; color: var(--ink); margin-top: 14px; }
.sc-bars { margin-top: 28px; }
.sc-bar-row { display: grid; grid-template-columns: 200px 1fr 60px; gap: 14px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
@media (max-width: 600px) { .sc-bar-row { grid-template-columns: 1fr; gap: 6px; } }
.sc-bar-row .name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.sc-bar-row .name small { display: block; color: var(--ink-soft); font-weight: 400; font-size: 0.78rem; margin-top: 2px; }
.sc-bar-row .track { background: var(--bg-alt); height: 14px; border-radius: 999px; overflow: hidden; }
.sc-bar-row .fill { height: 100%; background: linear-gradient(90deg, var(--brand-soft), var(--brand)); border-radius: 999px; transition: width 0.6s ease; }
.sc-bar-row .pct { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--ink); font-size: 1.1rem; text-align: right; }
.sc-most { background: var(--bg-alt); border-left: 4px solid var(--brand); padding: 22px 26px; border-radius: 0 12px 12px 0; margin-top: 22px; }
.sc-most .ribbon { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand); font-weight: 600; }
.sc-most h3 { margin: 8px 0 8px; font-size: 1.5rem; }
.sc-most p { margin: 0; }
