/* ============================================
   AURA Pilates & Wellness — Design System
   Mood board palette — Mauve · Blush · Onyx · Warm White · Greige · Oak
   ============================================ */

:root {
  /* ===== AURA Mood Board palette ===== */
  --mauve: #C49E9E;          /* Accent — signature, brand highlights */
  --blush: #E7D7D2;          /* Secondary — soft features & warmth */
  --onyx: #111111;           /* Contrast — typography, power */
  --warm-white: #F5F2EE;     /* Base — walls, open space */
  --greige: #D8D2C6;         /* Balance — structure & neutrals */
  --oak: #C4A06A;            /* Texture — natural oak warmth */

  --logo-sable: #111111;
  --logo-midnight: #000000;
  --logo-on-dark: #F5F2EE;

  /* Sand / neutral → Warm White + Blush + Greige */
  --sand-50: #F5F2EE;
  --sand-100: #EFE9E4;
  --sand-200: #E7D7D2;
  --sand-300: #D8D2C6;
  --sand-400: #C4A06A;

  /* Ink / dark → Onyx family */
  --ink-700: #4a4242;
  --ink-800: #2c2626;
  --ink-900: #111111;

  /* Primary brand scale → Mauve (maps former teal tokens) */
  --teal-50: #f8f3f3;
  --teal-100: #E7D7D2;
  --teal-200: #d9c5c5;
  --teal-300: #C49E9E;
  --teal-400: #b89090;
  --teal-500: #a87c7c;
  --teal-600: #8f6565;
  --teal-700: #6f4f4f;
  --teal-800: #4a3535;
  --teal-900: #2e2222;

  /* Accent / CTA scale → deeper mauve + blush (maps former coral) */
  --coral-300: #d4b5b5;
  --coral-400: #C49E9E;
  --coral-500: #b08080;
  --coral-600: #966868;
  --coral-700: #7a5252;

  /* Gold → oak warmth */
  --gold-300: #d4bc8e;
  --gold-400: #C4A06A;
  --gold-500: #a8844e;

  /* Status (kept readable) */
  --success: #5a8f6e;
  --warning: #c4a06a;
  --error: #a85a5a;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows — softer, warmer */
  --shadow-soft: 0 18px 50px -20px rgba(17, 17, 17, 0.22);
  --shadow-card: 0 12px 40px -24px rgba(17, 17, 17, 0.28);

  /* Layout */
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--sand-50);
  color: var(--ink-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-500); }

img { max-width: 100%; height: auto; display: block; }

::selection { background-color: var(--teal-600); color: var(--sand-50); }

/* ===== Layout ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section { padding: 1.75rem 0; }
@media (min-width: 768px) { .section { padding: 2.25rem 0; } }
@media (min-width: 1024px) { .section { padding: 2.75rem 0; } }

.section-lg { padding: 4rem 0; }
@media (min-width: 768px) { .section-lg { padding: 5rem 0; } }
@media (min-width: 1024px) { .section-lg { padding: 6rem 0; } }

.bg-sand { background-color: var(--sand-50); }
.bg-sand-100 { background-color: var(--sand-100); }
.bg-white { background-color: #fff; }
.bg-teal { background-color: var(--teal-900); color: var(--sand-50); }
.bg-ink { background-color: var(--ink-900); color: var(--sand-50); }
.bg-coral { background-color: var(--coral-500); color: var(--sand-50); }

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 0.8rem 0;
}

.site-header.scrolled {
  background-color: rgba(99, 72, 72, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px -16px rgba(17, 17, 17, 0.18);
  padding: 0.75rem 0;
}

/* Brand logo (SVG lockup — viewBox 440×220)
   Sable black default | Midnight black hover
   stroke/fill set explicitly so SVG paths respect the colours */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  margin-left: 0;
  justify-self: flex-start;
  order: 0;
  cursor: pointer;
  text-decoration: none;
  line-height: 0;
  color: #0c0c0c;
  transition: opacity 0.2s ease;
}
.logo:hover {
  text-decoration: none;
  opacity: 1;
}

.logo-lockup,
.logo-mark {
  display: block;
  flex-shrink: 0;
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 74px;
  overflow: visible;
}

/* Wordmark strokes — sable */
.logo .logo-stroke,
.logo .logo-lockup path.logo-stroke,
.logo .logo-lockup path {
  stroke: #0c0c0c !important;
  fill: none !important;
  transition: stroke 0.25s ease;
}
/* Caption — sable */
.logo .logo-caption,
.logo-lockup text.logo-caption,
.logo-lockup text {
  fill: #0c0c0c !important;
  transition: fill 0.25s ease;
}

/* Hover — midnight black */
.logo:hover .logo-stroke,
.logo:hover .logo-lockup path.logo-stroke,
.logo:hover .logo-lockup path {
  stroke: #000000 !important;
}
.logo:hover .logo-caption,
.logo:hover .logo-lockup text.logo-caption,
.logo:hover .logo-lockup text {
  fill: #000000 !important;
}

/* Scrolled header — keep sable / midnight (same mark on light bar) */
.site-header.scrolled .logo .logo-stroke,
.site-header.scrolled .logo-lockup path {
  stroke: #0c0c0c !important;
}
.site-header.scrolled .logo .logo-caption,
.site-header.scrolled .logo-lockup text {
  fill: #0c0c0c !important;
}
.site-header.scrolled .logo:hover .logo-stroke,
.site-header.scrolled .logo:hover .logo-lockup path {
  stroke: #000000 !important;
}
.site-header.scrolled .logo:hover .logo-caption,
.site-header.scrolled .logo:hover .logo-lockup text {
  fill: #000000 !important;
}

/* Dark mode — light mark in site HEADER only (not footer) */
@media (prefers-color-scheme: dark) {
  .site-header .logo .logo-stroke,
  .site-header .logo-lockup path.logo-stroke,
  .site-header .logo-lockup path {
    stroke: #e8e4dc !important;
  }
  .site-header .logo .logo-caption,
  .site-header .logo-lockup text.logo-caption,
  .site-header .logo-lockup text {
    fill: #e8e4dc !important;
  }
  .site-header .logo:hover .logo-stroke,
  .site-header .logo:hover .logo-lockup path {
    stroke: #ffffff !important;
  }
  .site-header .logo:hover .logo-caption,
  .site-header .logo:hover .logo-lockup text {
    fill: #ffffff !important;
  }
}

@media (max-width: 640px) {
  .logo-lockup {
    width: 108px;
    max-height: 54px;
  }
}
@media (max-width: 400px) {
  .logo-lockup {
    width: 96px;
    max-height: 48px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  position: relative;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sand-50);
  transition: color 0.4s;
}
.site-header.scrolled .logo-text { color: var(--ink-900); }

.footer-logo-lockup {
  display: block;
  width: 150px;
  height: auto;
  max-height: 75px;
  color: var(--sand-50);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--sand-50);
  transition: color 0.3s;
  position: relative;
}

.site-header.scrolled .nav-link { color: var(--ink-800); }
.nav-link:hover { color: var(--teal-300); }
.site-header.scrolled .nav-link:hover { color: var(--teal-600); }

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 0;
  background-color: currentColor;
  transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .header-actions { display: flex; } }

.portal-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sand-100);
  transition: color 0.3s;
}
.site-header.scrolled .portal-link { color: var(--ink-700); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-coral {
  background-color: var(--coral-500);
  color: var(--sand-50);
  box-shadow: 0 14px 34px -14px rgba(221, 111, 72, 0.85);
}
.btn-coral:hover {
  background-color: var(--coral-600);
  color: var(--sand-50);
  box-shadow: 0 18px 40px -14px rgba(221, 111, 72, 0.9);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(250, 247, 241, 0.4);
  color: var(--sand-50);
  background: transparent;
}
.btn-outline:hover { background-color: rgba(255, 255, 255, 0.1); color: var(--sand-50); }

.btn-outline-dark {
  border: 1px solid rgba(30, 43, 41, 0.2);
  color: var(--ink-800);
  background: transparent;
}
.btn-outline-dark:hover { background-color: var(--sand-100); color: var(--ink-800); }

.btn-light {
  background-color: var(--sand-50);
  color: var(--coral-600);
}
.btn-light:hover { background-color: var(--sand-100); transform: translateY(-1px); }

.btn-block { width: 100%; }

.btn-teal {
  background-color: var(--teal-600);
  color: var(--sand-50);
  box-shadow: 0 8px 20px -8px rgba(20, 100, 114, 0.25);
}
.btn-teal:hover {
  background-color: var(--teal-700);
  color: var(--sand-50);
  box-shadow: 0 12px 28px -10px rgba(20, 100, 114, 0.35);
  transform: translateY(-1px);
}

/* ===== Flex utilities ===== */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ===== Text alignment ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-balance { text-wrap: balance; }

/* ===== Hidden ===== */
.hidden { display: none; }

/* ===== Position utilities ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* ===== Flex direction ===== */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 32, 30, 0.85), rgba(20, 32, 30, 0.55), rgba(12, 55, 46, 0.3));
  z-index: 1;
}

/* Mobile-first: content uses full container width */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 3.5rem;
  max-width: 100%;
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border: 1px solid rgba(174, 224, 205, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal-100);
}

.hero-title {
  font-size: clamp(2.35rem, 5vw + 1rem, 4.75rem);
  font-weight: 600;
  color: var(--sand-50);
  line-height: 1.05;
  margin: 1.5rem 0;
  max-width: 18ch;
}

.hero-title em { font-style: italic; color: var(--coral-300); }

.hero-text {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  color: var(--sand-200);
  max-width: 100%;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  color: var(--sand-200);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--sand-50);
}

.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sand-300);
  margin-top: 0.25rem;
}

.hero-divider { width: 1px; height: 3rem; background: rgba(255, 255, 255, 0.2); }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20, 32, 30, 0.85), rgba(20, 32, 30, 0.5));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(6.75rem, 14vw, 9.5rem) 0 clamp(2.75rem, 5vw, 4.25rem);
  max-width: 100%;
  animation: fadeInUp 0.7s both;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.85rem);
  color: var(--sand-50);
  margin-top: 1rem;
  max-width: 20ch;
  line-height: 1.1;
}

.page-hero p {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.175rem);
  color: var(--sand-200);
  margin-top: 1.25rem;
  max-width: 100%;
  line-height: 1.65;
}

/* ---- Adaptive hero widths by breakpoint ---- */
@media (min-width: 640px) {
  .hero-content { max-width: 34rem; }
  .page-hero-content { max-width: 36rem; }
  .hero-text,
  .page-hero p { max-width: 32rem; }
}

@media (min-width: 768px) {
  .hero { min-height: 92vh; min-height: 92dvh; }
  .page-hero { min-height: 50vh; }
  .hero-content { max-width: 38rem; padding-top: 6.5rem; }
  .page-hero-content { max-width: 40rem; padding: 8rem 0 4.25rem; }
  .hero-text,
  .page-hero p { max-width: 36rem; }
}

@media (min-width: 1024px) {
  .hero { min-height: 88vh; min-height: 88dvh; }
  .page-hero { min-height: 52vh; }
  .hero-content {
    max-width: 46rem;
    padding-top: 7rem;
    padding-bottom: 4.5rem;
  }
  .page-hero-content {
    max-width: 48rem;
    padding: 9rem 0 4.5rem;
  }
  .hero-text,
  .page-hero p { max-width: 40rem; }
  .hero-title { max-width: 16ch; }
  .page-hero h1 { max-width: 18ch; }
}

@media (min-width: 1280px) {
  .hero-content { max-width: 54rem; }
  .page-hero-content { max-width: 56rem; }
  .hero-text,
  .page-hero p { max-width: 44rem; }
  .hero-stats { gap: 2.75rem; }
}

@media (min-width: 1536px) {
  .hero-content { max-width: 58rem; }
  .page-hero-content { max-width: 60rem; }
}

/* ===== Section heading ===== */
.section-heading { max-width: 36rem; }
.section-heading.center { margin: 0 auto; text-align: center; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal-600);
}

.eyebrow.light { color: var(--teal-200); }

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-top: 0.75rem;
  line-height: 1.15;
}
@media (min-width: 640px) { .section-title { font-size: 3rem; } }

.section-title.light { color: var(--sand-50); }

.section-intro {
  font-size: 1.0625rem;
  margin-top: 1rem;
  color: rgba(43, 58, 56, 0.8);
}
.section-intro.light { color: var(--sand-200); }

/* ===== Cards ===== */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20, 32, 30, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.card-img { height: 256px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 1.75rem; }
.card-body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.card-body p { font-size: 0.875rem; color: rgba(43, 58, 56, 0.8); line-height: 1.6; }

.card-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal-700);
}

/* ===== Feature cards (icon) ===== */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20, 32, 30, 0.04);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-700);
  font-size: 1.5rem;
}
/* ===== Quote block ===== */
.quote-block {
  margin-top: 1.75rem;
  border-left: 2px solid var(--coral-400);
  padding-left: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-800);
}

/* ===== Mission card ===== */
.card-mission, .card-vision {
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20, 32, 30, 0.04);
  height: 100%;
}
.card-mission { background: var(--teal-50); }
.card-mission .feature-icon-teal,
.card-mission .feature-icon {
  background: var(--teal-600);
  color: var(--sand-50);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.card-vision { background: var(--sand-100); }
.card-vision .feature-icon-coral,
.card-vision .feature-icon {
  background: var(--coral-500);
  color: var(--sand-50);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.card-mission h3, .card-vision h3 { margin-bottom: 0.75rem; }
.card-mission p, .card-vision p { color: rgba(43, 58, 56, 0.85); font-size: 0.95rem; line-height: 1.65; }

/* ===== Founder grid ===== */
.founder-grid {
  align-items: center;
}
@media (min-width: 768px) {
  .founder-grid {
    grid-template-columns: 0.8fr 1fr;
  }
}

/* ===== Article image ===== */
.article-img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.article-img-founder {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

/* ===== Instructor card ===== */
.instructor-card .card-img {
  height: 320px;
  overflow: hidden;
}

/* ===== Text utilities ===== */
.text-muted {
  margin-top: 1rem;
  color: rgba(43, 58, 56, 0.8);
  line-height: 1.7;
}
.text-accent {
  color: var(--coral-600);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ===== Feature icon variants ===== */
.feature-icon-teal {
  background: var(--teal-600);
  color: var(--sand-50);
}
.feature-icon-coral {
  background: var(--coral-500);
  color: var(--sand-50);
}
.feature-card p { font-size: 0.875rem; color: rgba(43, 58, 56, 0.8); }

/* ===== Service article ===== */
.service-article {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
  border: 1px solid rgba(20, 32, 30, 0.04);
}
@media (min-width: 1024px) {
  .service-article { grid-template-columns: 1fr 1fr; margin-bottom: 2.5rem; }
}

.service-article.reverse .service-img { order: 2; }
.service-img { height: 260px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-article:hover .service-img img { transform: scale(1.03); }
@media (min-width: 1024px) { .service-img { height: auto; min-height: 100%; } }

.service-body { padding: 2rem; }
@media (min-width: 1024px) { .service-body { padding: 2.5rem; } }
.service-body h3 { font-size: 1.875rem; margin-bottom: 0.75rem; }

.benefit-list { list-style: none; margin: 1.25rem 0; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--ink-700);
  margin-bottom: 0.625rem;
}
.benefit-list li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%; background: var(--teal-100); color: var(--teal-700);
  font-size: 0.7rem; font-weight: 700;
  margin-top: 1px;
}

.meta-grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr;
  background: var(--sand-100);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) { .meta-grid { grid-template-columns: repeat(3, 1fr); } }

.meta-label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--teal-600);
}
.meta-value { color: var(--ink-700); margin-top: 0.25rem; }

/* ===== Schedule ===== */
.schedule-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .schedule-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .schedule-grid { grid-template-columns: repeat(3, 1fr); } }

.schedule-day {
  border: 1px solid var(--sand-200);
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.schedule-day:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.schedule-day-header {
  display: flex; align-items: center; gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sand-200);
  font-size: 1.25rem; font-weight: 600;
  color: var(--ink-900);
}

.schedule-list { list-style: none; margin-top: 1rem; }
.schedule-list li {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 0.75rem; padding: 0.625rem 0;
  font-size: 0.875rem;
}

.schedule-class-name { font-weight: 600; color: var(--ink-900); }
.schedule-class-meta { color: rgba(43, 58, 56, 0.7); }

.schedule-time { font-weight: 500; color: var(--teal-700); white-space: nowrap; }

.tag { border-radius: 999px; padding: 0.125rem 0.5rem; font-size: 0.625rem; font-weight: 600; text-transform: uppercase; }
.tag-group { background: var(--teal-100); color: var(--teal-700); }
.tag-private { background: rgba(221, 111, 72, 0.15); color: var(--coral-700); }

/* ===== Pricing ===== */
.pkg-category { margin-bottom: 4rem; }
.pkg-category-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.75rem; }
.pkg-category-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-600); color: var(--sand-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 600;
}
.pkg-category-title { font-size: 1.5rem; font-weight: 600; color: var(--ink-900); }
.pkg-category-blurb { font-size: 0.875rem; color: rgba(43, 58, 56, 0.7); }

.pkg-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20, 32, 30, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
  position: relative;
  height: 100%;
  min-height: 280px;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.pkg-card.popular {
  background: var(--teal-700);
  color: var(--sand-50);
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--coral-400);
}

.pkg-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--coral-500); color: var(--sand-50);
  padding: 0.25rem 1rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
}

.pkg-name { font-size: 1.5rem; font-weight: 600; color: var(--ink-900); }
.pkg-card.popular .pkg-name { color: var(--sand-50); }

.pkg-price {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 600;
  color: var(--teal-600); margin-top: 0.75rem;
}
.pkg-card.popular .pkg-price { color: var(--sand-50); }

.pkg-classes { font-size: 0.875rem; color: rgba(43, 58, 56, 0.8); margin-top: 0.5rem; }
.pkg-card.popular .pkg-classes { color: var(--sand-200); }

.pkg-validity { font-size: 0.75rem; color: rgba(43, 58, 56, 0.6); margin-top: 0.25rem; }
.pkg-card.popular .pkg-validity { color: var(--sand-300); }

.pkg-note { font-size: 0.875rem; margin-top: 1rem; color: rgba(43, 58, 56, 0.75); }
.pkg-card.popular .pkg-note { color: var(--sand-200); }

.pkg-card .btn { margin-top: auto; }
.pkg-card-spacer { height: 1.5rem; }

/* ===== Forms ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.875rem; font-weight: 500;
  color: var(--ink-800); margin-bottom: 0.375rem;
}
.form-label .req { color: var(--coral-500); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--ink-800);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(31, 140, 114, 0.15);
}

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

.form-input.is-invalid { border-color: var(--error); }

.form-error {
  background: rgba(208, 90, 79, 0.1);
  color: var(--error);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.form-success {
  background: rgba(47, 158, 111, 0.1);
  color: var(--success);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink-900);
  color: var(--sand-200);
  padding: 2rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand-text { font-size: 0.875rem; color: var(--sand-300); margin-top: 1rem; line-height: 1.7; }

.footer-heading {
  font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--sand-100); margin-bottom: 1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { color: var(--sand-300); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--sand-50); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--sand-300);
  margin-bottom: 0.75rem;
}
.footer-contact-item a { color: var(--sand-300); }
.footer-contact-item a:hover { color: var(--sand-50); }

.social-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--sand-100);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-link:hover { background: var(--coral-500); color: var(--sand-50); }

.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem; color: var(--sand-300);
}



/* Solid header on auth / light pages (no scroll required) */
body.force-solid-header .site-header,
.site-header.scrolled {
  background-color: rgba(250, 247, 241, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(20, 32, 30, 0.28);
}
body.force-solid-header .site-header .nav-link,
body.force-solid-header .site-header .portal-link {
  color: var(--ink-800);
}
body.force-solid-header .site-header .nav-link:hover,
body.force-solid-header .site-header .portal-link:hover {
  color: var(--teal-600);
}
body.force-solid-header .menu-toggle,
body.force-solid-header .menu-toggle span,
body.force-solid-header .mobile-nav-btn {
  color: var(--ink-900) !important;
}
body.force-solid-header .site-header .logo .logo-stroke,
body.force-solid-header .site-header .logo-lockup path {
  stroke: #0c0c0c !important;
}
body.force-solid-header .site-header .logo .logo-caption,
body.force-solid-header .site-header .logo-lockup text {
  fill: #0c0c0c !important;
}

/* ===== Auth page ===== */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(31, 140, 114, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(221, 111, 72, 0.08), transparent 50%),
    linear-gradient(145deg, var(--sand-100), var(--sand-50), var(--teal-50));
  padding: 6.5rem 1.25rem 2.5rem;
}

.auth-card {
  max-width: 960px; width: 100%;
  background: #fff; border-radius: calc(var(--radius) + 4px);
  overflow: hidden; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20, 32, 30, 0.05);
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .auth-card { grid-template-columns: 1.05fr 1fr; min-height: 560px; } }

.auth-visual { position: relative; display: none; }
@media (min-width: 1024px) { .auth-visual { display: block; } }
.auth-visual img { width: 100%; height: 100%; object-fit: cover; }
.auth-visual-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.25rem; color: var(--sand-50);
  background: linear-gradient(to top, rgba(20, 32, 30, 0.85), transparent);
}

.auth-form-side { padding: 2rem; }
@media (min-width: 640px) { .auth-form-side { padding: 2.5rem; } }

.auth-tabs {
  display: flex; gap: 0.5rem; background: var(--sand-100);
  border-radius: 999px; padding: 0.25rem; margin-bottom: 1.75rem;
}

.auth-tab {
  flex: 1; padding: 0.5rem 1rem; border: none; background: transparent;
  border-radius: 999px; font-size: 0.875rem; font-weight: 600;
  color: rgba(43, 58, 56, 0.7); cursor: pointer; transition: all 0.2s;
  font-family: var(--font-sans);
}
.auth-tab.active { background: #fff; color: var(--ink-900); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

.auth-panel-hidden { display: none; }

.auth-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(43, 58, 56, 0.6);
}

/* ===== Input icons ===== */
.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(43, 58, 56, 0.5);
  pointer-events: none;
}

/* ===== Product card ===== */
.product-card .card-img {
  aspect-ratio: 3/4;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--coral-500);
  color: var(--sand-50);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  color: var(--teal-600);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ===== Gym list ===== */
.gym-list {
  list-style: none;
  margin-top: 1.75rem;
  padding: 0;
}
.gym-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--ink-700);
  margin-bottom: 0.5rem;
}
.gym-list li::before {
  content: '✓';
  color: var(--teal-700);
}

.auth-heading { font-size: 1.875rem; margin-bottom: 0.5rem; }
.auth-sub { font-size: 0.875rem; color: rgba(43, 58, 56, 0.75); margin-bottom: 1.75rem; }

/* Input with icon */
.input-wrap { position: relative; }
.input-icon {
  position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%);
  color: rgba(43, 58, 56, 0.5); pointer-events: none;
}
.input-wrap .form-input { padding-left: 2.5rem; }


/* Dashboard styles live in assets/css/dashboard.css */

/* ===== Shared UI components (public + dashboard) ===== */
.empty-state {
  border: 2px dashed var(--sand-300);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 2.75rem 1.5rem;
  text-align: center;
}
.empty-state h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink-800);
  margin-bottom: 0.25rem;
}
.empty-state p {
  font-size: 0.875rem;
  color: rgba(43, 58, 56, 0.6);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-teal { background: var(--teal-100); color: var(--teal-700); }
.badge-coral { background: rgba(221, 111, 72, 0.15); color: var(--coral-700); }
.badge-success { background: rgba(47, 158, 111, 0.15); color: var(--success); }
.badge-error { background: rgba(208, 90, 79, 0.15); color: var(--error); }
.badge-muted { background: var(--sand-200); color: rgba(43, 58, 56, 0.6); }
.badge-gold { background: rgba(224, 201, 138, 0.25); color: var(--gold-500); }

.icon-btn {
  width: 32px; height: 32px; border: none;
  border-radius: var(--radius-sm); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.icon-btn-success { background: rgba(47, 158, 111, 0.15); color: var(--success); }
.icon-btn-success:hover { background: rgba(47, 158, 111, 0.25); }
.icon-btn-error { background: rgba(208, 90, 79, 0.15); color: var(--error); }
.icon-btn-error:hover { background: rgba(208, 90, 79, 0.25); }
.icon-btn-muted { background: var(--sand-200); color: var(--ink-700); }
.icon-btn-muted:hover { background: var(--sand-300); }

/* Lightweight card shell used on some public pages */
.dash-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20, 32, 30, 0.04);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .dash-card { padding: 1.75rem; }
}
.dash-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}



/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--sand-200);
  background: var(--sand-50);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-q {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  border: none; background: transparent; cursor: pointer;
  font-size: 0.9375rem; font-weight: 500; color: var(--ink-900);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-sans);
}
.faq-arrow { transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 1.5rem 1.25rem 3rem; font-size: 0.875rem; color: rgba(43, 58, 56, 0.85); }

/* ===== Check list ===== */
.check-list { list-style: none; margin-top: 2rem; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.625rem; }
.check-list li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%; background: var(--teal-100); color: var(--teal-700);
  font-size: 0.7rem; font-weight: 700; margin-top: 1px;
}

/* ===== Inline link ===== */
.link-inline {
  display: inline-flex; gap: 0.375rem; align-items: center;
  font-size: 0.875rem; font-weight: 600; color: var(--coral-600);
  text-decoration: none;
}
.link-inline:hover { color: var(--coral-700); }

/* ===== Feature cards (revised) ===== */
.feature-card-teal {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(250, 247, 241, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s;
  color: var(--sand-50);
}
.feature-card-teal:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}
.feature-card-teal h3 { color: var(--sand-50); }
.feature-card-teal p { color: var(--sand-200); font-size: 0.875rem; }
.feature-card-teal .feature-icon {
  background: rgba(250, 247, 241, 0.15);
  color: var(--coral-300);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 600;
  color: var(--teal-200);
  margin-bottom: 1rem;
}

/* Focus visibility */
.btn:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--coral-400);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Info box ===== */
.info-box {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; align-items: center;
  background: #fff; border-radius: var(--radius); padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20, 32, 30, 0.04);
  font-size: 0.875rem; color: var(--ink-700);
}
.info-box.gym-hours {
  margin-top: 1.75rem;
  font-weight: 500;
  color: var(--teal-700);
  background: var(--teal-50);
  border-color: var(--teal-100);
}
.info-label {
  font-weight: 600; color: var(--ink-900);
}

/* ===== Stat badge (floating) ===== */
.stat-badge {
  position: absolute; bottom: -2rem; right: -1rem;
  width: 11rem; background: var(--teal-600); color: var(--sand-50);
  border-radius: 1rem; padding: 1.25rem; box-shadow: var(--shadow-card);
  font-family: var(--font-display);
}
.stat-badge div:first-child { font-size: 1.875rem; font-weight: 600; }
.stat-badge div:last-child { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal-100); margin-top: 0.25rem; }

/* ===== Special offer hero eyebrow ===== */
.hero-eyebrow.special-offer {
  color: var(--coral-700);
  border-color: rgba(221, 111, 72, 0.2);
  background: rgba(221, 111, 72, 0.1);
}

/* ===== Package card (small) ===== */
.pkg-card-small {
  border: 1px solid var(--teal-100);
  box-shadow: var(--shadow-card);
}
.pkg-card-small .pkg-price-small {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 600;
  color: var(--teal-600); margin-top: 0.75rem;
}
.pkg-card-small .pkg-classes-small {
  font-size: 0.75rem; color: rgba(43, 58, 56, 0.6); margin-top: 0.25rem;
}
.pkg-card-small .pkg-validity-small {
  font-size: 0.75rem; color: rgba(43, 58, 56, 0.6); margin-top: 0.25rem;
}

/* ===== Contact info grid ===== */
.contact-info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Contact item ===== */
.contact-item {
  display: block;
}

/* ===== Iframe wrapper ===== */
.iframe-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* ===== Margin utilities ===== */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.spinner {
  width: 24px; height: 24px;
  border: 3px solid var(--sand-200);
  border-top-color: var(--teal-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Mobile nav ===== */
.mobile-nav-btn {
  display: block; background: none; border: none; cursor: pointer;
  color: var(--sand-50); padding: 0.25rem;
}
.site-header.scrolled .mobile-nav-btn { color: var(--ink-800); }
@media (min-width: 1024px) { .mobile-nav-btn { display: none; } }

.mobile-menu {
  display: none;
  margin: 0 1rem 1rem;
  background: var(--sand-50);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 500; color: var(--ink-800); transition: background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--teal-50); color: var(--teal-700); }

/* ===== Grain texture ===== */
.grain {
  background-image: radial-gradient(rgba(20, 32, 30, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* ===== CTA banner ===== */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 55%, var(--coral-700) 100%);
  color: var(--sand-50);
  padding: 5.5rem 0;
  text-align: center;
}
@media (min-width: 768px) { .cta-banner { padding: 6.5rem 0; } }
.cta-banner h2 { font-size: 2.5rem; color: var(--sand-50); }
@media (min-width: 640px) { .cta-banner h2 { font-size: 3rem; } }
.cta-banner p { font-size: 1.125rem; color: rgba(250, 247, 241, 0.9); max-width: 32rem; margin: 1.25rem auto 2rem; }

/* ===== Card badges ===== */
.card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal-700);
}

/* ===== Hidden panel ===== */
.auth-panel-hidden {
  display: none;
}

/* ===== Gym specific ===== */
.gym-hero {
  color: var(--coral-300);
}

.img-small {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
}

.img-small-mt {
  margin-top: 2rem;
}


/* =========================================================
   Visual polish pass — layout, density, mobile, dashboard
   ========================================================= */

/* Body text rhythm */
p { max-width: 70ch; }
.section-intro { max-width: 42rem; }

/* Header Book button slightly smaller on nav */
.header-actions .btn {
  padding: 0.65rem 1.35rem;
  font-size: 0.8125rem;
}

/* Active nav on light header */
.site-header.scrolled .nav-link.active { color: var(--teal-600); }


/* Article images relative for floating badge */
.reveal > .article-img { position: relative; }
.reveal { position: relative; }

/* Product grid cards */
.product-card .product-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
}
.product-price { font-size: 0.95rem; }

/* Instructor cards */
.instructor-card .card-body { padding: 1.5rem 1.35rem 1.75rem; }
.instructor-card .card-body h3 { margin-bottom: 0.25rem; }


/* Mobile nav refinement */
.mobile-menu {
  margin-top: 0.75rem;
  border: 1px solid var(--sand-200);
}
.mobile-menu a {
  border-radius: 10px;
}

/* FAQ polish */
.faq-item {
  background: #fff;
  box-shadow: 0 4px 16px -12px rgba(20, 32, 30, 0.25);
}
.faq-q:hover { background: var(--sand-50); }

/* Contact cards */
.contact-item > div {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.contact-item:hover > div {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft) !important;
}

/* Small-screen public polish */
@media (max-width: 640px) {
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .hero-divider { display: none; }
  .page-hero h1 { font-size: 2.35rem; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 1.85rem; }
  .stat-badge { position: static; width: auto; margin-top: 1rem; }
}

/* Soft selection already set — ensure links in light sections */
.bg-sand a.link-inline,
.bg-sand-100 a.link-inline,
.bg-white a.link-inline { color: var(--coral-600); }

/* Package popular card text */
.pkg-card.popular .btn-light:hover {
  background: var(--sand-100);
  color: var(--coral-700);
}

/* Image defaults */
img { border-radius: 0; }
.article-img, .article-img-founder { background: var(--sand-200); }
.card-img, .service-img, .page-hero-bg, .hero-bg {
  background: linear-gradient(135deg, var(--sand-200), var(--teal-100));
}

/* Footer social row spacing */
.site-footer .footer-brand-text { max-width: 28ch; }

/* Print-friendly */
@media print {
  .site-header, .site-footer, .mobile-menu, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}


/* Dark page heroes (policies etc.) without photo */
.page-hero.bg-ink,
.page-hero[style*="ink-900"] {
  background: var(--ink-900);
}
.page-hero .page-hero-content h1 { color: var(--sand-50); }
.page-hero .page-hero-content p { color: var(--sand-200); }

/* Auth tabs tighter */
.auth-tabs { margin-bottom: 1.5rem; }
.auth-heading { letter-spacing: -0.02em; }

/* Ensure popular package badge sits above card border */
.pkg-card.popular { z-index: 1; }

/* Smooth image loading placeholder feel */
.card-img img, .service-img img, .article-img, .article-img-founder {
  background-color: var(--sand-200);
}

/* Better gap on service list in pilates */
.section .service-article:last-child { margin-bottom: 0; }



/* Quote block polish */
.quote-block {
  background: rgba(250, 247, 241, 0.6);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
}

/* Header actions portal link spacing */
.portal-link { padding: 0.35rem 0.25rem; white-space: nowrap; }


.page-hero-dark {
  background: var(--ink-900);
  min-height: 44vh;
}
.page-hero-dark .page-hero-content {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.gym-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.gym-mosaic .img-small {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 1.1rem;
  box-shadow: var(--shadow-card);
  margin: 0;
}
.gym-mosaic .img-small:nth-child(2) { margin-top: 1.25rem; }
.gym-mosaic .img-small:nth-child(3) { margin-top: -1.25rem; }
@media (max-width: 640px) {
  .gym-mosaic .img-small:nth-child(2),
  .gym-mosaic .img-small:nth-child(3) { margin-top: 0; }
}

/* Founder quote + text spacing */
.founder-grid .text-muted { max-width: 40rem; }
.founder-grid .quote-block { margin-top: 1.5rem; }

/* Activewear product grid */
.product-card .card-img.product-img,
.product-card .product-img {
  aspect-ratio: 3 / 4;
  height: auto;
  min-height: 280px;
}


.media-with-badge {
  position: relative;
  display: inline-block;
  width: 100%;
}
.media-with-badge .stat-badge {
  bottom: -1.25rem;
  right: 1rem;
  z-index: 2;
}
@media (max-width: 640px) {
  .media-with-badge .stat-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 1rem auto 0;
    width: min(11rem, 100%);
  }
}


/* Admin destructive actions — larger touch targets */
.btn-delete-product {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid #c45c4a;
  background: #fff5f3;
  color: #a33b2c;
  cursor: pointer;
  line-height: 1.2;
  font-family: inherit;
}
.btn-delete-product:hover {
  background: #c45c4a;
  color: #fff;
}
.icon-btn.icon-btn-error {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  font-size: 1.15rem;
  border: 2px solid #c45c4a;
  background: #fff5f3;
  color: #a33b2c;
  border-radius: 0.75rem;
}
.icon-btn.icon-btn-error:hover {
  background: #c45c4a;
  color: #fff;
}





/* Pilates booking styles live in assets/css/booking.css */

/* Footer logo matches header lockup */
.footer-brand-link {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #faf7f1;
  text-decoration: none;
}
.footer-logo-lockup {
  width: 140px !important;
  height: 64px !important;
  display: block;
  color: #faf7f1;
}
.footer-logo-lockup path,
.footer-logo-lockup .logo-stroke {
  stroke: currentColor !important;
}
.footer-logo-lockup text,
.footer-logo-lockup .logo-caption {
  fill: currentColor !important;
}
@media (max-width: 640px) {
  .footer-logo-lockup { width: 120px !important; height: 54px !important; }
}

/* ===== Landing + footer polish ===== */
.section-compact {
  padding-top: 1.75rem !important;
  padding-bottom: 1.9rem !important;
}
@media (min-width: 1024px) {
  .section-compact {
    padding-top: 2.15rem !important;
    padding-bottom: 2.35rem !important;
  }
}

/* Tighten space before special offers on home */
#offers.section {
  padding-top: 1.75rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  #offers.section {
    padding-top: 2.15rem;
    padding-bottom: 2.4rem;
  }
}
#begin-aura.section {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 1024px) {
  #begin-aura.section {
    padding-top: 2.15rem;
    padding-bottom: 2.15rem;
  }
}
#expect.section {
  padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  #expect.section {
    padding-bottom: 2.75rem;
  }
}

/* Footer logo — always light on dark footer (all viewports) */
.site-footer {
  padding-top: 2rem !important;
}
.site-footer .footer-brand-link {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #faf7f1 !important;
  line-height: 0;
}
.site-footer .footer-logo-lockup {
  width: 130px !important;
  height: 58px !important;
  color: #faf7f1 !important;
}
.site-footer .footer-logo-lockup path,
.site-footer .footer-logo-lockup .logo-stroke {
  stroke: #faf7f1 !important;
  fill: none !important;
}
.site-footer .footer-logo-lockup text,
.site-footer .footer-logo-lockup .logo-caption {
  fill: #faf7f1 !important;
  stroke: none !important;
}
.site-footer .footer-brand-text {
  margin-top: 0.5rem;
}
.site-footer .footer-grid {
  gap: 2rem;
}
@media (max-width: 640px) {
  .site-footer {
    padding-top: 1.75rem !important;
  }
  .site-footer .footer-logo-lockup {
    width: 118px !important;
    height: 52px !important;
  }
  .site-footer .footer-logo-lockup path,
  .site-footer .footer-logo-lockup .logo-stroke {
    stroke: #faf7f1 !important;
  }
  .site-footer .footer-logo-lockup text,
  .site-footer .footer-logo-lockup .logo-caption {
    fill: #faf7f1 !important;
  }
}


/* Homepage special offer cards — mobile-first, equal-height, full-width on phones */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
  width: 100%;
  align-items: stretch;
  justify-items: stretch;
}
@media (min-width: 560px) {
  .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 960px) {
  .offers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 64rem;
    gap: 1.35rem;
  }
}
/* When only 1–2 cards, center the group on large screens */
@media (min-width: 960px) {
  .offers-grid:has(> :nth-child(1):last-child),
  .offers-grid:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    justify-content: center;
    max-width: 100%;
  }
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  max-width: none;
  min-height: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem 1.1rem 1.15rem;
  box-shadow: 0 12px 40px -24px rgba(20, 32, 30, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 560px) {
  .offer-card {
    padding: 1.35rem 1.25rem 1.25rem;
  }
}
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px -20px rgba(20, 32, 30, 0.4);
}

.offer-card-badge {
  align-self: flex-start;
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(196, 92, 58, 0.12);
  color: #9a4a32;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

/* Title: soft wrap; no forced min-height on phones so cards stay compact */
.offer-card-title {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  margin: 0 0 0.65rem;
  padding: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  text-wrap: pretty;
  min-height: 0;
}
@media (min-width: 560px) {
  .offer-card-title {
    min-height: 2.7em; /* align prices across a row on tablet+ */
  }
}

.offer-card-price {
  flex-shrink: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #7a3e2e;
  margin: 0 0 0.3rem;
  line-height: 1.25;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.offer-card-valid {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: rgba(43, 58, 56, 0.65);
  margin: 0 0 0.65rem;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: normal;
}

.offer-card-desc {
  flex: 1 1 auto;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 1rem;
  overflow-wrap: break-word;
  word-break: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Pin CTA to bottom of equal-height cards */
.offer-card-btn {
  flex-shrink: 0;
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  line-height: 1.3;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.info-box a { display: inline; }
.info-box span { display: inline; }


/* Fix unclosed links in info-box shouldn't spill */
.info-box a { display: inline; }
.info-box span { display: inline; }




/* Booking process / modals: see booking.css */

/* ============================================================
   MOBILE / TABLET RESPONSIVE POLISH (site-wide)
   Addresses phone + tablet layout for offers, booking, nav,
   hero, dashboards, forms, and general overflow safety.
   ============================================================ */

html, body {
  overflow-x: clip;
  max-width: 100%;
}

/* Tighter container padding on very small phones */
@media (max-width: 400px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Header logo — prevent SVG percentage width from blowing up */
.site-header .logo-lockup {
  width: 118px !important;
  max-width: 42vw !important;
  height: auto !important;
  max-height: 52px !important;
}
@media (min-width: 640px) {
  .site-header .logo-lockup {
    width: 140px !important;
    max-width: none !important;
    max-height: 62px !important;
  }
}
@media (min-width: 1024px) {
  .site-header .logo-lockup {
    width: 160px !important;
    max-height: 72px !important;
  }
}

/* Mobile menu full-width under header */
.mobile-menu {
  margin-left: 1rem;
  margin-right: 1rem;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Hero actions stack cleanly on narrow screens */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-stats {
    justify-content: space-between;
    gap: 0.75rem;
  }
  .hero-stat-num {
    font-size: 1.35rem;
  }
  .hero-stat-label {
    font-size: 0.65rem;
  }
}

/* Section CTA row under offers — stack on phones */
#offers .text-center.mt-8 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
#offers .text-center.mt-8 .btn {
  margin-left: 0 !important;
}
@media (max-width: 400px) {
  #offers .text-center.mt-8 {
    flex-direction: column;
    align-items: stretch;
  }
  #offers .text-center.mt-8 .btn {
    width: 100%;
  }
}

/* Date strip — smoother horizontal scroll on touch */
.date-strip {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.date-strip::-webkit-scrollbar {
  display: none;
}
.date-pill {
  min-width: 2.9rem;
}
@media (max-width: 400px) {
  .date-strip-arrow,
  .pkg-cat-arrow {
    width: 28px;
    height: 28px;
  }
  .pkg-cat-label {
    min-width: 0;
    flex: 1;
    font-size: 0.88rem;
  }
}

/* Package list heights less aggressive on short mobile viewports */
@media (max-width: 767px) {
  .pkg-items {
    max-height: none;
    overflow-y: visible;
  }
  .timetable {
    max-height: min(48vh, 360px);
  }
  .day-sheet {
    min-height: 0;
  }
  .book-col-title {
    font-size: 1.1rem;
  }
}

/* Pricing choice cards on pilates — readable on phone */
.pricing-choice-card {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-choice-card:hover {
  color: inherit;
  transform: translateY(-3px);
}
.pricing-choice-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral-600);
}
@media (max-width: 639px) {
  .grid.grid-3.mt-8 {
    gap: 1rem;
  }
  .pricing-choice-card .card-body {
    padding: 1.25rem 1.15rem;
  }
}

/* Class guide cards */
@media (max-width: 639px) {
  .class-mini .card-body {
    padding: 1.15rem;
  }
}

/* CTA banner text scale */
@media (max-width: 480px) {
  .cta-banner {
    padding: 3.5rem 0;
  }
  .cta-banner h2 {
    font-size: 1.85rem;
  }
  .cta-banner p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-banner .flex {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-banner .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Auth / login card on mobile */
@media (max-width: 640px) {
  .auth-card {
    border-radius: 1rem;
    overflow: hidden;
  }
  .auth-form-side {
    padding: 1.5rem 1.15rem;
  }
}

/* Forms — prevent input zoom issues and overflow */
input, select, textarea, button {
  max-width: 100%;
}
@media (max-width: 640px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}

/* Footer stack */
@media (max-width: 640px) {
  .footer-grid {
    gap: 1.5rem;
  }
  .site-footer {
    padding-bottom: 2rem;
  }
}

/* Contact / membership grids */
@media (max-width: 639px) {
  .contact-item > div {
    padding: 1.15rem !important;
  }
}

/* Service split sections */
@media (max-width: 1023px) {
  .service-row,
  .service-block {
    grid-template-columns: 1fr !important;
  }
}

/* Prevent fixed min-heights from forcing awkward scroll on short phones */
@media (max-width: 480px) {
  .hero {
    min-height: 85vh;
    min-height: 85dvh;
  }
  .page-hero {
    min-height: 42vh;
  }
  .page-hero-content {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }
}

/* Utility: safe flexible buttons in stacked rows */
@media (max-width: 480px) {
  .flex.flex-wrap.gap-4.justify-center {
    flex-direction: column;
    align-items: stretch;
  }
  .flex.flex-wrap.gap-4.justify-center .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Offers section CTA row */
.offers-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
}
@media (max-width: 400px) {
  .offers-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .offers-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Service articles — tighter padding on phones */
@media (max-width: 640px) {
  .service-body {
    padding: 1.35rem 1.15rem;
  }
  .service-body h3 {
    font-size: 1.45rem;
  }
  .service-img {
    height: 220px;
  }
}

/* Ensure tables elsewhere don't blow out the viewport */
.table-wrap,
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* ========== About page — tighter sections & modality cards ========== */
.section.section-tight {
  padding: 1.65rem 0;
}
@media (min-width: 768px) {
  .section.section-tight {
    padding: 2rem 0;
  }
}
@media (min-width: 1024px) {
  .section.section-tight {
    padding: 2.35rem 0;
  }
}

.about-vision-wrap {
  max-width: 100%;
  margin: 0 auto;
}
.about-vision-card {
  text-align: center;
  padding: 2.25rem 1.75rem;
  border-radius: 1.1rem;
  max-width: 52rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .about-vision-card {
    padding: 2.75rem 3rem;
  }
}
.about-vision-card .feature-icon-coral {
  margin-left: auto;
  margin-right: auto;
}
.about-vision-card h3 {
  margin-bottom: 0.65rem;
}
.about-vision-card p {
  margin: 0 auto;
  max-width: 34rem;
}

.about-heading-tight .section-intro {
  margin-top: 0.65rem;
  margin-bottom: 0;
}
.about-values-grid,
.about-instructors-grid {
  margin-top: 1.75rem !important;
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .about-values-grid,
  .about-instructors-grid {
    gap: 1.35rem;
  }
}

.about-modality-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
@media (min-width: 900px) {
  .about-modality-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.about-modality-card {
  display: flex;
  flex-direction: column;
  background: var(--sand-50, #faf7f1);
  border: 1.5px solid var(--sand-200, #e8e0d4);
  border-radius: 1.1rem;
  overflow: hidden;
  height: 100%;
}
.about-modality-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand-200);
}
.about-modality-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-modality-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.about-modality-body h3 {
  margin: 0;
  font-size: 1.2rem;
}
.about-modality-body > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(43, 58, 56, 0.85);
}
.about-modality-list {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(43, 58, 56, 0.8);
}
.about-modality-list li {
  padding-left: 0.15rem;
}

/* Founder / story grids — less vertical gap on about */
.founder-grid {
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .founder-grid {
    gap: 2rem;
  }
}
.instructor-card .card-body {
  padding: 1.15rem 1.2rem 1.35rem;
}
.instructor-card .card-body p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}


/* ===== Mood-board brand refinements ===== */
.btn-coral,
.btn-teal {
  background: var(--mauve) !important;
  border-color: var(--mauve) !important;
  color: #fff !important;
}
.btn-coral:hover,
.btn-teal:hover {
  background: var(--coral-600) !important;
  border-color: var(--coral-600) !important;
  color: #fff !important;
}
.btn-outline-dark {
  border-color: var(--onyx) !important;
  color: var(--onyx) !important;
}
.btn-outline-dark:hover {
  background: var(--onyx) !important;
  color: var(--warm-white) !important;
}

.bg-teal {
  background-color: var(--mauve) !important;
  color: var(--warm-white);
}
.bg-teal .section-title.light,
.bg-teal .section-intro.light,
.bg-teal .eyebrow.light {
  color: var(--warm-white) !important;
}

.eyebrow,
.hero-eyebrow {
  color: var(--mauve) !important;
  letter-spacing: 0.18em;
}
.text-accent { color: var(--mauve) !important; }

.badge-coral {
  background: rgba(196, 158, 158, 0.18) !important;
  color: var(--coral-700) !important;
}
.badge-teal {
  background: rgba(196, 158, 158, 0.14) !important;
  color: var(--teal-700) !important;
}

/* Logo on light surfaces → Onyx; on mauve/dark → Warm White */
.logo-lockup path.logo-stroke,
.logo-lockup path {
  stroke: var(--onyx) !important;
}
.logo-lockup text.logo-caption,
.logo-lockup text {
  fill: var(--onyx) !important;
}
/* Home hero logo is exempt — see hero-home.css */
.hero .hero-home-logo path,
.hero .hero-home-logo path.logo-stroke {
  stroke: #F5F2EE !important;
}
.hero .hero-home-logo text,
.hero .hero-home-logo text.logo-caption {
  fill: #F5F2EE !important;
}
.site-header:not(.scrolled) .logo-lockup path.logo-stroke,
.site-header:not(.scrolled) .logo-lockup path {
  stroke: var(--warm-white) !important;
}
.site-header:not(.scrolled) .logo-lockup text.logo-caption,
.site-header:not(.scrolled) .logo-lockup text {
  fill: var(--warm-white) !important;
}
/* Transparent header over hero may need light logo — keep scrolled onyx */

.site-footer {
  background: var(--onyx) !important;
}
.site-footer .footer-logo-lockup path,
.site-footer .footer-logo-lockup .logo-stroke {
  stroke: var(--warm-white) !important;
}
.site-footer .footer-logo-lockup text,
.site-footer .footer-logo-lockup .logo-caption {
  fill: var(--warm-white) !important;
}

.offer-card-price,
.product-price {
  color: var(--coral-700) !important;
}

.dash-signout {
  background: #a85a5a !important;
  border-color: #8f4a4a !important;
}

::selection {
  background-color: var(--mauve);
  color: #fff;
}

a { color: var(--teal-600); }
a:hover { color: var(--teal-500); }




/* ===== Deep mauve chrome + white type (WCAG AA+) =====
   Accent mauve #C49E9E stays for page CTAs/badges on light surfaces.
   Header/footer use deepened mauve so #F5F2EE / #FFFFFF text & logo
   meet WCAG 2.1 AA (≥4.5:1 normal text). Chosen: #634848 (~8.2:1 vs white).
*/
:root {
  --chrome-bg: #634848;
  --chrome-bg-footer: #5A4040;
  --chrome-ink: #F5F2EE;           /* warm white on chrome */
  --chrome-ink-pure: #FFFFFF;
  --chrome-muted: rgba(245, 242, 238, 0.78);
  --chrome-line: rgba(245, 242, 238, 0.16);
  --accent-mauve: #C49E9E;
  --accent-mauve-deep: #8F6A6A;    /* white-on-this ≈ 4.7:1 AA */
}

.site-header,
.site-header.scrolled,
body.force-solid-header .site-header {
  background-color: var(--chrome-bg) !important;
  background: var(--chrome-bg) !important;
  box-shadow: 0 10px 28px -14px rgba(17, 17, 17, 0.35);
  border-bottom: 1px solid var(--chrome-line);
}

/* Logo — warm white before hover */
.site-header .logo,
.site-header .logo-lockup { color: var(--chrome-ink) !important; }
.site-header .logo .logo-stroke,
.site-header .logo-lockup path.logo-stroke,
.site-header .logo-lockup path,
.site-header.scrolled .logo .logo-stroke,
.site-header.scrolled .logo-lockup path,
.site-header:not(.scrolled) .logo-lockup path.logo-stroke,
.site-header:not(.scrolled) .logo-lockup path,
body.force-solid-header .site-header .logo .logo-stroke,
body.force-solid-header .site-header .logo-lockup path {
  stroke: var(--chrome-ink) !important;
}
.site-header .logo .logo-caption,
.site-header .logo-lockup text.logo-caption,
.site-header .logo-lockup text,
.site-header.scrolled .logo .logo-caption,
.site-header.scrolled .logo-lockup text,
.site-header:not(.scrolled) .logo-lockup text.logo-caption,
.site-header:not(.scrolled) .logo-lockup text,
body.force-solid-header .site-header .logo .logo-caption,
body.force-solid-header .site-header .logo-lockup text {
  fill: var(--chrome-ink) !important;
}
.site-header .logo:hover .logo-stroke,
.site-header .logo:hover .logo-lockup path,
.site-header.scrolled .logo:hover .logo-stroke,
.site-header.scrolled .logo:hover .logo-lockup path {
  stroke: var(--chrome-ink-pure) !important;
}
.site-header .logo:hover .logo-caption,
.site-header .logo:hover .logo-lockup text,
.site-header.scrolled .logo:hover .logo-caption,
.site-header.scrolled .logo:hover .logo-lockup text {
  fill: var(--chrome-ink-pure) !important;
}

/* Nav — warm white */
.site-header .nav-link,
.site-header.scrolled .nav-link,
body.force-solid-header .site-header .nav-link {
  color: var(--chrome-ink) !important;
  opacity: 0.9;
}
.site-header .nav-link:hover,
.site-header .nav-link.active,
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active,
body.force-solid-header .site-header .nav-link:hover {
  color: var(--chrome-ink-pure) !important;
  opacity: 1;
}
.site-header .nav-link::after {
  background: var(--chrome-ink) !important;
}

/* Portal — white outline */
.site-header .portal-link,
.site-header.scrolled .portal-link,
body.force-solid-header .site-header .portal-link {
  color: var(--chrome-ink) !important;
  border: 1.5px solid rgba(245, 242, 238, 0.55) !important;
  background: transparent !important;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-weight: 600;
}
.site-header .portal-link:hover,
.site-header.scrolled .portal-link:hover {
  background: rgba(245, 242, 238, 0.12) !important;
  border-color: var(--chrome-ink-pure) !important;
  color: var(--chrome-ink-pure) !important;
}

/* Header primary CTA — solid warm white on deep chrome (max contrast) */
.site-header .btn-coral,
.site-header .header-actions .btn-coral,
.mobile-menu .btn-coral {
  background: var(--chrome-ink) !important;
  border-color: var(--chrome-ink) !important;
  color: var(--chrome-bg) !important;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.35);
  font-weight: 600;
}
.site-header .btn-coral:hover,
.site-header .header-actions .btn-coral:hover,
.mobile-menu .btn-coral:hover {
  background: var(--chrome-ink-pure) !important;
  border-color: var(--chrome-ink-pure) !important;
  color: #5A4040 !important;
}

.site-header .mobile-nav-btn,
.site-header.scrolled .mobile-nav-btn {
  color: var(--chrome-ink) !important;
}

.mobile-menu {
  background: var(--chrome-bg) !important;
  color: var(--chrome-ink) !important;
  border-top: 1px solid var(--chrome-line);
}
.mobile-menu a { color: var(--chrome-ink) !important; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--chrome-ink-pure) !important; }

/* Footer */
.site-footer {
  background: var(--chrome-bg-footer) !important;
  color: var(--chrome-ink) !important;
  border-top: 1px solid var(--chrome-line);
}
.site-footer .footer-brand-link { color: var(--chrome-ink) !important; }
.site-footer .footer-logo-lockup path,
.site-footer .footer-logo-lockup .logo-stroke {
  stroke: var(--chrome-ink) !important;
}
.site-footer .footer-logo-lockup text,
.site-footer .footer-logo-lockup .logo-caption {
  fill: var(--chrome-ink) !important;
}
.site-footer .footer-brand-text { color: var(--chrome-muted) !important; }
.site-footer .footer-heading {
  color: var(--chrome-ink) !important;
  letter-spacing: 0.14em;
}
.site-footer .footer-links a,
.site-footer .footer-contact-item,
.site-footer .footer-contact-item a {
  color: var(--chrome-muted) !important;
}
.site-footer .footer-links a:hover,
.site-footer .footer-contact-item a:hover {
  color: var(--chrome-ink-pure) !important;
}
.site-footer .footer-bottom {
  border-top-color: var(--chrome-line) !important;
  color: var(--chrome-muted) !important;
}

/* Social buttons — neutral plate; icons use brand fills */
.site-footer .social-link {
  background: rgba(245, 242, 238, 0.12) !important;
  color: var(--chrome-ink) !important;
}
.site-footer .social-link:hover {
  background: rgba(245, 242, 238, 0.22) !important;
}
.site-footer .social-link--instagram { color: #E1306C !important; }
.site-footer .social-link--instagram:hover { background: rgba(225, 48, 108, 0.2) !important; }
.site-footer .social-link--tiktok { color: #000000 !important; background: rgba(245, 242, 238, 0.95) !important; }
.site-footer .social-link--tiktok:hover { background: #fff !important; }
.site-footer .social-link--whatsapp { color: #25D366 !important; }
.site-footer .social-link--whatsapp:hover { background: rgba(37, 211, 102, 0.2) !important; }

/* Page accents (light surfaces) — original mauve */
.btn-coral,
.btn-teal {
  background: var(--accent-mauve-deep) !important;
  border-color: var(--accent-mauve-deep) !important;
  color: #fff !important;
}
.btn-coral:hover,
.btn-teal:hover {
  background: #6F5252 !important;
  border-color: #6F5252 !important;
}
.eyebrow, .hero-eyebrow, .text-accent {
  color: var(--accent-mauve-deep) !important;
}
.badge-coral {
  background: rgba(196, 158, 158, 0.22) !important;
  color: #6F5252 !important;
}

/* Dashboard header — same deep chrome + white type */
.dash-header {
  background: var(--chrome-bg) !important;
  border-bottom: 1px solid var(--chrome-line) !important;
  box-shadow: 0 8px 22px -14px rgba(17, 17, 17, 0.3);
}
.dash-brand .logo-lockup,
.dash-logo-svg { color: var(--chrome-ink) !important; }
.dash-brand .logo-lockup path,
.dash-brand .logo-stroke { stroke: var(--chrome-ink) !important; }
.dash-brand .logo-lockup text,
.dash-brand .logo-caption { fill: var(--chrome-ink) !important; }
.dash-site-link {
  background: transparent !important;
  border: 1.5px solid rgba(245, 242, 238, 0.45) !important;
  color: var(--chrome-ink) !important;
}
.dash-site-link:hover {
  background: rgba(245, 242, 238, 0.12) !important;
  color: var(--chrome-ink-pure) !important;
}
.dash-user-chip {
  background: rgba(245, 242, 238, 0.1) !important;
  border: 1px solid var(--chrome-line) !important;
}
.dash-user-name { color: var(--chrome-ink) !important; }
.dash-user-role { color: var(--chrome-muted) !important; }
.dash-signout {
  background: var(--chrome-ink) !important;
  color: var(--chrome-bg) !important;
  border-color: var(--chrome-ink) !important;
  box-shadow: none !important;
}
.dash-signout:hover {
  background: var(--chrome-ink-pure) !important;
  color: #5A4040 !important;
}
.dash-drawer { background: #F5F2EE !important; }
.dash-nav-item.active {
  background: var(--accent-mauve-deep) !important;
  color: #fff !important;
}


/* ===== Final polish: social clarity, dash header, spacing ===== */
.social-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.1rem;
}
.site-footer .social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 242, 238, 0.14) !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.site-footer .social-link:hover {
  transform: translateY(-1px);
}
.site-footer .social-link svg {
  width: 22px;
  height: 22px;
  display: block;
}
.site-footer .social-link--instagram {
  background: rgba(255, 255, 255, 0.12) !important;
}
.site-footer .social-link--tiktok {
  background: #ffffff !important;
}
.site-footer .social-link--whatsapp {
  background: rgba(37, 211, 102, 0.12) !important;
}

/* Dashboard header: balanced space, not edge-squeezed */
.dash-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem !important;
  min-height: 64px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .dash-header-inner {
    padding: 0.95rem 1.75rem !important;
    min-height: 72px;
    gap: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .dash-header-inner {
    padding: 1rem 2rem !important;
    min-height: 76px;
    gap: 2rem !important;
  }
}
.dash-brand {
  flex: 0 1 auto;
  margin-right: auto !important;
  min-width: 0;
}
.dash-header-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex: 0 0 auto;
  gap: 0.65rem !important;
  margin-left: 0 !important;
}
@media (min-width: 768px) {
  .dash-header-actions { gap: 0.85rem !important; }
}
@media (min-width: 1024px) {
  .dash-header-actions { gap: 1rem !important; }
}

/* Sign out: readable default + clear hover (not washed out) */
.dash-signout {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  background: #F5F2EE !important;
  color: #634848 !important;
  border: 1.5px solid #F5F2EE !important;
  border-radius: 999px;
  padding: 0.45rem 0.9rem !important;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.dash-signout:hover,
.dash-signout:focus {
  background: #c62828 !important;
  border-color: #c62828 !important;
  color: #ffffff !important;
}
.dash-signout:hover .power-icon,
.dash-signout:focus .power-icon {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* Page rhythm — slightly tighter common stacks */
.section-heading { margin-bottom: 1.1rem; }
@media (min-width: 1024px) {
  .section-heading { margin-bottom: 1.35rem; }
}
.grid.mt-8 { margin-top: 1.5rem !important; }
@media (min-width: 768px) {
  .grid.mt-8 { margin-top: 1.85rem !important; }
}
.page-hero { min-height: clamp(280px, 42vh, 420px); }
.page-hero-content {
  padding-top: clamp(6.5rem, 12vw, 9rem) !important;
  padding-bottom: clamp(2.75rem, 5vw, 4rem) !important;
}
.page-hero .eyebrow,
.page-hero .hero-eyebrow {
  display: inline-block;
  margin-top: 0.25rem;
}

/* Mobile content breathing room without large voids */
@media (max-width: 640px) {
  .section { padding: 1.6rem 0; }
  .section-lg { padding: 2.25rem 0; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .dash-header-inner {
    padding: 0.7rem 0.9rem !important;
    min-height: 56px;
  }
}


/* Home hero: logo-first */
.hero-home-logo {
  width: min(92vw, 720px) !important;
  max-width: 760px !important;
  height: auto !important;
  margin: 0 auto 1.5rem !important;
  color: #F5F2EE !important;
  filter: drop-shadow(0 10px 32px rgba(0,0,0,0.28));
}
.hero-home-logo path { stroke: #F5F2EE !important; }
.hero-home-logo text { fill: #F5F2EE !important; }
.hero.hero-centered .hero-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
  padding-top: clamp(7rem, 16vw, 10rem);
}
.hero.hero-centered .hero-title {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.hero.hero-centered .hero-actions {
  justify-content: center;
}

/* Opening offers layout */
.opening-offers-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
@media (min-width: 900px) {
  .opening-offers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}
.offer-feature-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.offer-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.offer-feature-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--coral-700);
  margin-bottom: 0.75rem;
}
.offer-feature-card ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.1rem;
  color: rgba(17,17,17,0.75);
  font-size: 0.92rem;
  line-height: 1.55;
}
.offer-feature-card .btn { margin-top: auto; align-self: flex-start; }
.package-row-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .package-row-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.package-mini-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(17,17,17,0.08);
  text-align: center;
}
.package-mini-card h4 { margin-bottom: 0.35rem; }
.package-mini-card .price {
  font-weight: 700;
  color: var(--coral-700);
  font-size: 1.1rem;
}
.package-mini-card .meta {
  font-size: 0.85rem;
  color: rgba(17,17,17,0.6);
  margin: 0.35rem 0 1rem;
}


/* ===== Home hero: large centered logo + slides (remade-style) ===== */
.hero.hero-slider {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #634848;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide--mauve {
  background: #634848;
}
.hero-overlay--soft {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17,17,17,0.35) 0%, rgba(17,17,17,0.55) 100%);
  pointer-events: none;
}
.hero-slide--mauve + .hero-overlay--soft,
.hero-slider:has(.hero-slide--mauve.is-active) .hero-overlay--soft {
  background: rgba(17, 17, 17, 0.12);
}
.hero.hero-slider .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 8rem) 1.25rem 3rem;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-home-logo {
  width: min(420px, 88vw) !important;
  max-width: 480px;
  height: auto !important;
  margin: 0 auto 1.75rem !important;
  color: #F5F2EE;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.25));
}
@media (min-width: 768px) {
  .hero-home-logo { width: min(85vw, 680px) !important; }
}
@media (min-width: 1024px) {
  .hero-home-logo { width: min(72vw, 760px) !important; }
}
@media (min-width: 1400px) {
  .hero-home-logo { width: min(820px, 55vw) !important; }
}
.hero-home-logo path,
.hero-home-logo .logo-stroke {
  stroke: #F5F2EE !important;
  stroke-width: 9 !important;
}
.hero-home-logo text,
.hero-home-logo .logo-caption {
  fill: #F5F2EE !important;
  font-size: 18px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 400;
  color: rgba(245, 242, 238, 0.92);
  letter-spacing: 0.04em;
  margin: 0 0 1.75rem;
}
.btn-hero-outline {
  background: transparent !important;
  color: #F5F2EE !important;
  border: 1.5px solid rgba(245, 242, 238, 0.75) !important;
  border-radius: 2px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.btn-hero-outline:hover {
  background: #F5F2EE !important;
  color: #634848 !important;
}
.hero-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2.25rem;
  justify-content: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(245, 242, 238, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.is-active {
  background: #F5F2EE;
  transform: scale(1.25);
}

/* Begin Your Aura — image + copy grid */
.begin-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .begin-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}
.begin-grid-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1.1rem;
}
.begin-grid-copy p {
  color: rgba(17,17,17,0.8);
  line-height: 1.7;
  margin-top: 0.85rem;
  font-size: 0.98rem;
}
.begin-closing {
  font-weight: 600 !important;
  color: #634848 !important;
  margin-top: 1.15rem !important;
}

/* Opening offers — remade-inspired framed grid (1 → 2 cols) */
.opening-4grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(99, 72, 72, 0.28);
}
@media (min-width: 768px) {
  .opening-4grid {
    grid-template-columns: 1fr 1fr;
  }
}
.offer-feature-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2rem 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(99, 72, 72, 0.22);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .offer-feature-card {
    padding: 2.25rem 1.75rem 1.85rem;
    border-bottom: 1px solid rgba(99, 72, 72, 0.22);
  }
  .offer-feature-card:nth-child(odd) {
    border-right: 1px solid rgba(99, 72, 72, 0.22);
  }
  .offer-feature-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .offer-feature-card:last-child {
    border-bottom: none;
  }
}
.offer-feature-card .badge {
  align-self: center;
  margin-bottom: 0.75rem;
}
.offer-feature-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-900, #111);
  margin: 0 0 0.65rem;
}
.offer-feature-card .offer-feature-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #634848;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}
.offer-feature-card .offer-cta-row {
  justify-content: center;
  margin-top: auto;
  padding-top: 1.25rem;
}
.offer-feature-card .offer-cta-row .btn {
  flex: 0 1 auto;
  min-width: 8.5rem;
}
.offer-feature-card ul {
  text-align: left;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.offer-feature-card .offer-lead {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0.35rem 0 0.5rem;
}
.offer-feature-card .offer-body {
  font-size: 0.88rem;
  color: rgba(17,17,17,0.72);
  line-height: 1.55;
}
.pack-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.85rem 0 1.15rem;
}
.pack-stack-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.7rem;
  background: #fff;
  border-radius: 0.65rem;
  border: 1px solid rgba(17,17,17,0.06);
}
.pack-stack-row span {
  display: block;
  font-size: 0.78rem;
  color: rgba(17,17,17,0.55);
  margin-top: 0.15rem;
}
.pack-stack-price {
  font-weight: 700;
  color: var(--coral-700, #7a5252);
  font-size: 0.9rem;
  white-space: nowrap;
}

.offer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}
.offer-cta-row .btn {
  flex: 1 1 auto;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.55rem 0.85rem;
}
.pack-stack-row {
  flex-wrap: wrap;
  align-items: center;
}
.pack-select-btn {
  margin-left: auto;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.78rem !important;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 699px) {
  .offer-cta-row .btn { flex: 1 1 100%; }
}


/* About — mission: always 2 columns (image narrow | copy wide) */
.about-mission-grid {
  display: grid !important;
  grid-template-columns: minmax(100px, 0.38fr) minmax(0, 1.62fr) !important;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .about-mission-grid {
    gap: 1.75rem 2rem;
  }
}
.about-mission-media {
  min-width: 0;
}
.about-mission-media img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}
@media (min-width: 768px) {
  .about-mission-media img {
    min-height: 220px;
    max-height: 380px;
    border-radius: 1rem;
  }
}
.about-mission-copy {
  min-width: 0;
}
.about-mission-copy .section-title {
  margin-top: 0.35rem;
}
.about-mission-copy p {
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.65;
  margin-top: 0.75rem;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .about-mission-copy p {
    font-size: 1.02rem;
  }
}

.offers-remade-section {
  background: #EFE8E4;
}
.offers-remade-section .section-heading {
  margin-bottom: 0.5rem;
}


/* ===== Restore opening offers: soft cards (not remade frames) ===== */
.offers-remade-section {
  background: var(--sand-50, #F5F2EE) !important;
}
.opening-4grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.25rem !important;
  margin-top: 1.75rem !important;
  max-width: 960px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border: none !important;
}
@media (min-width: 768px) {
  .opening-4grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
}
.offer-feature-card {
  background: #fff !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-radius: 1.1rem !important;
  box-shadow: 0 12px 40px -24px rgba(17, 17, 17, 0.2) !important;
  padding: 1.75rem 1.5rem !important;
  text-align: left !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
}
@media (min-width: 768px) {
  .offer-feature-card:nth-child(odd) {
    border-right: 1px solid rgba(17, 17, 17, 0.08) !important;
  }
  .offer-feature-card:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
  }
}
.offer-feature-card h3 {
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  font-size: 1.3rem !important;
  text-align: left !important;
  color: var(--ink-900, #111) !important;
}
.offer-feature-card .badge {
  align-self: flex-start !important;
}
.offer-feature-card .offer-feature-price {
  text-align: left !important;
  color: #7a5252 !important;
}
.offer-feature-card .offer-cta-row {
  justify-content: flex-start !important;
}
.offer-feature-card ul {
  text-align: left !important;
  display: block !important;
  margin-left: 0 !important;
}
.pack-stack-row {
  background: var(--sand-50, #F5F2EE) !important;
}

.offer-waitlist-note {
  max-width: 960px;
  margin: 1.25rem auto 0;
  padding: 0.85rem 1.1rem;
  border-radius: 0.85rem;
  background: rgba(196, 158, 158, 0.14);
  border: 1px solid rgba(196, 158, 158, 0.35);
  color: #4a3a3a;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}
.offer-waitlist-note strong {
  color: #6b4545;
}

/* Compact opening-offer cards: mini grids, CTAs only at bottom */
.offer-card-compact {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.65rem !important;
  padding: 1.25rem 1.15rem !important;
}
.offer-card-compact h3 {
  margin: 0 !important;
  font-size: 1.15rem !important;
}
.offer-card-compact .offer-lead {
  margin: 0 !important;
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
  color: rgba(43, 58, 56, 0.72) !important;
}
.offer-mini-grid {
  display: grid !important;
  gap: 0.5rem !important;
  margin: 0.15rem 0 0.35rem !important;
  flex: 1 1 auto !important;
}
.offer-mini-grid--2 {
  grid-template-columns: 1fr 1fr !important;
}
.offer-mini {
  background: var(--sand-50, #F5F2EE) !important;
  border-radius: 0.65rem !important;
  padding: 0.55rem 0.65rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.12rem !important;
  min-width: 0 !important;
}
.offer-mini--span {
  grid-column: 1 / -1 !important;
}
.offer-mini-label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  color: rgba(43, 58, 56, 0.7) !important;
  line-height: 1.25 !important;
}
.offer-mini-price {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #7a5252 !important;
  line-height: 1.2 !important;
}
.offer-mini-meta {
  font-size: 0.75rem !important;
  color: rgba(43, 58, 56, 0.62) !important;
  line-height: 1.3 !important;
}
.offer-card-compact .offer-cta-row {
  margin-top: auto !important;
  padding-top: 0.35rem !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}
.offer-card-compact .offer-cta-row .btn {
  flex: 1 1 auto !important;
  min-width: 7.5rem !important;
  text-align: center !important;
  font-size: 0.85rem !important;
  padding: 0.55rem 0.85rem !important;
}
@media (max-width: 480px) {
  .offer-mini-grid--2 {
    grid-template-columns: 1fr !important;
  }
  .offer-mini--span {
    grid-column: auto !important;
  }
}

.card.is-pkg-highlight {
  outline: 2px solid #C49E9E;
  box-shadow: 0 12px 40px -16px rgba(99, 72, 72, 0.45);
}


/* About — services grid + modal */
.about-service-grid {
  margin-top: 1.25rem;
  gap: 1rem;
}
.about-service-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
}
.about-service-card h3 {
  margin: 0;
  font-size: 1.15rem;
}
.about-service-card p {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(43, 58, 56, 0.82);
}
.about-service-card .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}
.service-modal[hidden] { display: none !important; }
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 16, 0.55);
}
.service-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(80vh, 640px);
  overflow: auto;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.35);
}
.service-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #444;
}
.service-modal-dialog h3 {
  margin: 0 1.5rem 0.75rem 0;
  font-size: 1.35rem;
}
.service-modal-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}
.service-modal-body p { margin: 0 0 0.85rem; }
.service-modal-body a { color: #7a5252; font-weight: 600; }
body.service-modal-open { overflow: hidden; }

/* Home rhythm: less gap between begin + offers */
.begin-grid-copy p { margin-bottom: 0.65rem; }
.begin-grid-copy p:last-child { margin-bottom: 0; }
.offers-remade-section .section-heading { margin-bottom: 1rem !important; }
.opening-4grid { margin-top: 1.15rem !important; }


/* Opening offers: always 2 columns in cards; discounted prices */
.offer-mini-grid--always-2 {
  grid-template-columns: 1fr 1fr !important;
}
@media (max-width: 480px) {
  .offer-mini-grid--always-2 {
    grid-template-columns: 1fr 1fr !important;
  }
  .offer-mini--span {
    grid-column: 1 / -1 !important;
  }
}
.price-was {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 0.78em;
  font-weight: 500;
  color: rgba(43, 58, 56, 0.45);
  text-decoration: line-through;
}
.offer-mini-price {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem;
}
.offer-col-pair {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.55rem !important;
  margin: 0.15rem 0 0.35rem !important;
  flex: 1 1 auto !important;
}
.offer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.offer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a5252;
  margin-bottom: 0.1rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(196, 158, 158, 0.35);
}
.offer-col .offer-mini {
  margin: 0;
}
/* Tighter gap: welcome → opening offers */
#begin-aura.section {
  padding-bottom: 0.85rem !important;
}
#offers.section,
.offers-remade-section.section {
  padding-top: 0.85rem !important;
}
@media (min-width: 1024px) {
  #begin-aura.section {
    padding-bottom: 1rem !important;
  }
  #offers.section,
  .offers-remade-section.section {
    padding-top: 1rem !important;
  }
}


/* Women\'s membership */
.women-hours-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.85rem 1.15rem;
  margin: 1rem auto 0;
  max-width: 48rem;
  border-radius: 0.85rem;
  background: rgba(196, 158, 158, 0.16);
  border: 1px solid rgba(196, 158, 158, 0.4);
  font-size: 0.9rem;
  color: #4a3a3a;
}
.women-hours-banner strong { color: #6b4545; }
.women-price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #7a3e2e;
  margin: 0.4rem 0;
}
.women-price span {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  color: rgba(43, 58, 56, 0.65);
}
.women-freq { font-size: 0.92rem; margin: 0.35rem 0; }
.women-subhead { font-size: 1.1rem; margin: 0 0 0.65rem; }
.women-home-teaser { max-width: 960px; margin: 1.25rem auto 0; }
.women-home-teaser-inner {
  background: #fff;
  border: 1px solid rgba(196, 158, 158, 0.45);
  border-radius: 1.1rem;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 12px 40px -24px rgba(17, 17, 17, 0.2);
  text-align: center;
}
.women-home-teaser-inner h3 { margin: 0.35rem 0 0.5rem; font-size: 1.35rem; }
.women-home-teaser-inner p {
  margin: 0 auto 0.85rem;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(43, 58, 56, 0.8);
}
.women-home-teaser .offer-cta-row { justify-content: center; }


.women-home-lead {
  margin: 0.35rem auto 0.85rem !important;
  max-width: 40rem !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}
.women-home-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 0 auto 0.75rem;
  max-width: 36rem;
  text-align: left;
}
@media (min-width: 560px) {
  .women-home-tiers {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 44rem;
    text-align: center;
  }
}
.women-home-tier {
  background: var(--sand-50, #F5F2EE);
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border: 1px solid rgba(196, 158, 158, 0.25);
}
.women-home-tier-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7a5252;
}
.women-home-tier-price {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #7a3e2e;
}
.women-home-tier-meta {
  font-size: 0.75rem;
  color: rgba(43, 58, 56, 0.7);
  line-height: 1.3;
}
.women-home-note {
  margin: 0 auto 0.85rem !important;
  max-width: 36rem !important;
  font-size: 0.8rem !important;
  color: rgba(43, 58, 56, 0.65) !important;
}


/* Women's offer card — match opening offer cards */
.women-offer-card {
  grid-column: 1 / -1 !important;
  margin-top: 0 !important;
}
.offer-mini-grid--3,
.offer-mini-grid--always-3 {
  display: grid !important;
  gap: 0.5rem !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  margin: 0.15rem 0 0.35rem !important;
}
@media (max-width: 560px) {
  .offer-mini-grid--3,
  .offer-mini-grid--always-3 {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 561px) and (max-width: 720px) {
  .offer-mini-grid--3,
  .offer-mini-grid--always-3 {
    grid-template-columns: 1fr 1fr !important;
  }
}
.women-offer-note {
  margin: 0.25rem 0 0 !important;
  font-size: 0.8rem !important;
  line-height: 1.45 !important;
  color: rgba(43, 58, 56, 0.68) !important;
}


.women-tier-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.women-tier-ctas .btn {
  flex: 1 1 auto;
  text-align: center;
  min-width: 8rem;
  font-size: 0.85rem;
  padding: 0.55rem 0.75rem;
}


.auth-forgot-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral-600, #a86b6b);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-forgot-link:hover {
  color: var(--coral-700, #7a3e2e);
}
.auth-panel-hidden { display: none; }


.tt-btn.is-contact {
  border-color: rgba(196, 158, 158, 0.55) !important;
  color: #7a3e2e !important;
  background: rgba(196, 158, 158, 0.12) !important;
}
.tt-btn.is-contact:hover {
  background: rgba(196, 158, 158, 0.22) !important;
}


.tt-gym-access {
  text-align: left;
  max-width: 28rem;
  margin: 0.5rem auto 0;
  padding: 1rem 0.25rem 0.5rem;
  color: rgba(43, 58, 56, 0.78);
}
.tt-gym-access h4 {
  color: var(--teal-800, #2b3a38);
  font-family: var(--font-display, Georgia, serif);
  font-weight: 600;
}
