/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
  --ink:     #2d0573;
  --ink-2:   #1e0350;
  --bone:    #f6ebe0;
  --bone-dim:#cbb9ba;
  --poppy:   #0A1E80;
  --fuchsia: #ff3d8b;
  --amber:   #ffb03a;
  --jade:    #7DFFE8;

  --font-display: 'Chewy', cursive;
  --font-body:    'Hanken Grotesk', sans-serif;
  --font-mono:    'Space Mono', monospace;
}

/* ===========================
   RESET
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }

/* ===========================
   PAGE ENTRANCE
   =========================== */
body {
  animation: page-enter 1s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes page-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

/* ===========================
   FILM GRAIN OVERLAY
   =========================== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ===========================
   UTILITY
   =========================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale  { transform: scale(0.9); opacity: 0; }
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { transform: none; opacity: 1; }

/* Hero entrance animations */
.hero-collage {
  opacity: 0;
  transform: translateX(-60px);
  animation: slide-in-left 1s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}

.hero-content h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.6s forwards;
}

.hero-content .hero-sub {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.9s forwards;
}

.hero-content .hero-btns {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 1.1s forwards;
}

.hero-anchor {
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 1.4s forwards;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-left {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  to { opacity: 1; transform: translateX(0); }
}

/* Entrance animations start from opacity:0. If the user prefers reduced
   motion the animation is suppressed, so force the final visible state or
   the hero photo/text would never appear. */
@media (prefers-reduced-motion: reduce) {
  body,
  .hero-collage,
  .hero-content h1,
  .hero-content .hero-sub,
  .hero-content .hero-btns,
  .hero-anchor {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Ambient glow pulse on orb section */
.orb-wrap {
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(125,255,232,0.1)); }
  50%      { filter: drop-shadow(0 0 40px rgba(125,255,232,0.25)); }
}

/* Anchor slow float */
.hero-anchor {
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 1.4s forwards,
             anchor-float 8s ease-in-out 2.2s infinite;
}

@keyframes anchor-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}

/* Section stagger for offering cards */
.offer-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s, box-shadow 0.3s;
}

.offer-card.visible { opacity: 1; transform: none; }
.offer-card:nth-child(1) { transition-delay: 0s; }
.offer-card:nth-child(2) { transition-delay: 0.15s; }
.offer-card:nth-child(3) { transition-delay: 0.3s; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.3s, color 0.3s;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  animation: btn-color-cycle 2s ease-in-out infinite;
}

@keyframes btn-color-cycle {
  0%   { background: var(--fuchsia); color: var(--bone); }
  33%  { background: var(--amber); color: var(--ink); }
  66%  { background: var(--jade); color: var(--ink); }
  100% { background: var(--fuchsia); color: var(--bone); }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover { animation: none; }
}

.btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.btn--poppy {
  background: var(--poppy);
  color: var(--bone);
}
.btn--poppy:hover {
  box-shadow: 0 6px 24px rgba(10,30,128,0.4);
}

.btn--fuchsia {
  background: var(--fuchsia);
  color: var(--bone);
}

.btn--jade {
  background: var(--jade);
  color: var(--ink);
}
.btn--jade:hover {
  box-shadow: 0 6px 24px rgba(125,255,232,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid var(--bone-dim);
}
.btn--ghost:hover {
  border-color: var(--bone);
  box-shadow: 0 6px 20px rgba(246,235,224,0.08);
}

.btn--amber {
  background: var(--amber);
  color: var(--ink);
}

.btn--lg {
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(203,185,186,0.06);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--poppy);
  animation: disco-text 12s ease-in-out infinite;
}

@keyframes disco-text {
  0%, 100% { color: var(--jade); text-shadow: 0 0 12px rgba(125,255,232,0.3); }
  25%      { color: var(--fuchsia); text-shadow: 0 0 14px rgba(255,61,139,0.25); }
  50%      { color: var(--amber); text-shadow: 0 0 14px rgba(255,176,58,0.25); }
  75%      { color: #e876c8; text-shadow: 0 0 14px rgba(232,118,200,0.25); }
}

@media (prefers-reduced-motion: reduce) {
  .wordmark { animation: none; color: var(--jade); }
}

.desktop-nav {
  display: flex;
  gap: 2.4rem;
}

.desktop-nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  transition: color 0.25s;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--jade);
  transition: width 0.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active { color: var(--bone); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { width: 100%; }

.desktop-nav a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 200;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  /* Lives as a direct child of <body> (not inside .site-header) so it can rise
     above the page content. Sits above the header (100); the toggle/close
     button (400) sits above this. */
  z-index: 300;
}

.nav-overlay.open { opacity: 1; pointer-events: auto; }

.nav-overlay ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.nav-overlay a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 7vw, 3.6rem);
  color: var(--bone);
  transition: color 0.2s;
}

.nav-overlay a:hover { color: var(--jade); }

.nav-overlay a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 4rem 8rem;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

/* Gradient blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: drift 20s ease-in-out infinite alternate;
}

.blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--jade), transparent 70%);
  opacity: 0.15;
  top: -10%; left: -8%;
}

.blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--fuchsia), transparent 70%);
  opacity: 0.12;
  bottom: 5%; right: -5%;
  animation-delay: -7s;
}

.blob--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--amber), transparent 70%);
  opacity: 0.1;
  top: 40%; left: 35%;
  animation-delay: -12s;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.08); }
  100% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Hero grid — collage left, text right */
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Collage — selfie with overlapping anchor + yin-yang */
.hero-collage {
  position: relative;
  height: 580px;
}

.collage-main {
  width: 400px;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 2;
}


.collage-yinyang {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 150px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 0 15px rgba(255,61,139,0.2));
  animation: float-item 6s ease-in-out infinite;
}

.collage-moon {
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 150px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 0 20px rgba(125,255,232,0.15));
  animation: float-item 8s ease-in-out infinite -2s;
}

.collage-star {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 0 10px rgba(255,176,58,0.3));
}

.collage-star--1 {
  top: 30px;
  left: -10px;
  width: 70px;
  height: auto;
  animation: float-item 5s ease-in-out infinite -1s;
}

.collage-star--2 {
  bottom: 80px;
  right: -20px;
  width: 50px;
  height: auto;
  animation: float-item 7s ease-in-out infinite -3s;
}

@keyframes float-item {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(6deg); }
}


/* Hero content — right side */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Anchor — positioned to the right of the content */
.hero-anchor {
  position: absolute;
  right: -160px;
  bottom: -350px;
  width: 360px;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(125,255,232,0.2));
}

/* ---- Breath Orb ---- */
.orb-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb-wrap {
  position: relative;
  width: 260px; height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ff6eb4, var(--fuchsia) 50%, #ff2d78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 60px rgba(255,61,139,0.35), 0 0 120px rgba(255,45,120,0.15);
  will-change: transform;
}

.orb[data-phase="inhale"]  { transform: scale(1.35); transition-duration: 4s; }
.orb[data-phase="hold"]    { transform: scale(1.35); transition-duration: 4s; }
.orb[data-phase="exhale"]  { transform: scale(1);    transition-duration: 6s; }
.orb[data-phase="rest"]    { transform: scale(1);    transition-duration: 2s; }

.orb-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 2px;
}

.orb-count {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bone);
}

.orb-halo {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(255,176,58,0.15);
  animation: halo-pulse 16s ease-in-out infinite;
}

@keyframes halo-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  25%      { transform: scale(1.2); opacity: 0.08; }
  50%      { transform: scale(1);   opacity: 0.3; }
  75%      { transform: scale(1.15); opacity: 0.1; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .orb { transition: none !important; transform: scale(1.15) !important; }
  .orb-halo { animation: none; }
  .blob { animation: none; }
  .marquee-track { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* Hero text */
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero-content h1 em {
  color: var(--jade);
  font-style: normal;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bone);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===========================
   MARQUEE
   =========================== */
.marquee {
  background: var(--jade);
  padding: 1.4rem 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scroll-marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

@keyframes scroll-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   BREATHE WITH ME — black section, centered
   =========================== */
.breathe-with-me {
  background: #000;
  padding: 6rem 2rem;
}

.breathe-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.breathe-with-me h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--bone);
}

/* ===========================
   WHY BREATH — bone section
   =========================== */
.why-breath {
  background: var(--bone);
  color: var(--ink);
  padding: 6rem 2rem;
}

.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
}

.why-left h2 em {
  color: var(--fuchsia);
  font-style: normal;
}

.why-left .eyebrow { color: var(--ink-2); }

.why-right p {
  font-family: var(--font-display);
  color: var(--ink-2);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.why-right .btn { margin-top: 0.5rem; }

/* ===========================
   OFFERINGS — ink-2 section
   =========================== */
.offerings {
  background: #000;
  padding: 6rem 2rem;
  text-align: center;
}

.offerings h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--bone);
  margin-bottom: 3rem;
}

.offerings-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.offer-card {
  text-align: center;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--bone);
  transition: transform 0.3s;
}

.offer-card:hover { transform: translateY(-6px); }

.offer-card:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.offer-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(203,185,186,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
  overflow: hidden;
}

.offer-circle img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.4s;
}

.offer-card:hover .offer-circle img { transform: scale(1.1); }

/* Different hover colors */
.offer-card--1:hover .offer-circle {
  border-color: var(--fuchsia);
  box-shadow: 0 0 40px rgba(255,61,139,0.25);
  background: rgba(255,61,139,0.08);
}

.offer-card--2:hover .offer-circle {
  border-color: var(--jade);
  box-shadow: 0 0 40px rgba(125,255,232,0.25);
  background: rgba(125,255,232,0.06);
}

.offer-card--3:hover .offer-circle {
  border-color: var(--amber);
  box-shadow: 0 0 40px rgba(255,176,58,0.25);
  background: rgba(255,176,58,0.06);
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.offer-card--1:hover h3 { color: var(--fuchsia); }
.offer-card--2:hover h3 { color: var(--jade); }
.offer-card--3:hover h3 { color: var(--amber); }

.offer-card p {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--bone-dim);
  line-height: 1.65;
}

/* ===========================
   TESTIMONIALS
   Deep-purple "inhale" beat between the black offerings and the
   bone-light video band below it. Per-card poppy accents echo the
   offering cards; oversized italic serif for the quotes.
   =========================== */
.testimonials {
  background: radial-gradient(120% 130% at 50% 0%, var(--ink) 0%, var(--ink-2) 72%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--bone);
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(203, 185, 186, 0.14);
  border-radius: 22px;
  padding: 2.6rem 2.2rem 2.2rem;
  /* opacity included so the .reveal fade-in still transitions (this rule
     overrides .reveal's own transition list). */
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.testimonial-card:hover { transform: translateY(-6px); }

.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--bone);
}

.testimonial-card figcaption {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Per-card accents */
.testimonial-card--1 figcaption { color: var(--fuchsia); }
.testimonial-card--1:hover {
  border-color: var(--fuchsia);
  box-shadow: 0 0 40px rgba(255, 61, 139, 0.18);
}

.testimonial-card--2 figcaption { color: var(--jade); }
.testimonial-card--2:hover {
  border-color: var(--jade);
  box-shadow: 0 0 40px rgba(125, 255, 232, 0.18);
}

.testimonial-card--3 figcaption { color: var(--amber); }
.testimonial-card--3:hover {
  border-color: var(--amber);
  box-shadow: 0 0 40px rgba(255, 176, 58, 0.18);
}

@media (max-width: 768px) {
  .testimonials { padding: 4.5rem 1.5rem; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .testimonial-mark { font-size: 4.5rem; }
  /* Stacked cards make the section tall on mobile, so the corner stars would
     land over the quotes — tuck them tight into the corners to frame instead. */
  .testimonials .pq-star--1 { top: 1.5%;    left: 2%;  width: 34px; }
  .testimonials .pq-star--4 { bottom: 1.5%; right: 2%; width: 32px; }
}

/* ===========================
   MORE ABOUT ME
   =========================== */
.about-me {
  background: var(--ink);
  padding: 6rem 2rem;
}

.about-me--book {
  background: var(--bone);
}

.about-me--book .about-me-text p {
  color: var(--ink);
}

.about-me--book .about-me-text .highlight {
  color: var(--fuchsia);
}

.about-me-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* Hand/feather image */
.about-me-images {
  display: flex;
  justify-content: center;
}

.about-me-img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: rotate(-2deg);
  transition: transform 0.4s;
}

.about-me-img:hover {
  transform: rotate(0deg);
}

.about-me-text p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bone-dim);
  margin-bottom: 1.4rem;
  line-height: 1.75;
}

.about-me-text .highlight {
  color: var(--jade);
  font-size: 1.45rem;
}

.about-me-text .btn {
  margin-top: 0.5rem;
}

/* ===========================
   PULL QUOTE
   =========================== */
.pull-quote {
  background: #000;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pq-star {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(255,176,58,0.3));
}

.pq-star--1 { top: 15%; left: 6%; width: 60px; animation: float-item 6s ease-in-out infinite; }
.pq-star--2 { top: 20%; right: 8%; width: 45px; animation: float-item 7s ease-in-out infinite -2s; }
.pq-star--3 { bottom: 18%; left: 12%; width: 35px; animation: float-item 5s ease-in-out infinite -1s; }
.pq-star--4 { bottom: 15%; right: 5%; width: 55px; animation: float-item 8s ease-in-out infinite -3s; }

.pull-quote h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.25;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--bone);
  /* Sit above the decorative stars so the copy stays readable. */
  position: relative;
  z-index: 2;
}

.pull-quote .btn {
  display: inline-block;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  /* On narrow screens the corner stars crowd the centered heading, so tuck
     them tight into the corners (and shrink them) to frame the CTA instead. */
  .pull-quote { padding: 5rem 1.5rem; }
  .pull-quote .pq-star--1 { top: 2%;    left: 3%;  width: 40px; }
  .pull-quote .pq-star--2 { top: 2%;    right: 3%; width: 34px; }
  .pull-quote .pq-star--3 { bottom: 3%; left: 4%;  width: 28px; }
  .pull-quote .pq-star--4 { bottom: 3%; right: 4%; width: 38px; }
}

/* ===========================
   MAILING LIST
   =========================== */
.mailing-list {
  background: var(--bone);
  padding: 5rem 2rem;
  text-align: center;
}

.mailing-inner {
  max-width: 550px;
  margin: 0 auto;
}

/* Dark variant — alternates against a light section above it */
.mailing-list--dark {
  background: #07030f;
}

.mailing-list.mailing-list--dark h2 {
  color: var(--bone);
}

.mailing-list.mailing-list--dark p {
  color: var(--bone-dim);
}

.mailing-list h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 1rem;
}

.mailing-list p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink-2);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.mailing-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mailing-form input {
  flex: 1;
  min-width: 250px;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid rgba(45,5,115,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.mailing-form input::placeholder {
  color: var(--ink-2);
  opacity: 0.5;
}

.mailing-form input:focus {
  border-color: var(--fuchsia);
}

.mailing-form button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* Inline feedback after a subscribe attempt. Full width so it wraps
   below the flex row of input + button. */
.mailing-status {
  width: 100%;
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.5;
}

.mailing-status[hidden] {
  display: none;
}

.mailing-status.is-success {
  color: var(--ink);
  font-weight: 600;
}

.mailing-status.is-error {
  color: var(--fuchsia);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #41178C;
  border-top: 1px solid rgba(203,185,186,0.06);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-nav {
  display: flex;
  gap: 1.8rem;
  justify-self: center;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--bone-dim);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--bone); }

.footer-socials a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--jade); }

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(203,185,186,0.35);
  margin-top: 1rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  /* Pin to the viewport so it can't be clipped off the right edge, and
     sit above the overlay (z-150) so it works as the close button too. */
  .menu-toggle {
    display: flex;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    /* Above the overlay (300) so it doubles as the close (X) button. */
    z-index: 400;
  }

  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* All collage children are position:absolute, so without an explicit width
     the container collapses to 0 and the global img{max-width:100%} reset then
     shrinks the photo to a sliver. Pin the width so the photo has room. */
  .hero-collage { height: 420px; margin: 0 auto; width: 300px; max-width: 100%; }
  .collage-main { width: 280px; height: 350px; }
  .hero-anchor { position: static; width: 180px; margin: 1.5rem auto 0; display: block; }
  .collage-yinyang { width: 100px; }
  .collage-moon { width: 140px; }
  .collage-star--1 { width: 50px; }
  .collage-star--2 { width: 35px; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }

  .breathe-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .why-grid { grid-template-columns: 1fr; gap: 2rem; }

  .offerings-grid { flex-direction: column; align-items: center; gap: 2.5rem; }

  .about-me-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-me-img { max-width: 300px; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav { justify-self: center; flex-wrap: wrap; justify-content: center; }
}

/* ===========================
   NAV INSTAGRAM ICON
   =========================== */
.nav-insta {
  display: flex;
  align-items: center;
}

.nav-insta:hover { color: var(--bone); }
.nav-insta::after { display: none; }

/* ===========================
   INSTAGRAM SECTION
   =========================== */
.insta-section {
  background: var(--ink-2);
  padding: 5rem 2rem;
  text-align: center;
}

.insta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--bone);
  transition: color 0.3s;
}

.insta-link:hover { color: var(--fuchsia); }

.insta-link svg {
  opacity: 0.8;
}

.insta-link h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.insta-link p {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bone-dim);
  max-width: 400px;
}

.insta-feed {
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

/* ========== COMING SOON ========== */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 4rem 2rem;
}

.coming-soon h1 {
  font-family: 'Chewy', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1rem;
}

.coming-soon p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.2rem;
  opacity: 0.7;
  max-width: 400px;
}

/* ===========================
   CONTACT PAGE
   =========================== */

/* Hero */
.contact-hero {
  background: var(--ink);
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.contact-hero h1 em {
  color: var(--jade);
  font-style: normal;
}

.contact-hero-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bone-dim);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* Contact section */
.contact-section {
  background: #000;
  padding: 5rem 2rem 6rem;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* Left column: info */
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--bone);
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 0.3rem;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bone);
}

.contact-link {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--jade);
  transition: color 0.25s;
}

.contact-link:hover {
  color: var(--fuchsia);
}

.contact-note {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bone-dim);
  line-height: 1.7;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(203,185,186,0.1);
}

.contact-note a {
  color: var(--jade);
  transition: color 0.25s;
}

.contact-note a:hover {
  color: var(--fuchsia);
}

/* Right column: form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bone);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--bone-dim);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(203,185,186,0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(125,255,232,0.15);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(125,255,232,0.15);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cbb9ba' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--ink-2);
  color: var(--bone);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  border: none;
}

/* Contact page responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    text-align: center;
  }

  .contact-detail {
    justify-content: center;
  }

  .contact-submit {
    align-self: stretch;
  }
}

/* ===========================
   BOOK PAGE — HERO
   =========================== */
.book-hero {
  background: var(--bone);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.book-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.book-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.book-hero h1 em {
  color: var(--fuchsia);
  font-style: normal;
}

.book-hero-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   BOOK PAGE — SESSION CARDS
   =========================== */
.book-sessions {
  background: #000;
  padding: 6rem 2rem;
}

.book-sessions-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.book-card {
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(203,185,186,0.1);
  border-radius: 20px;
  padding: 3rem 2rem 2.5rem;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.3s;
}

.book-card:hover {
  transform: translateY(-6px);
}

.book-card--1:hover {
  border-color: var(--fuchsia);
  box-shadow: 0 0 50px rgba(255,61,139,0.2);
}

.book-card--2:hover {
  border-color: var(--jade);
  box-shadow: 0 0 50px rgba(125,255,232,0.2);
}

.book-card--3:hover {
  border-color: var(--amber);
  box-shadow: 0 0 50px rgba(255,176,58,0.2);
}

.book-card .offer-circle {
  margin-bottom: 1.8rem;
}

.book-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--bone);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.book-card--1:hover h3 { color: var(--fuchsia); }
.book-card--2:hover h3 { color: var(--jade); }
.book-card--3:hover h3 { color: var(--amber); }

.book-card-desc {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bone-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.book-card-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.book-card-meta span {
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(203,185,186,0.15);
  border-radius: 999px;
}

.book-card .btn {
  margin-top: auto;
}

/* hover glow on offer-circle inside book-card */
.book-card--1:hover .offer-circle {
  border-color: var(--fuchsia);
  box-shadow: 0 0 40px rgba(255,61,139,0.25);
  background: rgba(255,61,139,0.08);
}

.book-card--2:hover .offer-circle {
  border-color: var(--jade);
  box-shadow: 0 0 40px rgba(125,255,232,0.25);
  background: rgba(125,255,232,0.06);
}

.book-card--3:hover .offer-circle {
  border-color: var(--amber);
  box-shadow: 0 0 40px rgba(255,176,58,0.25);
  background: rgba(255,176,58,0.06);
}

.book-card:hover .offer-circle img {
  transform: scale(1.1);
}

/* ===========================
   BOOK PAGE — SCHEDULER
   =========================== */
.book-scheduler {
  background: var(--ink-2);
  padding: 6rem 2rem;
  text-align: center;
}

.book-scheduler-inner {
  max-width: 700px;
  margin: 0 auto;
}

.book-scheduler h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--bone);
  margin-bottom: 2.5rem;
}

.book-scheduler h2 em {
  color: var(--jade);
  font-style: normal;
}

.scheduler-placeholder {
  border: 2px dashed rgba(203,185,186,0.2);
  border-radius: 16px;
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.02);
}

.scheduler-placeholder p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bone-dim);
}

.scheduler-placeholder .scheduler-note {
  font-size: 0.95rem;
  margin-top: 1rem;
  color: rgba(203,185,186,0.5);
}

.scheduler-placeholder .scheduler-note a {
  color: var(--jade);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.scheduler-placeholder .scheduler-note a:hover {
  color: var(--bone);
}

/* ===========================
   BOOK PAGE — RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .book-hero { padding: 8rem 1.5rem 3rem; min-height: 40vh; }

  .book-sessions-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .book-card {
    width: 100%;
    max-width: 400px;
  }

  .book-card-meta {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===========================
   ABOUT PAGE
   =========================== */

/* About Hero */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.about-hero h1 em {
  color: var(--jade);
  font-style: normal;
}

.about-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--bone-dim);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* About Story — bone bg, dark text, two-column */
.about-story {
  background: var(--bone);
  color: var(--ink);
  padding: 10rem 2rem 6rem;
}

.about-story-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-story-image {
  display: flex;
  justify-content: center;
}

.about-story-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 200px 200px 200px 200px;
  box-shadow: 0 20px 60px rgba(45,5,115,0.25);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3 / 4;
}

.about-story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.about-story-text p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink-2);
  margin-bottom: 1.3rem;
  line-height: 1.75;
}

.about-highlight {
  font-size: 1.35rem !important;
  color: var(--fuchsia) !important;
  font-weight: 700;
  padding: 0.5rem 0;
}

/* Full-width image break */
.about-image-break {
  width: 100%;
  overflow: hidden;
  max-height: 500px;
}

.about-image-break img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Credentials / Approach — ink-2 bg */
.about-approach {
  background: var(--ink-2);
  padding: 6rem 2rem;
}

.about-approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-approach-col .eyebrow {
  color: var(--bone-dim);
}

.about-approach-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--bone);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-approach-col h2 em {
  color: var(--fuchsia);
  font-style: normal;
}

.about-approach-col p {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bone-dim);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

.about-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-credentials li {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--bone-dim);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(203,185,186,0.1);
  line-height: 1.6;
  position: relative;
  padding-left: 1.6rem;
}

.about-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jade);
}

.about-credentials li:last-child {
  border-bottom: none;
}

/* Tidbits grid */
.tidbits {
  background: var(--bone);
  padding: 5rem 2rem;
  text-align: center;
}

.tidbits h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--ink);
  margin-bottom: 3rem;
}

.tidbits-grid {
  max-width: 900px;
  margin: 0 auto;
}

.tidbits-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(45,5,115,0.1);
}

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

.tidbit-cell {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(45,5,115,0.1);
}

.tidbit-cell:last-child { border-right: none; }

.tidbit-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fuchsia);
  display: block;
  margin-bottom: 0.6rem;
}

.tidbits-row:nth-child(2) .tidbit-label { color: #8b1a70; }
.tidbits-row:nth-child(3) .tidbit-label { color: #c47a00; }

.tidbit-cell p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tidbits-row {
    grid-template-columns: 1fr;
  }

  .tidbit-cell {
    border-right: none;
    border-bottom: 1px solid rgba(45,5,115,0.06);
    padding: 1.5rem 1rem;
  }

  .tidbit-cell:last-child { border-bottom: none; }
}

/* About CTA */
.about-cta {
  background: #000;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-inner {
  position: relative;
  z-index: 2;
}

.about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--bone);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.about-cta p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bone-dim);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* About page responsive */
@media (max-width: 768px) {
  .about-hero { padding: 8rem 1.5rem 4rem; min-height: 50vh; }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-story-image img {
    max-width: 280px;
  }

  .about-image-break,
  .about-image-break img {
    height: 300px;
    max-height: 300px;
  }

  .about-approach-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===========================
   FOOTER ANCHOR
   =========================== */
.footer-anchor {
  width: 80px;
  height: auto;
  margin: 1rem auto 0.5rem;
  grid-column: 1 / -1;
}

/* ===========================
   VALUES PAGE — clean, clear
   =========================== */

.vp-hero {
  background: var(--ink);
  padding: 10rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Stars close to title */
.vp-star {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(255,176,58,0.3));
  animation: float-item 6s ease-in-out infinite;
}

.vp-star--1 { top: 35%; left: 30%; width: 40px; }
.vp-star--2 { top: 38%; right: 28%; width: 35px; animation-delay: -2s; }

.vp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--bone);
  margin-bottom: 1.5rem;
}

.vp-hero p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bone-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Values timeline */
.vp-values {
  background: var(--ink);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Stars scattered through timeline */
.vp-tl-star {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(255,176,58,0.25));
  animation: float-item 7s ease-in-out infinite;
}

.vp-tl-star--1 { top: 5%; right: 8%; width: 45px; }
.vp-tl-star--2 { top: 20%; left: 5%; width: 35px; animation-delay: -2s; }
.vp-tl-star--3 { top: 40%; right: 12%; width: 30px; animation-delay: -4s; }
.vp-tl-star--4 { top: 55%; left: 8%; width: 40px; animation-delay: -1s; }
.vp-tl-star--5 { top: 75%; right: 6%; width: 50px; animation-delay: -3s; }
.vp-tl-star--6 { bottom: 5%; left: 12%; width: 28px; animation-delay: -5s; }

.vp-timeline {
  max-width: 700px;
  margin: 0 auto;
}

.vp-card {
  position: relative;
  margin-bottom: 0;
}

/* Three stacked dots between cards */
.vp-card::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 1.8rem auto;
  background: var(--jade);
  box-shadow:
    0 -16px 0 var(--fuchsia),
    0 16px 0 var(--amber);
}

.vp-card:last-child::after { display: none; }

.vp-card-inner {
  background: #000;
  border-radius: 12px;
  padding: 2rem 2rem;
  border: 1px solid rgba(203,185,186,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vp-card:nth-child(1):hover .vp-card-inner { border-color: var(--jade); box-shadow: 0 0 25px rgba(125,255,232,0.08); }
.vp-card:nth-child(2):hover .vp-card-inner { border-color: var(--fuchsia); box-shadow: 0 0 25px rgba(255,61,139,0.08); }
.vp-card:nth-child(3):hover .vp-card-inner { border-color: var(--amber); box-shadow: 0 0 25px rgba(255,176,58,0.08); }
.vp-card:nth-child(4):hover .vp-card-inner { border-color: var(--jade); box-shadow: 0 0 25px rgba(125,255,232,0.08); }
.vp-card:nth-child(5):hover .vp-card-inner { border-color: var(--fuchsia); box-shadow: 0 0 25px rgba(255,61,139,0.08); }
.vp-card:nth-child(6):hover .vp-card-inner { border-color: var(--amber); box-shadow: 0 0 25px rgba(255,176,58,0.08); }

.vp-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bone);
  margin-bottom: 0.6rem;
}

.vp-card:nth-child(1) h3 { color: var(--jade); }
.vp-card:nth-child(2) h3 { color: var(--fuchsia); }
.vp-card:nth-child(3) h3 { color: var(--amber); }
.vp-card:nth-child(4) h3 { color: var(--jade); }
.vp-card:nth-child(5) h3 { color: var(--fuchsia); }
.vp-card:nth-child(6) h3 { color: var(--amber); }

.vp-card-inner p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bone-dim);
  line-height: 1.8;
}

/* Statement */
.vp-statement {
  background: var(--ink);
  padding: 5rem 2rem;
  text-align: center;
}

.vp-statement blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--jade);
  line-height: 1.35;
  max-width: 700px;
  margin: 0 auto;
}

/* What I won't do — bone bg */
.vp-pledge {
  background: var(--bone);
  padding: 5rem 2rem;
}

.vp-pledge-inner {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

.vp-pledge h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 2rem;
}

.vp-pledge ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.vp-pledge li {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-2);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(45,5,115,0.1);
}

.vp-pledge li:last-child { border-bottom: none; }

.vp-pledge-note {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--ink-2);
  opacity: 0.6;
}

/* Closing CTA */
.vp-cta {
  background: #000;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vp-cta-inner { position: relative; z-index: 2; }

.vp-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--bone);
  line-height: 1.25;
  margin-bottom: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .vp-hero { padding: 8rem 1.5rem 3rem; }
  .vp-values { padding: 3rem 1.5rem; }
}

/* ===========================
   OLD VALUES PAGE STYLES (kept for compatibility)
   =========================== */
.values-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  text-align: center;
}

.values-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.values-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.values-hero h1 em {
  color: var(--jade);
  font-style: normal;
}

.values-hero-sub {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bone-dim);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   VALUES PAGE — CARDS
   =========================== */
.values-cards {
  background: var(--ink-2);
  padding: 5rem 2rem 6rem;
}

.values-cards-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.value-card {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(203,185,186,0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s,
              box-shadow 0.4s,
              background 0.4s;
}

.value-card--wide {
  grid-column: 1 / -1;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.05);
}

/* Accent colors on hover */
.value-card--jade:hover {
  border-color: var(--jade);
  box-shadow: 0 0 40px rgba(125,255,232,0.15), 0 8px 30px rgba(0,0,0,0.3);
}

.value-card--fuchsia:hover {
  border-color: var(--fuchsia);
  box-shadow: 0 0 40px rgba(255,61,139,0.15), 0 8px 30px rgba(0,0,0,0.3);
}

.value-card--amber:hover {
  border-color: var(--amber);
  box-shadow: 0 0 40px rgba(255,176,58,0.15), 0 8px 30px rgba(0,0,0,0.3);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bone);
  margin-bottom: 0.8rem;
  line-height: 1.25;
  transition: color 0.3s;
}

.value-card--jade:hover h3 { color: var(--jade); }
.value-card--fuchsia:hover h3 { color: var(--fuchsia); }
.value-card--amber:hover h3 { color: var(--amber); }

.value-card p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bone-dim);
  line-height: 1.75;
}

/* Stagger reveal for cards */
.values-cards-inner .value-card:nth-child(1) { transition-delay: 0s; }
.values-cards-inner .value-card:nth-child(2) { transition-delay: 0.08s; }
.values-cards-inner .value-card:nth-child(3) { transition-delay: 0.16s; }
.values-cards-inner .value-card:nth-child(4) { transition-delay: 0.24s; }
.values-cards-inner .value-card:nth-child(5) { transition-delay: 0.32s; }
.values-cards-inner .value-card:nth-child(6) { transition-delay: 0.4s; }
.values-cards-inner .value-card:nth-child(7) { transition-delay: 0.48s; }

/* ===========================
   VALUES PAGE — PULL QUOTE
   =========================== */
.values-pullquote {
  background: var(--bone);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.values-pullquote blockquote {
  position: relative;
  z-index: 2;
}

.values-pullquote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 750px;
  margin: 0 auto;
}

.values-pullquote blockquote em {
  color: var(--fuchsia);
  font-style: normal;
}

.values-pullquote .pq-star {
  filter: drop-shadow(0 0 10px rgba(45,5,115,0.2));
}

/* ===========================
   VALUES PAGE — CTA
   =========================== */
.values-cta {
  background: var(--ink);
  padding: 6rem 2rem;
  text-align: center;
}

.values-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.values-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--bone);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.values-cta p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bone-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ===========================
   VALUES PAGE — RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .values-hero { padding: 8rem 1.5rem 3rem; min-height: 50vh; }

  .values-cards-inner {
    grid-template-columns: 1fr;
  }

  .value-card--wide {
    grid-column: auto;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }
}

/* ===========================
   PRACTICE PAGE
   =========================== */
.practice-page {
  background: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.practice-inner {
  max-width: 600px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.practice-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--bone);
  margin-bottom: 1rem;
  white-space: nowrap;
}

.practice-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bone-dim);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.practice-player {
  margin-bottom: 3rem;
}

.practice-audio {
  width: 100%;
  max-width: 450px;
  border-radius: 999px;
  filter: invert(1) hue-rotate(180deg) brightness(1.2);
}

.practice-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--bone-dim);
  opacity: 0.4;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.practice-note code {
  color: var(--jade);
  opacity: 1;
}

.practice-credit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--bone-dim);
  opacity: 0.7;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.practice-credit em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--jade);
  opacity: 1;
}

.practice-after {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bone-dim);
  line-height: 1.7;
}

/* Floating clouds */
.practice-cloud {
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}

.practice-cloud--1 {
  width: 300px;
  top: 8%;
  left: -5%;
  animation: cloud-drift 30s linear infinite;
}

.practice-cloud--2 {
  width: 200px;
  top: 20%;
  right: -8%;
  animation: cloud-drift 35s linear infinite -10s;
}

.practice-cloud--3 {
  width: 250px;
  bottom: 15%;
  left: 10%;
  animation: cloud-drift 28s linear infinite -5s;
}

.practice-cloud--4 {
  width: 180px;
  bottom: 30%;
  right: 5%;
  animation: cloud-drift 32s linear infinite -15s;
}

.practice-cloud--5 {
  width: 220px;
  top: 50%;
  left: 40%;
  animation: cloud-drift 26s linear infinite -20s;
  opacity: 0.7;
}

@keyframes cloud-drift {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(60px); }
  100% { transform: translateX(0); }
}

.practice-moon {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 100px;
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
  animation: float-item 10s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .practice-cloud { animation: none; }
  .practice-moon { animation: none; }
}

@media (max-width: 768px) {
  .practice-page { padding: 7rem 1.5rem 3rem; }
  .practice-cloud--1, .practice-cloud--2 { width: 150px; }
  .practice-cloud--3, .practice-cloud--4, .practice-cloud--5 { display: none; }
}

/* ===========================
   BOOK PAGE v2 — no hero, inline intro
   =========================== */
.bk-page {
  background: var(--ink);
  padding: 8rem 2rem 4rem;
}

.bk-intro {
  max-width: 1000px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.bk-intro-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--bone);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.bk-intro-text p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bone-dim);
  line-height: 1.7;
  max-width: 450px;
}

.bk-intro-anchor {
  width: 140px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(125,255,232,0.15));
  animation: float-item 8s ease-in-out infinite;
}

/* Horizontal cards */
.bk-cards {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bk-card {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(203,185,186,0.06);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.3s;
}

.bk-card:hover { transform: translateY(-3px); }

.bk-card--1:hover { border-color: var(--fuchsia); box-shadow: 0 0 40px rgba(255,61,139,0.1); }
.bk-card--2:hover { border-color: var(--jade); box-shadow: 0 0 40px rgba(125,255,232,0.1); }
.bk-card--3:hover { border-color: var(--amber); box-shadow: 0 0 40px rgba(255,176,58,0.1); }

/* Accent bar on the left */
.bk-card-accent {
  width: 5px;
  flex-shrink: 0;
}

.bk-card--1 .bk-card-accent { background: var(--fuchsia); }
.bk-card--2 .bk-card-accent { background: var(--jade); }
.bk-card--3 .bk-card-accent { background: var(--amber); }

.bk-card-body {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  flex: 1;
}

.bk-card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.bk-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bk-card-content {
  flex: 1;
}

.bk-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bone);
  margin-bottom: 0.5rem;
}

.bk-card-content p {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--bone-dim);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.bk-card-meta {
  display: flex;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.bk-card-meta span {
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(203,185,186,0.12);
  border-radius: 999px;
}

.bk-card .btn {
  flex-shrink: 0;
  align-self: center;
}

/* Scheduler v2 */
.bk-scheduler {
  background: #000;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bk-scheduler-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bk-scheduler h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bone);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .bk-intro { flex-direction: column; text-align: center; }
  .bk-intro-anchor { width: 100px; }

  .bk-card-body { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .bk-card-meta { justify-content: center; flex-wrap: wrap; }
  .bk-card { flex-direction: column; }
  .bk-card-accent { width: 100%; height: 4px; }
}

/* ===========================
   CONTACT PAGE v2 — split screen
   =========================== */
.ct-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 100vh;
}

.ct-left {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 4rem;
}

.ct-left-inner {
  max-width: 750px;
  width: 100%;
}

.ct-left-grid {
  display: grid;
  grid-template-columns: auto 1.5fr;
  gap: 3rem;
  align-items: end;
}

.ct-photo-wrap {
  position: relative;
}

.ct-moon {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  z-index: 2;
  filter: drop-shadow(0 0 15px rgba(125,255,232,0.15));
}

.ct-photo {
  width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.3));
  position: relative;
  z-index: 1;
}

.ct-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ct-subtitle {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--bone-dim);
  margin-bottom: 2.5rem;
}

.ct-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(203,185,186,0.08);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bone);
  transition: color 0.2s, padding-left 0.3s;
}

.ct-detail-item:last-child { border-bottom: none; }

a.ct-detail-item:hover {
  color: var(--jade);
  padding-left: 0.5rem;
}

.ct-detail-icon {
  font-size: 1.3rem;
  width: 2rem;
  text-align: center;
  color: var(--jade);
  flex-shrink: 0;
}

.ct-right {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 4rem;
}

.ct-form {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-form h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--bone);
  margin-bottom: 0.5rem;
}

.ct-form .form-group label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bone);
}

.ct-form .form-group input,
.ct-form .form-group select,
.ct-form .form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid rgba(203,185,186,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ct-form .form-group input::placeholder,
.ct-form .form-group textarea::placeholder {
  color: rgba(203,185,186,0.35);
}

.ct-form .form-group input:focus,
.ct-form .form-group select:focus,
.ct-form .form-group textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(125,255,232,0.12);
}

.ct-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.ct-form .form-group select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cbb9ba' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
}

.ct-form .form-group select option {
  background: var(--ink-2);
  color: var(--bone);
}

.ct-form .btn {
  border: none;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .ct-split { grid-template-columns: 1fr; }
  /* Extra top padding so the moon (which overhangs above the photo) clears
     the fixed header instead of tucking behind it. */
  .ct-left { padding: 10rem 2rem 3rem; text-align: center; }
  .ct-left-inner { max-width: 100%; }
  .ct-left-grid { grid-template-columns: 1fr; justify-items: center; gap: 1.5rem; }
  .ct-photo { width: 240px; }
  .ct-moon { width: 70px; }
  .ct-right { padding: 3rem 2rem 4rem; }
}

/* ===========================
   VIDEO BANDS  (new footage)
   =========================== */
.video-band {
  position: relative;
  padding: 5rem 2rem;
}
.video-band--ink2 { background: var(--ink-2); }

.video-band-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.video-band-head {
  text-align: center;
  margin-bottom: 2.2rem;
}
.video-band-head .eyebrow { margin-bottom: 0.6rem; }
.video-band-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  line-height: 1.1;
  color: var(--bone);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid var(--jade);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  background-color: var(--ink-2);
  background-size: cover;
  background-position: center;
  transform: rotate(-1.2deg);
}
.video-frame--fuchsia { border-color: var(--fuchsia); transform: rotate(1.2deg); }
.video-frame--amber   { border-color: var(--amber);   transform: rotate(-1deg); }

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  color: var(--ink);
  background: var(--jade);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.video-frame--fuchsia + .video-caption,
.video-caption--fuchsia { background: var(--fuchsia); color: var(--bone); }
.video-caption--amber   { background: var(--amber);   color: var(--ink); }

/* Decorative stars flanking a band */
.video-band .pq-star { position: absolute; z-index: 1; }

/* Play affordance for reduced-motion / manual playback */
.video-frame video[controls] { background: #000; }

@media (max-width: 768px) {
  .video-band { padding: 3.2rem 1.2rem; }
  .video-frame,
  .video-frame--fuchsia,
  .video-frame--amber { transform: none; border-width: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  .video-frame,
  .video-frame--fuchsia,
  .video-frame--amber { transform: none; }
}

/* Practice-page video sits inside the narrow reading column */
.practice-video { margin-top: 3rem; }

/* Two-up video gallery (home showcase) */
.video-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .video-gallery { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* Light photo break — full-width bone band, image held at native size (no blur) */
.photo-break {
  background: var(--bone);
  padding: 4.5rem 2rem;
}
.photo-break img {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  transform: rotate(-1.5deg);
  transition: transform 0.4s;
}
.photo-break img:hover { transform: rotate(0deg); }

/* Light (bone) video band — used as an "exhale" beat between dark sections */
.video-band--bone { background: var(--bone); }
.video-band--bone .video-band-head h2 { color: var(--ink); }
.video-band--bone .video-band-head .eyebrow { color: var(--ink-2); }

@media (prefers-reduced-motion: reduce) {
  .photo-break img { transform: none; }
}

/* Values hero → light, so it alternates with the dark timeline below it */
.vp-hero { background: var(--bone); }
.vp-hero h1 { color: var(--ink); }
.vp-hero p  { color: var(--ink-2); }

/* Titles above the home video clips — kicker + headline hierarchy */
.video-band-head .eyebrow {
  margin-bottom: 0.6rem;
}
.video-band-head h2 {
  margin: 0 auto;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  letter-spacing: -0.01em;
}

/* ===========================
   RESPONSIVE REFINEMENTS
   Mobile-only. Everything here is inside max-width media queries,
   so the desktop (>768px) layout is unchanged.
   =========================== */

@media (max-width: 768px) {
  /* Inputs must be >=16px or iOS zooms the page in on focus.
     Only the rendered font-size changes on phones; desktop keeps its size. */
  .mailing-form input,
  .ct-form .form-group input,
  .ct-form .form-group select,
  .ct-form .form-group textarea,
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  /* The Free Practice title is nowrap by design on desktop; let it wrap
     on phones so it can't overflow the viewport. */
  .practice-page h1 {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  /* Calendly's fixed min-width:320px + section padding overflows small
     phones. Tighten padding and let the widget shrink to fit. */
  .book-scheduler {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .calendly-inline-widget {
    min-width: 0 !important;
    width: 100%;
  }

  /* Stack the mailing signup so the email field + button each get full
     width instead of cramming onto one row. */
  .mailing-form {
    flex-direction: column;
    gap: 0.6rem;
  }
  .mailing-form input {
    min-width: 0;
    width: 100%;
  }
  .mailing-form .btn {
    width: 100%;
  }
}
