/* ============================================================
   Thibault Postel — RESET site
   Palette, typography and layout per spec
   ============================================================ */

:root {
  --bg: #F3EEE4;
  --bg-alt: #EAE3D5;
  --text: #1C1B18;
  --text-secondary: #6E6357;
  --gold: #B08D57;
  --gold-light: #D2AB74;
  --brown-deep: #4A3B2C;
  --border: #E1D6C5;
  --cream: #F3EEE4;
  --white: #FFFFFF;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.18s ease;
  --transition-med: 0.3s ease;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }
.center-text { text-align: center; }

/* ---------- section rhythm ---------- */
.section {
  padding: 42px 0 102px;
}
.bg-light { background: var(--bg); }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--brown-deep); color: var(--cream); }

.section-title {
  color: var(--gold);
  font-size: clamp(30.8px, 4vw, 46.2px);
  text-align: center;
  margin-bottom: 30px;
}
.section-title-onlight { color: var(--gold-light); }

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 19.6px;
  max-width: 560px;
  margin: 0 auto 40px;
}
.section-subtitle-onlight {
  text-align: center;
  color: var(--border);
  font-size: 19.6px;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0.85;
}

.eyebrow-title {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 14.3px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 28px;
}
.eyebrow-title.centered { margin-bottom: 6px; }
.hero-eyebrow { margin-bottom: 14px; }

.micro-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 32px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 17.3px;
  border: 1.5px solid transparent;
  transition: background var(--transition-med), color var(--transition-med), border-color var(--transition-med);
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.btn-gold {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #FFFFFF;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: #FFFFFF;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 238, 228, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}
.nav-logo-icon {
  width: 108px;
  height: auto;
  aspect-ratio: 579 / 622;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--text);
}
.nav-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--text-secondary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 17.3px;
  color: var(--text);
  transition: color var(--transition-fast);
}
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-cta { padding: 10px 22px; font-size: 16.2px; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 4px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:not(.btn) {
  padding: 14px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.nav-mobile a:not(.btn):hover { color: var(--gold); }
.nav-cta-mobile { margin-top: 16px; }
.site-nav.mobile-open .nav-mobile { display: flex; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-inner { padding: 10px 20px; }
  .nav-logo { gap: 10px; }
  .nav-logo-icon { width: 56px; }
  .nav-logo-title { font-size: 19px; }
  .nav-logo-sub { font-size: 14px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  background: #171310;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(178,141,87,0.2), transparent 55%),
    linear-gradient(160deg, #2c2620 0%, #1c1b18 55%, #33291c 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) contrast(0.92);
  display: none;
}
.hero-video-desktop { display: block; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow { text-align: center; margin-bottom: 18px; font-size: 15.7px; }
.hero-problem {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.25;
  color: var(--cream);
  margin: 0 0 20px;
  text-align: center;
}
.hero-divider {
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 22px;
}
.hero-title {
  font-size: clamp(37.4px, 6vw, 70.4px);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 26px;
  text-align: center;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(18.5px, 2.2vw, 23.1px);
  color: var(--cream);
  max-width: 540px;
  margin: 0 auto 32px;
  font-weight: 500;
  text-align: center;
}
.accent-light { color: var(--gold-light); }
.hero-cta { padding: 16px 34px; }

@media (max-width: 900px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
}

/* ============================================================
   SOUND FAMILIAR / PROBLEM CARDS + REAL PRESENCE CARDS
   ============================================================ */
.card-grid {
  display: grid;
  gap: 24px;
}
.connector-line {
  text-align: center;
  margin-top: 36px;
  font-family: var(--font-serif);
  font-size: 24.3px;
  color: var(--text);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.connector-lead {
  display: inline-block;
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-size: 16.3px;
  color: var(--text-secondary);
}

/* ---------- "Sound familiar?" phone mockup ---------- */
#sound-familiar .section-subtitle { font-size: 20.6px; }

.phone-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.phone-shell {
  width: 315px;
  background: #1C1B18;
  border-radius: 44px;
  padding: 12.6px;
  box-shadow: 0 30px 60px rgba(28,27,24,0.28), 0 4px 14px rgba(28,27,24,0.18);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 12.6px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 23px;
  background: #1C1B18;
  border-radius: 14.7px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  background: var(--bg);
  border-radius: 34px;
  overflow: hidden;
  padding: 40px 17px 21px;
  min-height: 441px;
  display: flex;
  flex-direction: column;
}
.phone-statusbar {
  display: flex;
  justify-content: center;
  font-size: 12.6px;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 12.6px;
}
.thread {
  display: flex;
  flex-direction: column;
  gap: 7.4px;
}
.msg-row { display: flex; justify-content: flex-end; }
.bubble-me {
  background: var(--gold);
  color: #fff;
  padding: 9.5px 14.7px;
  border-radius: 17px 17px 4px 17px;
  font-size: 14.7px;
  line-height: 1.4;
  max-width: 80%;
}
.msg-short { display: none; }
.msg-time {
  text-align: center;
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.7;
  margin: 2px 0 4px;
}
.answer-row {
  display: flex;
  align-items: flex-start;
  gap: 7.4px;
  margin-top: 17px;
}
.answer-dot { font-size: 11.6px; margin-top: 8px; flex-shrink: 0; }
.bubble-answer {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12.6px 15.8px;
  border-radius: 4px 17px 17px 17px;
  font-family: var(--font-serif);
  font-size: 16.3px;
  line-height: 1.4;
  box-shadow: 0 10px 24px rgba(74,59,44,0.08);
}
.bubble-answer strong {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.sf-reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.45s ease, transform 0.45s ease; }
.sf-reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .phone-shell { width: 290px; }
  .phone-screen { min-height: 0; padding: 32px 14px 16px; }
  .msg-full { display: none; }
  .msg-short { display: inline; }
}

/* ---------- physical signs pool ---------- */
.signs-hint {
  text-align: center;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: -8px 0 22px;
}
.signs-count { color: var(--gold); font-weight: 700; }
.signs-pool {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.sign-pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: inherit;
  font-size: 16.2px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition-med), color var(--transition-med), border-color var(--transition-med), opacity 0.5s ease, transform 0.5s ease;
}
.sign-pill:hover { background: var(--brown-deep); color: var(--gold); }
.sign-pill.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.sign-pill.selected:hover { background: var(--brown-deep); color: var(--gold); }
.sign-pill.pill-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.sign-pill.pill-disabled:hover { background: var(--white); color: var(--text); }
.sign-pill.pill-reveal { opacity: 0; transform: translateY(8px) scale(0.94); }
.sign-pill.pill-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- what presence looks like ---------- */
.presence-examples-grid {
  grid-template-columns: repeat(2, 1fr);
}
.presence-example {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px;
}
.presence-example h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 17px;
  color: var(--gold);
  margin: 0 0 8px;
}
.presence-example p {
  margin: 0;
  color: var(--text);
}

/* ============================================================
   THREE LEVERS / METHOD
   ============================================================ */
.levers-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.lever-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}
.lever-featured {
  background: var(--brown-deep);
  color: var(--cream);
  border-color: var(--brown-deep);
}
.lever-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.lever-icon { color: var(--gold); flex-shrink: 0; }
.lever-label {
  font-weight: 700;
  font-size: 14.3px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.lever-card h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
}
.lever-featured h3 { color: var(--cream); }
.lever-card p {
  font-size: 17.3px;
  color: var(--text);
  margin: 0;
}
.lever-featured p { color: var(--cream); opacity: 0.92; }

/* ============================================================
   TOOLS MENTION
   ============================================================ */
#tools-mention .eyebrow-title { font-size: 17.3px; }
.tools-mention-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38.5px;
  max-width: 968px;
  margin: 0 auto;
}
.tool-mention-item { text-align: center; }
.tool-mention-item h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22.7px;
  margin: 16px 0 14px;
}
.tool-mention-item p {
  font-size: 20.4px;
  color: var(--text-secondary);
}
.photo-placeholder-box {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: linear-gradient(135deg, #dfd6c4, #cdbfa2);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px;
}
.photo-placeholder-box .photo-tag {
  position: static;
  color: rgba(28,27,24,0.45);
}
.photo-placeholder-box.has-photo .photo-tag { display: none; }
.photo-placeholder-box.has-photo {
  background-color: transparent;
  background-image: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-color: transparent;
}
/* ---------- portrait ---------- */
.portrait-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #dfd6c4, #cdbfa2);
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .portrait-circle { width: 260px; height: 260px; }
}
.portrait-fallback {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--brown-deep);
}
.portrait-circle.has-photo .portrait-fallback { display: none; }

/* ============================================================
   EVERYTHING THAT SUPPORTS THE JOURNEY — floating still life
   ============================================================ */
.float-hint {
  text-align: center;
  color: var(--border);
  opacity: 0.75;
  font-size: 14.7px;
  font-style: italic;
  margin: -8px 0 24px;
}
.float-stage {
  position: relative;
  height: 680px;
  max-width: 900px;
  margin: 0 auto;
}
.float-object {
  position: absolute;
  width: 170px;
  height: 125px;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: #241f18;
  border: 1px solid rgba(178,141,87,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  overflow: hidden;
  transition: width var(--transition-med), height var(--transition-med), left var(--transition-med), top var(--transition-med), border-radius var(--transition-med);
  animation: drift 6s ease-in-out infinite;
  z-index: 1;
}
.float-object::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.78) 26%, rgba(0,0,0,0) 56%);
  opacity: 0;
  transition: opacity var(--transition-med);
}
.float-object .float-icon { width: 46px; height: 46px; transition: opacity var(--transition-med); }
.float-object .float-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-med), transform var(--transition-med);
}
.float-object .float-info .fi-name {
  font-weight: 700;
  color: var(--gold);
  font-size: 15.4px;
  display: block;
  margin-bottom: 2px;
}
.float-object .float-info .fi-desc {
  font-size: 13.9px;
  color: var(--cream);
  display: block;
  margin-bottom: 6px;
  line-height: 1.35;
}
.float-object .float-info .fi-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown-deep);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 999px;
}

.float-object.hovered {
  width: 285px;
  height: 235px;
  z-index: 5;
  background-size: cover;
  background-position: center;
}
.float-object.hovered::after { opacity: 1; }
.float-object.hovered.has-photo {
  background-image: var(--photo);
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: 50% 20%;
}
.float-object.hovered .float-icon { opacity: 0; }
.float-object.hovered .float-info {
  opacity: 1;
  transform: translateY(0);
}

.obj-round { border-radius: 50%; }
.float-object.obj-round.hovered { border-radius: 20px; }

.obj-heartmath  { background-color: #262019; left: 50%; top: 22%; animation-delay: 0s; }
.obj-heartmath.hovered  { background-image: linear-gradient(135deg,#352a1f,#1a1611); }
.obj-breathingbox { background-color: #262019; left: 18%; top: 50%; animation-delay: 1.2s; }
.obj-breathingbox.hovered { background-image: linear-gradient(135deg,#352a1f,#1a1611); }
.obj-movement { background-color: #262019; left: 50%; top: 78%; animation-delay: 2s; }
.obj-movement.hovered { background-image: linear-gradient(135deg,#352a1f,#1a1611); }
.obj-contrast { background-color: #262019; left: 50%; top: 50%; width: 145px; height: 145px; animation-delay: 0.6s; }
.obj-contrast.hovered { width: 260px; height: 235px; background-image: linear-gradient(135deg,#352a1f,#1a1611); }
.obj-rape { background-color: #262019; left: 82%; top: 50%; animation-delay: 1.8s; }
.obj-rape.hovered { background-image: linear-gradient(135deg,#352a1f,#1a1611); }

@keyframes drift {
  0%, 100% { margin-top: 0px; }
  50% { margin-top: -10px; }
}
.float-object.hovered { animation-play-state: paused; }

.float-mobile-label { display: none; }

@media (max-width: 900px) {
  .float-hint { opacity: 0.75; }
  .float-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    max-width: 480px;
  }
  .float-object {
    position: static;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    animation: none;
    padding: 18px 20px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    border-radius: 12px;
  }
  .float-object .float-info { display: none; }
  .float-object::after { display: none; }
  .float-object .float-icon { flex-shrink: 0; opacity: 1 !important; }
  .float-mobile-label { display: block; font-family: var(--font-sans); font-weight: 700; font-size: 15.5px; color: var(--gold); }
}

/* ---------- mobile tap lightbox for floating objects ---------- */
.float-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15,12,8,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.float-lightbox.visible { opacity: 1; pointer-events: auto; }
.float-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.float-lightbox-card {
  width: 100%;
  max-width: 380px;
  max-height: 100%;
  aspect-ratio: 3/4;
  border-radius: 22px;
  background-color: var(--brown-deep);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 30%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.float-lightbox.visible .float-lightbox-card { transform: scale(1); }
.float-lightbox-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 42%, rgba(0,0,0,0.05) 70%);
}
.float-lightbox-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  z-index: 2;
}
.float-lightbox-body .fi-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 25px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.float-lightbox-body .fi-desc {
  display: block;
  font-size: 15.5px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 14px;
}
.float-lightbox-body .fi-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   JOURNEY — From Survival to Presence
   ============================================================ */
.journey-section { padding: 0; }
.journey-scroll-container { height: 400vh; position: relative; }
.journey-sticky {
  position: sticky;
  top: var(--nav-height, 73px);
  height: calc(100vh - var(--nav-height, 73px));
  height: calc(100dvh - var(--nav-height, 73px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.journey-illustration {
  flex-shrink: 0;
  width: 300px;
}
.body-svg { width: 100%; height: auto; }

.body-outline path,
.body-outline circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  opacity: 0.28;
  transition: opacity 0.6s ease, stroke-width 0.6s ease;
}
.body-outline.active path,
.body-outline.active circle {
  opacity: 0.95;
  stroke-width: 1.8;
  filter: url(#glow);
}

.beam { stroke: var(--gold); stroke-width: 1; opacity: 0.25; }
.beam-dot { fill: var(--gold); opacity: 0.35; }

.organ path { fill: none; stroke: var(--gold); stroke-width: 1.3; opacity: 0.3; transition: opacity 0.6s ease, stroke-width 0.6s ease; }
.organ.active path {
  opacity: 1;
  stroke-width: 1.8;
  filter: url(#glow);
}
.organ-gut path { fill: none; }
.trachea { opacity: 0.3; }
.organ-lungs.active .trachea { opacity: 1; }

/* 03 — heart lights up and pulses in coherence with the breath */
.organ-heart.active path {
  animation: heart-coherence 4.4s ease-in-out infinite;
}
@keyframes heart-coherence {
  0%, 100% { opacity: 0.85; stroke-width: 1.8; }
  50% { opacity: 1; stroke-width: 2.4; }
}

/* 04 — gut illuminates gradually rather than snapping in */
.organ-gut path { transition: opacity 1.6s ease, stroke-width 1.6s ease; }

/* vagus-nerve signal traveling brain-to-gut along the central beam */
.vagus-pulse {
  fill: var(--gold-light);
  opacity: 0;
}
.vagus-pulse.active {
  animation: vagus-travel 2.4s ease-in-out infinite;
}
@keyframes vagus-travel {
  0%   { cy: 60;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { cy: 300; opacity: 0; }
}

/* 05 — brief highlight flash as brain, heart, lungs, gut light up in sequence */
.organ.flash path {
  animation: organ-flash 0.45s ease-out;
}
@keyframes organ-flash {
  0%   { opacity: 1; stroke-width: 3.2; filter: url(#glow); }
  100% { opacity: 1; stroke-width: 1.8; }
}

.presence-ring {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1;
  opacity: 0;
}
.body-outline.presence circle.presence-ring {
  opacity: 0.5;
  animation: pulse-ring 3.2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { r: 150; opacity: 0.15; }
  50% { r: 165; opacity: 0.35; }
}
.body-outline.presence path,
.body-outline.presence circle:not(.presence-ring) {
  animation: pulse-body 3.2s ease-in-out infinite;
}
@keyframes pulse-body {
  0%, 100% { opacity: 0.95; }
  50% { opacity: 1; }
}

.journey-text {
  position: relative;
  max-width: 440px;
  min-height: 260px;
}
.journey-eyebrow { text-align: left; margin-bottom: 10px; }
.journey-heading {
  font-size: clamp(30.8px, 3.4vw, 44px);
  color: var(--cream);
  margin-bottom: 36px;
}
.journey-steps { position: relative; min-height: 130px; }
.journey-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.journey-step.active {
  opacity: 1;
  pointer-events: auto;
}
.journey-step .step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 16.5px;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.journey-step h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24.2px;
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1.3;
}
.step-terms {
  font-size: 16.2px;
  color: var(--gold-light);
  margin: 0;
}

@media (max-width: 900px) {
  .journey-scroll-container { height: 325vh; }
  .journey-sticky { flex-direction: column; gap: 14px; justify-content: flex-start; padding-top: 16px; }
  .journey-illustration { width: 200px; }
  .journey-text { text-align: center; }
  .journey-eyebrow, .journey-heading { text-align: center; }
  .journey-heading { margin-bottom: 20px; }
  .journey-steps { min-height: 160px; }
}

/* ============================================================
   OFFERS
   ============================================================ */
.offers-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.offer-card {
  position: relative;
  border-radius: 14px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.offer-white { background: var(--white); border: 1px solid var(--border); }
.offer-dark { background: var(--brown-deep); color: var(--cream); }
.offer-outline { background: var(--white); border: 2px solid var(--gold); }

.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 12.1px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
}
.offer-name {
  font-size: 26.4px;
  margin-bottom: 12px;
}
.offer-dark .offer-name { color: var(--cream); }
.offer-format {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.offer-dark .offer-format { color: var(--gold-light); }
.offer-price {
  font-family: var(--font-serif);
  font-size: 46.2px;
  margin-bottom: 14px;
}
.offer-start-badge {
  display: inline-block;
  align-self: center;
  background: rgba(176,141,87,0.14);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 15.4px;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.offer-dark .offer-start-badge { background: rgba(210,171,116,0.14); color: var(--gold-light); border-color: var(--gold-light); }
.offer-microline {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.offer-dark .offer-microline { color: var(--border); opacity: 0.8; }
.offer-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 4px 0 16px;
}
.offer-white .offer-divider,
.offer-outline .offer-divider {
  background: var(--border);
}
.offer-stats {
  margin-bottom: 16px;
}
.offer-stats p {
  font-size: 15.6px;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  margin: 0 0 6px;
}
.offer-stats p:last-child { margin-bottom: 0; }
.offer-desc {
  font-size: 17.3px;
  margin-bottom: 18px;
}
.offer-feature {
  font-size: 16.8px;
  font-weight: 600;
  margin-bottom: 8px;
}
.offer-included-label {
  font-size: 13.2px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 18px 0 10px;
}
.offer-dark .offer-included-label { color: var(--gold-light); }
.offer-included-list {
  margin-bottom: 6px;
}
.offer-included-list li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  font-size: 16.8px;
  font-weight: 600;
  padding: 7px 0;
}
.offer-included-list svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.offer-dark .offer-included-list svg { color: var(--gold-light); }
.offer-cta { margin-top: auto; padding-top: 26px; align-self: center; width: 100%; max-width: 320px; }

.offers-footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 16.8px;
  color: var(--text-secondary);
}
.offers-footnote a { color: var(--gold); font-weight: 700; }

@media (max-width: 900px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card { width: 95%; margin: 0 auto; }
}

/* ============================================================
   REAL PRESENCE — orbit
   ============================================================ */
#real-presence.section { padding-bottom: 76px; }
.orbit-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 56px auto 0;
}
.orbit-decorative-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(210,171,116,0.25);
  animation: orbit-decorative-spin 160s linear infinite;
  pointer-events: none;
}
@keyframes orbit-decorative-spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 148px; height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #E8C88B, var(--gold) 55%, #8a6c3f 100%);
  box-shadow: 0 0 60px 10px rgba(210,171,116,0.35), 0 0 0 1px rgba(210,171,116,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: orbit-pulse 4.5s ease-in-out infinite;
}
@keyframes orbit-pulse {
  0%, 100% { box-shadow: 0 0 60px 10px rgba(210,171,116,0.35), 0 0 0 1px rgba(210,171,116,0.4); }
  50% { box-shadow: 0 0 80px 18px rgba(210,171,116,0.55), 0 0 0 1px rgba(210,171,116,0.55); }
}
.orbit-body-svg { width: 84px; height: auto; overflow: visible; }
.orbit-body-outline {
  fill: none;
  stroke: var(--brown-deep);
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}
.orbit-node {
  position: absolute;
  width: 155px;
  text-align: center;
  z-index: 4;
  transition: transform 0.1s linear;
}
.orbit-node .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  margin: 0 auto 10px;
  box-shadow: 0 0 10px 2px rgba(210,171,116,0.5);
}
.orbit-node .label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--cream);
}
.orbit-node .desc {
  font-size: 13px;
  color: rgba(243,238,228,0.55);
  margin-top: 4px;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.orbit-node.near .desc { opacity: 1; max-height: 100px; }
.orbit-hint {
  text-align: center;
  color: rgba(243,238,228,0.45);
  font-size: 13.5px;
  font-style: italic;
  margin-top: -80px;
}
.orbit-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.orbit-lines line {
  stroke: rgba(210,171,116,0.25);
  stroke-width: 1;
  transition: stroke 0.3s ease;
}
@media (max-width: 640px) {
  .orbit-stage { transform: scale(0.58); transform-origin: center top; margin-top: 110px; margin-bottom: -170px; }
  .orbit-hint { margin-top: 70px; }
  .orbit-node .label { font-size: 23.25px; }
  .orbit-node .desc { font-size: 19.5px; }
  .orbit-node.near .desc { max-height: 200px; }
}

/* ============================================================
   ABOUT / WHO I AM
   ============================================================ */
.bio-block {
  text-align: left;
  font-size: 19.1px;
  color: var(--text);
}
.bio-block p { margin-bottom: 1.1em; }
.bio-mention {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16.2px;
  font-weight: 600;
  margin: 28px 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.inline-pin { color: var(--gold); margin: 0 2px; vertical-align: -1px; }

.qualifications {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
.qual-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.qual-logo {
  display: none;
  width: 200px;
  height: 74px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.qual-logo-oxygen {
  width: 260px;
  height: 96px;
}
.qual-logo.has-photo { display: block; }

/* ============================================================
   DISCOVERY CALL
   ============================================================ */
.discovery-subtitle {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 24.2px;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.discovery-desc {
  text-align: center;
  color: var(--border);
  opacity: 0.9;
  max-width: 460px;
  margin: 0 auto 30px;
}
#discovery-call .btn { display: flex; width: fit-content; max-width: 320px; margin: 0 auto; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 4px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18.5px;
  color: var(--text);
  text-align: left;
}
.accordion-trigger .chevron {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition-med);
}
.accordion-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-panel p {
  padding: 0 4px 20px;
  color: var(--text-secondary);
  font-size: 17.3px;
  margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 8px 0 8px;
}
.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  padding: 28px 32px;
  border-radius: 12px;
  border: 1px solid rgba(225,214,197,0.22);
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  transition: background var(--transition-med), border-color var(--transition-med), transform var(--transition-med);
}
.contact-link svg { color: var(--gold-light); transition: color var(--transition-med); }
.contact-link span {
  font-weight: 700;
  font-size: 16.2px;
  letter-spacing: 0.02em;
}
.contact-link:hover {
  background: rgba(176,141,87,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.contact-link:hover svg { color: var(--gold); }

.footer-bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(225,214,197,0.2);
  text-align: center;
}
.footer-legal, .footer-copy {
  font-size: 15px;
  color: var(--border);
  opacity: 0.7;
  margin-bottom: 6px;
}
.footer-copy { display: flex; align-items: center; justify-content: center; gap: 4px; }

@media (max-width: 560px) {
  .contact-link { min-width: 120px; padding: 22px 20px; }
}

/* ============================================================
   RESPONSIVE — GLOBAL GRID BREAKPOINTS
   ============================================================ */
@media (max-width: 900px) {
  .levers-grid { grid-template-columns: 1fr; }
  .tools-mention-grid { grid-template-columns: 1fr; }
  .presence-examples-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 40px 0 56px; }
}
