/* ==========================================================================
   AURORA — field notes from the far dark
   Deep-space palette: near-black indigo base, soft nebula (magenta / violet
   / cyan), one warm gold "distant star" accent used sparingly.
   ========================================================================== */

:root{
  --black:        #050508;
  --indigo-deep:  #0a0a16;
  --indigo:       #12122a;
  --violet:       #a99be6;
  --magenta:      #d998b8;
  --cyan:         #8fd6d1;
  --gold:         #f0d6a0;
  --gold-dim:     #c9ac74;
  --ink:          #eeebf5;
  --ink-dim:      #b7b3cc;
  --ink-faint:    #7a768f;
  --line:         rgba(238,235,245,0.14);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Jost', -apple-system, sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', 'Cascadia Code', Menlo, monospace;

  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:       cubic-bezier(0.22, 0.61, 0.36, 1);

  color-scheme: dark;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }

html{
  background: var(--black);
  scroll-behavior: auto;
}

html, body{
  height: 100%;
}

body{
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none), (pointer: coarse){
  body{ cursor: auto; }
}

::selection{
  background: rgba(217, 152, 184, 0.35);
  color: var(--ink);
}

/* custom scrollbar */
::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: var(--black); }
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, var(--violet), var(--magenta));
  border-radius: 6px;
  border: 2px solid var(--black);
}
html{ scrollbar-width: thin; scrollbar-color: var(--violet) var(--black); }

a{ color: inherit; }

/* ---------------------------------------------------------------------- */
/* preloader                                                              */
/* ---------------------------------------------------------------------- */

.preloader{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: var(--black);
  transition: opacity 1.1s var(--ease-cinematic), visibility 1.1s var(--ease-cinematic);
}

.preloader__mark{
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  color: var(--ink);
  opacity: 0.85;
  animation: preloaderPulse 2.6s ease-in-out infinite;
}

.preloader__status{
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.preloader__bar{
  width: min(220px, 40vw);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.preloader__bar span{
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  transition: width 1.4s var(--ease-soft);
}

@keyframes preloaderPulse{
  0%, 100%{ opacity: 0.55; }
  50%{ opacity: 1; }
}

body.is-loaded .preloader{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ---------------------------------------------------------------------- */
/* backdrop layers                                                        */
/* ---------------------------------------------------------------------- */

#scene{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: -3;
  background: var(--black);
}

.vignette{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(2,2,6,0.55) 78%, rgba(2,2,6,0.92) 100%);
}

.grain{
  position: fixed;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  animation: grainShift 8s steps(8) infinite;
}

@keyframes grainShift{
  0%   { transform: translate3d(0,0,0); }
  12%  { transform: translate3d(-2%,2%,0); }
  25%  { transform: translate3d(3%,-1%,0); }
  37%  { transform: translate3d(-1%,-3%,0); }
  50%  { transform: translate3d(2%,3%,0); }
  62%  { transform: translate3d(-3%,1%,0); }
  75%  { transform: translate3d(1%,-2%,0); }
  87%  { transform: translate3d(-2%,-1%,0); }
  100% { transform: translate3d(0,0,0); }
}

/* ---------------------------------------------------------------------- */
/* custom cursor                                                          */
/* ---------------------------------------------------------------------- */

.cursor-dot, .cursor-ring{
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 150;
  transform: translate3d(-50%,-50%,0);
  will-change: transform;
}
.cursor-dot{
  width: 5px; height: 5px;
  background: var(--gold);
  box-shadow: 0 0 8px 1px rgba(240, 214, 160, 0.7);
}
.cursor-ring{
  width: 34px; height: 34px;
  border: 1px solid rgba(238,235,245,0.5);
  transition: width .35s var(--ease-soft), height .35s var(--ease-soft), border-color .35s var(--ease-soft), opacity .35s;
}
.cursor-ring.is-active{
  width: 54px; height: 54px;
  border-color: var(--gold);
}
@media (hover: none), (pointer: coarse){
  .cursor-dot, .cursor-ring{ display: none; }
}

/* ---------------------------------------------------------------------- */
/* gallery link + progress rail                                          */
/* ---------------------------------------------------------------------- */

.gallery-link{
  position: fixed;
  top: 1.6rem;
  left: 1.6rem;
  z-index: 100;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-faint);
  padding: 0.6em 0.9em;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(10,10,22,0.25);
  transition: color .4s var(--ease-soft), border-color .4s var(--ease-soft), background .4s var(--ease-soft);
}
.gallery-link:hover{
  color: var(--gold);
  border-color: rgba(240, 214, 160, 0.5);
  background: rgba(10,10,22,0.5);
}

.progress-rail{
  position: fixed;
  top: 0; right: 0;
  width: 2px;
  height: 100vh;
  z-index: 100;
  background: rgba(238,235,245,0.06);
}
.progress-fill{
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--cyan), var(--violet), var(--gold));
  box-shadow: 0 0 12px rgba(169,155,230,0.5);
}

/* ---------------------------------------------------------------------- */
/* type & layout primitives                                              */
/* ---------------------------------------------------------------------- */

main{ position: relative; z-index: 1; }

section{
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 6vw, 6rem);
}

.eyebrow{
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
}

/* ---------------------------------------------------------------------- */
/* hero                                                                   */
/* ---------------------------------------------------------------------- */

.hero{
  height: 100svh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

.hero__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.6rem);
}

.hero .eyebrow{ margin-bottom: 0.4rem; }

.hero__title{
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 17vw, 11.5rem);
  letter-spacing: 0.14em;
  padding-left: 0.14em; /* optically re-center the tracked text */
  line-height: 1;
  color: var(--ink);
  text-shadow: 0 0 60px rgba(169,155,230,0.35), 0 0 120px rgba(217,152,184,0.15);
}

.hero__sub{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}

.scrollcue{
  position: absolute;
  bottom: clamp(1.6rem, 4vw, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.scrollcue__line{
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, var(--ink-faint) 40%, var(--gold));
  position: relative;
  overflow: hidden;
}
.scrollcue__line::after{
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--ink));
  animation: cueTravel 2.6s var(--ease-soft) infinite;
}
@keyframes cueTravel{
  0%{ top: -100%; }
  60%, 100%{ top: 100%; }
}
.scrollcue__label{
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------------------------------------------------------------------- */
/* intro                                                                  */
/* ---------------------------------------------------------------------- */

.intro{
  display: flex;
  justify-content: center;
  padding-top: clamp(6rem, 16vw, 11rem);
  padding-bottom: clamp(6rem, 16vw, 11rem);
}
.intro__text{
  max-width: 30ch;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.6;
  color: var(--ink-dim);
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------------------- */
/* transmissions                                                         */
/* ---------------------------------------------------------------------- */

.transmission{ padding-top: clamp(4rem, 10vw, 7rem); padding-bottom: clamp(4rem, 10vw, 7rem); }

.transmission__grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.transmission__grid--reverse{ direction: rtl; }
.transmission__grid--reverse > *{ direction: ltr; }
.transmission__grid--center{
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 720px;
}

.transmission__head{ display: flex; flex-direction: column; gap: 0.6rem; }
.transmission__index{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
}
.transmission__title{
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  letter-spacing: 0.01em;
  line-height: 1.08;
  color: var(--ink);
}

.transmission__body p{
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  color: var(--ink-dim);
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin-bottom: 1.8rem;
}
.transmission__grid--center .transmission__body p{ margin-left: auto; margin-right: auto; }

.readout{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  max-width: 46ch;
}
.transmission__grid--center .readout{ margin: 0 auto; }
.readout__row{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 0.15rem 0;
  position: relative;
}
.readout__row dt{
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}
.readout__row dd{ color: var(--cyan); text-align: right; }

/* ---------------------------------------------------------------------- */
/* field notes / log                                                     */
/* ---------------------------------------------------------------------- */

.log{
  max-width: 760px;
  margin: 0 auto;
  padding-top: clamp(6rem, 14vw, 9rem);
  padding-bottom: clamp(6rem, 14vw, 9rem);
}
.log .eyebrow{ display: block; margin-bottom: 2.4rem; }

.log__list{ list-style: none; display: flex; flex-direction: column; }
.log__row{
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.15rem 0.2rem;
  border-top: 1px solid var(--line);
  transition: padding-left .5s var(--ease-soft), border-color .5s var(--ease-soft);
}
.log__row:last-child{ border-bottom: 1px solid var(--line); }
.log__row:hover{
  padding-left: 0.9rem;
  border-color: rgba(240,214,160,0.35);
}
.log__num{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-dim);
  flex-shrink: 0;
}
.log__text{
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: var(--ink-dim);
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------------------- */
/* closing                                                                */
/* ---------------------------------------------------------------------- */

.closing{
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.4rem;
  padding-bottom: clamp(6rem, 14vw, 10rem);
}
.closing__mark{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.closing__title{
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.15;
  color: var(--ink);
}
.closing__sub{
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

/* ---------------------------------------------------------------------- */
/* reveal defaults (JS adds .is-visible via GSAP / IO) — CSS fallback     */
/* ---------------------------------------------------------------------- */

.reveal{ opacity: 0; }
body.no-js .reveal{ opacity: 1; }

/* ---------------------------------------------------------------------- */
/* responsive                                                             */
/* ---------------------------------------------------------------------- */

@media (max-width: 780px){
  .transmission__grid{ grid-template-columns: 1fr; text-align: left; }
  .transmission__grid--reverse{ direction: ltr; }
  .transmission__grid--center{ text-align: center; }
  .readout__row dd{ text-align: right; }
  .progress-rail{ width: 2px; }
  .gallery-link{ top: 1rem; left: 1rem; font-size: 0.62rem; padding: 0.5em 0.75em; }
}

@media (max-width: 480px){
  .hero__title{ letter-spacing: 0.08em; padding-left: 0.08em; }
  section{ padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ---------------------------------------------------------------------- */
/* reduced motion                                                         */
/* ---------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce){
  .grain{ animation: none; }
  .scrollcue__line::after{ animation: none; opacity: 0.5; }
  .preloader__mark{ animation: none; opacity: 0.9; }
  html{ scroll-behavior: auto; }
}

/* ==========================================================================
   SITE COMPONENTS — meditation & sound healing center
   ========================================================================== */

/* ---- navigation ---- */

.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.2rem, 4vw, 2.4rem);
  pointer-events: none;
}
.site-nav > *{ pointer-events: auto; }

.nav-brand{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.42em;
  text-decoration: none;
  color: var(--ink);
  padding: 0.5em 0.9em;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(10,10,22,0.25);
  transition: color .4s var(--ease-soft);
}
.nav-brand:hover{ color: var(--gold); }

.nav-toggle{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 52px; height: 52px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10,10,22,0.35);
  backdrop-filter: blur(6px);
  cursor: none;
  transition: border-color .4s var(--ease-soft);
}
@media (hover: none), (pointer: coarse){ .nav-toggle{ cursor: pointer; } }
.nav-toggle span{
  display: block;
  width: 20px; height: 1px;
  background: var(--ink);
  transition: transform .45s var(--ease-cinematic), opacity .3s;
}
.nav-toggle:hover{ border-color: rgba(240,214,160,0.5); }
body.nav-open .nav-toggle span:first-child{ transform: translateY(4px) rotate(45deg); }
body.nav-open .nav-toggle span:last-child{ transform: translateY(-4px) rotate(-45deg); }

.nav-overlay{
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: rgba(5,5,8,0.9);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s var(--ease-cinematic), visibility .6s;
}
body.nav-open .nav-overlay{ opacity: 1; visibility: visible; }
body.nav-open{ overflow: hidden; }

.nav-overlay__links{
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 220px));
  gap: 0.4rem clamp(2rem, 8vw, 6rem);
  list-style: none;
  text-align: center;
}
.nav-overlay__links a{
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink-dim);
  padding: 0.22em 0;
  transition: color .35s var(--ease-soft), letter-spacing .35s var(--ease-soft);
}
.nav-overlay__links a:hover,
.nav-overlay__links a[aria-current="page"]{ color: var(--gold); }

.nav-overlay__meta{
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  line-height: 2.1;
}

/* ---- buttons ---- */

.btn{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(238,235,245,0.35);
  border-radius: 999px;
  padding: 0.95em 2.1em;
  cursor: none;
  transition: color .4s var(--ease-soft), border-color .4s var(--ease-soft),
              background .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
@media (hover: none), (pointer: coarse){ .btn{ cursor: pointer; } }
.btn:hover{
  color: var(--gold);
  border-color: rgba(240,214,160,0.65);
  box-shadow: 0 0 24px rgba(240,214,160,0.12);
}
.btn--solid{
  background: linear-gradient(120deg, rgba(240,214,160,0.16), rgba(169,155,230,0.16));
  border-color: rgba(240,214,160,0.45);
}
.btn-row{ display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---- generic layout helpers ---- */

.wrap{ max-width: 1200px; margin: 0 auto; }
.wrap--narrow{ max-width: 760px; }

.section-head{
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: clamp(2.4rem, 6vw, 4rem);
  text-align: center;
  align-items: center;
}
.section-head--left{ text-align: left; align-items: flex-start; }
.section-title{
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  color: var(--ink);
}
.section-sub{
  max-width: 56ch;
  color: var(--ink-dim);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.85;
}

.prose p{
  max-width: 62ch;
  color: var(--ink-dim);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.9;
  margin: 0 auto 1.6rem;
}
.prose em{ font-family: var(--font-display); font-size: 1.1em; color: var(--ink); }

/* ---- page hero variant ---- */

.hero--page{
  height: auto;
  min-height: 62svh;
  padding-top: 8rem;
}
.hero--page .hero__title{
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  letter-spacing: 0.1em;
  padding-left: 0.1em;
}

/* ---- cards ---- */

.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.grid--tight{ grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }

.card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10,10,22,0.42);
  backdrop-filter: blur(8px);
  transition: border-color .5s var(--ease-soft), transform .5s var(--ease-soft),
              box-shadow .5s var(--ease-soft);
}
.card:hover{
  border-color: rgba(240,214,160,0.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.card__glyph{
  font-size: 1.5rem;
  color: var(--gold);
  filter: saturate(0.4) brightness(1.1);
}
.card__kicker{
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.card__title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--ink);
}
.card__text{
  color: var(--ink-dim);
  font-size: 0.93rem;
  line-height: 1.8;
  flex-grow: 1;
}
.card__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}
.card .btn{ align-self: flex-start; margin-top: 0.4rem; }

.card--featured{
  border-color: rgba(240,214,160,0.4);
  background: linear-gradient(160deg, rgba(240,214,160,0.07), rgba(10,10,22,0.5));
}

/* ---- chips & filters ---- */

.chip-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.chip{
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6em 1.3em;
  cursor: none;
  transition: color .35s, border-color .35s, background .35s;
}
@media (hover: none), (pointer: coarse){ .chip{ cursor: pointer; } }
.chip:hover{ color: var(--ink); border-color: rgba(238,235,245,0.4); }
.chip.is-active{
  color: var(--gold);
  border-color: rgba(240,214,160,0.55);
  background: rgba(240,214,160,0.07);
}

/* ---- schedule rows (extends .log) ---- */

.schedule .log__row{ flex-wrap: wrap; row-gap: 0.3rem; }
.schedule .log__day{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  flex: 0 0 6.5rem;
}
.schedule .log__text{ flex: 1 1 240px; }
.schedule .log__tags{
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
}
.schedule .log__cta{
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  transition: color .35s, border-color .35s;
}
.schedule .log__cta:hover{ color: var(--gold); border-color: rgba(240,214,160,0.5); }

/* ---- FAQ accordion ---- */

.faq-item{
  border-top: 1px solid var(--line);
}
.faq-item:last-child{ border-bottom: 1px solid var(--line); }
.faq-item summary{
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.3rem 0.2rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: none;
  transition: color .35s, padding-left .45s var(--ease-soft);
}
@media (hover: none), (pointer: coarse){ .faq-item summary{ cursor: pointer; } }
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  font-family: var(--font-mono);
  color: var(--gold-dim);
  transition: transform .4s var(--ease-soft);
  flex-shrink: 0;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item summary:hover{ color: var(--gold); padding-left: 0.7rem; }
.faq-item p{
  max-width: 60ch;
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.85;
  padding: 0 0.2rem 1.5rem;
}

/* ---- forms ---- */

.form{
  display: grid;
  gap: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
}
.form__row{ display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px){ .form__row{ grid-template-columns: 1fr; } }

.field{
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field label{
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.field input, .field select, .field textarea{
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(10,10,22,0.45);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85em 1em;
  cursor: none;
  transition: border-color .35s;
}
@media (hover: none), (pointer: coarse){
  .field input, .field select, .field textarea{ cursor: auto; }
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: rgba(240,214,160,0.55);
}
.field select option{ background: var(--indigo-deep); }
.form .btn{ justify-self: center; margin-top: 0.4rem; }
.form-note{
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

/* ---- breathing guide ---- */

.breathe{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.4rem;
  padding-top: clamp(5rem, 12vw, 8rem);
  padding-bottom: clamp(5rem, 12vw, 8rem);
}
.breathe__stage{
  position: relative;
  width: clamp(180px, 34vw, 260px);
  height: clamp(180px, 34vw, 260px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.breathe__circle{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(169,155,230,0.5);
  background: radial-gradient(circle, rgba(169,155,230,0.14) 0%, rgba(169,155,230,0.03) 60%, transparent 75%);
  box-shadow: 0 0 60px rgba(169,155,230,0.2), inset 0 0 40px rgba(217,152,184,0.1);
  transform: scale(1);
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
}
.breathe__label{
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
}

/* ---- meditation timer ---- */

.timer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.timer__display{
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.4rem, 10vw, 5.6rem);
  letter-spacing: 0.08em;
  color: var(--ink);
  text-shadow: 0 0 50px rgba(169,155,230,0.35);
  font-variant-numeric: tabular-nums;
}
.timer__controls{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: end;
}

/* ---- sound bowls ---- */

.bowls{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}
.bowl{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 1.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10,10,22,0.42);
  cursor: none;
  transition: border-color .4s, transform .4s var(--ease-soft);
}
@media (hover: none), (pointer: coarse){ .bowl{ cursor: pointer; } }
.bowl:hover{ border-color: rgba(143,214,209,0.45); transform: translateY(-3px); }
.bowl__ring{
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  position: relative;
  transition: box-shadow .4s;
}
.bowl__ring::after{
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(143,214,209,0.4);
}
.bowl.is-ringing .bowl__ring{
  box-shadow: 0 0 34px rgba(143,214,209,0.55);
  animation: bowlPulse 2.4s var(--ease-soft);
}
@keyframes bowlPulse{
  0%{ transform: scale(0.96); }
  20%{ transform: scale(1.06); }
  100%{ transform: scale(1); }
}
.bowl__name{
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}
.bowl__note{
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---- quotes / testimonials ---- */

.quote{
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.quote__text{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.6;
  color: var(--ink-dim);
}
.quote__name{
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ---- pricing ---- */

.price{
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.6rem;
  color: var(--ink);
}
.price small{
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}
.card__list{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--ink-dim);
  font-size: 0.9rem;
}
.card__list li::before{
  content: "·";
  color: var(--gold);
  margin-right: 0.6em;
}

/* ---- teacher portraits ---- */

.portrait{
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  border: 1px solid rgba(169,155,230,0.45);
  background: radial-gradient(circle at 30% 30%, rgba(169,155,230,0.25), rgba(10,10,22,0.6));
}

/* ---- footer ---- */

.site-footer{
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 6vw, 6rem) 2.2rem;
  background: linear-gradient(180deg, transparent, rgba(5,5,8,0.7));
}
.site-footer__grid{
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 900px){ .site-footer__grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .site-footer__grid{ grid-template-columns: 1fr; } }

.site-footer h3{
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.1rem;
}
.site-footer__brand{
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.site-footer p, .site-footer li{
  font-size: 0.87rem;
  color: var(--ink-dim);
  line-height: 1.9;
}
.site-footer ul{ list-style: none; }
.site-footer a{ text-decoration: none; transition: color .3s; }
.site-footer a:hover{ color: var(--gold); }

.newsletter{ display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.newsletter input{
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--ink);
  background: rgba(10,10,22,0.45);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7em 1.2em;
}
.newsletter input:focus{ outline: none; border-color: rgba(240,214,160,0.55); }
.newsletter .btn{ padding: 0.7em 1.4em; }

.site-footer__bottom{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---- misc ---- */

.center{ text-align: center; }
.mt-2{ margin-top: 2rem; }
.divider{
  width: 1px; height: 64px;
  margin: 0 auto;
  background: linear-gradient(180deg, transparent, var(--gold-dim), transparent);
}

@media (prefers-reduced-motion: reduce){
  .breathe__circle{ transition: none; }
  .bowl.is-ringing .bowl__ring{ animation: none; }
}

/* ---- no-WebGL fallback backdrop ---- */
html.no-webgl body{
  background:
    radial-gradient(ellipse 90% 60% at 70% 20%, rgba(88,74,140,0.35), transparent 60%),
    radial-gradient(ellipse 70% 50% at 25% 75%, rgba(120,60,95,0.25), transparent 65%),
    radial-gradient(ellipse 60% 45% at 55% 55%, rgba(40,95,100,0.18), transparent 60%),
    var(--black);
  background-attachment: fixed;
}
