/* ================================================
   ANCHORED IN MOTION — style.css
   
   BRAND COLOR VARIABLES:
   To retheme: edit values here only.
   ================================================ */
:root {
  --primary:      #4A2B68;   /* Deep purple — anchor logo, primary brand color */
  --primary-dark: #321d48;   /* Darker purple — hover states, footer bg */
  --primary-mid:  #6a3f90;   /* Mid purple — gradient fills */
  --accent-blue:  #7D95AB;   /* Steel blue — logo figure, secondary accents */
  --accent-light: #BFDBF7;   /* Pale sky blue — soft highlights, badges */
  --bg:           #F2F0E8;   /* Warm off-white — page background (matches logo bg) */
  --bg-tinted:    #e8e5d8;   /* Slightly deeper warm white — tinted sections */
  --bg-card:      #ffffff;   /* Card backgrounds */
  --text-dark:    #2a1a3e;   /* Near-black purple — headings */
  --text-mid:     #4a3f5c;   /* Medium — body text */
  --text-muted:   #7a6e8a;   /* Muted — captions, labels */
  --border:       rgba(74, 43, 104, 0.12);
  --shadow:       rgba(74, 43, 104, 0.09);
}

/* ================================================
   BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

em { font-style: italic; color: var(--primary); }

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

/* ================================================
   NAVBAR
   ================================================ */
#mainNav {
  background: var(--bg);               /* Always F2F0E8 warm off-white */
  padding: 0.4rem 0;
  box-shadow: 0 2px 16px rgba(74, 43, 104, 0.12);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

#mainNav.scrolled {
  padding: 0.25rem 0;
  box-shadow: 0 2px 24px rgba(74, 43, 104, 0.18);
}

.navbar-logo {
  height: 72px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

#mainNav.scrolled .navbar-logo { height: 58px; }

/* Nav links — purple on the warm-white bar */
.navbar-nav .nav-link {
  color: var(--primary) !important;
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
  opacity: 0.8;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  opacity: 1;
}

/* Book a Class button */
.btn-cta {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary) !important;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: all 0.2s;
}

.btn-cta:hover {
  background: var(--primary);
  color: var(--bg) !important;
}

/* Hamburger toggler — purple on warm white */
.navbar-toggler {
  border-color: rgba(74, 43, 104, 0.4);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234A2B68' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile dropdown — compact, right-aligned, fits content width */
@media (max-width: 991.98px) {
  #mainNav .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: auto;
    min-width: 200px;
    max-width: calc(100vw - 2rem);
    background: var(--bg);
    border: 1px solid rgba(74, 43, 104, 0.15);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(74, 43, 104, 0.14);
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    z-index: 1050;
  }

  #mainNav .navbar-nav {
    align-items: flex-start;
    padding: 0 0.25rem;
  }

  #mainNav .navbar-nav .nav-link {
    padding: 0.55rem 1rem !important;
    white-space: nowrap;
    width: 100%;
  }

  #mainNav .navbar-nav .nav-link:hover {
    background: rgba(74, 43, 104, 0.06);
    border-radius: 3px;
  }

  #mainNav .ms-lg-3 {
    margin-left: 0 !important;
    padding: 0.5rem 1rem 0.5rem;
  }

  #mainNav .btn-cta {
    display: inline-block;
    width: auto;
  }

  .navbar-logo { height: 58px; }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 0.79rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  font-size: 0.79rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 2px;
  font-size: 0.79rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
}

.btn-light-cta {
  background: var(--bg);
  color: var(--primary);
  border: none;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.8rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.btn-light-cta:hover {
  background: var(--accent-light);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ================================================
   SECTIONS
   ================================================ */
.section-padded { padding: 6rem 0; }
.section-tinted  { background: var(--bg-tinted); }

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1rem;
  line-height: 1.88;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

/* ================================================
   HERO — INDEX
   ================================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--primary) 0%, #3a2055 42%, var(--accent-blue) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(191,219,247,0.14) 0%, transparent 65%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float-shape 14s ease-in-out infinite;
}

.shape-1 {
  width: 600px; height: 600px;
  border: 1px solid rgba(191,219,247,0.1);
  top: -180px; right: -180px;
  animation-delay: 0s;
}

.shape-2 {
  width: 380px; height: 380px;
  border: 1px solid rgba(255,255,255,0.06);
  bottom: -80px; right: 15%;
  animation-delay: 5s;
}

.shape-3 {
  width: 200px; height: 200px;
  background: rgba(191,219,247,0.05);
  top: 35%; left: 58%;
  animation-delay: 9s;
}

@keyframes float-shape {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.04); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}

.hero-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  color: #fff;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.88;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin-bottom: 2.5rem;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.38);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.42), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: linear-gradient(150deg, var(--primary) 0%, #3a2055 45%, var(--accent-blue) 100%);
  padding: 10rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #fff;
}

/* ================================================
   INTRO STRIP
   ================================================ */
.intro-strip {
  background: var(--primary);
  padding: 0;
}

.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(255,255,255,0.07); }
.strip-icon { font-size: 1.1rem; color: var(--accent-light); }

/* ================================================
   IMAGE FRAME
   ================================================ */
.image-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.image-frame img,
.image-frame .img-placeholder {
  border-radius: 3px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.image-accent-box {
  position: absolute;
  width: 82%;
  height: 82%;
  border: 2px solid var(--accent-blue);
  border-radius: 3px;
  top: 18px;
  left: -18px;
  z-index: 0;
  opacity: 0.3;
}

.image-accent-box.right { left: auto; right: -18px; }

/* ================================================
   IMAGE PLACEHOLDERS
   ================================================ */
.img-placeholder {
  background: var(--bg-tinted);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  color: var(--text-muted);
  text-align: center;
  gap: 0.75rem;
  border: 2px dashed rgba(125,149,171,0.35);
  padding: 2rem;
}

.img-placeholder.tall    { min-height: 420px; }
.img-placeholder.gallery-ph { min-height: 220px; }
.img-placeholder.map-ph  { min-height: 260px; }
.img-placeholder i  { font-size: 2rem; opacity: 0.3; color: var(--accent-blue); }
.img-placeholder p  { font-size: 0.78rem; margin: 0; line-height: 1.6; color: var(--text-muted); }

/* ================================================
   CLASS CARDS
   ================================================ */
.class-card {
  background: var(--bg-card);
  border-radius: 3px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  height: 100%;
  position: relative;
}

.class-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px var(--shadow);
  border-color: var(--accent-blue);
}

.class-card.featured-card {
  background: linear-gradient(145deg, var(--primary) 0%, #3a2055 100%);
  border-color: transparent;
}

.class-card.featured-card h4,
.class-card.featured-card p { color: rgba(255,255,255,0.88); }

.class-card-icon { font-size: 1.7rem; color: var(--accent-blue); margin-bottom: 1rem; }

.class-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.class-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

.featured-badge {
  position: absolute;
  top: -10px; right: 1.5rem;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-card {
  background: var(--bg-card);
  border-radius: 3px;
  padding: 2rem;
  border-left: 3px solid var(--accent-blue);
  box-shadow: 0 4px 24px var(--shadow);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.testimonial-author { font-size: 0.76rem; color: var(--text-muted); }

.stars { color: #b89a3a; margin-bottom: 0.75rem; font-size: 0.9rem; letter-spacing: 2px; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: linear-gradient(150deg, var(--primary) 0%, #3a2055 50%, var(--accent-blue) 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(191,219,247,0.1), transparent 65%);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1rem; margin: 0; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--primary-dark);
  padding: 4.5rem 0 2rem;
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer h6 {
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 0.5rem; color: rgba(255,255,255,0.52); font-size: 0.84rem; }

.footer-links a { color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-light); }

.social-links { display: flex; gap: 1rem; margin-top: 0.5rem; }

.social-links a {
  color: rgba(255,255,255,0.52);
  font-size: 1.2rem;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}

.social-links a:hover { color: var(--accent-light); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

/* ================================================
   ABOUT — CREDENTIALS
   ================================================ */
.credentials-list { display: flex; flex-direction: column; gap: 0.75rem; }

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.credential-item i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

/* ================================================
   PHILOSOPHY CARDS
   ================================================ */
.philosophy-card {
  background: var(--bg-card);
  border-radius: 3px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow 0.22s, transform 0.22s;
}

.philosophy-card:hover { transform: translateY(-4px); box-shadow: 0 12px 38px var(--shadow); }
.philosophy-icon { font-size: 2rem; color: var(--accent-blue); margin-bottom: 1rem; }

.philosophy-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.philosophy-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

/* ================================================
   TIMELINE
   ================================================ */
.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent-blue));
  border-radius: 2px;
}

.timeline-item { position: relative; padding: 0 0 2.5rem 2.5rem; }

.timeline-dot {
  position: absolute;
  left: -7px; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-year {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.timeline-content h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.timeline-content p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

/* ================================================
   FACILITY — QUICK FACTS
   ================================================ */
.quick-facts { display: flex; gap: 2.5rem; flex-wrap: wrap; }

.quick-fact { display: flex; flex-direction: column; align-items: center; }

.fact-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
}

.fact-label { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem; }

/* ================================================
   GALLERY
   ================================================ */
.gallery-item { border-radius: 3px; overflow: hidden; }

.gallery-item.large .img-placeholder.gallery-ph,
.gallery-item.large img { min-height: 380px; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ================================================
   EQUIPMENT CARDS
   ================================================ */
.equipment-card {
  background: var(--bg-card);
  border-radius: 3px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow 0.22s, border-color 0.22s;
}

.equipment-card:hover { box-shadow: 0 10px 34px var(--shadow); border-color: var(--accent-blue); }
.equipment-icon { font-size: 1.6rem; color: var(--accent-blue); margin-bottom: 0.75rem; display: block; width: 1.8rem; height: 1.8rem; background-size: contain; background-repeat: no-repeat; vertical-align: middle;}
img.equipment-icon { width: 1.8rem; height: 1.8rem; }

.equipment-card h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.equipment-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; margin: 0; }

/* ================================================
   LOCATION INFO
   ================================================ */
.info-block { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.info-icon { font-size: 1.2rem; color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.info-block strong {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.info-block p { margin: 0; font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }

.hours-table td { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: var(--text-mid); }
.hours-table td:first-child { font-weight: 500; color: var(--text-dark); padding-right: 2rem; }
.hours-table tr:last-child td { border-bottom: none; }

/* ================================================
   PRICING
   ================================================ */
.new-client-banner {
  background: linear-gradient(135deg, var(--bg-tinted) 0%, rgba(191,219,247,0.25) 100%);
  border-radius: 3px;
  border-left: 4px solid var(--primary);
  padding: 2.5rem;
}

.new-client-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.new-client-banner p { color: var(--text-mid); margin: 0; font-size: 0.97rem; line-height: 1.75; }

.pricing-card {
  background: var(--bg-card);
  border-radius: 3px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
}

.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 18px 55px var(--shadow); }

.pricing-card.featured-pricing {
  background: linear-gradient(145deg, var(--primary) 0%, #3a2055 100%);
  border-color: transparent;
}

.pricing-type { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-blue); font-weight: 600; margin-bottom: 0.75rem; }
.featured-pricing .pricing-type { color: var(--accent-light); }

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.featured-pricing .pricing-price { color: #fff; }

.pricing-price span { font-size: 1rem; font-family: 'Jost', sans-serif; color: var(--text-muted); font-weight: 300; }
.featured-pricing .pricing-price span { color: rgba(255,255,255,0.52); }

.pricing-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.5rem; }
.featured-pricing .pricing-desc { color: rgba(255,255,255,0.7); }

.pricing-features { list-style: none; padding: 0; margin: 0; font-size: 0.87rem; color: var(--text-mid); }
.featured-pricing .pricing-features { color: rgba(255,255,255,0.82); }

.pricing-features li { padding: 0.4rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
.featured-pricing .pricing-features li { border-color: rgba(255,255,255,0.1); }
.pricing-features li i { color: var(--primary); font-size: 0.9rem; }
.featured-pricing .pricing-features li i { color: var(--accent-light); }
.pricing-features .text-muted i { color: #ccc; }

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-light);
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.private-rate-card { background: var(--bg-tinted); border-radius: 3px; overflow: hidden; border: 1px solid var(--border); }

.private-rate { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
.private-rate:last-child { border-bottom: none; }
.rate-label { font-size: 0.9rem; color: var(--text-mid); }
.rate-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--text-dark); }
.rate-price small { font-family: 'Jost', sans-serif; font-size: 0.72rem; color: var(--primary); margin-left: 0.3rem; }

/* ================================================
   SCHEDULE TABLE
   ================================================ */
.schedule-table-wrapper { overflow-x: auto; border-radius: 3px; box-shadow: 0 2px 20px var(--shadow); }

.schedule-table { background: var(--bg-card); border-collapse: collapse; min-width: 700px; }

.schedule-table th {
  background: var(--primary);
  color: rgba(255,255,255,0.88);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

.schedule-table th:first-child { text-align: left; padding-left: 1.5rem; }

.schedule-table td { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--border); text-align: center; vertical-align: middle; font-size: 0.84rem; color: var(--text-muted); }

.schedule-table td.time-cell { font-size: 0.8rem; font-weight: 500; color: var(--text-dark); text-align: left; padding-left: 1.5rem; white-space: nowrap; }

.sched-class {
  background: rgba(191,219,247,0.22);
  border-radius: 3px;
  padding: 0.4rem 0.6rem;
  display: inline-block;
  text-align: left;
  min-width: 110px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-dark);
  border-left: 3px solid var(--primary);
  line-height: 1.3;
}

.sched-class span { display: block; font-size: 0.65rem; font-weight: 300; color: var(--text-muted); margin-top: 2px; }

.sched-class.reformer { border-left-color: var(--accent-blue); background: rgba(125,149,171,0.12); }
.sched-class.stretch  { border-left-color: #8a6ab0; background: rgba(138,106,176,0.09); }

.schedule-legend { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-mid); }

.legend-dot { width: 12px; height: 12px; border-radius: 2px; flex-shrink: 0; }
.legend-dot.mat { background: var(--primary); }
.legend-dot.ref { background: var(--accent-blue); }
.legend-dot.str { background: #8a6ab0; }

/* ================================================
   FAQ ACCORDION
   ================================================ */
.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 3px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}

.custom-accordion .accordion-button {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(191,219,247,0.18);
  box-shadow: none;
}

.custom-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  background: rgba(191,219,247,0.1);
  padding: 1rem 1.5rem 1.5rem;
}

/* ================================================
   FADE-IN ANIMATIONS
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .section-padded { padding: 4rem 0; }
  .hero-title { font-size: 3rem; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .quick-facts { justify-content: center; }
  .private-rate { flex-direction: column; gap: 0.25rem; text-align: center; }
  .schedule-legend { gap: 1rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-actions .btn-primary-custom,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    display: block;
  }
  .image-accent-box { display: none; }
  .navbar-logo { height: 40px; }
  .hero-content { padding-top: 7rem; }
  .hero-subtitle { max-width: 100%; }
  .hero-section { overflow: hidden; }

  /* Prevent any element from exceeding viewport width */
  .container { max-width: 100%; }
  section { overflow-x: hidden; }
}
