/* ============================================================
   RECONNECTED — Shared Stylesheet
   Covers: index, welcome, weeks 1–8
   ============================================================ */

/* ----------------------------------------------------------
   Reset & Variables
   ---------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:  #FAF7F2;
  --warm:   #FDF9F5;
  --blush:  #F0D5C8;
  --blush2: #E8C4B2;
  --terra:  #7A3F2C;
  --deep:   #5C2E1A;
  --rose:   #C27A62;
  --gold:   #C4A265;
  --gold2:  #E8D5B0;
  --dark:   #1C1410;
  --dark2:  #231810;
  --mid:    #5C3D2E;
  --light:  #9B7B6A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ----------------------------------------------------------
   Custom Cursor
   ---------------------------------------------------------- */
.cursor {
  position: fixed; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed; width: 28px; height: 28px;
  border: 1px solid rgba(196,162,101,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.expand { width: 44px; height: 44px; border-color: rgba(196,162,101,0.7); }

/* ----------------------------------------------------------
   Screens & Animation
   ---------------------------------------------------------- */
.screen { display: none; min-height: 100vh; flex-direction: column; }
.screen.active { display: flex; animation: fadeUp 0.5s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------
   Fixed Navigation
   ---------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,242,0.96); backdrop-filter: blur(16px);
  border-bottom: 0.5px solid rgba(196,162,101,0.2);
  padding: 0.85rem 2rem;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  text-decoration: none; line-height: 1;
}
.nav-logo em   { font-style: italic; color: var(--gold); }
.nav-logo span { font-style: normal; color: var(--terra); }
.nav-back {
  font-family: 'Jost', sans-serif;
  font-weight: 300; font-size: 14px;
  letter-spacing: 0.06em; color: #9B7B6A !important;
  text-decoration: none !important; white-space: nowrap;
  transition: color 0.2s;
}
.nav-back:hover { color: #7A3F2C !important; }
.rc-back {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #9B7B6A;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.rc-back:hover { color: #7B2A1A; }
.rc-back svg { width: 14px; height: 14px; flex-shrink: 0; }
.pause-chrome {
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 90;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: #FAF7F2;
  border-bottom: 1px solid rgba(196,162,101,0.15);
}
.pause-back {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #9B7B6A;
  padding: 4px 0;
  transition: color 0.2s;
}
.pause-back:hover { color: #7B2A1A; }
.pause-back svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-right { display: flex; align-items: center; gap: 1rem; justify-self: end; }
.nav-day {
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--light);
}

/* ----------------------------------------------------------
   Progress Bar
   ---------------------------------------------------------- */
.progress-wrap {
  position: fixed; top: 52px; left: 0; right: 0; z-index: 99;
  background: rgba(250,247,242,0.9);
  padding: 0.5rem 2rem;
  border-bottom: 0.5px solid rgba(196,162,101,0.1);
}
.progress-track {
  height: 3px; background: rgba(196,162,101,0.15);
  position: relative; border-radius: 2px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--terra), var(--gold));
  border-radius: 2px; transition: width 0.6s ease;
}
.progress-dots { display: flex; justify-content: space-between; margin-top: 0.5rem; }
.p-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid rgba(196,162,101,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 500; color: var(--light); transition: all 0.3s;
}
.p-dot.done  { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.p-dot.active { border-color: var(--terra); color: var(--terra); font-weight: 600; }

/* ----------------------------------------------------------
   Page Header
   ---------------------------------------------------------- */
.page-header {
  padding: 7.5rem 2.5rem 2.5rem;
  background: var(--warm);
  border-bottom: 0.5px solid rgba(196,162,101,0.12);
}
.page-header-inner { max-width: 660px; }

.eyebrow {
  font-size: 0.63rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300;
  line-height: 1.12; color: var(--dark); margin-bottom: 0.5rem;
}
.page-title em { font-style: italic; color: var(--terra); }

.page-sub {
  font-size: 0.88rem; font-weight: 300;
  color: var(--mid); line-height: 1.75;
  max-width: 520px; margin-bottom: 1rem;
}

/* Phase pills */
.phase-pill {
  display: inline-flex; align-items: center;
  padding: 0.3rem 0.85rem;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.pill-a, .pill-awareness {
  background: rgba(107,127,101,0.1); color: #6B7F65;
  border: 0.5px solid rgba(107,127,101,0.25);
}
.pill-b, .pill-understanding {
  background: rgba(92,46,26,0.08); color: var(--mid);
  border: 0.5px solid rgba(92,46,26,0.2);
}
.pill-c, .pill-live {
  background: rgba(122,63,44,0.08); color: var(--terra);
  border: 0.5px solid rgba(122,63,44,0.22);
}
.pill-d, .pill-mirror, .pill-reflection {
  background: rgba(196,162,101,0.1); color: #8B6914;
  border: 0.5px solid rgba(196,162,101,0.3);
}
.pill-e, .pill-signal {
  background: rgba(28,20,16,0.07); color: var(--dark);
  border: 0.5px solid rgba(28,20,16,0.18);
}

/* ----------------------------------------------------------
   Scroll Wrap & Content
   ---------------------------------------------------------- */
.scroll-wrap { flex: 1; overflow-y: auto; }
.content { max-width: 660px; margin: 0 auto; padding: 2.5rem 2rem 4rem; }

/* ----------------------------------------------------------
   Typography
   ---------------------------------------------------------- */
.body {
  font-size: 0.95rem; font-weight: 300;
  line-height: 2.05; color: var(--mid); margin-bottom: 1.4rem;
}
.body strong { font-weight: 500; color: var(--dark); }
.body em     { font-style: italic; color: var(--terra); }

.gold-line { width: 34px; height: 1.5px; background: var(--gold); margin: 1.8rem 0; }

.hl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--terra); line-height: 1.65;
  border-left: 3px solid var(--gold);
  padding: 0.6rem 0 0.6rem 1.2rem; margin: 2rem 0;
}

/* ----------------------------------------------------------
   Dark Accent Block
   ---------------------------------------------------------- */
.dark-block { background: var(--dark); padding: 2rem; margin: 1.8rem 0; }
.dark-block-lbl {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem; opacity: 0.7;
}
.dark-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem; font-style: italic;
  color: rgba(250,247,242,0.8); line-height: 1.8; margin-bottom: 0.7rem;
}
.dark-block p:last-child { margin-bottom: 0; }

.dark-quote {
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,0.03);
  padding: 1.4rem 1.8rem; margin: 1.8rem 0;
}
.dark-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(250,247,242,0.82); line-height: 1.72; margin-bottom: 0.4rem;
}
.dark-quote cite {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); opacity: 0.65;
}

/* ----------------------------------------------------------
   Light Quote
   ---------------------------------------------------------- */
.light-quote {
  border-left: 2px solid var(--gold);
  background: rgba(250,245,236,0.7);
  padding: 1.2rem 1.6rem; margin: 1.8rem 0;
}
.light-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--dark); line-height: 1.7; margin-bottom: 0.4rem;
}
.light-quote cite {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}

/* ----------------------------------------------------------
   Stat Visual
   ---------------------------------------------------------- */
.stat-visual {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(196,162,101,0.15); margin: 2rem 0;
}
.stat-cell { background: var(--warm); padding: 1.5rem 1.2rem; text-align: center; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--terra); line-height: 1; margin-bottom: 0.3rem;
}
.stat-l { font-size: 0.73rem; font-weight: 300; color: var(--light); line-height: 1.5; }

/* ----------------------------------------------------------
   Pattern Cards (Week 1)
   ---------------------------------------------------------- */
.pattern-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(196,162,101,0.12); margin: 1.8rem 0;
}
.pattern-card {
  background: var(--warm); padding: 1.6rem;
  cursor: pointer; transition: all 0.25s; position: relative;
}
.pattern-card:hover { background: rgba(122,63,44,0.04); }
.pattern-card.selected { background: rgba(122,63,44,0.05); border-top: 2px solid var(--terra); }
.p-icon  { font-size: 1.4rem; margin-bottom: 0.6rem; display: block; }
.p-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--dark); margin-bottom: 0.3rem; }
.p-desc  { font-size: 0.82rem; font-weight: 300; color: var(--light); line-height: 1.6; }

.pattern-reveal {
  display: none; grid-column: 1 / -1;
  padding: 1.8rem; background: var(--cream);
  border-top: 0.5px solid rgba(196,162,101,0.2);
  animation: fadeUp 0.4s ease;
}
.pattern-reveal.show { display: block; }
.pr-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--terra); margin-bottom: 0.8rem; }
.pr-body  { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 0.8rem; }
.pr-body strong { font-weight: 500; color: var(--dark); }
.pr-truth {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic; color: var(--terra);
  border-left: 2px solid var(--gold); padding-left: 1rem; line-height: 1.65; margin-top: 0.8rem;
}

/* ----------------------------------------------------------
   Diagram (Week 1)
   ---------------------------------------------------------- */
.diagram-wrap {
  margin: 2rem 0; background: var(--warm);
  border: 0.5px solid rgba(196,162,101,0.2); padding: 2rem;
}
.diagram-lbl {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.diagram { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; position: relative; }
.d-person { text-align: center; flex: 1; }
.d-icon   { font-size: 2rem; margin-bottom: 0.4rem; display: block; }
.d-name   { font-size: 0.75rem; font-weight: 500; color: var(--dark); letter-spacing: 0.05em; }
.d-action { font-size: 0.72rem; font-weight: 300; color: var(--mid); margin-top: 0.2rem; line-height: 1.4; }
.d-arrow     { font-size: 1.4rem; color: var(--gold); opacity: 0.6; flex-shrink: 0; }
.d-arrow-rev { font-size: 1.4rem; color: var(--terra); opacity: 0.5; flex-shrink: 0; }
.diagram-note {
  font-size: 0.8rem; font-weight: 300; color: var(--mid);
  margin-top: 1.2rem; line-height: 1.7; font-style: italic;
  text-align: center; border-top: 0.5px solid rgba(196,162,101,0.15); padding-top: 1rem;
}

/* ----------------------------------------------------------
   Forever Box (Week 1 style & Week 7 style)
   ---------------------------------------------------------- */
.forever-box {
  background: linear-gradient(135deg, rgba(122,63,44,0.06) 0%, rgba(196,162,101,0.04) 100%);
  border: 0.5px solid rgba(122,63,44,0.15);
  padding: 2rem; margin: 2rem 0;
}
.forever-lbl {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); margin-bottom: 1rem;
}
.forever-row {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0.8rem; margin-bottom: 0.9rem; align-items: flex-start;
}
.forever-row:last-child { margin-bottom: 0; }
.forever-time {
  font-size: 0.72rem; font-weight: 500; color: var(--gold);
  white-space: nowrap; padding-top: 2px; min-width: 80px;
}
.forever-text { font-size: 0.88rem; font-weight: 300; color: var(--mid); line-height: 1.7; }
.forever-text strong { font-weight: 500; color: var(--dark); }

/* "What stays the same" box */
.stays-box {
  background: rgba(28,20,16,0.04);
  border: 0.5px solid rgba(28,20,16,0.1);
  padding: 1.4rem 1.6rem; margin: 1rem 0 2rem;
}
.stays-lbl {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); margin-bottom: 0.5rem;
}
.stays-box p { font-size: 0.88rem; font-weight: 300; color: var(--mid); line-height: 1.75; }

/* Field Box (Week 1) */
.field-box {
  background: var(--warm);
  border: 0.5px solid rgba(196,162,101,0.2);
  border-top: 3px solid var(--terra);
  padding: 1.6rem; margin: 1.5rem 0;
}
.field-lbl {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.7rem;
}
.field-box p     { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 0.8rem; }
.field-box p:last-child { margin-bottom: 0; }
.field-box strong { font-weight: 500; color: var(--dark); }

/* ----------------------------------------------------------
   Situation Items (collapsible)
   ---------------------------------------------------------- */
.situations { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.2rem 0; }
.sit-item {
  display: flex; gap: 0.8rem; padding: 0.9rem 1rem;
  border: 0.5px solid rgba(42,31,26,0.1);
  background: var(--warm); cursor: pointer;
  transition: all 0.25s; align-items: flex-start;
  margin-bottom: 0.5rem;
}
.sit-item:hover { border-color: rgba(122,63,44,0.25); }
.sit-item.open  { border-color: var(--terra); background: rgba(122,63,44,0.04); }

.sit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300;
  color: rgba(196,162,101,0.4); flex-shrink: 0;
  line-height: 1; margin-top: 2px; transition: color 0.25s;
}
.sit-item.open .sit-num { color: var(--gold); }

/* sit-text (week 1 original) */
.sit-text { font-size: 0.88rem; font-weight: 300; color: var(--mid); line-height: 1.6; }
.sit-item.open .sit-text { color: var(--dark); }

/* sit-header / sit-body (week 7 extended version) */
.sit-header { flex: 1; }
.sit-title   { font-size: 0.9rem; font-weight: 400; color: var(--dark); margin-bottom: 0.2rem; }
.sit-desc    { font-size: 0.82rem; font-weight: 300; color: var(--light); line-height: 1.5; }
.sit-body    { display: none; margin-top: 0.8rem; padding-top: 0.8rem; border-top: 0.5px solid rgba(196,162,101,0.15); }
.sit-item.open .sit-body { display: block; }
.sit-swallowed { font-size: 0.82rem; font-weight: 300; color: rgba(155,123,106,0.7); line-height: 1.6; margin-bottom: 0.6rem; font-style: italic; }
.sit-boundary  { font-size: 0.88rem; font-weight: 400; color: var(--terra); line-height: 1.6; border-left: 2px solid var(--gold); padding-left: 0.8rem; }

/* ----------------------------------------------------------
   Checklist
   ---------------------------------------------------------- */
.check-grid { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.2rem 0 1.6rem; }
.check-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(42,31,26,0.08);
  background: var(--warm); cursor: pointer; transition: all 0.25s;
}
.check-item:hover   { border-color: rgba(122,63,44,0.2); }
.check-item.checked { border-color: var(--terra); background: rgba(122,63,44,0.04); }
.check-box {
  width: 18px; height: 18px; border: 1.5px solid rgba(42,31,26,0.18);
  flex-shrink: 0; margin-top: 2px; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: transparent;
}
.check-item.checked .check-box { border-color: var(--terra); background: var(--terra); color: #fff; }
.check-text { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.6; }
.check-item.checked .check-text { color: var(--dark); }

/* ----------------------------------------------------------
   Choice Buttons (light background)
   ---------------------------------------------------------- */
.choice-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--dark); margin: 1.8rem 0 1rem; line-height: 1.55;
}
.choices { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.8rem; }

.cb {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(42,31,26,0.1);
  background: transparent; text-align: left;
  cursor: pointer; transition: all 0.25s; width: 100%;
}
.cb:hover    { border-color: var(--rose); background: rgba(194,122,98,0.03); }
.cb.selected { border-color: var(--terra); background: rgba(122,63,44,0.05); }

.cb-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(42,31,26,0.18);
  flex-shrink: 0; margin-top: 2px;
  transition: all 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.cb.selected .cb-dot { border-color: var(--terra); background: var(--terra); }

.cb-inner { width: 7px; height: 7px; border-radius: 50%; background: #fff; opacity: 0; }
.cb.selected .cb-inner { opacity: 1; }

.cb-text { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.55; }
.cb.selected .cb-text { color: var(--dark); }

.cr {
  display: none;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--terra);
  background: rgba(122,63,44,0.04);
  margin-top: 0.3rem;
}
.cr.show { display: block; animation: fadeUp 0.35s ease; }
.cr p { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.85; }
.cr strong { font-weight: 500; color: var(--dark); }

/* ----------------------------------------------------------
   Dark Choice Buttons
   ---------------------------------------------------------- */
.dark-choices-wrap { background: var(--dark); padding: 1.8rem; margin: 1.5rem 0; }
.dark-choice-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: rgba(250,247,242,0.85); margin-bottom: 1rem; line-height: 1.55;
}
.dcb {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.85rem 1rem;
  border: 0.5px solid rgba(250,247,242,0.1);
  background: transparent; text-align: left;
  cursor: pointer; transition: all 0.25s;
  width: 100%; margin-bottom: 0.4rem;
}
.dcb:hover    { border-color: rgba(196,162,101,0.35); background: rgba(196,162,101,0.04); }
.dcb.selected { border-color: var(--gold); background: rgba(196,162,101,0.08); }

.dcb .cb-dot { border-color: rgba(250,247,242,0.2); }
.dcb.selected .cb-dot { border-color: var(--gold); background: var(--gold); }

.dcb .cb-text { color: rgba(250,247,242,0.6); }
.dcb.selected .cb-text { color: rgba(250,247,242,0.9); }

.dcr {
  display: none;
  padding: 1.1rem 1.3rem;
  border-left: 2px solid var(--gold);
  background: rgba(196,162,101,0.07);
  margin-top: 0.3rem; margin-bottom: 0.4rem;
}
.dcr.show { display: block; animation: fadeUp 0.35s ease; }
.dcr p { font-size: 0.88rem; font-weight: 300; color: rgba(250,247,242,0.7); line-height: 1.85; }
.dcr strong { color: rgba(250,247,242,0.9); font-weight: 500; }

/* ----------------------------------------------------------
   Expandable Cards
   ---------------------------------------------------------- */
.exp-card { border: 0.5px solid rgba(42,31,26,0.1); margin-bottom: 0.5rem; overflow: hidden; }
.exp-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.2rem; background: var(--warm); cursor: pointer; transition: background 0.25s;
}
.exp-header:hover { background: rgba(122,63,44,0.04); }
.exp-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--dark); }
.exp-chevron { font-size: 0.7rem; color: var(--gold); transition: transform 0.3s; }
.exp-card.open .exp-chevron { transform: rotate(180deg); }

.exp-body { display: none; padding: 1.4rem 1.2rem; border-top: 0.5px solid rgba(196,162,101,0.15); }
.exp-card.open .exp-body { display: block; animation: fadeUp 0.3s ease; }
.exp-body p { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 0.8rem; }
.exp-body p:last-child { margin-bottom: 0; }
.exp-body strong { font-weight: 500; color: var(--dark); }
.exp-body em { font-style: italic; color: var(--terra); }
.exp-boundary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic; color: var(--terra);
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1rem; margin: 0.8rem 0; line-height: 1.6;
}

/* ----------------------------------------------------------
   Free Text Input
   ---------------------------------------------------------- */
.free-wrap { margin: 0.8rem 0 1.2rem; }
.free-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-style: italic;
  color: var(--mid); margin-bottom: 0.5rem; line-height: 1.6; display: block;
}
.free-input {
  width: 100%; padding: 0.85rem 1rem;
  border: 0.5px solid rgba(42,31,26,0.14);
  background: var(--warm);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem; font-weight: 300; color: var(--dark);
  resize: none; outline: none; transition: border-color 0.25s; line-height: 1.6;
}
.free-input:focus { border-color: var(--rose); }
.free-input::placeholder { color: var(--light); }

/* ----------------------------------------------------------
   Shift Questions (Day 6)
   ---------------------------------------------------------- */
.shift-q {
  background: var(--warm);
  border: 0.5px solid rgba(196,162,101,0.15);
  padding: 1.6rem; margin-bottom: 1.2rem;
}
.shift-num {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem;
}
.shift-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--dark); margin-bottom: 1rem; line-height: 1.5;
}
.shift-guide {
  font-size: 0.82rem; font-weight: 300;
  color: var(--light); margin-bottom: 0.8rem; line-height: 1.6; font-style: italic;
}

/* ----------------------------------------------------------
   Signal & Stars (Day 7)
   ---------------------------------------------------------- */
.sig-q { margin-bottom: 2rem; }
.sig-lbl {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.5rem;
}
.sig-text { font-size: 0.9rem; font-weight: 300; color: var(--dark); margin-bottom: 0.7rem; line-height: 1.6; }

.stars { display: flex; gap: 0.3rem; }
.star-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(196,162,101,0.25);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all 0.2s; color: var(--light);
}
.star-btn.on { border-color: var(--gold); color: var(--gold); background: rgba(196,162,101,0.07); }
.star-note { font-size: 0.7rem; color: var(--light); margin-top: 0.3rem; font-weight: 300; }

/* ----------------------------------------------------------
   Signal Story Visual
   ---------------------------------------------------------- */
.signal-story {
  background: var(--warm);
  border: 0.5px solid rgba(196,162,101,0.2);
  padding: 1.6rem; margin: 1.5rem 0;
}
.ss-lbl {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.ss-weeks { display: flex; gap: 0.4rem; align-items: flex-end; height: 60px; }
.ss-week  { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.ss-bar   { width: 100%; border-radius: 2px 2px 0 0; transition: height 0.5s ease; }
.ss-bar.done     { background: var(--gold); }
.ss-bar.active   { background: var(--terra); }
.ss-bar.inactive { background: rgba(196,162,101,0.15); }
.ss-wlabel { font-size: 0.6rem; color: var(--light); font-weight: 300; }
.ss-note {
  font-size: 0.78rem; font-weight: 300; color: var(--mid);
  margin-top: 0.8rem; font-style: italic;
}

/* ----------------------------------------------------------
   Page Footer & Navigation Buttons
   ---------------------------------------------------------- */
.page-footer {
  padding: 1.2rem 2rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 0.5px solid rgba(42,31,26,0.06);
  background: var(--cream);
}
.btn-prev {
  font-size: 0.78rem; font-weight: 300;
  color: var(--light); background: none; border: none; cursor: pointer;
}
.btn-next {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); background: var(--terra);
  border: none; padding: 0.85rem 2rem; cursor: pointer; transition: all 0.3s;
}
.btn-next:hover:not(:disabled) { background: var(--deep); }
.btn-next:disabled { opacity: 0.3; cursor: not-allowed; }

.btn-next-gold {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  border: none; padding: 0.85rem 2rem; cursor: pointer; transition: all 0.3s;
}
.btn-next-gold:hover { background: var(--gold2); }

/* ----------------------------------------------------------
   Intro Screen (dark opening of each week)
   ---------------------------------------------------------- */
.intro-screen {
  min-height: 100vh; display: flex; flex-direction: column;
  background: var(--dark); position: relative; overflow: hidden;
}
.intro-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,63,44,0.2) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.intro-content {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 2.5rem 4rem; position: relative; z-index: 1; max-width: 660px;
}
.intro-eyebrow {
  font-size: 0.63rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s ease forwards; opacity: 0;
}
.intro-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 300;
  line-height: 1.1; color: var(--cream); margin-bottom: 1.4rem;
  animation: fadeUp 0.8s 0.4s ease forwards; opacity: 0;
}
.intro-h em { font-style: italic; color: var(--gold); }
.intro-body {
  font-size: 0.95rem; font-weight: 300; line-height: 2;
  color: rgba(250,247,242,0.65); max-width: 520px; margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.6s ease forwards; opacity: 0;
}
.intro-cta { animation: fadeUp 0.8s 0.65s ease forwards; opacity: 0; }
.intro-meta {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 0.5px solid rgba(196,162,101,0.15);
  animation: fadeUp 0.8s 0.8s ease forwards; opacity: 0;
}
.meta-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.2rem;
}
.meta-l {
  font-size: 0.63rem; font-weight: 300;
  color: rgba(250,247,242,0.3); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ----------------------------------------------------------
   Complete Screen (dark celebration)
   ---------------------------------------------------------- */
.complete-screen {
  min-height: 100vh; background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem;
  position: relative; overflow: hidden;
}
.complete-screen::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,162,101,0.1) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.complete-inner { position: relative; z-index: 1; max-width: 540px; }
.complete-tag {
  font-size: 0.63rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; opacity: 0.7;
}
.complete-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300;
  color: var(--cream); margin-bottom: 0.6rem; line-height: 1.15;
}
.complete-h em { font-style: italic; color: var(--gold); }
.complete-sub {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(250,247,242,0.5); line-height: 1.85; margin-bottom: 2.5rem;
}
.insights-box {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(196,162,101,0.15);
  padding: 2rem; width: 100%; margin: 0 auto 2.5rem; text-align: left;
}
.i-lbl {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; opacity: 0.7;
}
.i-row { display: flex; gap: 0.7rem; margin-bottom: 0.9rem; align-items: flex-start; }
.i-row:last-child { margin-bottom: 0; }
.i-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; opacity: 0.7; }
.i-text { font-size: 0.86rem; font-weight: 300; color: rgba(250,247,242,0.6); line-height: 1.7; font-style: italic; }

/* ----------------------------------------------------------
   Week 8 — Week Map
   ---------------------------------------------------------- */
.week-map {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(196,162,101,0.12); margin: 1.8rem 0;
}
.week-card {
  background: var(--warm); padding: 1.4rem;
  cursor: pointer; transition: all 0.25s; position: relative;
}
.week-card:hover    { background: rgba(122,63,44,0.04); }
.week-card.revealed { background: rgba(122,63,44,0.05); border-top: 2px solid var(--terra); }
.wk-num     { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: rgba(196,162,101,0.2); line-height: 1; margin-bottom: 0.3rem; }
.wk-title   { font-size: 0.85rem; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
.wk-insight { font-size: 0.82rem; font-weight: 300; color: var(--light); line-height: 1.5; display: none; }
.week-card.revealed .wk-insight { display: block; color: var(--terra); }

/* ----------------------------------------------------------
   Week 8 — Two Tracks
   ---------------------------------------------------------- */
.track-section {
  padding: 1.6rem; margin: 1.2rem 0;
  border: 0.5px solid rgba(42,31,26,0.1);
}
.track-section.track-building { border-left: 3px solid var(--terra); }
.track-section.track-deciding { border-left: 3px solid rgba(155,123,106,0.5); }

.track-header {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; margin-bottom: 0;
}
.track-label {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 0.3rem;
}
.track-building .track-label { color: var(--terra); }
.track-deciding .track-label { color: var(--light); }
.track-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--dark); }
.track-chevron { font-size: 0.7rem; color: var(--gold); transition: transform 0.3s; }
.track-section.open .track-chevron { transform: rotate(180deg); }

.track-body { display: none; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 0.5px solid rgba(196,162,101,0.15); }
.track-section.open .track-body { display: block; animation: fadeUp 0.3s ease; }
.track-body p { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 0.8rem; }
.track-body p:last-child { margin-bottom: 0; }
.track-body strong { font-weight: 500; color: var(--dark); }

.track-item { display: flex; gap: 0.7rem; margin-bottom: 0.6rem; align-items: flex-start; }
.track-dot  { width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0; margin-top: 8px; }
.track-building .track-dot { background: var(--terra); }
.track-deciding .track-dot { background: var(--light); }
.track-text { font-size: 0.88rem; font-weight: 300; color: var(--mid); line-height: 1.7; }

/* ----------------------------------------------------------
   Week 8 — Modal (8 Shifts)
   ---------------------------------------------------------- */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(28,20,16,0.85); z-index: 500;
  overflow-y: auto; padding: 2rem;
}
.modal-overlay.show { display: flex; align-items: flex-start; justify-content: center; }
.modal-box {
  background: var(--cream); max-width: 620px; width: 100%;
  padding: 2.5rem; position: relative; margin: auto;
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--light);
}
.modal-h   { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--dark); margin-bottom: 0.3rem; }
.modal-sub { font-size: 0.82rem; font-weight: 300; color: var(--light); margin-bottom: 2rem; font-style: italic; }

.shift-entry {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.2rem; margin-bottom: 1.2rem;
  background: rgba(196,162,101,0.03);
}
.shift-entry-wk { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.shift-entry-q  { font-size: 0.82rem; font-weight: 300; font-style: italic; color: var(--light); margin-bottom: 0.4rem; line-height: 1.5; }
.shift-entry-a  { font-size: 0.9rem; font-weight: 300; color: var(--mid); line-height: 1.8; }

/* ----------------------------------------------------------
   Week 8 — End Products & Final Line
   ---------------------------------------------------------- */
.end-products { display: flex; flex-direction: column; gap: 0.6rem; width: 100%; margin-bottom: 2rem; }
.end-btn {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1rem 2rem; cursor: pointer; transition: all 0.3s;
  border: 1px solid rgba(196,162,101,0.3);
  background: rgba(196,162,101,0.06); color: rgba(250,247,242,0.7);
}
.end-btn:hover { border-color: var(--gold); color: var(--gold); }

.final-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(250,247,242,0.45); line-height: 1.7;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 0.5px solid rgba(196,162,101,0.1);
}

/* ----------------------------------------------------------
   Confetti
   ---------------------------------------------------------- */
.confetti-layer { position: fixed; top: 0; left: 0; right: 0; pointer-events: none; z-index: 999; }
.c-piece { position: absolute; width: 7px; height: 7px; top: -10px; animation: fall 3s ease-in forwards; }
@keyframes fall { to { transform: translateY(110vh) rotate(720deg); opacity: 0; } }

/* ----------------------------------------------------------
   Welcome Page — Hero
   ---------------------------------------------------------- */
body.welcome-page { background: var(--dark); color: var(--cream); }

.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 4rem 2rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,63,44,0.25) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; width: 100%; text-align: center; }

.logo-mark  { margin-bottom: 3rem; animation: fadeDown 1s ease forwards; opacity: 0; }
.logo-line  { width: 1px; height: 48px; background: linear-gradient(to bottom,transparent,var(--gold),transparent); margin: 0 auto 1.2rem; }
.logo-text  { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }

.welcome-pre { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(196,162,101,0.6); margin-bottom: 1.2rem; animation: fadeUp 0.8s 0.3s ease forwards; opacity: 0; }
.welcome-h   { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,5vw,4rem); font-weight: 300; line-height: 1.15; color: var(--cream); margin-bottom: 1.6rem; animation: fadeUp 0.8s 0.5s ease forwards; opacity: 0; }
.welcome-h em { font-style: italic; color: var(--gold); }
.welcome-sub  { font-size: 0.95rem; font-weight: 300; line-height: 1.95; color: rgba(250,247,242,0.6); max-width: 520px; margin: 0 auto 2.8rem; animation: fadeUp 0.8s 0.7s ease forwards; opacity: 0; }

.cta-wrap { animation: fadeUp 0.8s 0.9s ease forwards; opacity: 0; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.btn-start {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark); background: var(--gold); border: none;
  padding: 1.1rem 3rem; cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-start::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); transform: translateX(-100%); transition: transform 0.4s ease; }
.btn-start:hover::after { transform: translateX(0); }
.btn-start:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(196,162,101,0.25); }
.cta-note { font-size: 0.72rem; font-weight: 300; color: rgba(250,247,242,0.3); }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: fadeUp 1s 1.4s ease forwards; opacity: 0;
}
.scroll-hint span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(196,162,101,0.4); }
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom,rgba(196,162,101,0.4),transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

/* Welcome page sections */
.welcome-section { padding: 6rem 2rem; }
.welcome-section-inner { max-width: 680px; margin: 0 auto; }
.section-tag { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 0.8rem; }
.section-title em { font-style: italic; color: var(--gold); }
.section-body { font-size: 0.95rem; font-weight: 300; line-height: 1.95; color: rgba(250,247,242,0.6); margin-bottom: 2rem; }

.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(196,162,101,0.1); margin: 2.5rem 0; }
.promise-card { background: var(--dark); padding: 2rem 1.8rem; position: relative; transition: background 0.3s; }
.promise-card:hover { background: #231810; }
.promise-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: rgba(196,162,101,0.15); line-height: 1; margin-bottom: 0.8rem; }
.promise-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--cream); margin-bottom: 0.5rem; }
.promise-card p  { font-size: 0.85rem; font-weight: 300; color: rgba(250,247,242,0.5); line-height: 1.75; }

.contrast-section { padding: 5rem 2rem; background: rgba(255,255,255,0.02); border-top: 0.5px solid rgba(196,162,101,0.1); border-bottom: 0.5px solid rgba(196,162,101,0.1); }
.contrast-inner { max-width: 680px; margin: 0 auto; }
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
.contrast-col h4 { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.2rem; }
.col-is h4    { color: var(--gold); }
.col-isnot h4 { color: rgba(250,247,242,0.25); }
.contrast-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.contrast-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; font-weight: 300; line-height: 1.6; }
.col-is .contrast-list li    { color: rgba(250,247,242,0.75); }
.col-isnot .contrast-list li { color: rgba(250,247,242,0.3); }
.li-mark { flex-shrink: 0; margin-top: 3px; font-size: 0.7rem; }
.col-is .li-mark    { color: var(--gold); }
.col-isnot .li-mark { color: rgba(250,247,242,0.2); }

.honest-section { padding: 5rem 2rem; }
.honest-inner   { max-width: 680px; margin: 0 auto; }
.honest-block   { border-left: 2px solid var(--gold); padding: 1.8rem 2rem; background: rgba(196,162,101,0.04); margin-bottom: 1.5rem; }
.honest-block p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--cream); line-height: 1.75; }

.action-section { padding: 5rem 2rem 4rem; background: rgba(122,63,44,0.08); border-top: 0.5px solid rgba(122,63,44,0.2); }
.action-inner   { max-width: 680px; margin: 0 auto; }
.action-q { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 1.5rem; line-height: 1.5; }
.action-opts { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.action-btn { display: flex; align-items: flex-start; gap: 0.9rem; padding: 1rem 1.2rem; border: 0.5px solid rgba(250,247,242,0.1); background: transparent; text-align: left; cursor: pointer; transition: all 0.25s; width: 100%; }
.action-btn:hover { border-color: rgba(196,162,101,0.4); background: rgba(196,162,101,0.04); }
.action-btn.selected { border-color: var(--gold); background: rgba(196,162,101,0.08); }
.action-dot { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid rgba(250,247,242,0.2); flex-shrink: 0; margin-top: 2px; transition: all 0.25s; display: flex; align-items: center; justify-content: center; }
.action-btn.selected .action-dot { border-color: var(--gold); background: var(--gold); }
.action-inner-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; opacity: 0; }
.action-btn.selected .action-inner-dot { opacity: 1; }
.action-text { font-size: 0.9rem; font-weight: 300; color: rgba(250,247,242,0.6); line-height: 1.55; }
.action-btn.selected .action-text { color: var(--cream); }
.action-response { display: none; padding: 1.4rem 1.6rem; border-left: 2px solid var(--gold); background: rgba(196,162,101,0.06); animation: fadeUp 0.35s ease; }
.action-response.show { display: block; }
.action-response p { font-size: 0.92rem; font-weight: 300; color: rgba(250,247,242,0.7); line-height: 1.85; }
.action-response strong { color: var(--cream); font-weight: 500; }
.btn-begin { margin-top: 1.5rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark); background: var(--gold); border: none; padding: 1rem 2.5rem; cursor: pointer; transition: all 0.3s; display: none; }
.btn-begin.show { display: inline-block; }
.btn-begin:hover { background: var(--gold2); }

.bottom-bar   { padding: 2rem; text-align: center; border-top: 0.5px solid rgba(196,162,101,0.1); }
.bottom-bar p { font-size: 0.72rem; font-weight: 300; color: rgba(250,247,242,0.2); letter-spacing: 0.05em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ----------------------------------------------------------
   Index Page
   ---------------------------------------------------------- */
body.index-page { background: var(--dark); }

.index-inner { max-width: 500px; width: 100%; text-align: center; position: relative; z-index: 1; }
.index-glow  { position: fixed; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle,rgba(122,63,44,0.15) 0%,transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }

.index-logo-line { width: 1px; height: 40px; background: linear-gradient(to bottom,transparent,var(--gold),transparent); margin: 0 auto 1rem; }
.index-logo      { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 3rem; }
.index-h1        { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,5vw,3rem); font-weight: 300; line-height: 1.15; color: var(--cream); margin-bottom: 2.5rem; }
.index-h1 em     { font-style: italic; color: var(--gold); }

.nav-grid     { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; margin-bottom: 3rem; }
.nav-item     { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.4rem; border: 0.5px solid rgba(196,162,101,0.15); text-decoration: none; transition: all 0.25s; }
.nav-item:hover   { border-color: rgba(196,162,101,0.4); background: rgba(196,162,101,0.04); }
.nav-item.primary { border-color: var(--gold); background: rgba(196,162,101,0.06); }
.nav-left         { text-align: left; }
.nav-wk    { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.nav-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--cream); }
.nav-arrow { font-size: 0.85rem; color: var(--gold); opacity: 0.6; }
.index-divider { width: 34px; height: 1px; background: rgba(196,162,101,0.2); margin: 0.8rem auto; }
.index-footer  { font-size: 0.7rem; font-weight: 300; color: rgba(250,247,242,0.2); letter-spacing: 0.05em; }

.real-section { padding: 5rem 2rem; border-top: 0.5px solid rgba(196,162,101,0.15); }
.real-inner   { max-width: 680px; margin: 0 auto; }
.real-body    { font-size: 1rem; font-weight: 300; line-height: 2; color: rgba(250,247,242,0.62); margin-bottom: 1.8rem; }
.real-direct  { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 400; color: var(--cream); line-height: 1.75; margin: 2.2rem 0; padding: 1.6rem 0; border-top: 0.5px solid rgba(196,162,101,0.22); border-bottom: 0.5px solid rgba(196,162,101,0.22); }