/* Sacred + Circular — Convergence Wheel (static web build) */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --outer-space: #414A4C;
  --bone:        #E1DACA;
  --coral:       #F88379;
  --moonstone:   #3AA8C1;
  --cream-bg:    #E1DACA;

  --sus-1: #C5E1E8;
  --sus-2: #8DC8D5;
  --sus-3: #5BB5C7;
  --sus-4: #3AA8C1;

  --spi-1: #FBD6CF;
  --spi-2: #F7B5AB;
  --spi-3: #FA9A8E;
  --spi-4: #F88379;

  --text-primary: var(--outer-space);
  --text-muted:   #8A8478;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   0.18s ease;

  /* Hero element lift (assessment + connect banner overlays).
     Tuned by eye on desktop; overridden in mobile breakpoint below. */
  --hero-logo-lift:    -200px;
  --hero-sub-lift:     -460px;
  --welcome-shell-lift: -200px;  /* extra px pulled on top of -16vh */
  --connect-content-lift: -400px;
}

@media (max-width: 720px) {
  :root {
    --hero-logo-lift:    -110px;
    --hero-sub-lift:     -260px;
    --welcome-shell-lift: -120px;
    --connect-content-lift: -220px;
  }
}

@media (max-width: 480px) {
  :root {
    --hero-logo-lift:    -90px;
    --hero-sub-lift:     -210px;
    --welcome-shell-lift: -90px;
    --connect-content-lift: -180px;
  }
}

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

html, body {
  background-color: var(--cream-bg);
  color: var(--outer-space);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

/* ── Assessment Banner (used by app.js mushroomBannerHTML) ─────────────── */
.sc-mushroom-banner {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  line-height: 0;
  background: var(--cream-bg);
}

.sc-mushroom-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sc-mushroom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(225, 218, 202, 0)    0%,
    rgba(225, 218, 202, 0.15) 30%,
    rgba(225, 218, 202, 0.5)  60%,
    rgba(225, 218, 202, 0.9)  88%,
    rgba(225, 218, 202, 1)    100%
  );
  pointer-events: none;
  z-index: 1;
}

.sc-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 20px;
  pointer-events: none;
  text-align: center;
}


.sc-logo.banner {
  width: min(900px, 92vw);
  aspect-ratio: 6 / 1;
  height: auto;
  background-size: 106% auto;
  background-position: center 47%;
  margin: 0 auto;
}

.sc-banner-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--outer-space);
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 720px;
  margin: 14px auto 0;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .sc-banner-subtitle { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .sc-banner-subtitle { font-size: 0.95rem; max-width: 92vw; }
}

.sc-welcome-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--outer-space);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 32px;
  text-shadow: 0 1px 10px rgba(225, 218, 202, 0.7);
}

@media (max-width: 480px) {
  .sc-welcome-heading { font-size: 1.75rem; }
}

/* ── Shell ──────────────────────────────────────────────────────────────── */
.sc-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

/* ── Header / Logo ──────────────────────────────────────────────────────── */
.sc-header { text-align: center; margin-bottom: 32px; }
.sc-header.compact { margin-bottom: 24px; }

.sc-logo {
  display: block;
  margin: 0 auto;
  width: 460px;
  height: 80px;
  background-image: url("assets/logo_sacred_circular.png");
  background-size: 477px 477px;
  background-position: center 47%;
  background-repeat: no-repeat;
  user-select: none;
}

.sc-logo.compact {
  width: 300px;
  height: 56px;
  background-size: 301px 301px;
  background-position: center 47%;
}

@media (max-width: 720px) {
  .sc-logo { width: 360px; height: 68px; background-size: 376px 376px; }
}

@media (max-width: 480px) {
  .sc-logo { width: 300px; height: 56px; background-size: 301px 301px; }
  .sc-logo.compact { width: 240px; height: 48px; background-size: 251px 251px; }
}

/* ── Progress Dots ──────────────────────────────────────────────────────── */
.sc-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
}

.sc-progress-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #D2CBB8; /* upcoming: just-barely-darker than bone */
  transition: background-color var(--transition), width var(--transition), height var(--transition), box-shadow var(--transition);
}

.sc-progress-dot.done { background-color: #A89E84; } /* done: warm taupe */

.sc-progress-dot.current {
  background-color: var(--coral);
  width: 12px;
  height: 12px;
  box-shadow:
    0 0 0 2px rgba(248, 131, 121, 0.30),
    0 0 10px 2px rgba(248, 131, 121, 0.55),
    0 0 22px 6px rgba(248, 131, 121, 0.32);
  animation: sc-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes sc-dot-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(248, 131, 121, 0.30),
      0 0 10px 2px rgba(248, 131, 121, 0.55),
      0 0 22px 6px rgba(248, 131, 121, 0.32);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(248, 131, 121, 0.40),
      0 0 14px 3px rgba(248, 131, 121, 0.70),
      0 0 28px 8px rgba(248, 131, 121, 0.42);
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sc-progress-dot.current { animation: none; }
}

/* ── Welcome Screen ─────────────────────────────────────────────────────── */
.sc-welcome-shell {
  margin-top: calc(-16vh + var(--welcome-shell-lift));
  padding-top: 16px;
  position: relative;
  z-index: 3;
}

.sc-welcome {
  text-align: center;
  padding: 40px 36px;
  background: rgba(225, 218, 202, 0.5);
  border: 1.5px solid var(--coral);
  border-radius: 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sc-welcome-actions .sc-btn {
  background: var(--coral);
  color: var(--bone);
  border: none;
}

.sc-welcome-actions .sc-btn:hover {
  background: #e36b62;
  color: var(--bone);
}

.sc-welcome-actions .sc-btn.ghost {
  background: var(--outer-space);
  color: var(--bone);
  border: none;
}

.sc-welcome-actions .sc-btn.ghost:hover {
  background: #2e3537;
  color: var(--bone);
  border: none;
}

.sc-welcome .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--outer-space);
  margin: 0 auto 22px;
  line-height: 1.5;
  max-width: 720px;
}

.sc-welcome .lead {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.sc-welcome .sc-btn { padding: 14px 36px; font-size: 0.92rem; }

.sc-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 480px) {
  .sc-welcome-actions { flex-direction: column; align-items: stretch; }
  .sc-welcome-actions .sc-btn { width: 100%; }
}

/* ── Methodology ────────────────────────────────────────────────────────── */
.sc-methodology { max-width: 720px; margin: 0 auto; text-align: left; padding: 0 8px; }
.sc-methodology .sc-about-title { text-align: center; margin-bottom: 36px; }

.sc-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--outer-space);
  margin-top: 44px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
  line-height: 1.3;
}

.sc-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 1.5px;
  background: var(--coral);
}

.sc-methodology p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--outer-space);
  margin-bottom: 14px;
}

.sc-methodology p em { color: var(--text-muted); font-style: italic; }
.sc-methodology p strong { color: var(--outer-space); font-weight: 600; }

.sc-methodology-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 24px auto;
}

.sc-level-grid {
  margin: 24px 0 20px;
  padding: 8px 24px;
  background: white;
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
}

.sc-level-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--bone);
}

.sc-level-row:last-child { border-bottom: none; }

.sc-level-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-bg);
  color: var(--outer-space);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.2rem;
  border: 1px solid var(--bone);
}

.sc-level-body {
  flex: 1;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--outer-space);
  padding-top: 5px;
}

.sc-level-body strong { font-family: 'Inter', sans-serif; font-weight: 600; }

.sc-inline-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin: 28px 0 12px;
}

.sc-inline-cta .sc-btn { padding: 11px 24px; font-size: 0.85rem; }

@media (max-width: 540px) {
  .sc-inline-cta { flex-direction: column; align-items: stretch; }
  .sc-inline-cta .sc-btn { text-align: center; }
}

/* ── About You ──────────────────────────────────────────────────────────── */
.sc-about { max-width: 480px; margin: 0 auto; padding: 0 8px; }

.sc-about-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 8px;
  color: var(--outer-space);
}

.sc-about-lead {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 auto 36px;
  max-width: 420px;
}

.sc-form-group { margin-bottom: 20px; }

.sc-form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sc-form-group label .optional {
  color: var(--text-muted);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.04em;
  font-style: italic;
  font-size: 11px;
  margin-left: 4px;
}

.sc-form-group input[type="text"],
.sc-form-group input[type="email"],
.sc-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--bone);
  border-radius: var(--radius-sm);
  background: white;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--outer-space);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.sc-form-group input[type="text"]:focus,
.sc-form-group input[type="email"]:focus,
.sc-form-group select:focus {
  border-color: var(--moonstone);
}

.sc-form-group select {
  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='%238A8478' d='M0 0l6 8 6-8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.sc-error {
  color: var(--coral);
  background: rgba(248, 131, 121, 0.06);
  border: 1px solid rgba(248, 131, 121, 0.25);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin: 8px 0 16px;
  text-align: left;
}

.sc-error div + div { margin-top: 4px; }

/* ── House Screen ───────────────────────────────────────────────────────── */
.sc-house {
  animation: fadeUp 0.25s ease both;
  max-width: 1200px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sc-house-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  margin-bottom: 32px;
}

.sc-house-text { flex: 1 1 auto; min-width: 0; }

.sc-house-glyphs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.sc-glyph { height: 72px; width: auto; display: block; }

.sc-house-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.sc-house-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ── Spectrum title ─────────────────────────────────────────────────────── */
.spectrum-title-block { margin-bottom: 16px; }

.spectrum-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.2;
}

.spectrum-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.spectrum-block.sus .spectrum-title { color: var(--moonstone); }
.spectrum-block.spi .spectrum-title { color: var(--coral); }

/* ── Archetype Row ──────────────────────────────────────────────────────── */
.archetype-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.archetype-card {
  border-radius: var(--radius-md);
  padding: 18px 20px;
  position: relative;
}

.archetype-card.eco {
  background: linear-gradient(135deg, var(--sus-1) 0%, white 100%);
  border: 1px solid var(--sus-2);
}

.archetype-card.spirit {
  background: linear-gradient(135deg, var(--spi-1) 0%, white 100%);
  border: 1px solid var(--spi-2);
}

.archetype-card .arch-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.archetype-card .arch-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.archetype-card.eco .arch-name  { color: var(--moonstone); }
.archetype-card.spirit .arch-name { color: var(--coral); }

/* ── Spectrums Row ──────────────────────────────────────────────────────── */
.spectrums-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.spectrum-block {
  padding: 20px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid var(--bone);
}

.spectrum-block.sus { border-left: 3px solid var(--moonstone); }
.spectrum-block.spi { border-left: 3px solid var(--coral); }

.spectrum-bar-track {
  height: 8px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.spectrum-block.sus .spectrum-bar-track {
  background: linear-gradient(to right, var(--sus-1), var(--sus-4));
}

.spectrum-block.spi .spectrum-bar-track {
  background: linear-gradient(to right, var(--spi-1), var(--spi-4));
}

.select-one-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ── Integrated spectrum header (label + archetype hero + title:subtitle line) ── */
.spectrum-block > .spectrum-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.spectrum-block.sus > .spectrum-label,
.spectrum-block.spi > .spectrum-label { color: var(--text-muted); }

/* Hero archetype name — largest text in the spectrum-block header */
.spectrum-archetype {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 2px 0 6px;
}
.spectrum-block.sus .spectrum-archetype { color: var(--moonstone); }
.spectrum-block.spi .spectrum-archetype { color: var(--coral); }

/* Secondary title:subtitle line — all gray, title bold, subtitle regular */
.spectrum-title-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.spectrum-title-line .title-part { font-weight: 600; color: var(--text-muted); }
.spectrum-title-line .subtitle-part { font-weight: 400; color: var(--text-muted); }

/* ── Score Bento Cards ──────────────────────────────────────────────────── */
.score-bentos { display: flex; flex-direction: column; gap: 8px; }

.score-bento {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num anchor"
    "text text";
  column-gap: 10px;
  row-gap: 4px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--bone);
  background: white;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  user-select: none;
}

.score-bento:hover {
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

.score-bento .bento-num {
  grid-area: num;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  color: white;
}

.spectrum-block.sus .score-bento .bento-num { background: var(--moonstone); }
.spectrum-block.spi .score-bento .bento-num { background: var(--coral); }

.score-bento .bento-anchor {
  grid-area: anchor;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--outer-space);
}

.score-bento .bento-text {
  grid-area: text;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.spectrum-block.sus .score-bento.selected {
  background: var(--moonstone);
  border-color: var(--moonstone);
}

.spectrum-block.spi .score-bento.selected {
  background: var(--coral);
  border-color: var(--coral);
}

.score-bento.selected .bento-anchor,
.score-bento.selected .bento-text {
  color: white;
}

.spectrum-block.sus .score-bento.selected .bento-num {
  background: white;
  color: var(--moonstone);
}

.spectrum-block.spi .score-bento.selected .bento-num {
  background: white;
  color: var(--coral);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 100px;
  border: none;
  background: var(--outer-space);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.sc-btn:hover {
  background: #2e3537;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(65, 74, 76, 0.25);
}

.sc-btn.ghost {
  background: transparent;
  border: 1.5px solid var(--bone);
  color: var(--outer-space);
}

.sc-btn.ghost:hover {
  border-color: var(--outer-space);
  background: transparent;
  box-shadow: none;
}

.sc-btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.sc-btn-row.center { justify-content: center; }
.sc-btn-row.left { justify-content: flex-start; }

/* ── Result Screen ───────────────────────────────────────────────────────── */
.sc-shell.sc-result-shell {
  max-width: 1500px;
  padding-bottom: 40px;
}

.sc-result { text-align: center; }

.sc-result h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.sc-result .result-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.result-main {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 20px;
}

.wheel-bento {
  flex: 1 1 0;
  min-width: 0;
  background: white;
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wheel-bento .wheel-frame {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.wheel-bento .result-reflection {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
  max-width: 560px;
  margin: 0;
}

.info-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-bento {
  background: white;
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-bento.avg-bento.sus { background: var(--sus-1); border-color: var(--sus-2); }
.info-bento.avg-bento.spi { background: var(--spi-1); border-color: var(--spi-2); }

.info-bento .bento-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-bento.avg-bento.sus .bento-label { color: var(--moonstone); }
.info-bento.avg-bento.spi .bento-label { color: var(--coral); }

.info-bento .bento-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}

.info-bento .bento-out-of { font-size: 0.78rem; color: var(--text-muted); }

.info-bento .house-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-bento .house-list li {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--outer-space);
}

/* ── Attribution ─────────────────────────────────────────────────────────── */
.sc-attribution {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--bone);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
  font-style: italic;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .sc-shell { padding: 28px 16px 60px; }
  .archetype-row { grid-template-columns: 1fr; }
  .spectrums-row { grid-template-columns: 1fr; gap: 16px; }
  .result-main { flex-direction: column; gap: 14px; }
  .info-grid { grid-template-columns: 1fr; }
  .sc-btn-row { flex-direction: column-reverse; }
  .sc-btn { width: 100%; }
  .sc-house-meta { flex-direction: column; align-items: flex-start; }
  .sc-house-glyphs { gap: 8px; }
  .sc-glyph { height: 48px; }
}

/* ════════════════════════════════════════════════════════════════════════ */
/* SITE-LEVEL: Nav, Footer, Hero, Landing, Connect                          */
/* ════════════════════════════════════════════════════════════════════════ */

/* ── Top Nav ─────────────────────────────────────────────────────────────── */
.sc-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(225, 218, 202, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bone);
}

.sc-nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--outer-space);
  text-decoration: none;
}

.sc-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.sc-nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.sc-nav-links a:hover { color: var(--outer-space); }
.sc-nav-links a.active { color: var(--outer-space); border-bottom-color: var(--coral); }

@media (max-width: 600px) {
  .sc-nav { padding: 12px 16px; flex-direction: column; gap: 10px; }
  .sc-nav-links { gap: 18px; }
  .sc-nav-links a { font-size: 0.72rem; letter-spacing: 0.08em; }
}

/* ── Hero (landing + connect) ───────────────────────────────────────────── */
.sc-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background: var(--cream-bg);
}

.sc-hero.compact { height: 75vh; }

.sc-hero-img {
  position: absolute;
  inset: 0;
  line-height: 0;
}

.sc-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sc-hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to bottom,
    rgba(225, 218, 202, 0)    0%,
    rgba(225, 218, 202, 0.15) 30%,
    rgba(225, 218, 202, 0.5)  60%,
    rgba(225, 218, 202, 0.9)  88%,
    rgba(225, 218, 202, 1)    100%
  );
  pointer-events: none;
}

.sc-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 56px;
  text-align: center;
  z-index: 2;
}

.sc-hero-overlay.top {
  justify-content: flex-start;
  padding: 4vh 24px 0;
}

.sc-hero-overlay.top .sc-hero-actions {
  margin-top: 10vh;
}

.sc-hero-actions .sc-btn {
  background: var(--outer-space);
  color: var(--bone);
  border: none;
}

.sc-hero-actions .sc-btn:hover {
  background: #2e3537;
  color: var(--bone);
}

.sc-hero-actions .sc-btn.ghost {
  background: var(--bone);
  color: var(--outer-space);
  border: none;
}

.sc-hero-actions .sc-btn.ghost:hover {
  background: #d6cebd;
  color: var(--outer-space);
  border: none;
}

.sc-landing {
  margin-top: -16vh;
  position: relative;
  z-index: 3;
}

.sc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.02em;
  color: var(--outer-space);
  line-height: 1.05;
  margin: 0 0 12px;
}

.sc-hero-title .plus { color: var(--coral); font-weight: 300; }

.sc-hero-logo {
  display: block;
  margin: 0 auto 18px;
  height: auto;
  user-select: none;
}

.sc-hero-logo.vertical {
  width: clamp(330px, 48vw, 540px);
}

.sc-hero-logo.horizontal {
  width: clamp(330px, 48vw, 540px);
}

.sc-hero-overlay.center {
  justify-content: center;
  padding: 0 24px;
}

.sc-banner-overlay .sc-hero-logo.horizontal,
.sc-hero-overlay.center .sc-hero-logo.horizontal {
  width: clamp(429px, 62vw, 702px);
  max-width: calc(100vw - 48px);
  height: auto;
  object-fit: contain;
  transform: translateY(var(--hero-logo-lift));
}

/* Banner-overlay subtitle (Assessment + Connect):
   Size: clamp(1.45rem, 2.8vw, 1.85rem) — ~30% larger than default sc-hero-sub.
   Placement: translateY via --hero-sub-lift CSS var so the lift scales for mobile. */
.sc-banner-overlay .sc-hero-sub,
.sc-hero-overlay.center .sc-hero-sub {
  transform: translateY(var(--hero-sub-lift));
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
}

.sc-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--outer-space);
  letter-spacing: 0.03em;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.4;
}

.sc-hero-sub.on-image {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.sc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 720px) {
  .sc-hero-overlay { padding-bottom: 40px; }
}

@media (max-width: 480px) {
  .sc-hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
  .sc-hero-actions .sc-btn { width: 100%; }
}

/* ── Landing sections ────────────────────────────────────────────────────── */
.sc-landing {
  max-width: 760px;
  padding: 24px 32px 80px;
}

.sc-landing-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--bone);
}

.sc-landing-section:last-child { border-bottom: none; }

.sc-landing-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  letter-spacing: -0.005em;
  color: var(--outer-space);
  line-height: 1.1;
  margin-bottom: 28px;
  padding-bottom: 20px;
  position: relative;
}

.sc-landing-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: var(--coral);
}

.sc-landing-title.centered { text-align: center; }
.sc-landing-title.centered::after { left: 50%; transform: translateX(-50%); }

.sc-landing-section p {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--outer-space);
  margin-bottom: 18px;
}

.sc-landing-section p em { color: var(--text-muted); font-style: italic; }

.sc-landing-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.sc-landing-cta.centered { justify-content: center; }

/* About Megan two-column */
.sc-about-section { padding: 56px 0; }

.sc-about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

/* About cluster: editorial collage — cactus top-left, pearls right,
   honeycomb rotated 90° at bottom, headshot center with white outline */
.sc-about-cluster {
  width: 340px;
  height: 660px;
}
/* Cactus, top-left */
.sc-about-cluster .sc-photo-cluster-img.back-left {
  width: 160px;
  height: 230px;
  top: 0;
  left: 0;
  z-index: 1;
}
/* Pearls, right side mid-bottom */
.sc-about-cluster .sc-photo-cluster-img.back-right {
  width: 180px;
  height: 170px;
  top: 340px;
  right: 0;
  z-index: 2;
}
/* Honeycomb at bottom, rotated 90° (source is portrait, rotation gives landscape look) */
.sc-about-cluster .sc-photo-cluster-img.behind {
  width: 180px;
  height: 280px;
  top: 430px;
  left: 30px;
  transform: rotate(90deg);
  transform-origin: center center;
  z-index: 1;
}
/* Headshot — front, centered, slightly left-of-center */
.sc-about-cluster .sc-photo-cluster-img.front {
  width: 230px;
  height: 290px;
  top: 130px;
  left: 60px;
  z-index: 6;
}
/* White rectangle outline around the headshot — slightly larger, brings the eye in */
.sc-about-cluster .sc-photo-cluster-frame {
  left: 45px;
  top: 115px;
  width: 260px;
  height: 320px;
  border: 1px solid #FFFFFF;
  z-index: 5;
}

.sc-about-text .sc-landing-title { margin-top: 0; }

.sc-about-credo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--outer-space);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 131, 121, 0.35);
}
.sc-about-credo em { color: var(--outer-space); font-style: italic; }

@media (max-width: 720px) {
  .sc-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .sc-photo-cluster.sc-about-cluster { margin: 0 auto 24px; width: 300px; height: 640px; overflow: visible; }
  .sc-photo-cluster.sc-about-cluster .sc-photo-cluster-img.back-left  { width: 140px; height: 200px; top: 0; left: 0; }
  .sc-photo-cluster.sc-about-cluster .sc-photo-cluster-img.back-right { width: 155px; height: 150px; top: 305px; right: 0; }
  .sc-photo-cluster.sc-about-cluster .sc-photo-cluster-img.behind     { width: 160px; height: 240px; top: 380px; left: 20px; }
  .sc-photo-cluster.sc-about-cluster .sc-photo-cluster-img.front      { width: 200px; height: 250px; top: 110px; left: 50px; }
  .sc-photo-cluster.sc-about-cluster .sc-photo-cluster-frame          { left: 38px; top: 98px; width: 224px; height: 274px; }
}

/* ── Connect page ────────────────────────────────────────────────────────── */
.sc-connect {
  max-width: 820px;
  padding: 48px 32px 80px;
  margin-top: var(--connect-content-lift);
  position: relative;
  z-index: 3;
}

.sc-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

.sc-connect-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  background: white;
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--outer-space);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.sc-connect-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.sc-connect-card-cta.coral { background-color: var(--coral); }
.sc-connect-card-cta.moonstone { background-color: var(--moonstone); }

.sc-connect-card:hover .sc-connect-card-cta {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(65, 74, 76, 0.14);
}

.sc-connect-card:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(65, 74, 76, 0.08);
}

.sc-connect-card:has(.sc-connect-card-cta.moonstone):hover {
  border-color: var(--moonstone);
  box-shadow: 0 8px 24px rgba(58, 168, 193, 0.18);
}

.sc-connect-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.sc-connect-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--outer-space);
}

.sc-connect-card-body {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--outer-space);
  margin: 0;
}

.sc-connect-card-body em { color: var(--text-muted); font-style: italic; }

@media (max-width: 600px) {
  .sc-connect-grid { grid-template-columns: 1fr; }
}

/* Contact form */
.sc-contact-section {
  padding: 24px 0 0;
}

.sc-contact-lead {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  margin: 0 auto 32px;
  max-width: 480px;
}

.sc-contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.sc-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--bone);
  border-radius: var(--radius-sm);
  background: white;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--outer-space);
  resize: vertical;
  outline: none;
  transition: border-color var(--transition);
}

.sc-contact-form textarea:focus { border-color: var(--moonstone); }

.sc-honeypot { display: none; }

.sc-form-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ── Thanks page ─────────────────────────────────────────────────────────── */
.sc-thanks {
  max-width: 560px;
  text-align: center;
  padding: 80px 32px 100px;
}

.sc-thanks-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--outer-space);
  margin: 18px 0;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.sc-footer {
  border-top: 1px solid var(--bone);
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--cream-bg);
}

.sc-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sc-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.sc-footer-links {
  display: flex;
  gap: 22px;
}

.sc-footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.sc-footer-links a:hover { color: var(--coral); }

@media (max-width: 600px) {
  .sc-footer-inner { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Vibe layer — small hints of whimsy + consistency across all three pages.
   Everything here is intentionally subtle. If anything reads "loud," dial it
   back rather than removing it.
   ───────────────────────────────────────────────────────────────────────── */

/* 1. Hero logos gently "breathe" — a near-imperceptible scale pulse.
   Assessment + Connect logos must preserve their translateY(-200px),
   so their keyframes carry the translate through. */
@keyframes sc-logo-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.014); }
}

@keyframes sc-logo-breathe-lifted {
  0%, 100% { transform: translateY(var(--hero-logo-lift)) scale(1); }
  50%      { transform: translateY(var(--hero-logo-lift)) scale(1.014); }
}

.sc-hero-logo.vertical {
  animation: sc-logo-breathe 7s ease-in-out infinite;
  transform-origin: center center;
}

.sc-banner-overlay .sc-hero-logo.horizontal,
.sc-hero-overlay.center .sc-hero-logo.horizontal {
  animation: sc-logo-breathe-lifted 7s ease-in-out infinite;
  transform-origin: center center;
}

/* 2. Coral underline accent bars on section titles gently widen + return.
   Affects .sc-landing-title (home + connect) and .sc-section-title
   (assessment methodology). On hover, the bar extends a touch further. */
@keyframes sc-bar-pulse {
  0%, 100% { width: 44px; opacity: 0.85; }
  50%      { width: 56px; opacity: 1; }
}

@keyframes sc-bar-pulse-sm {
  0%, 100% { width: 36px; opacity: 0.85; }
  50%      { width: 48px; opacity: 1; }
}

.sc-landing-title::after {
  animation: sc-bar-pulse 5s ease-in-out infinite;
  transition: width 0.35s ease, background 0.35s ease;
}

.sc-landing-title:hover::after {
  width: 72px;
  background: var(--coral);
}

.sc-section-title::after {
  animation: sc-bar-pulse-sm 5s ease-in-out infinite;
  transition: width 0.35s ease;
}

.sc-section-title:hover::after { width: 60px; }

/* 3. Scroll-triggered fade-in for content sections.
   Modern Safari/Chrome support animation-timeline: view(). Browsers without
   support simply render content as-is (graceful degradation). */
@supports (animation-timeline: view()) {
  @keyframes sc-section-rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .sc-landing-section,
  .sc-connect-card,
  .sc-contact-section {
    animation: sc-section-rise linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}

/* 4. Connect cards: keep existing lift, add a soft coral whisper on hover. */
.sc-connect-card {
  transition: transform var(--transition),
              box-shadow var(--transition),
              border-color var(--transition);
}

.sc-connect-card:hover {
  box-shadow: 0 8px 24px rgba(248, 131, 121, 0.18);
  border-color: var(--coral);
}

/* 5. Consistency: give the assessment welcome-heading the same coral
   underline accent rhythm as section titles on home + connect. */
.sc-welcome-heading {
  position: relative;
  padding-bottom: 18px;
}

.sc-welcome-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 1.5px;
  background: var(--coral);
  animation: sc-bar-pulse 5s ease-in-out infinite;
}

/* 6. Honor users who prefer reduced motion — kill all animations. */
@media (prefers-reduced-motion: reduce) {
  .sc-hero-logo.vertical { animation: none; }
  .sc-banner-overlay .sc-hero-logo.horizontal,
  .sc-hero-overlay.center .sc-hero-logo.horizontal {
    animation: none;
    transform: translateY(var(--hero-logo-lift));
  }
  .sc-landing-title::after,
  .sc-section-title::after,
  .sc-welcome-heading::after { animation: none; }
  @supports (animation-timeline: view()) {
    .sc-landing-section,
    .sc-connect-card,
    .sc-contact-section { animation: none; }
  }
}

/* ── Intro Modal (House 1 first-touch instructions) ─────────────────────── */
.sc-intro-modal {
  position: fixed;
  inset: 0;
  background: rgba(65, 74, 76, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: sc-intro-fade-in 0.25s ease-out;
}
.sc-intro-modal-card {
  background: var(--cream-bg, #F5F0E4);
  border: 1px solid var(--bone, #E1DACA);
  border-radius: 12px;
  padding: 32px 32px 28px;
  max-width: 480px;
  width: calc(100% - 48px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  text-align: center;
  animation: sc-intro-card-in 0.32s ease-out;
}
.sc-intro-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--outer-space);
  margin: 0 0 14px;
}
.sc-intro-modal-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 22px;
}
.sc-intro-modal-dismiss {
  min-width: 180px;
}
@keyframes sc-intro-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes sc-intro-card-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .sc-intro-modal-card { padding: 24px 22px 22px; }
  .sc-intro-modal-title { font-size: 1.3rem; }
  .sc-intro-modal-body { font-size: 0.9rem; }
}

/* ── Opening Pull-Quote (home page) ─────────────────────────────────────── */
.sc-landing-quote {
  max-width: 760px;
  margin: 56px auto 24px;
  padding: 0 24px;
}

.sc-pullquote {
  margin: 0;
  text-align: center;
  position: relative;
  padding: 30px 28px 18px;
}

/* Giant ghosted decorative quote marks behind the text */
.sc-pullquote::before,
.sc-pullquote::after {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 11rem;
  line-height: 0.8;
  color: var(--coral);
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
}
.sc-pullquote::before {
  content: "\201C";
  top: -10px;
  left: -10px;
}
.sc-pullquote::after {
  content: "\201D";
  bottom: -40px;
  right: -10px;
}

.sc-pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--outer-space);
  margin: 0 0 18px;
}

.sc-pullquote-attr {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .sc-landing-quote { margin: 40px auto 16px; }
  .sc-pullquote { padding: 26px 18px 14px; }
  .sc-pullquote p { font-size: 1.2rem; }
  .sc-pullquote::before,
  .sc-pullquote::after { font-size: 7.5rem; }
  .sc-pullquote::before { top: -4px; left: -6px; }
  .sc-pullquote::after  { bottom: -28px; right: -6px; }
}

/* ── Alternating background bands (Welcome / Pullquote+Book / Wheel / About) ─ */
.sc-landing-bands {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.sc-band {
  width: 100%;
  padding: 0;
}

.sc-band-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 32px 56px;
}

/* Pull the first band (Welcome) closer to the hero CTAs above */
.sc-landing-bands > .sc-band:first-child { margin-top: -230px; }
@media (max-width: 700px) {
  .sc-landing-bands > .sc-band:first-child { margin-top: -140px; }
}

/* ── Hero scroll-cue arrow — fixed to viewport bottom, fades on scroll ─── */
.sc-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  display: block;
  z-index: 50;
  color: var(--coral);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
  animation: sc-scroll-bounce 1.8s ease-in-out infinite;
}
.sc-scroll-cue.is-hidden {
  opacity: 0;
  animation: none;
  visibility: hidden;
}
.sc-scroll-cue svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
@keyframes sc-scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.85; }
  50%      { transform: translate(-50%, 10px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .sc-scroll-cue { animation: none; }
}

.band-bone  { background-color: var(--bone); }
.band-white { background-color: #FAF8F2; }
.band-dark  {
  background-color: var(--outer-space);
  position: relative;
  overflow: hidden;
}

/* Fibonacci spiral watermark — sacred geometry layer behind the Wheel section.
   The source PNG is black lines on transparent; invert + tint to bone, hold low opacity. */
.sc-fibonacci-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: auto;
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0.10;
  filter: invert(1) sepia(0.15) hue-rotate(330deg);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.band-dark .sc-band-inner { position: relative; z-index: 1; }

@media (max-width: 700px) {
  .sc-fibonacci-watermark { width: 720px; opacity: 0.08; }
}

/* Dark-band text overrides (Wheel section) */
.band-dark .sc-landing-title,
.band-dark .sc-landing-section p,
.band-dark .sc-landing-section p strong {
  color: var(--bone);
}
.band-dark .sc-landing-section p em {
  color: rgba(225, 218, 202, 0.78);
}
.band-dark .sc-landing-title::after { background: var(--coral); }
/* Solid CTA on the dark band — coral on outer-space for high contrast */
.band-dark .sc-btn {
  background: var(--coral);
  color: white;
}
.band-dark .sc-btn:hover {
  background: #f56b60;
  box-shadow: 0 4px 18px rgba(248, 131, 121, 0.45);
}
.band-dark .sc-btn.ghost {
  background: transparent;
  border-color: var(--bone);
  color: var(--bone);
}
.band-dark .sc-btn.ghost:hover {
  background: var(--bone);
  color: var(--outer-space);
}

/* Remove the default 1px bone border on landing-sections when inside bands
   (the band color change already separates them) */
.sc-band .sc-landing-section { border-bottom: none; padding: 12px 0; }

/* ── Ornamental section divider (✱) with pulsating gold glow ────────────── */
.sc-section-divider {
  position: relative;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--coral);
  margin: 18px 0 18px;
  letter-spacing: 0;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.sc-section-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
    rgba(244, 208, 112, 0.65) 0%,
    rgba(244, 208, 112, 0.30) 35%,
    rgba(244, 208, 112, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: sc-divider-pulse 2.8s ease-in-out infinite;
}

.sc-section-divider > * {
  position: relative;
  z-index: 1;
}

.band-dark .sc-section-divider::before {
  background: radial-gradient(circle at center,
    rgba(255, 220, 130, 0.55) 0%,
    rgba(255, 220, 130, 0.22) 40%,
    rgba(255, 220, 130, 0) 72%);
}

@keyframes sc-divider-pulse {
  0%, 100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sc-section-divider::before { animation: none; }
}

/* ── Nature photo cluster (replaces book SVG, 3 overlapping photos) ─────── */
.sc-photo-cluster {
  position: relative;
  width: 320px;
  height: 360px;
  margin: 0 auto;
}
.sc-photo-cluster-img {
  position: absolute;
  display: block;
  border-radius: 2px;
  object-fit: cover;
  background: #FAF8F2;
  box-shadow: 0 4px 14px rgba(65, 74, 76, 0.08);
}
.sc-photo-cluster-img.back-left {
  width: 150px;
  height: 200px;
  left: 0;
  top: 0;
  z-index: 1;
}
.sc-photo-cluster-img.back-right {
  width: 130px;
  height: 170px;
  right: 0;
  top: 20px;
  z-index: 3;
}
.sc-photo-cluster-img.front {
  width: 200px;
  height: 240px;
  right: 30px;
  bottom: 0;
  z-index: 2;
}
/* Thin outlined rectangle as decorative graphic element (matches editorial inspo) */
.sc-photo-cluster-frame {
  position: absolute;
  left: 40px;
  top: 60px;
  width: 240px;
  height: 270px;
  border: 1px solid var(--outer-space);
  z-index: 4;
  pointer-events: none;
}

/* On the dark band (Convergence Wheel): different photo sizes for variety,
   and the outline box is replaced by 2 intersecting bone lines. */
.band-dark .sc-photo-cluster-img.back-left {
  width: 175px;
  height: 225px;
  top: 30px;
  left: 0;
}
.band-dark .sc-photo-cluster-img.back-right {
  width: 110px;
  height: 145px;
  top: 0;
  right: 10px;
}
.band-dark .sc-photo-cluster-img.front {
  width: 175px;
  height: 215px;
  right: 0;
  bottom: 10px;
}

.band-dark .sc-photo-cluster-frame {
  border: none;
}
.band-dark .sc-photo-cluster-frame::before {
  /* Horizontal line extending from outside-left across the back-left photo */
  content: "";
  position: absolute;
  left: -55px;
  top: -10px;
  width: 220px;
  height: 1px;
  background: var(--bone);
}
.band-dark .sc-photo-cluster-frame::after {
  /* Vertical line dropping through the front photo, extending past the bottom */
  content: "";
  position: absolute;
  left: 78px;
  top: 30px;
  width: 1px;
  height: 290px;
  background: var(--bone);
}

/* ── Circular cropped photo (fern in Wheel section) ─────────────────────── */
.sc-photo-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.sc-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Alternating feature sections (Book + Wheel) ────────────────────────── */
.sc-feature-grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 48px;
  align-items: center;
}

.sc-feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc-feature-section.sc-feature-reverse .sc-feature-grid {
  grid-template-columns: 1fr minmax(220px, 340px);
}

@media (max-width: 700px) {
  .sc-feature-grid,
  .sc-feature-section.sc-feature-reverse .sc-feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .sc-feature-text .sc-landing-cta { justify-content: center; }
  .sc-feature-section.sc-feature-reverse .sc-feature-text { order: 1; }
  .sc-feature-section.sc-feature-reverse .sc-feature-visual { order: 2; }
  .sc-photo-cluster { width: 270px; height: 310px; }
  .sc-photo-cluster-img.back-left  { width: 125px; height: 165px; }
  .sc-photo-cluster-img.back-right { width: 110px; height: 140px; top: 16px; }
  .sc-photo-cluster-img.front      { width: 170px; height: 200px; right: 24px; }
  .sc-photo-cluster-frame          { left: 32px; top: 50px; width: 210px; height: 235px; }
  .sc-photo-circle { width: 260px; height: 260px; }
}

