/* ========================================================================
   THE GROUNDED LEADER — Website stylesheet
   Breathwork at Happy Mountain, Wollongbar
   ======================================================================== */

/* FONTS */
@font-face {
  font-family: 'Canela Deck';
  src: url('../fonts/CanelaDeck-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Canela Deck';
  src: url('../fonts/CanelaDeck-RegularItalic.otf') format('opentype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Canela Deck';
  src: url('../fonts/CanelaDeck-MediumItalic.otf') format('opentype');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/Figtree-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/Figtree-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/Figtree-MediumItalic.ttf') format('truetype');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/Figtree-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}

/* TOKENS */
:root {
  --sandstone: #e5e1df;
  --sandstone-warm: #efeae5;
  --temple-gold: #917451;
  --deep-amber: #875c29;
  --burnished-bronze: #7d440e;
  --deep-ochre: #69370e;
  --void-black: #000000;
  --void-soft: #0a0908;
  --white: #ffffff;

  --text-display: clamp(3rem, 2rem + 5vw, 6rem);
  --text-h1: clamp(2.25rem, 1.5rem + 3vw, 4rem);
  --text-h2: clamp(1.625rem, 1.2rem + 1.75vw, 2.5rem);
  --text-h3: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --text-body: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  --text-lead: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-subhead: 0.75rem;

  --leading-tight: 1.1;
  --leading-heading: 1.15;
  --leading-body: 1.65;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-section: clamp(5rem, 4rem + 6vw, 10rem);

  --content-width: 680px;
  --wide-width: 960px;
  --max-width: 1280px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 0.25s var(--ease);
  --t-std:  0.45s var(--ease);
  --t-slow: 0.9s  var(--ease);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--void-black);
  background: var(--sandstone-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3 {
  font-family: 'Canela Deck', 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: var(--leading-heading);
  letter-spacing: -0.01em;
}
h1, .heading-1 { font-size: var(--text-h1); }
h2, .heading-2 { font-size: var(--text-h2); }
h3, .heading-3 { font-size: var(--text-h3); }

.display { font-family: 'Canela Deck', serif; font-size: var(--text-display); line-height: var(--leading-tight); font-weight: 400; letter-spacing: -0.015em; }
.serif-italic { font-family: 'Canela Deck', serif; font-style: italic; font-weight: 400; }

.subheading {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: var(--text-subhead);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--temple-gold);
  display: inline-block;
}

.lead { font-size: var(--text-lead); line-height: 1.5; color: rgba(0,0,0,0.72); }
.section--dark .lead { color: rgba(229,225,223,0.78); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
.body-text a, .inline-link { color: var(--deep-ochre); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.body-text a:hover, .inline-link:hover { color: var(--burnished-bronze); }
.section--dark .body-text a, .section--dark .inline-link { color: var(--temple-gold); }

strong { font-weight: 500; color: inherit; }
em, i { font-style: italic; }

blockquote {
  font-family: 'Canela Deck', serif;
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-h3);
  line-height: 1.35;
}

/* ============ LAYOUT ============ */
.section {
  padding: var(--space-section) clamp(1.5rem, 5vw, 3rem);
  position: relative;
}
.section--dark {
  background: var(--void-black);
  color: var(--sandstone);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark .heading-2 { color: var(--sandstone); }
.section--dark .subheading { color: var(--temple-gold); }

.section--light { background: var(--sandstone-warm); color: var(--void-black); }
.section--sand { background: var(--sandstone); color: var(--void-black); }

.container { max-width: var(--content-width); margin: 0 auto; }
.container--wide { max-width: var(--wide-width); margin: 0 auto; }
.container--max { max-width: var(--max-width); margin: 0 auto; }

.stack-sm > * + * { margin-top: 1rem; }
.stack-md > * + * { margin-top: 1.5rem; }
.stack-lg > * + * { margin-top: 2rem; }
.stack-xl > * + * { margin-top: 3rem; }

/* Section-label: gold keyline + subheading */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--temple-gold);
  flex: 0 0 auto;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 5vw, 3rem);
  transition: background-color var(--t-std), padding var(--t-std), backdrop-filter var(--t-std);
}
.nav.is-scrolled {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.nav__logo { display: flex; align-items: center; height: 6rem; transition: height var(--t-std), filter var(--t-std); }
.nav__logo img { height: 100%; width: auto; display: block; transition: filter var(--t-std); }
.nav.is-scrolled .nav__logo { height: 4.4rem; }

/* Adaptive: dark backgrounds — logo stays as-is (it's gold, reads on dark) */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--temple-gold);
  transition: right var(--t-std);
}
.nav__link:hover::after, .nav__link.active::after { right: 0; }

.nav__cta {
  font-family: 'Canela Deck', serif;
  font-size: 0.95rem;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--temple-gold);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.nav--on-dark .nav__link,
.nav--on-dark .nav__cta { color: var(--sandstone); }
.nav--on-dark .nav__link:hover,
.nav--on-dark .nav__link.active { color: var(--temple-gold); }
.nav--on-dark .nav__cta { border-color: var(--temple-gold); }
.nav--on-dark .nav__cta:hover { background: var(--deep-amber); border-color: var(--deep-amber); color: var(--sandstone); }
.nav--on-dark .nav__toggle span { background: var(--sandstone); }

/* Adaptive: light backgrounds — link text darkens, logo stays gold (reads fine on sandstone) */
.nav--on-light .nav__link { color: var(--void-black); }
.nav--on-light .nav__link:hover,
.nav--on-light .nav__link.active { color: var(--deep-ochre); }
.nav--on-light .nav__link::after { background: var(--deep-ochre); }
.nav--on-light .nav__cta {
  color: var(--void-black);
  border-color: var(--deep-ochre);
}
.nav--on-light .nav__cta:hover { background: var(--deep-ochre); border-color: var(--deep-ochre); color: var(--sandstone); }
.nav--on-light .nav__toggle span { background: var(--void-black); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  list-style: none;
}
.nav__link {
  font-family: 'Figtree', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sandstone);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--t-fast);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  padding: 4px;
  z-index: 102;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--sandstone);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__menu {
  position: fixed;
  inset: 0;
  background: var(--void-black);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-std);
}
.nav__menu.is-open { opacity: 1; pointer-events: auto; }
.nav__menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.75rem; text-align: center; }
.nav__menu .nav__link { font-size: 0.85rem; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(7rem, 14vw, 10rem) clamp(1.5rem, 5vw, 3rem) clamp(4rem, 10vw, 7rem);
  background: var(--void-black);
  color: var(--sandstone);
  overflow: hidden;
  text-align: center;
}
.hero--short { min-height: 65vh; }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
[data-page="sessions"] .hero__bg img,
[data-page="one-to-one"] .hero__bg img,
[data-page="about"] .hero__bg img {
  opacity: 0.75;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.85) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 60rem; margin: 0 auto; }
.hero__eyebrow {
  font-family: 'Figtree', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--temple-gold);
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.hero__headline {
  font-family: 'Canela Deck', serif;
  font-size: var(--text-display);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--sandstone);
  max-width: 18ch;
  margin: 0 auto 1.75rem;
  text-wrap: balance;
}
.hero__headline em { font-style: italic; color: var(--temple-gold); }
.hero__subhead {
  font-size: var(--text-lead);
  color: rgba(229,225,223,0.82);
  max-width: 38ch;
  margin: 0 auto 2.5rem;
  line-height: 1.45;
  text-wrap: pretty;
}
.hero__cta { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.hero__text-link { font-family: Figtree, sans-serif; font-size: 0.9rem; letter-spacing: 0.03em; color: rgba(255,255,255,0.65); text-decoration: none; align-self: center; transition: color 0.2s; }
.hero__text-link:hover { color: rgba(255,255,255,0.9); }
.hero__guide-link { margin-top: 1.25rem; font-family: Figtree, sans-serif; font-size: 0.85rem; letter-spacing: 0.04em; }
.hero__guide-link a { color: var(--temple-gold); text-decoration: none; opacity: 0.85; transition: opacity 0.2s; }
.hero__guide-link a:hover { opacity: 1; }

.trust-strip { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0 0; font-family: Figtree, sans-serif; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.trust-strip li + li::before { content: "·"; margin: 0 0.65rem; color: var(--temple-gold); opacity: 0.6; }

/* Frequency illustration orbit behind hero */
.hero__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(85vmin, 1100px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero__orbit img { width: 100%; height: 100%; object-fit: contain; filter: brightness(1.1); animation: slowRotate 240s linear infinite; }
@keyframes slowRotate { to { transform: rotate(360deg); } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Canela Deck', serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 2rem;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--deep-amber);
  color: var(--sandstone);
  border-color: var(--deep-amber);
}
.btn-primary:hover { background: var(--burnished-bronze); border-color: var(--burnished-bronze); }

.btn-secondary {
  background: transparent;
  color: var(--void-black);
  border-color: var(--temple-gold);
}
.btn-secondary:hover { background: var(--void-black); color: var(--sandstone); border-color: var(--void-black); }

.btn-ghost {
  background: transparent;
  color: var(--temple-gold);
  border-color: var(--temple-gold);
}
.btn-ghost:hover { color: var(--sandstone); background: var(--temple-gold); }

.btn--arrow::after {
  content: "→";
  transition: transform var(--t-fast);
}
.btn--arrow:hover::after { transform: translateX(4px); }

/* ============ HOME: pull quote ============ */
.pull-quote {
  font-family: 'Canela Deck', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  line-height: 1.3;
  color: var(--sandstone);
  max-width: 32ch;
  text-wrap: balance;
}
.pull-quote__cite {
  display: block;
  margin-top: 1.25rem;
  font-family: 'Figtree', sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--temple-gold);
  font-weight: 500;
}

/* ============ TESTIMONIAL WALL (dark) ============ */
.testimonial-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem clamp(2rem, 5vw, 5rem);
}
.testimonial-wall__item { position: relative; }
.testimonial-wall__item .mark {
  font-family: 'Canela Deck', serif;
  font-style: italic;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--temple-gold);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.testimonial-wall__quote {
  font-family: 'Canela Deck', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--sandstone);
  text-wrap: pretty;
  margin-bottom: 1.25rem;
}
.testimonial-wall__cite {
  font-family: 'Figtree', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--temple-gold);
  font-weight: 500;
}
@media (max-width: 720px) {
  .testimonial-wall { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============ HOME: three paths ============ */
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(145,116,81,0.25); border: 1px solid rgba(145,116,81,0.25); }
.path {
  background: var(--sandstone-warm);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 300px;
}
.path__num {
  font-family: 'Canela Deck', serif;
  font-style: italic;
  color: var(--temple-gold);
  font-size: 1.2rem;
}
.path__title {
  font-family: 'Canela Deck', serif;
  font-size: 1.5rem;
  line-height: 1.2;
}
.path__text { color: rgba(0,0,0,0.72); line-height: 1.55; flex: 1; }
.path__link {
  color: var(--deep-ochre);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  border-bottom: 1px solid var(--temple-gold);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.path__link:hover { color: var(--burnished-bronze); border-color: var(--burnished-bronze); }
@media (max-width: 860px) {
  .paths { grid-template-columns: 1fr; }
}

/* ============ HOME: what changes (outcomes grid) ============ */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.outcome {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(145,116,81,0.2);
  border-radius: 3px;
}
.outcome__title {
  font-family: 'Canela Deck', serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink-dark);
  margin-bottom: 0.9rem;
}
.outcome__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.66);
}
@media (max-width: 900px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* ============ ABOUT: split / portraits ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--narrow { grid-template-columns: 5fr 6fr; }
.split--reverse > :first-child { order: 2; }
.portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--void-black);
  overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--temple-gold);
  border: 1px solid rgba(145,116,81,0.3);
}
.portrait--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(145,116,81,0.04) 0%, rgba(105,55,14,0.12) 100%);
}
.portrait--placeholder span {
  position: relative;
  font-family: 'Canela Deck', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(145,116,81,0.7);
  text-align: center;
  padding: 1rem;
}
@media (max-width: 860px) {
  .split, .split--narrow { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse > :first-child { order: 0; }
}

/* ============ SESSIONS: schedule cards ============ */
.schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(145,116,81,0.3);
  border: 1px solid rgba(145,116,81,0.3);
}
.schedule__item {
  background: var(--sandstone-warm);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.schedule__day {
  font-family: 'Canela Deck', serif;
  font-size: 2rem;
  line-height: 1.1;
}
.schedule__venue { color: rgba(0,0,0,0.7); font-size: 1rem; }
.schedule__time {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(145,116,81,0.3);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.schedule__time-main {
  font-family: 'Canela Deck', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--deep-ochre);
}
.schedule__time-doors {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--temple-gold);
  font-weight: 500;
}
@media (max-width: 720px) { .schedule { grid-template-columns: 1fr; } }

/* ============ PRICING TABLE ============ */
.price-list { margin-top: 2rem; }
.price-row {
  display: grid;
  grid-template-columns: 2.5fr 4fr 1.5fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(145,116,81,0.25);
}
.section--dark .price-row { border-bottom-color: rgba(145,116,81,0.3); }
.price-row:first-child { border-top: 1px solid rgba(145,116,81,0.25); }
.section--dark .price-row:first-child { border-top-color: rgba(145,116,81,0.3); }
.price-row__label {
  font-family: 'Canela Deck', serif;
  font-size: 1.375rem;
  line-height: 1.2;
}
.price-row__desc { color: rgba(0,0,0,0.65); font-size: 0.95rem; line-height: 1.5; }
.section--dark .price-row__desc { color: rgba(229,225,223,0.7); }
.price-row__price {
  font-family: 'Canela Deck', serif;
  font-size: 1.5rem;
  color: var(--deep-ochre);
  text-align: right;
  white-space: nowrap;
}
.section--dark .price-row__price { color: var(--temple-gold); }
.price-row__price small {
  font-family: 'Figtree', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
  font-weight: 500;
  display: block;
  margin-top: 0.25rem;
}
@media (max-width: 720px) {
  .price-row {
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
  }
  .price-row__desc { grid-column: 1 / -1; order: 3; font-size: 0.875rem; }
  .price-row__price { font-size: 1.25rem; }
}

/* Details list (Monthly + 1:1) */
.details-list { display: grid; gap: 0; }
.details-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(145,116,81,0.25);
  align-items: baseline;
}
.section--dark .details-row { border-bottom-color: rgba(145,116,81,0.3); }
.details-row:first-child { border-top: 1px solid rgba(145,116,81,0.25); }
.section--dark .details-row:first-child { border-top-color: rgba(145,116,81,0.3); }
.details-row__label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--temple-gold);
  font-weight: 500;
}
.details-row__value {
  font-family: 'Canela Deck', serif;
  font-size: 1.15rem;
  line-height: 1.4;
}
.details-row__value small {
  font-family: 'Figtree', sans-serif;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
  display: block;
  margin-top: 0.25rem;
}
.section--dark .details-row__value small { color: rgba(229,225,223,0.55); }
@media (max-width: 560px) {
  .details-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1rem 0; }
}

/* ============ FAQ ============ */
.faq { border-top: 1px solid rgba(145,116,81,0.3); }
.faq-item { border-bottom: 1px solid rgba(145,116,81,0.3); }
.faq-question {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: 'Canela Deck', serif;
  font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.35rem);
  line-height: 1.3;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--temple-gold); }
.faq-icon {
  flex: 0 0 auto;
  width: 14px; height: 14px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--temple-gold);
  transition: transform var(--t-fast);
}
.faq-icon::before { inset: 6px 0; height: 1px; }
.faq-icon::after { inset: 0 6px; width: 1px; }
.faq-item.is-open .faq-icon::after { transform: scaleY(0); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-std);
}
.faq-answer__inner {
  overflow: hidden;
  padding: 0;
  max-width: 58ch;
  color: rgba(229,225,223,0.78);
  line-height: 1.65;
}
.faq-answer__inner::after {
  content: '';
  display: block;
  height: 1.75rem;
}
.section--light .faq-answer__inner { color: rgba(0,0,0,0.72); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* ============ SKIP LINK ============ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  background: var(--void);
  color: var(--sandstone);
  padding: 0.6rem 1.2rem;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  border-radius: 2px;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus { top: 1rem; }

/* ============ MOBILE STICKY CTA ============ */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--void);
  border-top: 1px solid rgba(145,116,81,0.35);
  padding: 0.9rem 1.25rem;
  text-align: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
}
.mobile-book-bar a {
  display: block;
  width: 100%;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--sandstone);
  background: var(--temple-gold);
  border-radius: 2px;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.mobile-book-bar a:hover { opacity: 0.88; }
@media (max-width: 860px) {
  .mobile-book-bar { display: block; }
  body { padding-bottom: 72px; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
  text-align: center;
  padding: var(--space-section) clamp(1.5rem, 5vw, 3rem);
  background: var(--void-black);
  color: var(--sandstone);
  position: relative;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background: url('../img/liminal-gold.jpg') center/cover;
  opacity: 0.3;
  z-index: 0;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner__head {
  font-family: 'Canela Deck', serif;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.015em;
}
.cta-banner__head em { font-style: italic; color: var(--temple-gold); }
.cta-banner__sub {
  font-size: var(--text-lead);
  color: rgba(229,225,223,0.75);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
}

/* ============ FORM ============ */
.form { display: grid; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--temple-gold);
  font-weight: 500;
}
.form-input, .form-textarea, .form-select {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid rgba(145,116,81,0.35);
  color: var(--void-black);
  border-radius: 0;
  transition: border-color var(--t-fast), background var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-select {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='%23917451'><path d='M0 0l5 6 5-6z'/></svg>") right 1rem center / 10px no-repeat;
  padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 9rem; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--deep-amber);
  background: rgba(229,225,223,0.3);
}

/* ============ FOOTER CTA ============ */
.footer .subheading { color: var(--temple-gold); }
.footer__cta {
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(145,116,81,0.25);
}
.footer__cta--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.footer__cta-head {
  font-family: 'Canela Deck', serif;
  font-size: clamp(1.3rem, 0.9rem + 1.2vw, 1.85rem);
  font-weight: 400;
  color: var(--sandstone);
  line-height: 1.2;
  margin: 1rem 0 1.75rem;
}
@media (max-width: 720px) {
  .footer__cta--split { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--void-black);
  color: var(--sandstone);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem) 2rem;
}
.footer__inner { max-width: var(--max-width); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 4rem;
}
.footer__brand .footer__logo { height: 2.75rem; margin-bottom: 1.25rem; }
.footer__brand p { font-size: 0.95rem; color: rgba(229,225,223,0.72); max-width: 32ch; line-height: 1.55; }
.footer__heading {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--temple-gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer__list { list-style: none; display: grid; gap: 0.6rem; }
.footer__list a { color: rgba(229,225,223,0.85); font-size: 0.95rem; transition: color var(--t-fast); }
.footer__list a:hover { color: var(--temple-gold); }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer__social a {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid rgba(145,116,81,0.4);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--sandstone);
  transition: all var(--t-fast);
}
.footer__social a:hover { background: var(--temple-gold); color: var(--void-black); border-color: var(--temple-gold); }
.footer__social svg { width: 1rem; height: 1rem; }
/* Accreditation badges — footer */
.footer__accred {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(145,116,81,0.15);
}
.footer__accred a { display: block; opacity: 0.55; transition: opacity 0.2s; }
.footer__accred a:hover { opacity: 0.85; }
.footer__accred img { height: 4rem; width: auto; display: block; }

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(145,116,81,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(229,225,223,0.5);
}

/* Accreditation badges — about page */
.accred-strip__label {
  font-family: Figtree, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(229,225,223,0.45);
  margin-bottom: 1.25rem;
}
.accred-strip__logos {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
  align-items: center;
}
.accred-strip__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: rgba(229,225,223,0.65);
  font-family: Figtree, sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.accred-strip__item:hover { color: var(--sandstone); }
.accred-strip__item img { height: 4rem; width: auto; display: block; }
.accred-strip__item--text { border-left: 1px solid rgba(145,116,81,0.3); padding-left: 2rem; }
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── Room / practice photo break ─────────────────────────────────────── */
.room-photo { position: relative; overflow: hidden; max-height: 70vh; }
.room-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.room-photo__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  font-family: Figtree, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ============ FADE-IN ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.fade-in.is-visible { opacity: 1; transform: none; }
.fade-in--d1 { transition-delay: 0.12s; }
.fade-in--d2 { transition-delay: 0.24s; }
.fade-in--d3 { transition-delay: 0.36s; }

/* ============ BOOKING PLACEHOLDER ============ */
.booking-widget {
  padding: 3rem 2rem;
  text-align: center;
  border: 1px dashed rgba(145,116,81,0.4);
  background: rgba(229,225,223,0.04);
}
.booking-widget__label {
  font-family: 'Canela Deck', serif;
  font-style: italic;
  color: var(--temple-gold);
  font-size: 1.1rem;
}
.booking-widget__sub {
  font-size: 0.85rem;
  color: rgba(229,225,223,0.55);
  margin-top: 0.5rem;
}

/* utilities */
.text-center { text-align: center; }
.muted { color: rgba(0,0,0,0.6); }
.section--dark .muted { color: rgba(229,225,223,0.6); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mt-xl { margin-top: 4rem; }
.mb-lg { margin-bottom: 2.5rem; }
.mw-short { max-width: 48ch; }

/* accessibility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
*:focus-visible { outline: 2px solid var(--deep-amber); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero__orbit img { animation: none; }
  .ring-spin { animation: none; }
}

/* ============ SPINNING RING — home hero ============ */
.hero__logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(110vmin, 960px);
  height: min(110vmin, 960px);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.38;
}
.hero__logo-ring svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}
.ring-spin {
  animation: spinRing 160s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============ MAILERLITE FORM — container + brand styling ============ */

/* Subtle container box */
.form-box {
  border: 1px solid rgba(145,116,81,0.25);
  padding: 2rem 2.5rem;
  background: #fff;
  margin-top: 2.5rem;
  text-align: left;
}

/* Strip MailerLite's default card chrome */
.ml-embedded .ml-form-embedWrapper,
.ml-embedded .ml-form-embedBody {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Hide MailerLite's own heading/description — page copy handles this */
.ml-embedded .ml-form-embedContent {
  display: none !important;
}

/* Input fields */
.ml-embedded .ml-form-fieldRow input {
  font-family: 'Figtree', sans-serif !important;
  font-size: 1rem !important;
  border: 1px solid rgba(0,0,0,0.2) !important;
  border-radius: 0 !important;
  padding: 0.75rem 1rem !important;
  background: #fff !important;
  color: #000 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 0.75rem !important;
}

.ml-embedded .ml-form-fieldRow input:focus {
  border-color: #917451 !important;
  outline: none !important;
}

/* Submit button */
.ml-embedded .ml-form-embedSubmit button {
  font-family: 'Figtree', sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: #000 !important;
  color: #e5e1df !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.875rem 2rem !important;
  width: 100% !important;
  cursor: pointer !important;
  margin-top: 0.25rem !important;
}

.ml-embedded .ml-form-embedSubmit button:hover {
  background: #875c29 !important;
}

/* What to expect text (success / disclaimer text) */
.ml-embedded .ml-form-successBody {
  font-family: 'Figtree', sans-serif !important;
  font-size: 1rem !important;
  color: #000 !important;
  text-align: center !important;
}

/* ── EXIT-INTENT POPUP ────────────────────────────────────────────────── */
#exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#exit-popup.is-visible {
  display: flex;
}
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(2px);
}
.exit-popup__box {
  position: relative;
  background: var(--sandstone-warm);
  max-width: 480px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
}
.exit-popup__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(0,0,0,0.4);
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--t-fast);
}
.exit-popup__close:hover { color: var(--void-black); }
.exit-popup__eyebrow {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--temple-gold);
  margin-bottom: 1rem;
}
.exit-popup__heading {
  font-family: 'Canela Deck', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.exit-popup__body {
  font-size: var(--text-lead);
  line-height: 1.6;
  color: rgba(0,0,0,0.7);
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .exit-popup__box { padding: 2.5rem 1.5rem; }
}
