
  :root {
    --night: #241839;
    --night-deep: #1a1129;
    --twilight: #43306b;
    --lilac: #b9a7d9;
    --starlight: #ece7f6;
    --silver: #cfc8de;
    --sage: #7d9b76;
    --sage-deep: #465f42;
    --honey: #e9b45c;
    --honey-soft: #f6dfae;
    --cream: #faf6ee;
    --cream-warm: #f4ecdd;
    --ink: #2e2540;
    --ink-soft: #5b5170;
    --radius: 22px;
    --display: "Fraunces", serif;
    --body: "Karla", sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
  }

  h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.15; }
  a { color: inherit; }

  .wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

  /* ---------- nav (sticky) ---------- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 28px;
    transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
  }
  nav.scrolled {
    background: rgba(26, 17, 41, .88);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    padding: 10px 28px;
    box-shadow: 0 4px 24px rgba(26, 17, 41, .35);
  }
  .nav-name {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--display); font-style: italic; font-size: 1.15rem;
    color: var(--starlight); text-decoration: none; letter-spacing: .02em;
  }
  .nav-name img { height: 34px; width: auto; }
  .nav-links { display: flex; gap: 26px; }
  .nav-links a {
    color: var(--silver); text-decoration: none; font-size: .92rem;
    letter-spacing: .04em; transition: color .25s;
  }
  .nav-links a:hover { color: var(--honey-soft); }

  #burger {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative; z-index: 60;
  }
  #burger span {
    display: block; width: 22px; height: 2px; margin: 5px auto;
    background: var(--starlight); border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
  }
  #burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #burger.open span:nth-child(2) { opacity: 0; }
  #burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  #mobile-menu {
    position: fixed; inset: 0; z-index: 45; display: none;
    background: linear-gradient(180deg, rgba(26,17,41,.98), rgba(67,48,107,.98));
    flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    /* top padding keeps the logo clear of the fixed nav on short viewports */
    padding: calc(120px + env(safe-area-inset-top)) 24px 56px;
  }
  #mobile-menu.open { display: flex; }
  #mobile-menu a {
    color: var(--starlight); text-decoration: none;
    font-family: var(--display); font-size: 1.35rem; letter-spacing: .02em;
    padding: 13px;
    opacity: 0; transform: translateY(14px);
  }
  #mobile-menu.open a { animation: menuin .5s ease forwards; }
  #mobile-menu.open a:nth-of-type(1) { animation-delay: .12s; }
  #mobile-menu.open a:nth-of-type(2) { animation-delay: .18s; }
  #mobile-menu.open a:nth-of-type(3) { animation-delay: .24s; }
  #mobile-menu.open a:nth-of-type(4) { animation-delay: .3s; }
  #mobile-menu.open a:nth-of-type(5) { animation-delay: .36s; }
  #mobile-menu.open a:nth-of-type(6) { animation-delay: .42s; }
  #mobile-menu.open a:nth-of-type(7) { animation-delay: .48s; }
  #mobile-menu a:hover { color: var(--honey-soft); }
  #mobile-menu img {
    height: 74px; margin-bottom: 14px;
    opacity: 0; transform: translateY(14px);
  }
  #mobile-menu.open img { animation: menuin .6s ease .05s forwards; }
  .menu-tag {
    margin-top: 22px;
    font-family: var(--display); font-style: italic;
    color: var(--lilac); font-size: .95rem;
    opacity: 0; transform: translateY(14px);
  }
  #mobile-menu.open .menu-tag { animation: menuin .5s ease .56s forwards; }
  @keyframes menuin { to { opacity: 1; transform: none; } }

  @media (max-width: 640px) {
    .nav-links { display: none; }
    #burger { display: block; }
  }

  /* ---------- hero / night sky ---------- */
  header {
    position: relative;
    background:
      radial-gradient(ellipse 80% 60% at 70% 15%, #4a3670 0%, transparent 55%),
      radial-gradient(ellipse 90% 70% at 20% 90%, #3a2b58 0%, transparent 60%),
      linear-gradient(180deg, var(--night-deep) 0%, var(--night) 55%, var(--twilight) 100%);
    color: var(--starlight);
    min-height: 92vh;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden;
  }
  #stars { position: absolute; inset: 0; pointer-events: none; }
  .star {
    position: absolute; border-radius: 50%; background: var(--starlight);
    animation: twinkle 4s ease-in-out infinite;
  }
  @keyframes twinkle {
    0%, 100% { opacity: .25; transform: scale(.85); }
    50% { opacity: 1; transform: scale(1.1); }
  }
  /* four meteors on prime-length loops — the overlap pattern almost never repeats */
  .shooting {
    position: absolute;
    height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--starlight));
    opacity: 0;
    pointer-events: none;
  }
  .shooting.s1 { top: 14%; left: -6%; width: 130px; animation: shoot1 17s ease-in 2s infinite; }
  .shooting.s2 { top: 7%; left: 103%; width: 110px; animation: shoot2 19s ease-in 6s infinite; }
  .shooting.s3 { top: 42%; left: -9%; width: 170px; animation: shoot3 23s ease-in 10s infinite; }
  .shooting.s4 { top: 5%; left: 26%; width: 95px; animation: shoot4 11s ease-in 4s infinite; }
  @keyframes shoot1 {
    0% { opacity: 0; transform: translate(0,0) rotate(16deg); }
    1.3% { opacity: .9; }
    4.7% { opacity: 0; transform: translate(58vw, 17vw) rotate(16deg); }
    100% { opacity: 0; transform: translate(58vw, 17vw) rotate(16deg); }
  }
  @keyframes shoot2 {
    0% { opacity: 0; transform: translate(0,0) rotate(167deg); }
    1.1% { opacity: .8; }
    4% { opacity: 0; transform: translate(-52vw, 12vw) rotate(167deg); }
    100% { opacity: 0; transform: translate(-52vw, 12vw) rotate(167deg); }
  }
  @keyframes shoot3 {
    0% { opacity: 0; transform: translate(0,0) rotate(7deg); }
    .8% { opacity: .75; }
    3.5% { opacity: 0; transform: translate(72vw, 9vw) rotate(7deg); }
    100% { opacity: 0; transform: translate(72vw, 9vw) rotate(7deg); }
  }
  @keyframes shoot4 {
    0% { opacity: 0; transform: translate(0,0) rotate(38deg); }
    2% { opacity: .95; }
    6.4% { opacity: 0; transform: translate(30vw, 23vw) rotate(38deg); }
    100% { opacity: 0; transform: translate(30vw, 23vw) rotate(38deg); }
  }

  /* the moon: aware of you, but shy about it */
  .moon-wrap {
    position: absolute; top: 96px; right: 9%; z-index: 2;
    will-change: transform;
  }
  .moon {
    position: relative;
    width: 92px; height: 92px; border-radius: 50%;
    background: var(--honey-soft);
    /* a true crescent: the bite is mask-cut out of the disc, sky shows through.
       JS moves the cut circle so the hollow cups toward your cursor. */
    -webkit-mask: radial-gradient(circle at calc(50% + var(--ax, -20px)) calc(50% + var(--ay, -11px)),
      transparent calc(var(--cr, 42px) - 1px), #000 var(--cr, 42px));
    mask: radial-gradient(circle at calc(50% + var(--ax, -20px)) calc(50% + var(--ay, -11px)),
      transparent calc(var(--cr, 42px) - 1px), #000 var(--cr, 42px));
    filter: drop-shadow(0 0 22px rgba(246, 223, 174, var(--glow, .5)));
    animation: moonbob 9s ease-in-out infinite;
  }
  @keyframes moonbob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
  }
  @media (max-width: 720px) {
    .moon-wrap { top: 84px; right: 7%; }
    .moon { width: 64px; height: 64px; --cr: 29px; --ax: -14px; --ay: -8px; }
  }

  /* guide moon: a small crescent that walks the right edge as you scroll — it'll see you home */
  #guide-moon {
    position: fixed; right: 16px; top: 12vh; z-index: 40;
    width: 22px; height: 22px; border-radius: 50%;
    box-shadow: inset -7px 4px 0 0 var(--honey-soft), 0 0 14px 2px rgba(246, 223, 174, .35);
    opacity: 0; pointer-events: none; cursor: pointer;
    transition: opacity .6s ease;
  }
  #guide-moon.visible { opacity: .85; pointer-events: auto; }
  #guide-moon:hover { opacity: 1; }
  @media (max-width: 900px) { #guide-moon { display: none; } }

  /* breathe overlay */
  #breathe-overlay {
    position: fixed; inset: 0; z-index: 80; display: none;
    flex-direction: column; align-items: center; justify-content: center; gap: 40px;
    background:
      radial-gradient(ellipse 70% 60% at 50% 30%, #3a2b58 0%, transparent 60%),
      linear-gradient(180deg, var(--night-deep), var(--night));
    color: var(--starlight);
  }
  #breathe-overlay.open { display: flex; }
  #breathe-stars { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
  #breathe-overlay .breath-ring, #breathe-overlay .b-word,
  #breathe-overlay .b-close, #breathe-overlay .b-after { position: relative; z-index: 1; }
  .b-after { display: none; flex-direction: column; align-items: center; gap: 14px; }
  .b-after.show { display: flex; }
  .b-after p {
    font-family: var(--display); font-style: italic;
    color: var(--lilac); font-size: 1.1rem; max-width: 30ch; text-align: center;
  }
  .b-after .row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .breath-ring {
    width: 170px; height: 170px; border-radius: 50%;
    border: 2px solid var(--lilac);
    box-shadow: 0 0 44px rgba(185, 167, 217, .3), inset 0 0 30px rgba(185, 167, 217, .15);
    transition: transform 4s ease-in-out;
  }
  .b-word {
    font-family: var(--display); font-style: italic;
    font-size: 1.5rem; color: var(--honey-soft); min-height: 2em; text-align: center;
  }
  .b-close {
    background: none; border: 1.5px solid var(--lilac); border-radius: 999px;
    color: var(--silver); font-family: var(--body); font-size: .9rem;
    padding: 10px 24px; cursor: pointer; transition: background .25s;
  }
  .b-close:hover { background: rgba(185, 167, 217, .14); }
  .breathe-link {
    display: inline-block; margin-top: 18px;
    color: var(--lilac); font-style: italic; font-size: .95rem;
    text-decoration: underline dotted; text-underline-offset: 4px; cursor: pointer;
    background: none; border: none; font-family: var(--body); padding: 0;
  }
  .breathe-link:hover { color: var(--honey-soft); }
  .breathe-link.on-light { color: var(--twilight); }
  .breathe-link.on-light:hover { color: var(--sage-deep); }

  /* breathe pill: a button whose orb is already breathing */
  .breathe-pill {
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 22px; padding: 12px 22px 12px 14px;
    background: rgba(185, 167, 217, .1);
    border: 1.5px solid rgba(185, 167, 217, .45); border-radius: 999px;
    color: var(--starlight); font-family: var(--body); font-size: .95rem;
    cursor: pointer; transition: background .3s, border-color .3s, transform .25s;
  }
  .breathe-pill:hover {
    background: rgba(185, 167, 217, .18);
    border-color: var(--lilac); transform: translateY(-2px);
  }
  .breathe-pill .orb {
    width: 16px; height: 16px; border-radius: 50%; flex: none;
    background: var(--honey-soft);
    box-shadow: 0 0 12px 3px rgba(246, 223, 174, .5);
    animation: orbbreathe 10s ease-in-out infinite;
  }
  @keyframes orbbreathe {
    0%, 100% { transform: scale(.7); opacity: .75; }
    40% { transform: scale(1.25); opacity: 1; }
    55% { transform: scale(1.25); opacity: 1; }
  }
  .breathe-pill em { font-style: italic; color: var(--honey-soft); }

  /* pause band: an inline breath you can join without clicking anything */
  .quote-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; margin-top: 44px;
  }
  .quote-card {
    background: #fff; border: 1.5px solid #eee5f5; border-radius: var(--radius);
    padding: 34px 30px 28px; position: relative; margin: 0;
    box-shadow: 0 8px 26px rgba(46, 37, 64, .07);
  }
  .quote-card::before {
    content: "\201C"; position: absolute; top: 6px; left: 22px;
    font-family: var(--display); font-size: 4rem; line-height: 1;
    color: var(--honey); opacity: .55;
  }
  .quote-card p {
    font-family: var(--display); font-style: italic; font-weight: 340;
    font-size: 1.02rem; line-height: 1.75; color: var(--ink);
  }
  .quote-card cite {
    display: block; margin-top: 16px; font-style: normal;
    font-size: .85rem; color: var(--sage-deep); font-weight: 700;
  }
  .quote-card.wide { grid-column: 1 / -1; background: linear-gradient(135deg, #fff 0%, #f6f0ff 100%); }
  .pause-band {
    background:
      radial-gradient(ellipse 60% 70% at 50% 110%, rgba(74, 54, 112, .55) 0%, transparent 60%),
      linear-gradient(180deg, var(--night-deep) 0%, var(--night) 100%);
    color: var(--starlight); text-align: center;
  }
  .pause-band .kicker { color: var(--lilac); justify-content: center; }
  .pause-band h2 { color: var(--starlight); max-width: 26ch; margin: 0 auto; }
  .pause-band .lede { margin-left: auto; margin-right: auto; color: var(--silver); }
  .pause-ring-wrap {
    margin: 46px auto 0; display: flex; flex-direction: column;
    align-items: center; gap: 26px;
  }
  .breath-ring.inline {
    width: 130px; height: 130px;
    border-color: rgba(185, 167, 217, .8);
  }
  .pause-note { margin-top: 34px; color: var(--silver); font-size: .95rem; }

  .hero-inner { position: relative; z-index: 5; padding: 120px 24px 90px; }
  .hero-grid {
    display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center;
  }
  .hero-mark { text-align: center; position: relative; }
  #constellation {
    width: min(320px, 82%); height: auto; overflow: visible;
    aspect-ratio: 572 / 724;   /* iOS Safari collapses the SVG to zero height without this */
    animation: markfloat 10s ease-in-out infinite;
  }
  @keyframes markfloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  /* constellation lines draw themselves in */
  .cl {
    fill: none; stroke: rgba(236, 231, 246, .32);
    stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round;
    animation: constdraw 1.7s ease forwards;
  }
  @keyframes constdraw { to { stroke-dashoffset: 0; } }
  /* stars pop in, then twinkle forever */
  .cs { opacity: 0; animation: starpop .6s ease forwards; }
  @keyframes starpop { to { opacity: 1; } }
  .cs circle { fill: var(--starlight); animation: twinkstar 4s ease-in-out infinite; }
  @keyframes twinkstar { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }
  .cs.bright circle {
    fill: var(--honey-soft);
    filter: drop-shadow(0 0 6px rgba(246, 223, 174, .85));
  }
  .cs.bright line { stroke: rgba(246, 223, 174, .5); stroke-width: 1; }
  /* the figure in the stars: ghosts in on hover, or shimmers by itself now and then */
  .const-ghost {
    position: absolute; inset: 0; margin: auto;
    width: min(300px, 78%); pointer-events: none;
    opacity: 0; transition: opacity 1.4s ease;
    animation: ghostdrift 18s ease-in-out 6s infinite;
  }
  .hero-mark:hover .const-ghost { animation: none; opacity: .18; }
  @keyframes ghostdrift {
    0%, 55%, 100% { opacity: 0; }
    68% { opacity: .1; }
    82% { opacity: 0; }
  }
  @media (max-width: 800px) {
    .hero-grid { grid-template-columns: 1fr; gap: 0; }
    .hero-mark { order: -1; margin: 0 0 40px; }
    #constellation { width: min(210px, 60%); }
    .const-ghost { width: min(198px, 56%); }
    .hero-inner { padding: 116px 22px 84px; }
    .hero-kicker { letter-spacing: .15em; font-size: .78rem; margin-bottom: 22px; }
    h1 { line-height: 1.08; }
    .hero-tag { margin-top: 20px; }
    .hero-sub { margin-top: 22px; line-height: 1.75; }
    .hero-ctas { margin-top: 36px; gap: 12px; }
    .hero-ctas .btn { width: 100%; text-align: center; }
    .breathe-pill { margin-top: 26px; }
    section { padding: 72px 0; }
    h2 { line-height: 1.18; }
  }
  .hero-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .85rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--lilac); margin-bottom: 26px;
  }
  .hero-kicker::before { content: "✦"; color: var(--honey); font-size: .8rem; }
  h1 {
    font-size: clamp(3rem, 8vw, 5.6rem);
    font-weight: 350;
    letter-spacing: -.01em;
    max-width: 12ch;
  }
  h1 em {
    font-style: italic; font-weight: 400;
    color: var(--honey-soft);
  }
  .hero-tag {
    font-family: var(--display); font-style: italic;
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    color: var(--lilac); margin-top: 22px;
  }
  .hero-sub {
    max-width: 46ch; margin-top: 18px; color: var(--silver); font-size: 1.05rem;
  }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

  .btn {
    display: inline-block; text-decoration: none; cursor: pointer;
    font-family: var(--body); font-weight: 700; font-size: .98rem;
    padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
    transition: transform .22s ease, box-shadow .22s ease, background .22s;
  }
  .btn:hover { transform: translateY(-3px); }
  .btn-honey {
    background: var(--honey); color: var(--night-deep);
    box-shadow: 0 6px 24px rgba(233, 180, 92, .35);
  }
  .btn-honey:hover { box-shadow: 0 10px 30px rgba(233, 180, 92, .5); }
  .btn-ghost {
    border-color: var(--lilac); color: var(--starlight); background: transparent;
  }
  .btn-ghost:hover { background: rgba(185, 167, 217, .14); }

  /* wavy transition night → cream */
  .wave { display: block; width: 100%; height: 90px; margin-top: auto; position: relative; z-index: 4; }

  /* ---------- shared section styling ---------- */
  section { padding: 88px 0; }
  .kicker {
    font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--sage-deep); font-weight: 700; margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .kicker::before { content: "✦"; color: var(--honey); }
  h2 { font-size: clamp(2rem, 4.6vw, 3rem); max-width: 22ch; }
  h2 .squig { position: relative; white-space: nowrap; }
  h2 .squig svg {
    position: absolute; left: 0; bottom: -10px; width: 100%; height: 12px;
  }
  .lede { max-width: 58ch; color: var(--ink-soft); font-size: 1.08rem; margin-top: 18px; }

  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* ---------- for the ones who give ---------- */
  .give-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px; margin-top: 48px;
  }
  .give-card {
    background: #fff; border-radius: var(--radius);
    padding: 30px 26px;
    border: 1.5px solid #eee5f5;
    box-shadow: 0 4px 18px rgba(46, 37, 64, .05);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .give-card:nth-child(odd) { transform: rotate(-.6deg); }
  .give-card:nth-child(even) { transform: rotate(.5deg); }
  .give-card:hover { transform: rotate(0) translateY(-6px); box-shadow: 0 14px 30px rgba(46, 37, 64, .1); }
  .give-emoji { font-size: 1.7rem; display: block; margin-bottom: 12px; }
  .give-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
  .give-card p { color: var(--ink-soft); font-size: .95rem; }
  .pour-line {
    margin-top: 52px; text-align: center;
    font-family: var(--display); font-style: italic;
    font-size: clamp(1.4rem, 3.4vw, 2rem); color: var(--twilight);
  }
  .pour-line span { color: var(--sage-deep); }

  /* ---------- classes ---------- */
  .classes-band { background: var(--cream-warm); }
  .class-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px; margin-top: 48px;
  }
  .class-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1.5px solid #ece2d0;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .class-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(46, 37, 64, .12); }
  .class-head {
    padding: 22px 26px 18px;
    color: var(--starlight);
  }
  .class-head.h-hatha { background: linear-gradient(135deg, var(--twilight), #5a4488); }
  .class-head.h-resto { background: linear-gradient(135deg, var(--sage-deep), var(--sage)); }
  .class-head.h-yin   { background: linear-gradient(135deg, var(--night), var(--twilight)); }
  .class-head .phase { font-size: 1.5rem; display: block; margin-bottom: 6px; }
  .class-head h3 { font-size: 1.45rem; }
  .class-body { padding: 20px 26px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
  .class-body p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
  .price {
    align-self: flex-start;
    font-weight: 700; font-size: .9rem; color: var(--sage-deep);
    border: 1.5px dashed var(--sage); border-radius: 999px; padding: 5px 14px;
  }
  .feature-class {
    margin-top: 44px; padding: 30px 32px;
    background: linear-gradient(135deg, #fff 0%, #fdf4e2 100%);
    border: 2px solid var(--honey); border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(233, 180, 92, .22);
    display: flex; flex-direction: column; gap: 12px;
  }
  .fc-badge {
    align-self: flex-start;
    background: var(--honey); color: var(--night-deep);
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    border-radius: 999px; padding: 5px 14px;
  }
  .feature-class h3 { font-size: 1.7rem; }
  .feature-class p { color: var(--ink-soft); max-width: 62ch; }
  .video-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px; margin-top: 44px;
  }
  .video-slot {
    aspect-ratio: 16 / 9; border-radius: var(--radius);
    border: 2px dashed rgba(185, 167, 217, .5);
    background:
      radial-gradient(circle at 50% 45%, rgba(233, 180, 92, .14), transparent 55%),
      linear-gradient(160deg, var(--twilight), var(--night));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; color: var(--lilac); text-align: center; padding: 16px;
  }
  .video-slot .play {
    width: 52px; height: 52px; border-radius: 50%;
    border: 2px solid var(--honey-soft); color: var(--honey-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; padding-left: 4px;
  }
  .video-slot em { font-family: var(--display); font-size: 1rem; }
  .bio-slot {
    margin-top: 24px; border: 2px dashed rgba(125, 155, 118, .5);
    border-radius: var(--radius); padding: 24px 28px;
    background: rgba(125, 155, 118, .07);
    font-family: var(--display); font-style: italic;
    color: var(--sage-deep); font-size: 1.05rem; max-width: 60ch;
  }
  .breath-row {
    margin-top: 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px;
  }
  .breath-card {
    border-radius: var(--radius); padding: 24px 26px;
    background: linear-gradient(135deg, #fff 0%, #f6f0ff 100%);
    border: 1.5px solid #e6dcf3;
  }
  .breath-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
  .breath-card p { color: var(--ink-soft); font-size: .95rem; }

  .timetable {
    margin-top: 44px; background: #fff; border: 1.5px solid #ece2d0;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 8px 26px rgba(46, 37, 64, .08);
  }
  .timetable h3 {
    background: linear-gradient(135deg, var(--twilight), #5a4488);
    color: var(--starlight); padding: 18px 26px; font-size: 1.3rem;
  }
  .timetable table { width: 100%; border-collapse: collapse; }
  .timetable td {
    padding: 15px 26px; border-top: 1px solid #f0ead9;
    font-size: .95rem; vertical-align: top;
  }
  .timetable td:first-child { font-weight: 700; white-space: nowrap; }
  .timetable .tt-price { font-weight: 700; color: var(--sage-deep); white-space: nowrap; }
  .timetable .tt-note { padding: 14px 26px 18px; color: var(--ink-soft); font-size: .85rem; }
  @media (max-width: 640px) {
    .timetable td { display: block; border-top: none; padding: 3px 22px; }
    .timetable tr { display: block; border-top: 1px solid #f0ead9; padding: 12px 0; }
  }
  .corp-proof {
    margin-top: 44px; background: #fff; border: 1.5px solid #ece2d0;
    border-radius: var(--radius); padding: 30px 32px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
    box-shadow: 0 8px 26px rgba(46, 37, 64, .08);
  }
  @media (max-width: 720px) { .corp-proof { grid-template-columns: 1fr; padding: 24px 22px; } }
  .corp-proof h3 { font-size: 1.25rem; margin-bottom: 10px; }
  .corp-proof .client-line { font-size: 1.05rem; }
  .corp-proof .client-line strong { color: var(--twilight); }
  .corp-proof p { color: var(--ink-soft); font-size: .95rem; margin-top: 8px; }
  .insta-slot {
    aspect-ratio: 4 / 3; border-radius: var(--radius);
    border: 2px dashed rgba(125, 155, 118, .55);
    background: rgba(125, 155, 118, .06);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; text-align: center; color: var(--sage-deep); padding: 18px;
  }
  .insta-slot .ico { font-size: 1.6rem; }
  .insta-slot em { font-family: var(--display); font-size: 1rem; }
  .insta-slot small { font-size: .8rem; opacity: .85; max-width: 30ch; }
  .schedule-note {
    margin-top: 44px; border: 2px dashed var(--lilac); border-radius: var(--radius);
    padding: 26px 30px; background: rgba(185, 167, 217, .1);
    display: flex; gap: 16px; align-items: flex-start;
  }
  .schedule-note .tick { font-size: 1.4rem; }
  .schedule-note strong { font-family: var(--display); font-weight: 500; font-size: 1.1rem; }
  .schedule-note p { color: var(--ink-soft); font-size: .95rem; margin-top: 4px; }

  /* ---------- 1:1 ---------- */
  .oneone { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
  @media (max-width: 800px) { .oneone { grid-template-columns: 1fr; } }
  .photo-frame {
    border-radius: var(--radius); overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 18px 44px rgba(46, 37, 64, .2);
    transform: rotate(1.2deg);
    transition: transform .3s ease;
  }
  .photo-frame:hover { transform: rotate(0); }
  .photo-frame img { display: block; width: 100%; height: auto; }
  .photo-slot {
    aspect-ratio: 4 / 5; border-radius: var(--radius);
    background:
      radial-gradient(circle at 30% 25%, rgba(233,180,92,.18), transparent 45%),
      linear-gradient(160deg, var(--twilight), var(--night));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--lilac); gap: 10px; text-align: center; padding: 20px;
    border: 2px dashed rgba(185, 167, 217, .5);
  }
  .photo-slot .ph-star { font-size: 1.6rem; color: var(--honey-soft); }
  .photo-slot em { font-family: var(--display); font-size: 1.05rem; }
  .photo-slot small { color: var(--silver); opacity: .8; max-width: 26ch; }

  /* ---------- story ---------- */
  .story-band {
    background:
      radial-gradient(ellipse 70% 50% at 85% 10%, rgba(74, 54, 112, .5) 0%, transparent 55%),
      linear-gradient(180deg, var(--twilight) 0%, var(--night) 70%, var(--night-deep) 100%);
    color: var(--starlight);
    position: relative; overflow: hidden;
  }
  .story-watermark {
    position: absolute; right: -60px; top: 50%; transform: translateY(-50%) rotate(6deg);
    width: min(440px, 55vw); opacity: .1; pointer-events: none;
  }
  .story-band .kicker { color: var(--lilac); }
  .story-band h2 { color: var(--starlight); }
  .story-quote {
    margin-top: 40px; max-width: 62ch;
    font-family: var(--display); font-weight: 340;
    font-size: clamp(1.2rem, 2.6vw, 1.5rem); line-height: 1.6;
    color: var(--starlight);
  }
  .story-quote p + p { margin-top: 22px; }
  .story-quote .glow { color: var(--honey-soft); font-style: italic; }
  .story-sign {
    margin-top: 34px; font-family: var(--display); font-style: italic;
    color: var(--lilac); font-size: 1.1rem;
  }

  /* ---------- mailing list ---------- */
  .list-band { background: var(--cream-warm); }
  .list-card {
    background: #fff; border-radius: 28px; border: 1.5px solid #ece2d0;
    padding: 48px 44px; margin-top: 44px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
    box-shadow: 0 10px 40px rgba(46, 37, 64, .07);
  }
  @media (max-width: 800px) { .list-card { grid-template-columns: 1fr; padding: 34px 26px; } }
  .list-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
  .list-card > div > p { color: var(--ink-soft); }
  .field { margin-bottom: 14px; }
  .field label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 5px; letter-spacing: .02em; }
  .field input, .field textarea, .field select {
    width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
    padding: 12px 16px; border-radius: 14px; border: 1.5px solid #ddd2ea;
    background: var(--cream); outline: none; transition: border-color .2s, box-shadow .2s;
  }
  .field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--twilight); box-shadow: 0 0 0 3px rgba(67, 48, 107, .12);
  }
  .form-msg { font-size: .92rem; margin-top: 10px; min-height: 1.4em; }
  .form-msg.ok { color: var(--sage-deep); font-weight: 700; }
  .form-msg.err { color: #a04545; }

  /* ---------- contact ---------- */
  .contact-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px; margin-top: 44px;
  }
  .contact-card {
    background: #fff; border: 1.5px solid #eee5f5; border-radius: var(--radius);
    padding: 28px 26px; text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .contact-card:hover { transform: translateY(-5px); box-shadow: 0 14px 28px rgba(46, 37, 64, .1); }
  .contact-card .c-ico { font-size: 1.6rem; display: block; margin-bottom: 10px; }
  .contact-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
  .contact-card a { color: var(--twilight); font-weight: 700; text-decoration: none; }
  .contact-card a:hover { color: var(--sage-deep); }

  /* ---------- footer ---------- */
  footer {
    background: linear-gradient(180deg, var(--night) 0%, var(--night-deep) 100%);
    color: var(--silver); text-align: center;
    padding: 72px 24px 40px; position: relative; overflow: hidden;
  }
  .foot-moon {
    font-family: var(--display); font-style: italic; font-size: 1.5rem;
    color: var(--starlight); margin-bottom: 10px;
  }
  .foot-line { font-size: .95rem; color: var(--lilac); }
  .foot-note {
    margin-top: 34px; font-size: .8rem; color: rgba(207, 200, 222, .55);
    max-width: 52ch; margin-left: auto; margin-right: auto;
  }

  /* ---------- feedback widget ---------- */
  #fb-btn {
    position: fixed; right: 20px; bottom: 20px; z-index: 60;
    display: inline-flex; align-items: center; line-height: 1;
    background: var(--night); color: var(--honey-soft);
    border: 2px solid var(--honey); border-radius: 999px;
    font-family: var(--body); font-weight: 700; font-size: .9rem;
    padding: 13px 20px; cursor: pointer;
    box-shadow: 0 8px 24px rgba(26, 17, 41, .4);
    transition: transform .2s ease;
  }
  #fb-btn:hover { transform: translateY(-3px); }
  .fb-label {
    display: inline-block; white-space: nowrap; overflow: hidden;
    max-width: 130px;
    transition: max-width .45s ease, opacity .3s ease;
  }
  /* after a couple of screens the pill folds down to just the pencil */
  #fb-btn.mini .fb-label { max-width: 0; opacity: 0; }
  #fb-btn.mini { padding: 12px 15px; }
  #fb-btn.mini:hover .fb-label, #fb-btn.mini:focus .fb-label { max-width: 130px; opacity: 1; }
  #fb-btn.mini:hover, #fb-btn.mini:focus { padding: 12px 20px; }
  #fb-panel {
    position: fixed; right: 20px; bottom: 78px; z-index: 60;
    width: min(340px, calc(100vw - 40px));
    background: #fff; border-radius: 18px; border: 1.5px solid #ddd2ea;
    box-shadow: 0 18px 50px rgba(26, 17, 41, .3);
    padding: 22px; display: none;
  }
  #fb-panel.open { display: block; }
  #fb-panel h3 { font-size: 1.15rem; margin-bottom: 4px; }
  #fb-panel .fb-sub { font-size: .85rem; color: var(--ink-soft); margin-bottom: 12px; }
  #fb-panel textarea {
    width: 100%; min-height: 110px; resize: vertical;
    font-family: var(--body); font-size: .95rem; padding: 10px 12px;
    border: 1.5px solid #ddd2ea; border-radius: 12px; background: var(--cream); outline: none;
  }
  #fb-panel textarea:focus { border-color: var(--twilight); }
  #fb-panel .fb-row { display: flex; gap: 10px; align-items: center; margin-top: 12px; }
  .fb-attach-btn {
    background: none; border: none; cursor: pointer; padding: 0;
    font-family: var(--body); font-size: .85rem; color: var(--twilight);
    text-decoration: underline dotted; text-underline-offset: 3px; margin-top: 10px;
  }
  .fb-attach-btn:hover { color: var(--sage-deep); }
  .fb-preview {
    display: none; align-items: center; gap: 10px; margin-top: 10px;
    background: var(--cream); border: 1.5px solid #ddd2ea; border-radius: 10px; padding: 6px 10px;
  }
  .fb-preview.show { display: flex; }
  .fb-preview img { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; }
  .fb-preview span { font-size: .8rem; color: var(--ink-soft); flex: 1; }
  .fb-preview button {
    background: none; border: none; cursor: pointer; font-size: 1rem; color: #a04545;
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
  }

/* ---------- multi-page additions ---------- */
.offer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px; margin-top: 44px;
}
a.offer-card {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 1.5px solid #ece2d0; border-radius: var(--radius);
  padding: 28px 26px; text-decoration: none; color: var(--ink);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
a.offer-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(46, 37, 64, .12); border-color: var(--honey); }
a.offer-card h3 { font-family: var(--display); font-size: 1.3rem; }
a.offer-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.offer-go { color: var(--twilight); font-weight: 700; font-size: .9rem; margin-top: 6px; }
a.offer-card:hover .offer-go { color: var(--sage-deep); }

.page-hero {
  position: relative;
  min-height: 0;   /* cancel the homepage hero's 92vh on the bare header selector */
  background:
    radial-gradient(ellipse 80% 60% at 70% 15%, #4a3670 0%, transparent 55%),
    linear-gradient(180deg, var(--night-deep) 0%, var(--night) 60%, var(--twilight) 100%);
  color: var(--starlight);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 5; padding: 138px 24px 48px; }
.page-title {
  font-family: var(--display); font-weight: 350;
  font-size: clamp(2.3rem, 5.5vw, 3.6rem); line-height: 1.12;
  max-width: 18ch; margin-top: 4px; color: var(--starlight);
}
.page-hero .hero-sub { margin-top: 16px; }
.explore-band { background: var(--cream-warm); padding: 64px 0; }
@media (max-width: 640px) {
  .page-hero-inner { padding: 124px 22px 52px; }
}
