:root {
  --bg: #1a1510;
  --bg-deep: #120e0a;
  --bg-warm: #221a12;
  --sand: #c9b48f;
  --ivory: #ece2cf;
  --ivory-dim: #b8a888;
  --earth: #8a745410;
  --gold: #c9a45c;
  --gold-bright: #e0bd76;
  --gold-dim: #9a7d44;
  --line: rgba(201, 164, 92, 0.22);
  --line-soft: rgba(201, 164, 92, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  animation: fade 0.8s ease;
}

.display { font-family: 'Cormorant Garamond', serif; font-weight: 300; }

/* grain */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 100; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ============ TEMPLE (MAIN) ============ */
#temple {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6vh 5vw;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, var(--bg-warm) 0%, var(--bg-deep) 70%);
}

/* faint light rays from apex */
#temple::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(201,164,92,0.18), transparent 45%);
  pointer-events: none;
}

.temple-eyebrow {
  font-size: clamp(0.66rem, 1vw, 0.78rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: rise 1.5s ease forwards 0.2s;
}

.temple-title {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.02;
  color: var(--ivory);
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
  opacity: 0;
  animation: rise 1.6s ease forwards 0.45s;
}
.temple-title em { font-style: italic; color: var(--gold-bright); }

.temple-sub {
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  color: var(--ivory-dim);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 4.5vh;
  opacity: 0;
  animation: rise 1.6s ease forwards 0.7s;
}

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

/* ---- THE INTERACTIVE TRIANGLE ---- */
.gateway {
  position: relative;
  width: min(560px, 88vw);
  aspect-ratio: 1 / 0.92;
  opacity: 0;
  animation: rise 1.8s ease forwards 1s;
}

.gateway svg { width: 100%; height: 100%; overflow: visible; display: block; }

.tri-edge {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
  transition: stroke 0.5s ease, stroke-width 0.5s ease, filter 0.5s ease;
}
.tri-inner {
  fill: none;
  stroke: rgba(224, 189, 118, 0.42);
  stroke-width: 0.9;
  filter: drop-shadow(0 0 3px rgba(224, 189, 118, 0.45))
          drop-shadow(0 0 9px rgba(201, 164, 92, 0.22));
  transition: stroke 0.5s ease, stroke-width 0.5s ease, filter 0.5s ease;
}

/* outline + grid glow when cursor is near the triangle */
.gateway.is-near .tri-edge {
  stroke: rgba(224, 189, 118, 0.92);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 6px rgba(224, 189, 118, 0.7))
          drop-shadow(0 0 18px rgba(201, 164, 92, 0.5));
}
.gateway.is-near .tri-inner {
  stroke: rgba(224, 189, 118, 0.7);
  stroke-width: 1.1;
  filter: drop-shadow(0 0 5px rgba(224, 189, 118, 0.6))
          drop-shadow(0 0 14px rgba(201, 164, 92, 0.4));
}
.tri-fill {
  fill: url(#templeGlow);
  opacity: 0.5;
}

/* corner hotspots */
.corner { cursor: pointer; }
.corner-dot {
  fill: var(--gold);
  transition: r 0.5s cubic-bezier(0.16,1,0.3,1), fill 0.5s ease;
}
.corner-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0;
  transform-origin: center;
  transition: opacity 0.5s ease;
}
.corner:hover .corner-dot { r: 9; fill: var(--gold-bright); }
.corner:hover .corner-ring { opacity: 0.6; animation: pulse 2s ease-in-out infinite; }

@keyframes pulse {
  0%,100% { opacity: 0.5; r: 16; }
  50% { opacity: 0.15; r: 26; }
}

.corner-label {
  font-family: 'Cormorant Garamond', serif;
  fill: var(--ivory);
  font-size: 21px;
  text-anchor: middle;
  letter-spacing: 0.04em;
  transition: fill 0.5s ease;
}
.corner-tier {
  font-family: 'Jost', sans-serif;
  fill: var(--gold);
  font-size: 8.5px;
  text-anchor: middle;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.corner:hover .corner-label { fill: var(--gold-bright); }

.gateway-hint {
  margin-top: 4vh;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  opacity: 0;
  animation: rise 2s ease forwards 1.5s;
}

/* ============ CHAMBER VIEWS ============ */
.chamber-view {
  min-height: 100vh;
  padding: 0;
  position: relative;
}

.chamber-hero {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 14vh 6vw 8vh;
  position: relative;
}

.ch-oracle .chamber-hero { background: radial-gradient(ellipse 80% 70% at 50% 30%, #2a2114 0%, var(--bg-deep) 75%); }
.ch-mission .chamber-hero { background: radial-gradient(ellipse 80% 70% at 50% 30%, #241c2a 0%, var(--bg-deep) 75%); }
.ch-business .chamber-hero { background: radial-gradient(ellipse 80% 70% at 50% 30%, #2b1d14 0%, var(--bg-deep) 75%); }

.ch-tier {
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.ch-name {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 1.8rem;
}
.ch-name em { font-style: italic; color: var(--gold-bright); }
.ch-for {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--sand);
  max-width: 28ch;
  line-height: 1.4;
}

.chamber-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 4vh 7vw 12vh;
}

.chamber-body > p {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  color: var(--ivory-dim);
  line-height: 1.95;
  margin-bottom: 1.6rem;
}
.chamber-body > p:first-child::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  float: left;
  line-height: 0.8;
  padding: 0.5rem 0.6rem 0 0;
  color: var(--gold);
}

.includes {
  margin: 4vh 0;
  padding: 3rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.includes-label {
  font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.includes ul { list-style: none; }
.includes li {
  font-size: 1.04rem; color: var(--ivory);
  padding: 0.6rem 0 0.6rem 1.9rem; position: relative; line-height: 1.6;
}
.includes li::before {
  content: ""; position: absolute; left: 0; top: 1.2rem;
  width: 7px; height: 7px; border: 1px solid var(--gold); transform: rotate(45deg);
}

.ch-shared {
  margin-top: 5vh;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dim);
  text-align: center;
  line-height: 1.6;
}

/* ============================================
   ORACLE TIME - cosmic atmosphere (scoped)
   ============================================ */

.ch-oracle .chamber-hero {
  isolation: isolate;
  overflow: hidden;
}

/* drifting starfield */
.ch-oracle .chamber-hero::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 18%, rgba(255,241,200,0.75), transparent 55%),
    radial-gradient(1px 1px at 28% 64%, rgba(224,189,118,0.55), transparent 55%),
    radial-gradient(1.2px 1.2px at 47% 11%, rgba(255,241,200,0.6), transparent 55%),
    radial-gradient(1px 1px at 67% 38%, rgba(201,164,92,0.5), transparent 55%),
    radial-gradient(1.6px 1.6px at 82% 72%, rgba(255,241,200,0.6), transparent 55%),
    radial-gradient(1px 1px at 93% 22%, rgba(224,189,118,0.5), transparent 55%),
    radial-gradient(1px 1px at 7% 88%, rgba(201,164,92,0.5), transparent 55%),
    radial-gradient(1.3px 1.3px at 58% 86%, rgba(255,241,200,0.55), transparent 55%),
    radial-gradient(1px 1px at 37% 33%, rgba(224,189,118,0.4), transparent 55%),
    radial-gradient(1px 1px at 76% 8%, rgba(201,164,92,0.45), transparent 55%),
    radial-gradient(1.5px 1.5px at 19% 47%, rgba(255,241,200,0.5), transparent 55%),
    radial-gradient(1px 1px at 88% 54%, rgba(224,189,118,0.4), transparent 55%),
    radial-gradient(1px 1px at 4% 35%, rgba(255,241,200,0.4), transparent 55%),
    radial-gradient(1px 1px at 52% 50%, rgba(224,189,118,0.35), transparent 55%);
  animation: starDrift 160s ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes starDrift {
  from { transform: translate3d(-1.5%, -0.6%, 0); }
  to   { transform: translate3d(1.5%, 0.6%, 0); }
}

/* twinkle on a few stars */
.ch-oracle .chamber-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 22% 28%, rgba(255,241,200,1), transparent 55%),
    radial-gradient(1px 1px at 71% 54%, rgba(255,241,200,1), transparent 55%),
    radial-gradient(1px 1px at 44% 76%, rgba(255,241,200,1), transparent 55%),
    radial-gradient(1px 1px at 86% 18%, rgba(255,241,200,1), transparent 55%);
  animation: twinkle 5.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; }
  50%      { opacity: 0.75; }
}

/* cosmic sigil (orbital rings + 12-mark wheel) */
.ch-oracle .cosmos-sigil {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(540px, 90vw);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
  filter: drop-shadow(0 0 14px rgba(201,164,92,0.25));
}
.ch-oracle .cosmos-sigil svg {
  width: 100%; height: 100%; display: block; overflow: visible;
}

/* keep hero text above the atmosphere layers */
.ch-oracle .chamber-hero .ch-tier,
.ch-oracle .chamber-hero .ch-name,
.ch-oracle .chamber-hero .ch-for {
  position: relative;
  z-index: 2;
}
.ch-oracle .chamber-hero .ch-name {
  text-shadow: 0 0 30px rgba(0,0,0,0.55);
}

/* ornamental divider on the "What is held here" section */
.ch-oracle .includes {
  border: none;
  position: relative;
  background:
    linear-gradient(to right, transparent, rgba(201,164,92,0.42) 22%, rgba(201,164,92,0.42) 78%, transparent) top center / 100% 1px no-repeat,
    linear-gradient(to right, transparent, rgba(201,164,92,0.42) 22%, rgba(201,164,92,0.42) 78%, transparent) bottom center / 100% 1px no-repeat;
}
.ch-oracle .includes::before,
.ch-oracle .includes::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px; height: 8px;
  background: var(--bg-deep);
  border: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
}
.ch-oracle .includes::before { top: -4.5px; }
.ch-oracle .includes::after  { bottom: -4.5px; }

@media (prefers-reduced-motion: reduce) {
  .ch-oracle .chamber-hero::before,
  .ch-oracle .chamber-hero::after { animation: none; }
  .ch-oracle .cosmos-sigil animateTransform { display: none; }
}

/* ============================================
   INVESTMENT - two-card pricing (reusable)
   ============================================ */

.investment {
  max-width: 980px;
  margin: 6vh auto 0;
  padding: 0 6vw 12vh;
  text-align: center;
}
.investment-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ivory);
  margin-bottom: 4rem;
  letter-spacing: 0.01em;
}
.tier-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}
.tier-card {
  position: relative;
  padding: 3.4rem 2rem 2.4rem;
  background: linear-gradient(180deg, rgba(38,28,18,0.55), rgba(18,14,10,0.55));
  border: 1px solid rgba(201,164,92,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    box-shadow 0.55s cubic-bezier(0.16,1,0.3,1),
    border-color 0.55s ease,
    transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.tier-card:hover {
  border-color: rgba(224,189,118,0.85);
  box-shadow:
    0 0 32px rgba(201,164,92,0.22),
    0 0 80px rgba(201,164,92,0.10),
    inset 0 0 30px rgba(224,189,118,0.06);
  transform: translateY(-3px);
}

.tier-card--recommended {
  border-color: rgba(224,189,118,0.72);
  background: linear-gradient(180deg, rgba(70,48,22,0.55), rgba(30,22,14,0.55));
  box-shadow: 0 0 26px rgba(201,164,92,0.18);
}
.tier-card--recommended:hover {
  box-shadow:
    0 0 42px rgba(224,189,118,0.38),
    0 0 100px rgba(201,164,92,0.18),
    inset 0 0 36px rgba(224,189,118,0.10);
}

.recommended-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  white-space: nowrap;
}

.tier-cycle {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 1.6rem;
}
.tier-duration {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 1.3rem;
}
.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 1rem;
}
.tier-sub {
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 2.6rem;
}
.tier-cta {
  display: block;
  width: 100%;
  padding: 1.05rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all 0.4s ease;
  margin-top: auto;
}
.tier-cta:hover {
  background: rgba(201,164,92,0.12);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}
.tier-card--recommended .tier-cta {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}
.tier-card--recommended .tier-cta:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg-deep);
}

/* single shared checkout button below the pricing cards */
.investment-cta {
  display: inline-block;
  margin: 3rem auto 0;
  min-width: 300px;
  padding: 1.3rem 2.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  background: var(--gold);
  color: var(--bg-deep);
  border: 1px solid var(--gold);
  transition: all 0.4s ease;
}
.investment-cta:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg-deep);
}

/* payment-plan note beneath the pricing button (gentle highlight) */
.price-plan-note {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  text-align: center;
}
/* small VAT note beneath the pricing button (fine print) */
.price-vat-note {
  margin-top: 0.45rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: center;
}

/* ============================================
   THRIVECART CHECKOUT POPUP
   ============================================ */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  /* hidden but still laid out, so the checkout can pre-render in the
     background on intent and be ready instantly when opened */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.checkout-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
.checkout-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,7,4,0.82);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.checkout-modal__dialog {
  position: relative;
  width: 92%;
  max-width: 760px;
  margin: 6vh auto;
  max-height: 86vh;
  overflow-y: auto;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  box-shadow: 0 24px 90px rgba(0,0,0,0.65);
  padding: 3rem 1.4rem 1.6rem;
}
.checkout-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: var(--ivory-dim);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}
.checkout-modal__close:hover { color: var(--gold-bright); }
/* loading state - sits behind whatever ThriveCart paints into the mount,
   so it shows only while the embed is still booting */
.checkout-modal__body {
  position: relative;
  z-index: 0;
  min-height: 320px;
}
.checkout-loading {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  pointer-events: none;
}
.checkout-loading__spinner {
  width: 36px; height: 36px;
  border: 1.5px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: checkoutSpin 1s linear infinite;
}
.checkout-loading__text {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
@keyframes checkoutSpin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .tier-cards { grid-template-columns: 1fr; gap: 2.2rem; }
  .tier-card { padding: 3rem 1.6rem 2rem; }
}

/* ============================================
   SHARED CHAMBER SECTIONS (Audience / Lucia /
   Testimonials / FAQ)
   ============================================ */

.chamber-section {
  padding: 9vh 6vw;
  position: relative;
}
.chamber-section + .chamber-section {
  padding-top: 4vh;
}
.chamber-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.4rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ivory);
  text-align: center;
  margin-bottom: 3.6rem;
  line-height: 1.15;
}

/* ---- Who Is It For ---- */
.audience-bridge {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: var(--sand);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.8rem;
  line-height: 1.6;
}
.audience-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--sand);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.6rem;
  line-height: 1.5;
}
.audience-list {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
}
.audience-list li {
  font-size: 1.04rem;
  color: var(--ivory);
  padding: 1.1rem 0 1.1rem 1.9rem;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid var(--line-soft);
}
.audience-list li:last-child { border-bottom: none; }
.audience-list li::before {
  content: "";
  position: absolute; left: 0; top: 1.7rem;
  width: 7px; height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ---- Body + side portrait layout (per-chamber) ---- */
.body-with-portrait {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4vh 6vw 12vh;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.body-with-portrait .chamber-body {
  max-width: none;
  padding: 0;
  margin: 0;
}
.portrait-side {
  position: sticky;
  top: 14vh;
}
.portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, rgba(45,32,20,0.45), rgba(18,14,10,0.6));
  border: 1px solid var(--line);
  overflow: hidden;
}
.portrait-frame::before {
  content: "portrait placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  z-index: 0;
  text-align: center;
  padding: 1rem;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
/* gentle vignette so the image settles into the dark page */
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(18,14,10,0.35) 100%);
  mix-blend-mode: multiply;
}

@media (max-width: 820px) {
  .body-with-portrait {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .portrait-side {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.testimonial {
  padding: 2.6rem 2.2rem 2.2rem;
  background: linear-gradient(180deg, rgba(38,28,18,0.4), rgba(18,14,10,0.4));
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: "\201C"; /* opening curly quote */
  position: absolute;
  top: -1.2rem; left: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.55;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ivory);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}
.testimonial-attr {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ (native <details>) ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:first-child {
  border-top: 1px solid var(--line-soft);
}
.faq-item summary {
  padding: 1.6rem 2.6rem 1.6rem 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ivory);
  position: relative;
  list-style: none;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary { color: var(--gold-bright); }
.faq-item[open] summary::after { content: "−"; color: var(--gold-bright); }
.faq-answer {
  padding: 0 2.6rem 1.8rem 0;
  font-size: 1rem;
  color: var(--ivory-dim);
  line-height: 1.85;
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 4vw;
  background: linear-gradient(180deg,
    rgba(18,14,10,0.92) 0%,
    rgba(18,14,10,0.72) 65%,
    rgba(18,14,10,0) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.brand:hover { color: var(--gold-bright); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.8vw, 2.6rem);
}

.nav-link {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.4s ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover { color: var(--ivory); }
.nav-link.is-active { color: var(--gold); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--gold);
}

.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after {
  content: " ›";
  display: inline-block;
  margin-left: 0.35em;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  opacity: 0.6;
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(270deg);
}

.nav-dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: rgba(18,14,10,0.97);
  border: 1px solid var(--line);
  padding: 0.4rem 0;
  margin-top: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-list,
.nav-dropdown:focus-within .nav-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-list .nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.8rem 1.4rem;
  letter-spacing: 0.22em;
}
.nav-dropdown-list .nav-link::after { display: none; }
.nav-dropdown-list .nav-link.is-active { color: var(--gold); }
.nav-dropdown-list .nav-link:hover {
  background: rgba(201,164,92,0.06);
  color: var(--ivory);
}

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 0.85rem 1.4rem;
  transition: all 0.4s ease;
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

/* mobile: collapse text nav, keep brand + CTA */
@media (max-width: 760px) {
  .nav-link:not(.nav-dropdown-toggle):not(.nav-dropdown-list .nav-link) { display: none; }
  .nav-dropdown { display: none; }
  .nav { gap: 1rem; }
  .nav-cta { padding: 0.7rem 1.1rem; font-size: 0.66rem; letter-spacing: 0.22em; }
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
  position: relative;
  z-index: 5;
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  padding: 2.4rem 4vw;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.footer-meta {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.footer-links {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-decoration: none;
  transition: color 0.4s ease;
}
.footer-links a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .corner-label { font-size: 17px; }
  .corner-tier { font-size: 7px; }
}

/* ============================================
   ORACLE BUSINESS - extended section styles
   ============================================ */

/* General paragraph styling for new narrative sections */
.chamber-section-inner > p {
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
  color: var(--ivory-dim);
  line-height: 1.95;
  margin-bottom: 1.8rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- The Pull ---- */
.pull-section {
  text-align: center;
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.pull-section .chamber-section-inner > p {
  color: var(--ivory);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
}
.pull-section .chamber-section-inner > p em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.18em;
  color: var(--gold-bright);
  display: block;
  margin-top: 0.4rem;
}

/* ---- Includes standalone section ---- */
.includes-section {
  padding-top: 8vh;
  padding-bottom: 8vh;
}
.includes-section .chamber-section-inner {
  max-width: 760px;
}
.includes-section .includes {
  border-color: var(--line);
  padding: 4rem 0;
}
.includes-section .includes-label {
  font-size: 0.82rem;
  letter-spacing: 0.38em;
}

/* ---- What Becomes Possible ---- */
.possible-section {
  padding-top: 8vh;
  padding-bottom: 8vh;
}
.possible-section .section-eyebrow {
  margin-bottom: 1.8rem;
}

/* ---- This Is Not For Everyone ---- */
.not-for-section {
  text-align: center;
  padding-top: 10vh;
  padding-bottom: 10vh;
  border-top: 1px solid var(--line-soft);
}
.not-for-section .section-title {
  margin-bottom: 2.8rem;
}
.not-for-section .chamber-section-inner > p {
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
  color: var(--ivory);
  max-width: 680px;
}
.not-for-section .chamber-section-inner > p + p {
  color: var(--sand);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.12rem, 1.9vw, 1.32rem);
}

/* ---- The Invitation ---- */
.invitation-section {
  text-align: center;
  padding-top: 14vh;
  padding-bottom: 16vh;
  border-top: 1px solid var(--line-soft);
}
.invitation-section .section-eyebrow {
  margin-bottom: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
}
.invitation-section .section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 3rem;
}
.invitation-section .chamber-section-inner > p {
  font-size: clamp(1.06rem, 1.7vw, 1.2rem);
  color: var(--ivory);
  max-width: 600px;
}
.invitation-section .tier-cta {
  display: inline-block;
  width: auto;
  min-width: 300px;
  margin: 3.2rem auto 0;
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  padding: 1.3rem 2.8rem;
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}
.invitation-section .tier-cta:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg-deep);
}

/* Closing line beneath the CTA */
.ch-closing {
  margin-top: 3.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
  color: var(--gold-dim);
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* Eyebrow spacing - more breathing room across all sections */
.section-eyebrow {
  margin-bottom: 1.8rem;
}
.section-title {
  margin-bottom: 4rem;
}

/* ---- Oracle Business - Inside the Chamber premium box ---- */
.ch-business .includes {
  border: 1px solid rgba(201,164,92,0.65);
  padding: 4rem 3.5rem;
  background: linear-gradient(160deg, rgba(50,35,18,0.48) 0%, rgba(18,14,10,0.58) 100%);
  box-shadow:
    0 0 60px rgba(201,164,92,0.10),
    0 0 120px rgba(201,164,92,0.04),
    inset 0 0 40px rgba(201,164,92,0.05);
  margin: 0;
}
.ch-business .includes-label {
  font-size: 0.82rem;
  letter-spacing: 0.44em;
  margin-bottom: 2.4rem;
  color: var(--gold-bright);
  text-align: center;
}
.ch-business .includes li {
  font-size: 1.08rem;
  padding: 0.9rem 0 0.9rem 2.4rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ivory);
  line-height: 1.65;
}
.ch-business .includes li:last-child {
  border-bottom: none;
}
.ch-business .includes li::before {
  top: 1.45rem;
  width: 8px; height: 8px;
  border-color: var(--gold-bright);
}

/* ---- Oracle Business portrait - darker overlay, keeps vibrancy ---- */
.ch-business .portrait-frame::after {
  background: linear-gradient(
    180deg,
    rgba(18,14,10,0.18) 0%,
    rgba(18,14,10,0.48) 100%
  );
  mix-blend-mode: normal;
}

/* ---- Audience section - tighter gap between title and intro ---- */
.ch-business .audience-section .section-title {
  margin-bottom: 1.8rem;
}


/* ---- Invitation pulse line - bold and large ---- */
.invitation-section .invitation-pulse {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem) !important;
  color: var(--ivory) !important;
  line-height: 1.25;
  max-width: 580px;
  margin: 1.4rem auto 0;
  letter-spacing: 0.01em;
  text-shadow: 0 0 40px rgba(236,226,207,0.12);
  margin-bottom: 0.6rem;
}
.invitation-body {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.06rem, 1.7vw, 1.2rem) !important;
  color: var(--ivory) !important;
  line-height: 1.85;
  max-width: 560px;
  margin: 0.4rem auto 1.4rem !important;
}
.invitation-section .invitation-pulse + p + .invitation-pulse {
  margin-bottom: 4rem;
}
.invitation-pulse--plain {
  font-style: normal;
}

/* ============================================
   ORACLE BUSINESS - background sigil + section breathing rhythm
   ============================================ */

/* Stacking context: keeps all page content above the fixed sigil */
.ch-business,
.ch-oracle,
.ch-mission {
  z-index: 1;
}

/* "You may feel" whisper list */
.pull-feels {
  list-style: none;
  max-width: 540px;
  margin: 0.2rem auto 2.8rem;
  text-align: center;
  padding: 0;
}
/* Initial hidden state - items wait invisibly until their turn */
.pull-feels li {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  color: var(--ivory);
  padding: 0.5rem 0;
  line-height: 1.85;
  border-bottom: none;
  opacity: 0;
  transition: opacity 0.9s ease;
  cursor: default;
}
.pull-feels li::before {
  content: "– ";
  color: var(--gold-dim);
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
}

/* Revealed - fully present, completely legible */
.pull-feels li.pull-feel-visible {
  opacity: 1;
  transition: opacity 0.9s ease, text-shadow 0.4s ease;
}

/* Hovered - soft golden glow of recognition */
.pull-feels li.pull-feel-visible:hover,
.pull-feels li.pull-feel-visible:focus-visible {
  text-shadow: 0 0 28px rgba(201, 164, 92, 0.28);
}

/* Reduced motion - all items visible immediately, no animation */
@media (prefers-reduced-motion: reduce) {
  .pull-feels li {
    opacity: 0;
    transition: none;
  }
  .pull-feels li.pull-feel-visible {
    opacity: 1;
    transition: none;
  }
}

/* Three-question climax block */
.pull-questions {
  margin-top: 8vh;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
.pull-question-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.pull-question-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--ivory);
  line-height: 1.28;
  max-width: 640px;
  margin: 0 auto;
}

/* Tighter paragraph spacing for Oracle Business's short, punchy copy */
.ch-business .chamber-body > p        { margin-bottom: 1rem; }
.ch-business .chamber-section-inner > p { margin-bottom: 1rem; }

/* Fixed background triangle sigil */
.biz-sigil-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(880px, 92vw);
  aspect-ratio: 560 / 515;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: transform;
}
.biz-sigil-bg.biz-visible {
  opacity: 1;
}
.biz-sigil-bg svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Triangle lines - faint, static */
.biz-tri-edge  { opacity: 0.11; }
.biz-tri-inner { opacity: 0.09; }

/* Respect reduced-motion: freeze the sigil at center */
@media (prefers-reduced-motion: reduce) {
  .biz-sigil-bg {
    transform: translate(-50%, -50%) !important;
  }
}

/* -- Section breathing rhythm (subtle radial gradients) --
   warm amber ↔ neutral deep ↔ cool violet/indigo cycling as you scroll
---------------------------------------------------------------- */

/* Opening body + portrait: gentle warm amber breath */
.ch-business .body-with-portrait {
  background: radial-gradient(ellipse 100% 70% at 50% 30%,
    rgba(42, 25, 8, 0.38) 0%, transparent 72%);
}

/* The Pull: cool indigo - inward, introspective */
.ch-business .pull-section {
  background: radial-gradient(ellipse 90% 80% at 50% 50%,
    rgba(28, 16, 44, 0.42) 0%, transparent 70%);
}

/* Who Is It For: warm amber - expansive, welcoming */
.ch-business .audience-section {
  background: radial-gradient(ellipse 90% 75% at 50% 40%,
    rgba(46, 28, 10, 0.4) 0%, transparent 70%);
}

/* Inside the Chamber: neutral deep - the sacred container */
.ch-business .includes-section {
  background: radial-gradient(ellipse 85% 70% at 50% 50%,
    rgba(16, 11, 7, 0.48) 0%, transparent 75%);
}

/* What Becomes Possible: violet - vision, elevation */
.ch-business .possible-section {
  background: radial-gradient(ellipse 90% 80% at 50% 50%,
    rgba(26, 15, 42, 0.44) 0%, transparent 70%);
}

/* Testimonials: warm amber - human warmth */
.ch-business .testimonials-section {
  background: radial-gradient(ellipse 85% 70% at 50% 45%,
    rgba(44, 27, 10, 0.4) 0%, transparent 70%);
}

/* This Is Not For Everyone: deepest neutral - the gate */
.ch-business .not-for-section {
  background: radial-gradient(ellipse 85% 70% at 50% 50%,
    rgba(13, 9, 5, 0.52) 0%, transparent 75%);
}

/* Investment: warm golden ambient */
.ch-business .investment {
  background: radial-gradient(ellipse 80% 65% at 50% 40%,
    rgba(48, 30, 8, 0.38) 0%, transparent 70%);
}

/* The Invitation: warmest, most golden - the threshold */
.ch-business .invitation-section {
  background: radial-gradient(ellipse 90% 80% at 50% 35%,
    rgba(55, 32, 8, 0.48) 0%, transparent 68%);
}

/* FAQ: cool violet - contemplative, closing */
.ch-business .faq-section {
  background: radial-gradient(ellipse 85% 70% at 50% 45%,
    rgba(22, 14, 34, 0.38) 0%, transparent 75%);
}

/* ============================================================
   ORACLE MISSION - added sections
   ============================================================ */

/* Hero - catalyst line beneath ch-for */
.ch-mission .ch-catalyst {
  margin-top: 1.4rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  color: var(--sand);
}

/* Declaration - quote break between text blocks */
.declaration-section {
  text-align: center;
  padding-top: 8vh;
  padding-bottom: 8vh;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-warm);
  position: relative;
  z-index: 1;
}
.declaration-section .chamber-section-inner > .declaration-line {
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  font-style: italic;
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 auto;
  max-width: 720px;
  letter-spacing: 0.01em;
}
.declaration-section .chamber-section-inner > .declaration-line::before {
  content: "\201C";
  color: var(--gold);
}
.declaration-section .chamber-section-inner > .declaration-line::after {
  content: "\201D";
  color: var(--gold);
}
.declaration-gold {
  color: var(--gold);
}

/* The Recognition */
.recognition-section {
  text-align: center;
  padding-top: 6vh;
  padding-bottom: 8vh;
}
/* Connective lines - calm serif base, one font for the whole litany */
.recognition-section .chamber-section-inner > p {
  max-width: 620px;
  margin: 1rem auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  color: var(--ivory-dim);
  line-height: 1.6;
}
/* Structural beats - the two larger turning-point lines */
.recognition-section .chamber-section-inner > .recog-large {
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  color: var(--ivory);
  font-style: normal;
  line-height: 1.3;
  margin-top: 2.6rem;
}
/* Gold emphasis - italic serif, ONE consistent size for every gold line */
.recognition-section .recog-gold {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.recognition-section .chamber-section-inner > .recog-gold,
.recognition-section .recog-stack .recog-gold,
.recognition-section .chamber-section-inner > .recog-gold--large,
.recognition-section .chamber-section-inner > .recog-quote {
  color: var(--gold);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.45;
}
.recognition-section .recog-stack {
  margin: 1.6rem auto;
}
.recognition-section .recog-stack .recog-gold {
  margin: 0.35rem auto;
}
.recognition-section .chamber-section-inner > .recog-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  max-width: 720px;
  margin: 2.4rem auto;
}

/* The Medicine */
.medicine-section {
  text-align: center;
  padding-top: 8vh;
  padding-bottom: 8vh;
}
.medicine-section .chamber-section-inner > .medicine-lead {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--ivory);
  max-width: 760px;
  margin: 0 auto 4rem;
}
.medicine-contrasts {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 640px;
  margin: 0 auto 3.4rem;
}
.medicine-pair {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.medicine-not {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  flex: 1;
  text-align: right;
  min-width: 200px;
}
.medicine-yes {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--gold);
  flex: 1;
  text-align: left;
  min-width: 200px;
}
.medicine-section .chamber-section-inner > .medicine-flow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  color: var(--sand);
  max-width: 700px;
  margin: 0 auto 3.4rem;
  line-height: 1.55;
}
.medicine-section .chamber-section-inner > .medicine-becomes {
  font-size: clamp(1.06rem, 1.7vw, 1.22rem);
  color: var(--ivory);
  max-width: 660px;
  margin: 0.9rem auto;
  line-height: 1.6;
}
.medicine-becomes em {
  color: var(--gold);
}
.medicine-outcomes {
  list-style: none;
  padding: 0;
  max-width: 620px;
  margin: 3.6rem auto 0;
}
.medicine-outcomes li {
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
  color: var(--ivory);
  padding: 0.55rem 0;
  line-height: 1.6;
}
.medicine-outcomes .medicine-seal {
  margin-top: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--gold);
  line-height: 1.4;
}

/* What Happens Here */
.happens-section {
  padding-top: 7vh;
  padding-bottom: 7vh;
}
.happens-section .section-eyebrow {
  text-align: center;
}
.happens-list {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
}
.happens-list li {
  display: flex;
  align-items: baseline;
  gap: 1.8rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.happens-list li:last-child {
  border-bottom: none;
}
.happens-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.6rem;
}
.happens-text {
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
  color: var(--ivory);
  line-height: 1.6;
}

/* Includes - intro line above the structure list */
.ch-mission .includes-intro {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
  color: var(--sand);
  margin-bottom: 2.4rem;
}

/* The Invitation - mission */
.invitation-section .chamber-section-inner > .invitation-lead {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.22;
  color: var(--ivory);
  max-width: none;
  margin: 0;
}
.invitation-section .chamber-section-inner > .invitation-lead--gold {
  color: var(--gold);
  margin-top: 0.4rem;
  margin-bottom: 2.6rem;
}
.ch-mission .invitation-section .chamber-section-inner > .ch-closing {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.12rem, 1.9vw, 1.34rem);
  color: var(--gold-dim);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.ch-mission .invitation-section .chamber-section-inner > .invitation-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: var(--ivory-dim);
  margin-top: 1.8rem;
}

/* ---- Atmospheric photo break (Oracle Mission) ---- */
.photo-break {
  position: relative;
  width: 100%;
  height: clamp(380px, 60vh, 680px);
  overflow: hidden;
  line-height: 0;
}
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 10, 0.18);
  pointer-events: none;
}

/* Emphasis stack within portrait body (Oracle Mission) */
.chamber-body > p.body-emphasis {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1.6;
  /* top offsets the preceding paragraph's 1.6rem margin so the gap above
     and below match at ~0.8rem */
  margin-top: -0.8rem;
  margin-bottom: 0.8rem;
}


/* Oracle Mission - portrait on the right, text on the left */
.ch-mission .body-with-portrait { grid-template-columns: 1fr 0.9fr; }
.ch-mission .chamber-body  { order: 1; }
.ch-mission .portrait-side { order: 2; }

/* Oracle Mission - darker tint over the portrait to match the page */
.ch-mission .portrait-frame::after {
  background:
    linear-gradient(rgba(18,14,10,0.32), rgba(18,14,10,0.32)),
    radial-gradient(ellipse at center, transparent 52%, rgba(18,14,10,0.4) 100%);
}

/* ============ WHAT THE ORACLE IS ============ */
.oracle-def {
  position: relative;
  padding: 16vh 6vw;
  text-align: center;
  background: var(--bg-deep);
}
/* thin gold line bridging from the triangle above */
.oracle-def::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  width: 1px; height: 72px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  opacity: 0.45;
}
.oracle-def-inner { max-width: 680px; margin: 0 auto; }

.od-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.od-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 1.6rem;
}
.od-lead {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--ivory-dim);
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
.od-body {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--ivory-dim);
  line-height: 1.85;
  margin: 1.4rem auto;
  max-width: 600px;
}
.od-gold {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--gold-bright);
  line-height: 1.42;
  margin-bottom: 0.5rem;
}
.od-lead + .od-gold,
.od-body + .od-gold { margin-top: 1.8rem; }
.od-gold + .od-body { margin-top: 2.2rem; }
.od-emph {
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold-bright);
  line-height: 1.3;
  margin: 0.6rem 0 2.2rem;
}
.od-close {
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--ivory);
  line-height: 1.35;
  max-width: 620px;
  margin: 1.6rem auto 0;
}

/* ---- Locked chamber notice (Oracle Time closed for now) ---- */
.locked-toast {
  position: fixed;
  left: 50%;
  bottom: 6vh;
  transform: translate(-50%, 1rem);
  z-index: 200;
  max-width: min(90vw, 460px);
  text-align: center;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.5;
  padding: 1.1rem 2rem;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.locked-toast::before {
  content: "✦";
  display: block;
  color: var(--gold);
  font-style: normal;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.3em;
}
.locked-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---- Testimonials - lightbox cards (photo + longer quote + name + title) ---- */
/* widen the section so 2–3 cards sit side by side */
.testimonials-section .chamber-section-inner { max-width: 1160px; }

.testimonials-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}
/* three per row; an incomplete last row centres instead of leaving an orphan */
.testimonial-card {
  flex: 0 1 calc((100% - 4rem) / 3);
}
@media (max-width: 980px) {
  .testimonial-card { flex-basis: calc((100% - 2rem) / 2); }
}
@media (max-width: 640px) {
  .testimonial-card { flex-basis: 100%; }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 3rem 2.2rem 2.4rem;
  background: linear-gradient(180deg, rgba(40,29,17,0.42), rgba(18,14,10,0.46));
  border: 1px solid var(--line);
  box-shadow: inset 0 0 50px rgba(201,164,92,0.04);
}
.testimonial-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gold);
  background: linear-gradient(150deg, rgba(50,35,18,0.55), rgba(18,14,10,0.7));
  flex-shrink: 0;
}
/* placeholder mark, shown until a photo is dropped in */
.testimonial-photo::before {
  content: "✦";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  font-size: 1.4rem;
  z-index: 0;
}
.testimonial-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  color: var(--ivory);
  line-height: 1.65;
  margin: 0 0 1.8rem;
}
.testimonial-person {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: auto;
}
.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold);
}
.testimonial-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ---- Anonymous pull-quotes between testimonial cards ---- */
.testimonial-pull {
  flex: 0 0 100%;
  max-width: 720px;
  margin: 2rem auto 3rem;
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(201,164,92,0.3);
  border-bottom: 1px solid rgba(201,164,92,0.3);
}
.pull-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--ivory);
  line-height: 1.65;
  margin: 0 0 1.2rem 0;
  display: block;
}
.pull-quote-attr {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

/* ---- Pull-quotes (no photo) - rows of three, matching the cards above ---- */
.testimonials-pull-mosaic {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 2rem auto 0;
}
/* three per row; an incomplete last row centres instead of leaving an orphan */
.testimonials-pull-mosaic .testimonial-pull {
  flex: 0 1 calc((100% - 4rem) / 3);
  max-width: none;
  margin: 0;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(201,164,92,0.3);
  background: linear-gradient(180deg, rgba(40,29,17,0.34), rgba(18,14,10,0.4));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 980px) {
  .testimonials-pull-mosaic .testimonial-pull { flex-basis: calc((100% - 2rem) / 2); }
}
@media (max-width: 640px) {
  .testimonials-pull-mosaic .testimonial-pull { flex-basis: 100%; }
}
.testimonials-pull-mosaic .pull-quote-text {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  margin-bottom: 1rem;
}

/* ---- Scroll reveal (testimonials cards + pull-quotes) ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
