/* =================================================================
   HomeWellVibe — stylesheet
   Soft Earthy Wellbeing palette · Inter + Fraunces
   ================================================================= */

:root {
  --cream: #FAF6F0;
  --cream-warm: #F2EBDF;
  --sage: #E8EDDF;
  --sage-deep: #C8D2B5;
  --terracotta: #D97757;
  --terracotta-deep: #B85A3D;
  --mustard: #E8B84A;
  --mustard-soft: #F2D88E;
  --forest: #2D5A3D;
  --forest-light: #4A7A5D;
  --ink: #2C2520;
  --ink-soft: #5A4A3F;
  --whisper: #FDFBF6;

  --focus-ring: 0 0 0 3px rgba(217, 119, 87, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01" on, "cv11" on;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* Accessible focus ring across all interactive elements */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 6px;
}

/* Skip-to-content link, visible only when focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
  outline: none;
}

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  position: relative;
  z-index: 101;
  letter-spacing: 0.01em;
}

.top-bar strong { color: var(--mustard); font-weight: 600; }

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(217, 119, 87, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 7px rgba(217, 119, 87, 0); }
}

/* ============ NAVIGATION ============ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 37, 32, 0.06);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: inline-block;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.logo-text .home { color: var(--ink); }
.logo-text .well { color: var(--terracotta); }
.logo-text .vibe { color: var(--forest); font-style: italic; font-weight: 500; }

.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--terracotta-deep); }

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 0.88rem !important;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-cta:hover {
  background: var(--terracotta-deep) !important;
  transform: translateY(-1px);
}

.nav-balance {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 100px;
  background: rgba(45, 90, 61, 0.10);
  color: var(--forest) !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  text-decoration: none;
  border: 1px solid rgba(45, 90, 61, 0.18);
  transition: background 0.2s, transform 0.2s;
}

.nav-balance:hover {
  background: rgba(45, 90, 61, 0.18);
  transform: translateY(-1px);
}

.nav-balance span {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ============ HERO ============ */
.hero {
  padding: 5rem 2rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--sage);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1.75rem;
  border: 1px solid rgba(45, 90, 61, 0.12);
  letter-spacing: 0.02em;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--forest-light);
  border-radius: 50%;
  animation: softPulse 2.5s infinite;
}

@keyframes softPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.9s 0.15s forwards;
}

h1 .accent {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}

h1 .underline-mark {
  position: relative;
  display: inline-block;
}

h1 .underline-mark::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: -3%;
  right: -3%;
  height: 0.16em;
  background: var(--mustard-soft);
  z-index: -1;
  border-radius: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.55;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s forwards;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  padding: 1.05rem 1.9rem;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(217, 119, 87, 0.22);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 87, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 1.05rem 1.9rem;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero-trust {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--forest-light);
  border-radius: 50%;
}

/* ============ HERO VISUAL — dual video player ============ */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 50%, var(--mustard) 100%);
  box-shadow: 0 24px 60px rgba(184, 90, 61, 0.22);
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
}

.hero-video-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 200%;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  will-change: transform;
}

.hero-video-track[data-idx="1"] {
  transform: translateX(-50%);
}

.hero-video {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  background: transparent;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(184, 90, 61, 0.28);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.hero-dot:hover {
  background: rgba(184, 90, 61, 0.55);
}

.hero-dot.active {
  background: var(--terracotta-deep);
  width: 26px;
  border-radius: 100px;
}

.hero-dot:focus-visible {
  outline: 2px solid var(--terracotta-deep);
  outline-offset: 3px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.orb-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-center {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--mustard));
  box-shadow: 0 30px 60px rgba(217, 119, 87, 0.25);
  animation: breathe 5s ease-in-out infinite;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.orb-inner {
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--whisper), var(--cream-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.orb-inner::after {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  opacity: 0.85;
}

.float-card {
  position: absolute;
  background: var(--whisper);
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 18px 50px rgba(44, 37, 32, 0.08);
  border: 1px solid rgba(44, 37, 32, 0.04);
  z-index: 4;
}

.float-card-1 {
  top: 8%;
  left: 0;
  animation: float1 5s ease-in-out infinite;
}

.float-card-2 {
  top: 38%;
  right: 0;
  animation: float2 6s ease-in-out infinite;
}

.float-card-3 {
  bottom: 5%;
  left: 8%;
  animation: float3 5.5s ease-in-out infinite;
}

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

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

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

.float-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.float-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.float-card-meta {
  font-size: 0.76rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.float-card-meta .live {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: livePulse 1.6s infinite;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(217, 119, 87, 0.18);
  animation: rotate 35s linear infinite;
  z-index: 1;
}

.orb-ring-1 { width: 360px; height: 360px; }
.orb-ring-2 {
  width: 460px;
  height: 460px;
  border-color: rgba(45, 90, 61, 0.15);
  animation-duration: 50s;
  animation-direction: reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.deco-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 2;
}

.deco-dot-1 { top: 18%; right: 18%; background: var(--mustard); }
.deco-dot-2 { bottom: 22%; right: 30%; background: var(--forest-light); }
.deco-dot-3 { top: 45%; left: 14%; background: var(--terracotta); }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.3rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  width: max-content;
  letter-spacing: -0.01em;
}

.marquee-track span { color: var(--cream); }
.marquee-track .dot { color: var(--mustard); }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--terracotta-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
  max-width: 820px;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

/* ============ OFFERINGS ============ */
.offerings { background: var(--sage); }

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offering-card {
  background: var(--whisper);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  border: 1px solid rgba(44, 37, 32, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(44, 37, 32, 0.08);
}

.offering-card.live {
  background: linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  color: var(--whisper);
}

/* Live indicator (pulsing dot inside a soft circle) — works on any card that
   has the .is-live class. Colors auto-flip on the orange .live card. */
.offering-card.is-live {
  --dot-bg:   var(--terracotta);
  --dot-haze: rgba(217, 119, 87, 0.15);
  --dot-glow: rgba(217, 119, 87, 0.55);
}

.offering-card.live.is-live {
  --dot-bg:   var(--whisper);
  --dot-haze: rgba(255, 255, 255, 0.18);
  --dot-glow: rgba(255, 255, 255, 0.55);
}

.offering-card.is-live::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  background: var(--dot-haze);
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

.offering-card.is-live::after {
  content: '';
  position: absolute;
  /* Center a 12px dot inside the 38px circle: offset by (38 - 12) / 2 = 13px */
  top: calc(1.5rem + 13px);
  right: calc(1.5rem + 13px);
  width: 12px;
  height: 12px;
  background: var(--dot-bg);
  border-radius: 50%;
  animation: liveDot 1.6s ease-in-out infinite;
}

@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 0 0   var(--dot-glow); }
  50%      { box-shadow: 0 0 0 9px transparent; }
}

.offering-badge {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: var(--cream-warm);
  color: var(--terracotta-deep);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  width: fit-content;
}

.offering-card.live .offering-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--whisper);
}

.offering-title {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.offering-desc {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.55;
  flex-grow: 1;
}

.offering-card.live .offering-desc { color: rgba(255, 255, 255, 0.85); }

.offering-features {
  list-style: none;
  font-size: 0.9rem;
}

.offering-features li {
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.offering-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--terracotta);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.offering-card.live .offering-features li::before { background: var(--mustard); }

.offering-status {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 1.2rem;
  font-style: italic;
}

.offering-card.live .offering-status { color: rgba(255, 255, 255, 0.7); }

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.step {
  position: relative;
  padding-top: 2rem;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--terracotta);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--terracotta-deep);
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.step-desc {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

/* ============ SCHEDULE ============ */
.schedule-list { border-top: 1px solid rgba(44, 37, 32, 0.1); }

.schedule-item {
  display: grid;
  grid-template-columns: 1.6fr auto minmax(180px, 220px) auto;
  gap: 1.4rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(44, 37, 32, 0.1);
  align-items: center;
  transition: all 0.25s;
}

.schedule-info {
  display: flex;
  flex-direction: column;
}

.schedule-time-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.65rem 2rem 0.65rem 1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(44, 37, 32, 0.18);
  background: var(--whisper) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%232C2520' stroke-width='1.5' stroke-linecap='round'/></svg>") no-repeat right 0.9rem center;
  font-size: 0.86rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
  width: 100%;
}

.schedule-time-select:hover {
  border-color: var(--terracotta);
}

.schedule-time-select:focus-visible {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.18);
}

.schedule-time-select.error {
  border-color: #B83838;
  box-shadow: 0 0 0 3px rgba(184, 56, 56, 0.18);
}

.schedule-item:hover {
  background: var(--sage);
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 14px;
}

.schedule-day {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.schedule-day-zone {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: block;
  margin-top: 0.2rem;
}

.schedule-class {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.schedule-class-meta {
  font-size: 0.83rem;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: block;
  margin-top: 0.2rem;
}

.schedule-tag {
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-weight: 500;
  display: inline-block;
  width: fit-content;
  letter-spacing: 0.02em;
}

.tag-bhangra { background: rgba(217, 119, 87, 0.13); color: var(--terracotta-deep); }
.tag-zumba   { background: rgba(232, 184, 74, 0.18); color: #8B6B12; }
.tag-yoga    { background: rgba(45, 90, 61, 0.12);   color: var(--forest); }
.tag-cardio  { background: rgba(217, 119, 87, 0.13); color: var(--terracotta-deep); }

.schedule-book {
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.3rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.schedule-book:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

/* ============ PRICING ============ */
.pricing-section {
  background: var(--ink);
  color: var(--cream);
  border-radius: 32px;
  margin: 0 2rem;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(217, 119, 87, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-section .section-eyebrow { color: var(--mustard); }
.pricing-section .section-title { color: var(--cream); margin-left: auto; margin-right: auto; }
.pricing-section .section-sub { color: rgba(250, 246, 240, 0.7); margin-left: auto; margin-right: auto; }

.price-cards-row {
  max-width: 1080px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.price-card {
  background: var(--whisper);
  color: var(--ink);
  border-radius: 22px;
  padding: 2.4rem 1.8rem;
  position: relative;
  text-align: left;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(165deg, var(--whisper) 0%, var(--cream-warm) 100%);
  transform: scale(1.03);
  border: 2px solid var(--terracotta);
}

.price-card:hover { transform: translateY(-4px) scale(1.005); }
.price-card.featured:hover { transform: translateY(-4px) scale(1.035); }

.price-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-tag.green { background: var(--forest); }

.price-name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.price-tagline {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin: 0.6rem 0 0.3rem;
  letter-spacing: -0.03em;
}

.price-amount span {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.price-savings {
  position: absolute;
  top: 6.2rem;
  right: 0;
  width: auto;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--forest);
  padding: 0.5rem 1.1rem;
  border-radius: 100px 0 0 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0;
  z-index: 2;
  box-shadow:
    0 8px 18px rgba(45, 90, 61, 0.28),
    0 2px 5px rgba(45, 90, 61, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(45, 90, 61, 0.10);
  animation: savingsPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

@keyframes savingsPop {
  from { transform: translateX(28px) scale(0.85); opacity: 0; }
  to   { transform: translateX(0) scale(1);     opacity: 1; }
}

/* ---- Bundle savings reveal: $147 → strike → shrink → $129 (inline, single line) ---- */
/* Inline layout keeps the price row the same height as the Try-a-Class and Monthly
   cards so the bullet list below stays aligned across all three cards. */
.price-amount-bundle {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.55rem;
  line-height: 1;
}

.price-amount-bundle .price-original {
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink-soft);
  opacity: 0.7;
  white-space: nowrap;
  transform-origin: left bottom;
  will-change: transform, color, opacity;
}

.price-amount-bundle .price-original::after {
  content: '';
  position: absolute;
  left: -8%;
  right: -8%;
  top: 52%;
  height: 1.5px;
  background: var(--terracotta-deep);
  transform: scaleX(1);
  transform-origin: left center;
  border-radius: 2px;
  will-change: transform;
}

.price-amount-bundle .price-final {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Fraunces', serif;
  line-height: 1;
}

.price-amount-bundle .price-final-num {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.price-amount-bundle .price-period {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* IntersectionObserver adds .bundle-animate when the card scrolls in.
   Each child's `backwards` fill-mode holds the from-state until its
   delay elapses, so the static markup above always looks correct
   for users who never trigger the animation (JS off, etc.). */
.price-card.bundle-animate .price-amount-bundle .price-original {
  animation: bundleOriginalShrink 0.65s cubic-bezier(0.4, 0, 0.2, 1) 1.2s backwards;
}

.price-card.bundle-animate .price-amount-bundle .price-original::after {
  animation: bundleStrikeDraw 0.55s cubic-bezier(0.65, 0, 0.35, 1) 0.6s backwards;
}

.price-card.bundle-animate .price-amount-bundle .price-final {
  animation: bundleFinalAppear 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s backwards;
}

.price-card.bundle-animate .price-savings {
  animation: bundleSavingsBoost 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.95s backwards;
}

@keyframes bundleStrikeDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* $147 starts large (matching $129's eventual size) at the left edge,
   then scales back down to its inline-small position. transform-origin
   keeps the left edge anchored so it shrinks toward the small slot. */
@keyframes bundleOriginalShrink {
  from {
    transform: scale(2.43);
    opacity: 1;
    color: var(--ink);
  }
  to {
    transform: scale(1);
    opacity: 0.7;
    color: var(--ink-soft);
  }
}

@keyframes bundleFinalAppear {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

@keyframes bundleSavingsBoost {
  0%   {
    transform: scale(1);
    box-shadow: 0 8px 18px rgba(45, 90, 61, 0.28), 0 2px 5px rgba(45, 90, 61, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -1px 0 rgba(45, 90, 61, 0.10);
  }
  45%  {
    transform: scale(1.18);
    box-shadow: 0 18px 32px rgba(45, 90, 61, 0.5), 0 4px 8px rgba(45, 90, 61, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 0 rgba(45, 90, 61, 0.12);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 18px rgba(45, 90, 61, 0.28), 0 2px 5px rgba(45, 90, 61, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -1px 0 rgba(45, 90, 61, 0.10);
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-card.bundle-animate .price-amount-bundle .price-original,
  .price-card.bundle-animate .price-amount-bundle .price-original::after,
  .price-card.bundle-animate .price-amount-bundle .price-final,
  .price-card.bundle-animate .price-savings {
    animation: none !important;
  }
}

.price-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
  flex-grow: 1;
}

.price-features li {
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.price-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--forest);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.price-cta {
  display: block;
  width: 100%;
  background: var(--terracotta);
  color: white;
  padding: 0.95rem;
  border-radius: 100px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-top: auto;
}

.price-cta:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
}

.price-cta.outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.price-cta.outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============ VIBE STRIP ============ */
.vibe-strip {
  background: var(--cream-warm);
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.vibe-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 2rem;
  letter-spacing: -0.015em;
}

.vibe-quote::before, .vibe-quote::after {
  content: '"';
  color: var(--terracotta);
  font-weight: 600;
}

.vibe-attribution {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.vibe-attribution strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(44, 37, 32, 0.12);
}

.faq-q {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 500;
  transition: color 0.2s;
  color: var(--ink);
  letter-spacing: -0.01em;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}

.faq-q:hover { color: var(--terracotta-deep); }

.faq-toggle {
  font-size: 1.4rem;
  color: var(--terracotta);
  transition: transform 0.35s;
  font-weight: 300;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.3s;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.active .faq-a {
  max-height: 280px;
  padding-bottom: 1.6rem;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: var(--cream);
}

.footer-brand .logo-text .home { color: var(--cream); }
.footer-brand .logo-text .well { color: var(--terracotta); }
.footer-brand .logo-text .vibe { color: var(--mustard); }

.footer-tag {
  color: rgba(250, 246, 240, 0.65);
  max-width: 320px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cream);
}

.footer-col a {
  display: block;
  color: rgba(250, 246, 240, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--mustard); }

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.83rem;
  color: rgba(250, 246, 240, 0.5);
}

.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--mustard); }

/* ============ MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 37, 32, 0.6);
  backdrop-filter: blur(12px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--whisper);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--cream-warm);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(90deg);
}

.modal-title {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.modal-sub {
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(44, 37, 32, 0.15);
  border-radius: 12px;
  font-size: 0.96rem;
  font-family: inherit;
  background: var(--whisper);
  transition: border 0.2s, box-shadow 0.2s;
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.1);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"] {
  border-color: #B83838;
  box-shadow: 0 0 0 3px rgba(184, 56, 56, 0.12);
}

.form-submit {
  width: 100%;
  background: var(--terracotta);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  margin-top: 0.5rem;
}

.form-submit:hover:not(:disabled) {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.order-summary {
  background: var(--cream-warm);
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.order-summary-row.total {
  border-top: 1px solid rgba(44, 37, 32, 0.12);
  padding-top: 0.8rem;
  margin-top: 0.4rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
}

.payment-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 1rem;
  opacity: 0.8;
}

.success-state { text-align: center; padding: 1.5rem 0; }

.success-icon {
  width: 76px;
  height: 76px;
  background: var(--forest);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--whisper);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.form-error {
  background: rgba(217, 87, 87, 0.1);
  border: 1px solid rgba(217, 87, 87, 0.3);
  color: #B83838;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: none;
}

.form-error.show { display: block; }

/* OTP verification screen */
#otp-code {
  letter-spacing: 0.5em;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 600;
}

.otp-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.form-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--terracotta-deep);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
}

.form-link:hover { color: var(--terracotta); }
.form-link:disabled { opacity: 0.5; cursor: not-allowed; }

.otp-sep {
  color: var(--ink-soft);
  font-size: 0.85rem;
  opacity: 0.5;
}

/* Honeypot — hidden from real users, visible to bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .nav-links li:not(:last-child) { display: none; }

  .hero { padding: 4rem 1.5rem 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }

  .section { padding: 4rem 1.5rem; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }

  .offering-grid { grid-template-columns: 1fr; }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.4rem 0;
  }

  .schedule-time-select { max-width: 100%; }
  .schedule-book { width: fit-content; margin-top: 0.3rem; }

  .pricing-section { margin: 0 1rem; padding: 4rem 1.5rem; border-radius: 24px; }
  .price-cards-row { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-4px); }

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

  .modal { padding: 2rem 1.5rem; }

  h1 { font-size: 2.8rem; }
}

@media (max-width: 500px) {
  nav { padding: 1rem 1.1rem; }
  .logo { font-size: 1.2rem; gap: 0.45rem; }
  .nav-cta { padding: 0.6rem 1rem; white-space: nowrap; }

  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .orb-center { width: 180px; height: 180px; }
  .orb-ring-1 { width: 280px; height: 280px; }
  .orb-ring-2 { width: 360px; height: 360px; }
  .vibe-quote { font-size: 1.4rem; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  h1, .hero-sub, .hero-cta-row, .hero-trust, .hero-visual {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============ HIGH CONTRAST / PRINT ============ */
@media print {
  nav, .top-bar, .marquee, .modal-overlay, .hero-visual { display: none; }
  body { background: white; color: black; }
}
