/* Perle PT & Pilates — Shared Stylesheet */

/* ══════════════════════════════════
   BRAND TOKENS
══════════════════════════════════ */
:root {
  --aqua:        #2EC4C4;   /* aqua — Pilates accent */
  --navy:        #4AACC8;   /* sky blue — primary */
  --navy-dark:   #2980A0;   /* deep sky — footer, dark surfaces */
  --navy-mid:    #3A9ABB;   /* mid sky — accents, hover */
  --champagne:   #C9908A;   /* blush rose — accent, CTAs */
  --champ-lt:    #D9ADA9;   /* light blush */
  --pearl:       #DCF0F7;   /* pale sky — section tint surfaces */
  --pearl-mid:   #C4DCE8;
  --pearl-dark:  #A8C8D8;
  --sage:        #C07878;   /* deeper rose — tertiary accent */
  --white:       #FFFFFF;
  --off-white:   #FAF6F3;   /* warm cream */
  --charcoal:    #1C2E3C;   /* dark slate for body text */
  --gray:        #5A6B78;
  --gray-lt:     #D8E4EA;
}

/* ══════════════════════════════════
   RESET & BASE
══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
  background: var(--white);
  color: var(--charcoal);
  font-size: 17.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ══════════════════════════════════
   META BAR & PAGE NAV
══════════════════════════════════ */
/* meta-bar and page-nav removed — prototype chrome stripped */




/* ══════════════════════════════════
   CONSULTANT NOTES
══════════════════════════════════ */
.note {
  background: #FFFBEC;
  border-left: 3px solid #E8C35A;
  padding: 9px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  color: #7A5A1E; letter-spacing: 0.02em; line-height: 1.6;
}
.note strong { font-weight: 500; color: #6B4C10; }

/* ══════════════════════════════════
   SITE HEADER — two-tier
══════════════════════════════════ */
.site-header { display: flex; flex-direction: column; }

/* White logo bar */
.logo-bar {
  background: #ffffff;
  padding: 18px 52px;
  border-bottom: 1px solid var(--gray-lt);
  display: flex; align-items: center; gap: 20px;
}
.logo-inline {
  display: flex; align-items: center; gap: 10px; margin-bottom: 5px;
}
.logo-name {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 20px; letter-spacing: 0.46em; color: var(--navy-dark);
  text-transform: uppercase; line-height: 1;
}
.logo-sub {
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.2em; color: var(--gray);
  text-transform: uppercase; margin-left: 0;
}
.logo-tag {
  font-family: 'Raleway', sans-serif; font-style: italic; font-weight: 500;
  font-size: 10px; letter-spacing: 0.14em; color: rgba(42,42,42,0.58);
  margin-top: 3px; margin-left: 0;
}

/* Summer popup */
#summer-popup {
  display:none; position:fixed; inset:0; z-index:99998;
  background:rgba(28,46,60,0.72); align-items:center; justify-content:center;
}
#summer-popup.visible { display:flex; animation:fadeInPop 0.4s ease; }
@keyframes fadeInPop { from{opacity:0;transform:scale(0.96)} to{opacity:1;transform:scale(1)} }
.popup-card {
  background:#fff; border-radius:6px; padding:48px 52px; max-width:440px; width:90%;
  text-align:center; position:relative;
}
.popup-close {
  position:absolute; top:14px; right:18px; background:none; border:none;
  font-size:20px; color:var(--gray); cursor:pointer; line-height:1;
}
.popup-eyebrow {
  font-family:'Raleway',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.22em; text-transform:uppercase; color:var(--champagne); margin-bottom:14px;
}
.popup-card h3 {
  font-family:'Raleway',sans-serif; font-weight:200; font-size:30px;
  color:var(--charcoal); line-height:1.25; margin-bottom:10px;
}
.popup-card p { font-size:14px; color:var(--gray); margin-bottom:28px; line-height:1.65; }
.popup-cta {
  background:var(--champagne); color:#fff; border:none; padding:13px 36px;
  border-radius:3px; font-family:'DM Sans',sans-serif; font-size:13px;
  font-weight:500; letter-spacing:0.08em; cursor:pointer; transition:background 0.18s;
}
.popup-cta:hover { background:var(--champ-lt); }

/* Social icons */
.social-icons { display:flex; align-items:center; gap:16px; margin-left:auto; }
.social-icons a { display:flex; align-items:center; color:var(--gray); transition:color 0.18s; }
.social-icons a:hover { color:var(--navy); }
.social-icons svg { width:18px; height:18px; }
.logo-bar-left { display:flex; flex-direction:column; }

/* Content wrap — horizontal padding for inner pages */
.content-wrap { max-width: 1160px; margin: 0 auto; padding-left: 52px; padding-right: 52px; }

/* Account button in header — desktop only (mobile uses nav link) */
.account-btn {
  background: #1C2E3C; color: #fff; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 3px; cursor: pointer;
  margin-left: 16px; white-space: nowrap; transition: background 0.18s;
}
.account-btn:hover { background: #2A3D4C; }
@media (max-width: 820px) { .account-btn { display: none; } }

/* Account nav link — mobile only (desktop uses the header button) */
.nav-account { display: none; }
@media (max-width: 820px) { .nav-account { display: block; } }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; margin-left:8px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--charcoal); border-radius:2px; transition:all 0.25s; }
/* Animate to X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-only persistent "View Specials" CTA in logo-bar */
.mobile-specials {
  display: none;
}

@media (max-width: 820px) {
  .hamburger { display:flex; margin-left: auto; }
  /* Full-screen takeover nav */
  .nav-bar { display:none !important; }
  .nav-bar.open {
    display: flex !important; position: fixed !important; inset: 0 !important;
    z-index: 9999 !important; flex-direction: column !important;
    align-items: flex-start !important; justify-content: flex-start !important;
    padding: 90px 40px 60px !important; overflow-y: auto !important;
    background: var(--navy-dark) !important;
  }
  .nav-bar a { margin-right:0; padding: 18px 0 !important; width:100%; border-bottom:1px solid rgba(255,255,255,0.1); font-size: 18px !important; letter-spacing: 0.1em !important; }
  .nav-bar a:last-child { border-bottom:none; }
  /* Close (✕) button inside overlay */
  .nav-close { display: none; }
  .nav-bar.open .nav-close {
    display: flex !important; align-items: center; justify-content: center;
    position: fixed; top: 16px; right: 16px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.80); border: 1.5px solid rgba(255,255,255,0.35); border-radius: 50%;
    color: #fff; font-size: 22px; line-height: 1; cursor: pointer; z-index: 10000;
  }
  .nav-push { display:none; }
  /* Hide the nav-cta inside the dropdown — standalone button handles this */
  /* Sticky header — promo banner scrolls away */
  .site-header { position: sticky; top: 0; z-index: 1000; }
  /* Compact logo bar — only logo + hamburger */
  .logo-bar { padding: 10px 18px; }
  .logo-bar-left { flex-direction: row; align-items: center; gap: 10px; }
  .logo-bar-left img { height: 40px !important; }
  .logo-inline { margin-bottom: 0; }
  .logo-sub { font-size: 9px; letter-spacing: 0.14em; }
  .logo-tag { display: none; }
  /* Hide social icons + specials button from logo bar */
  .social-icons { display: none; }
  .mobile-specials { display: none !important; }
  /* View Specials — visible in dropdown, styled as plain nav link with accent color */
  .nav-bar.open .nav-cta { display: block !important; margin: 0 !important; padding: 18px 0 !important;
    background: transparent !important; color: var(--champagne) !important;
    border-top: 1px solid rgba(255,255,255,0.12) !important;
    border-bottom: none !important; border-radius: 0 !important;
    letter-spacing: 0.1em !important; font-size: 18px !important;
    box-shadow: none !important; }
  /* Book Session — plain link in dropdown */
  .nav-book { background: none !important; color: rgba(255,255,255,0.96) !important;
    border-radius: 0 !important; padding: 18px 0 !important; margin-left: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    font-size: 18px !important; letter-spacing: 0.1em !important; }
  /* Mobile social icons row in dropdown */
  .nav-mobile-social { display: none; gap: 20px; padding: 14px 0 6px;
    border-top: 1px solid rgba(255,255,255,0.12); }
  .nav-bar.open .nav-mobile-social { display: flex; margin-top: auto !important; }
  .nav-mobile-social a { color: rgba(255,255,255,0.65) !important; display: flex !important;
    align-items: center; border-bottom: none !important;
    padding: 0 !important; width: auto !important; margin-right: 0 !important; }
  .nav-mobile-social a:hover { color: #fff !important; }
  .nav-mobile-social { margin-top: 8px; }
  .nav-mobile-social svg { width: 26px; height: 26px; }
}

/* Social icons in footer */
.foot-social { display:flex; gap:14px; margin-top:16px; }
.foot-social a { color:rgba(226,217,204,0.55); transition:color 0.18s; display:flex; }
.foot-social a:hover { color:var(--pearl); }
.foot-social svg { width:20px; height:20px; fill:currentColor; }

/* Navy nav bar */
.nav-bar {
  background: var(--navy-dark);
  padding: 0 52px;
  display: flex; align-items: center;
}
.nav-bar a {
  text-decoration: none; color: rgba(255,255,255,0.96);
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 0; margin-right: 32px;
  transition: color 0.18s; white-space: nowrap;
}
.nav-bar a:hover { color: var(--pearl); }
.nav-bar a.active-pg { color: #fff; font-weight: 700; }
/* Desktop: hide mobile-only nav elements */
.nav-close { display: none; }
.nav-mobile-social { display: none; }
@media (min-width: 821px) { .nav-bar a[href="account.html"] { display: none; } }
.nav-push { flex: 1; }
.nav-cta {
  background: var(--champagne) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 2px; margin-right: 0 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.18s !important;
}
.nav-cta:hover { background: var(--champ-lt) !important; }
.nav-book {
  background: var(--navy-dark); color: #fff !important; border-radius: 3px;
  padding: 7px 16px !important; margin-left: 8px; margin-right: 0;
  font-size: 12px !important; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; transition: background 0.18s; white-space: nowrap;
  text-decoration: none !important;
}
.nav-book:hover { background: var(--navy-mid) !important; color: #fff !important; }

/* ══════════════════════════════════
   PROMO BANNER
══════════════════════════════════ */
.promo-banner {
  background: var(--champagne); color: #fff;
  text-align: center; padding: 11px 24px;
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 14.5px; letter-spacing: 0.07em;
}
.promo-banner strong { font-weight: 500; }
.promo-banner a { color: #fff; font-weight: 500; }

/* ══════════════════════════════════
   HOMEPAGE HERO (full-bleed image)
══════════════════════════════════ */
.hero-home {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://firebasestorage.googleapis.com/v0/b/bodycircuit-2142e.firebasestorage.app/o/Perle%2Fperle%20studio%20placeholder.jpg?alt=media&token=b3fa5b93-715f-4eb2-9ea5-e2c6f16f6522');
  background-size: cover; background-position: center 28%;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(25,80,110,0.74) 0%, rgba(58,154,187,0.58) 55%, rgba(25,70,100,0.70) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 28px;
  max-width: 860px;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 14.5px; letter-spacing: 0.22em; color: rgba(255,255,255,0.92);
  text-transform: uppercase; margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: rgba(255,255,255,0.4);
}
.hero-content h1 {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 61.5px; color: #fff; line-height: 1.15;
  margin-bottom: 24px; letter-spacing: 0.01em;
}
.hero-content h1 em {
  font-style: italic; color: var(--pearl); font-weight: 300;
}
.hero-content p {
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: 18.5px; color: rgba(255,255,255,0.80);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.78;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════
   SUB-PAGE HERO (navy, split layout)
══════════════════════════════════ */
.hero-sub {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.hero-sub::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 56px solid rgba(255,255,255,0.12);
  pointer-events: none;
}
.hero-sub-inner {
  max-width: 1160px; margin: 0 auto; padding: 80px 52px 72px;
  display: grid; grid-template-columns: 1fr minmax(0, 420px); gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-sub-text .hs-eyebrow {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.3em; color: var(--navy-dark);
  text-transform: uppercase; margin-bottom: 22px;
  background: rgba(255,255,255,0.80); padding: 5px 16px; border-radius: 20px; display: inline-block;
}
.hero-sub-text h1 {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 48.5px; color: #fff; line-height: 1.2; margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero-sub-text p {
  font-size: 17.5px; color: rgba(255,255,255,0.72); font-weight: 500;
  line-height: 1.78; margin-bottom: 34px;
}
.hero-sub-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-sub-img {
  border-radius: 2px; overflow: hidden; min-height: 320px;
}

/* ══════════════════════════════════
   ABOUT HERO (centered, no image)
══════════════════════════════════ */
.hero-center {
  background: var(--navy); padding: 88px 40px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.hero-center::before {
  content: '';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.hero-center::after {
  content: '';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 400px; height: 400px; border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero-center .hs-eyebrow {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.3em; color: var(--navy-dark);
  text-transform: uppercase; margin-bottom: 22px;
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.80); padding: 5px 16px; border-radius: 20px; display: inline-block;
}
.hero-center h1 {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 48.5px; color: #fff; line-height: 1.22; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.hero-center p {
  font-size: 17.5px; color: rgba(255,255,255,0.7); font-weight: 500;
  line-height: 1.78; max-width: 620px; margin: 0 auto 34px;
  position: relative; z-index: 1;
}
.hero-center .hero-btns { position: relative; z-index: 1; }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-champagne {
  background: var(--champagne); color: #fff;
  padding: 14px 32px; border-radius: 2px; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; transition: background 0.18s; display: inline-block;
}
.btn-champagne:hover { background: var(--champ-lt); }

.btn-navy {
  background: var(--navy); color: #fff;
  padding: 14px 32px; border-radius: 2px; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; transition: background 0.18s; display: inline-block;
}
.btn-navy:hover { background: var(--navy-mid); }

.btn-outline-white {
  background: transparent; color: #fff;
  padding: 13px 30px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.45);
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.18s; display: inline-block;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-outline-navy {
  background: transparent; color: var(--navy);
  padding: 13px 30px; border-radius: 2px;
  border: 1.5px solid var(--navy);
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.18s; display: inline-block;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.btn-white {
  background: #fff; color: var(--navy);
  padding: 14px 32px; border-radius: 2px; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 0.18s; display: inline-block;
}
.btn-white:hover { background: var(--pearl); }

/* ══════════════════════════════════
   LAYOUT HELPERS
══════════════════════════════════ */
.wrap { max-width: 1160px; margin: 0 auto; padding: 72px 52px; }
.wrap-sm { max-width: 1160px; margin: 0 auto; padding: 52px 52px; }
.wrap-full { padding: 72px 52px; }

.section-eyebrow {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.32em; color: var(--champagne);
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 39.5px; color: var(--navy); line-height: 1.25; margin-bottom: 16px;
}
.section-sub {
  font-size: 17.5px; color: var(--gray); font-weight: 500; line-height: 1.78;
  max-width: 680px; margin-bottom: 44px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.two-col-wide { display: grid; grid-template-columns: 3fr 2fr; gap: 52px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.divider { height: 1px; background: var(--gray-lt); }

/* ══════════════════════════════════
   PHOTO PLACEHOLDERS
══════════════════════════════════ */
.photo-ph {
  background: #D0CAC4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 32px 24px; text-align: center;
  color: #7A726B;
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.7;
  border-radius: 2px;
}
.photo-ph svg { opacity: 0.5; }
.photo-ph .ph-label { font-size: 11px; }
.photo-ph .ph-note { font-size: 10px; opacity: 0.65; text-transform: none; letter-spacing: 0.04em; margin-top: 2px; font-style: italic; }

/* Camera icon used in all placeholders */
.cam-icon { width: 28px; height: 28px; }

/* ══════════════════════════════════
   TWO-PATH CARDS
══════════════════════════════════ */
.two-path { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--gray-lt); background: var(--off-white); border-bottom: 4px solid var(--navy); }
.path-card {
  padding: 60px 52px; text-align: center;
  border-right: 1px solid var(--gray-lt); transition: background 0.2s;
}
.path-card:last-child { border-right: none; }
.path-card:hover { background: var(--off-white); }
.path-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pearl); margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
}
.path-card h2 {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 28.5px; color: var(--navy); margin-bottom: 14px; letter-spacing: 0.02em;
}
.path-card p {
  font-size: 16.5px; color: var(--gray); line-height: 1.78; font-weight: 500;
  margin-bottom: 28px; max-width: 360px; margin-left: auto; margin-right: auto;
}

/* ══════════════════════════════════
   CONDITION GRID
══════════════════════════════════ */
.cond-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.cond-card {
  border: 1px solid var(--gray-lt); border-top: 3px solid var(--champagne);
  padding: 24px 22px; background: var(--white);
}
.cond-card h3 {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 15.5px; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.03em;
}
.cond-card p { font-size: 14.5px; color: var(--gray); line-height: 1.65; font-weight: 500; }

/* ══════════════════════════════════
   REVIEWS BAR
══════════════════════════════════ */
.reviews-bar {
  background: var(--navy); padding: 40px 40px;
  text-align: center; color: #fff;
}
.stars { font-size: 22px; color: #F5C518; letter-spacing: 5px; margin-bottom: 10px; }
.reviews-bar p { font-size: 15.5px; font-weight: 500; color: rgba(255,255,255,0.72); }
.reviews-bar strong { font-weight: 500; color: #fff; }
.review-link { color: #F5C518; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 52px; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-lt);
  border-top: 3px solid var(--sage); padding: 28px 26px;
}
.testi-card .quote {
  font-family: 'Raleway', sans-serif; font-style: italic; font-weight: 300;
  font-size: 16px; color: var(--charcoal); line-height: 1.82; margin-bottom: 22px;
}
.testi-meta { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pearl-dark); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.t-name { font-family: 'DM Sans', sans-serif; font-size: 14.5px; font-weight: 500; color: var(--navy); }
.t-label { font-size: 12px; color: var(--gray); font-weight: 500; margin-top: 2px; }

/* Large testimonial block */
.testi-block {
  background: var(--off-white); border-left: 4px solid var(--sage);
  padding: 32px 36px; margin-bottom: 48px;
}

/* FAQ */
.faq-block { margin: 52px 0; }
.faq-block .faq-eyebrow {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 28px;
}
.faq-item {
  border-top: 1px solid var(--gray-lt); padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--gray-lt); }
.faq-q {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 17.5px; color: var(--charcoal); margin-bottom: 10px;
}
.faq-a {
  font-size: 16.5px; color: var(--gray); line-height: 1.78;
}
.testi-block .quote {
  font-family: 'Raleway', sans-serif; font-style: italic; font-weight: 300;
  font-size: 18.5px; color: var(--charcoal); line-height: 1.82; margin-bottom: 16px;
}
.testi-block cite {
  font-family: 'DM Sans', sans-serif; font-size: 14.5px; font-weight: 500; color: var(--navy);
}

/* ══════════════════════════════════
   FEATURE CARDS (3-col)
══════════════════════════════════ */
.feat-card {
  background: var(--white); border: 1px solid var(--gray-lt); padding: 32px 28px;
}
.feat-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--pearl);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feat-card h3 {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 16.5px; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.03em;
}
.feat-card p { font-size: 15.5px; color: var(--gray); line-height: 1.72; font-weight: 500; }

/* ══════════════════════════════════
   CTA BAND
══════════════════════════════════ */
.cta-band {
  background: var(--navy); color: #fff;
  padding: 72px 40px; text-align: center;
}
.cta-band h2 {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 39.5px; margin-bottom: 14px; letter-spacing: 0.02em;
}
.cta-band p {
  font-size: 17.5px; font-weight: 500; color: rgba(255,255,255,0.75);
  margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: var(--navy-dark); padding: 60px 52px 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px;
}
.footer-brand .foot-name {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 16.5px; letter-spacing: 0.44em; color: var(--pearl);
  text-transform: uppercase; margin-bottom: 6px;
}
.footer-brand .foot-sub {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; color: rgba(226,217,204,0.38); text-transform: uppercase;
}
.footer-brand address {
  font-family: 'DM Sans', sans-serif; font-size: 14.5px; font-weight: 500;
  color: rgba(226,217,204,0.78); line-height: 2; font-style: normal; margin-top: 20px;
}
.site-footer h4 {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy-dark); margin-bottom: 18px;
}
.foot-links a {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 14.5px; font-weight: 600;
  color: rgba(226,217,204,0.78); text-decoration: none; margin-bottom: 8px;
  transition: color 0.18s;
}
.foot-links a:hover { color: var(--pearl); }
.foot-bottom {
  grid-column: 1 / -1; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  color: rgba(226,217,204,0.50); letter-spacing: 0.04em;
}

/* ══════════════════════════════════
   PILL TAGS
══════════════════════════════════ */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 36px; }
.pill {
  background: var(--pearl); color: var(--navy-mid);
  padding: 6px 16px; border-radius: 20px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
}

/* ══════════════════════════════════
   STEPS
══════════════════════════════════ */
.step-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 52px; }
.step { text-align: center; padding: 28px 18px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--champagne); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-weight: 300; font-size: 20px;
  margin-bottom: 18px;
}
.step h3 {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 15.5px; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.04em;
}
.step p { font-size: 14.5px; color: var(--gray); line-height: 1.65; font-weight: 500; }

/* ══════════════════════════════════
   DRY NEEDLING FEATURE
══════════════════════════════════ */
.dn-highlight {
  display: grid; grid-template-columns: 280px 1fr; gap: 0;
  border: 1px solid var(--gray-lt); border-left: 4px solid var(--champagne);
  margin-bottom: 52px; background: var(--white); overflow: hidden;
}
.dn-badge {
  background: var(--navy-mid); padding: 36px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.dn-badge .dn-tag {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 10px; letter-spacing: 0.24em; color: var(--navy-dark);
  text-transform: uppercase; margin-top: 14px; line-height: 1.8;
}
.dn-content { padding: 36px 40px; }
.dn-content h3 {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 26.5px; color: var(--navy); margin-bottom: 14px; letter-spacing: 0.02em;
}
.dn-content p { font-size: 15.5px; color: var(--gray); line-height: 1.78; font-weight: 500; margin-bottom: 12px; }
.dn-quote {
  margin-top: 18px; padding: 14px 18px;
  background: var(--off-white); border-left: 3px solid var(--sage);
  font-family: 'Raleway', sans-serif; font-style: italic; font-weight: 300;
  font-size: 14.5px; color: var(--charcoal); line-height: 1.75;
}

/* ══════════════════════════════════
   PT ACCESS PLAN
══════════════════════════════════ */
.access-plan {
  background: var(--navy-mid); color: #fff;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 60px 52px; align-items: center;
}
.access-plan h3 {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 33px; margin-bottom: 8px; letter-spacing: 0.02em;
}
.access-plan .ap-sub {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  color: var(--navy-dark); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
}
.access-plan p {
  font-size: 16.5px; color: rgba(255,255,255,0.76); font-weight: 500; line-height: 1.78; margin-bottom: 28px;
}
.access-plan ul { list-style: none; }
.access-plan ul li {
  font-family: 'DM Sans', sans-serif; font-size: 15.5px; font-weight: 500;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82); display: flex; align-items: center; gap: 12px;
}
.ap-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); flex-shrink: 0;
}

/* ══════════════════════════════════
   PATHWAY CALLOUT
══════════════════════════════════ */
.pathway-callout {
  background: var(--off-white); border: 1px solid var(--gray-lt);
  border-left: 4px solid var(--sage); padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  margin-top: 44px; margin-bottom: 52px;
}
.pathway-callout h4 {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 17.5px; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.03em;
}
.pathway-callout p { font-size: 15.5px; color: var(--gray); line-height: 1.78; font-weight: 500; }

/* ══════════════════════════════════
   TABLE
══════════════════════════════════ */
.tbl {
  width: 100%; border-collapse: collapse;
  font-family: 'DM Sans', sans-serif; font-size: 15.5px; font-weight: 500; margin-bottom: 52px;
}
.tbl th {
  background: var(--navy); color: var(--pearl); padding: 14px 18px;
  text-align: left; font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.tbl td { padding: 14px 18px; border-bottom: 1px solid var(--gray-lt); color: var(--charcoal); vertical-align: top; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: var(--off-white); }

/* ══════════════════════════════════
   PILATES PRICING CARDS
══════════════════════════════════ */
.pricing-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-lt); margin-bottom: 52px; overflow: hidden;
}
.price-card { padding: 40px 32px; border-right: 1px solid var(--gray-lt); }
.price-card:last-child { border-right: none; background: var(--navy); color: #fff; }
.price-card h3 {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 20px; margin-bottom: 12px; letter-spacing: 0.03em; color: var(--navy);
}
.price-card:last-child h3 { color: #fff; }
.price-badge {
  display: inline-block; background: var(--champagne); color: #fff;
  font-family: 'Raleway', sans-serif; font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 14px;
}
.price-num {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 42px; color: var(--navy); margin: 16px 0 4px; line-height: 1;
}
.price-card:last-child .price-num { color: var(--pearl); }
.price-unit { font-size: 13px; color: var(--gray); font-weight: 500; margin-bottom: 18px; }
.price-card:last-child .price-unit { color: rgba(226,217,204,0.55); }
.price-card p { font-size: 14.5px; color: var(--gray); line-height: 1.7; font-weight: 500; }
.price-card:last-child p { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════
   TEAM CARDS
══════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 52px; }
.team-card { background: var(--white); border: 1px solid var(--gray-lt); overflow: hidden; }
.team-info { padding: 26px 24px; }
.team-card h3 {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 20px; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.02em;
}
.team-cred {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--champagne); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px;
}
.team-card p { font-size: 14.5px; color: var(--gray); line-height: 1.72; font-weight: 500; }

/* ══════════════════════════════════
   VALUES GRID
══════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 52px; }
.val-card { background: var(--off-white); border: 1px solid var(--gray-lt); padding: 30px 32px; }
.val-card h3 {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 16.5px; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.03em;
}
.val-card p { font-size: 15.5px; color: var(--gray); line-height: 1.72; font-weight: 500; }

/* ══════════════════════════════════
   FOUNDER'S NOTE
══════════════════════════════════ */
.founders-note {
  background: var(--white); border: 1px solid var(--gray-lt);
  border-top: 3px solid var(--navy); padding: 48px 52px; margin-bottom: 60px;
}
.fn-label {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.32em; color: var(--champagne);
  text-transform: uppercase; margin-bottom: 28px;
}
.founders-note blockquote {
  font-family: 'Raleway', sans-serif; font-style: italic; font-weight: 300;
  font-size: 20px; color: var(--charcoal); line-height: 1.92; letter-spacing: 0.01em;
}
.founders-note blockquote p { margin-bottom: 20px; }
.founders-note blockquote p:last-of-type { margin-bottom: 28px; }
.fn-sig {
  font-family: 'DM Sans', sans-serif; font-size: 15.5px; font-weight: 500; color: var(--navy);
}

/* ══════════════════════════════════
   PHYSICIAN REFERRAL BOX
══════════════════════════════════ */
.physician-box {
  background: var(--off-white); border: 1px solid var(--gray-lt); padding: 40px 44px; margin-top: 52px;
}
.physician-box h3 {
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 24px; color: var(--navy); margin-bottom: 12px; letter-spacing: 0.02em;
}
.physician-box p { font-size: 15.5px; color: var(--gray); line-height: 1.78; font-weight: 500; margin-bottom: 22px; }

/* ══════════════════════════════════
   WHO WE HELP (tinted section)
══════════════════════════════════ */
.who-section { background: var(--off-white); border-top: 1px solid var(--gray-lt); border-bottom: 1px solid var(--gray-lt); }

/* ══════════════════════════════════
   CLASS SCHEDULE
══════════════════════════════════ */
.sched-outer { overflow-x: auto; margin-bottom: 16px; border: 1px solid var(--gray-lt); }
.sched-table {
  width: 100%; border-collapse: collapse;
  min-width: 720px;
  font-family: 'DM Sans', sans-serif;
}
.sched-table thead th {
  background: var(--navy); color: var(--pearl);
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 10px; text-align: center; border: none;
}
.sched-table thead th.time-hd { width: 70px; text-align: center; }
.sched-table thead th.events-hd { background: var(--champagne); color: #fff; width: 136px; }
.sched-table tbody td {
  padding: 7px 7px; border: 1px solid #EBEBEA;
  vertical-align: top; min-width: 80px;
}
.sched-table tbody td.time-cell {
  background: var(--off-white); text-align: center; vertical-align: middle;
  font-family: 'Raleway', sans-serif; font-weight: 500;
  font-size: 14.5px; color: var(--navy); white-space: nowrap; padding: 10px 6px;
  border-right: 2px solid var(--gray-lt);
}
.sched-table tbody td.time-cell .ampm {
  display: block; font-size: 10px; opacity: 0.5; letter-spacing: 0.08em; margin-top: 2px; font-family: 'DM Sans', sans-serif;
}
.sched-table tbody td.events-cell { background: #FBF8F2; border-left: 2px solid #D4B68A; }
.sched-table tr.empty-row td { background: #FAFAF9; }
.sched-table tr.empty-row td.time-cell { background: #F4F4F2; }
.sched-table tr.empty-row td { height: 28px; padding: 0; }

/* Class blocks */
.cls {
  border-radius: 3px; padding: 8px 8px;
  font-size: 11px; font-weight: 500;
  color: #fff; line-height: 1.45; text-align: center;
  letter-spacing: 0.04em; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.cls .note { font-size: 10px; opacity: 0.85; font-weight: 500; text-transform: none; letter-spacing: 0; margin-top: 4px; line-height: 1.4; }
.cls-adv     { background: #1C6080; }   /* deep sky — advanced */
.cls-int     { background: #2E8AAA; }   /* mid sky — intermediate */
.cls-mixed   { background: #3AABB0; }   /* teal sky — mixed */
.cls-beg     { background: #C9908A; }   /* blush — beginner */
.cls-restore { background: #A0706C; }   /* deep blush — restorative */
.cls-mat     { background: #7AAAB0; }   /* dusty sky — mat */
.cls-special { background: #D9ADA9; }   /* light blush — specialty */
.cls-event   { background: #DCF0F7; color: #1C6080; border: 1px solid #B0D8E8; }

/* Legend */
.sched-legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 14px; padding: 14px 0;
}
.leg {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  color: var(--gray); letter-spacing: 0.03em;
}
.leg::before {
  content: ''; display: inline-block;
  width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0;
}
.leg-adv::before     { background: #1C6080; }
.leg-int::before     { background: #2E8AAA; }
.leg-mixed::before   { background: #3AABB0; }
.leg-beg::before     { background: #C9908A; }
.leg-restore::before { background: #A0706C; }
.leg-mat::before     { background: #7AAAB0; }
.leg-special::before { background: #D9ADA9; }

/* ══════════════════════════════════
   RESPONSIVE — tablet (≤900px)
══════════════════════════════════ */
@media (max-width: 900px) {
  .two-path, .three-col, .two-col, .two-col-wide, .cond-grid, .team-grid,
  .values-grid, .testi-row, .step-row, .access-plan, .hero-sub-inner,
  .pricing-row, .dn-highlight { grid-template-columns: 1fr; }
  .two-path { grid-template-columns: 1fr !important; }
  /* Fix fixed-width column in hero-sub on small screens */
  .hero-sub-inner { grid-template-columns: 1fr !important; padding: 60px 28px; gap: 32px; }
  .hero-sub-img { min-height: 260px; }
  .hero-content h1, .hero-sub-text h1, .hero-center h1 { font-size: 37.5px; }
  .section-title { font-size: 31px; }
  .wrap, .wrap-sm, .wrap-full { padding: 44px 24px; }
  .content-wrap { padding-left: 24px; padding-right: 24px; }
  .logo-bar { padding: 14px 24px; }
  .nav-bar { padding: 0 24px; overflow-x: auto; }
  .nav-bar a { margin-right: 18px; font-size: 11px; }
  .site-footer { grid-template-columns: 1fr; padding: 44px 24px; }
  .founders-note { padding: 32px 28px; }
  .access-plan { padding: 40px 28px; }
  /* Two-track section cards */
  [style*="padding:52px"] { padding: 32px 24px !important; }

  /* Pilates page — full-bleed section padding */
  [style*="padding:72px 52px"], [style*="padding:60px 52px"] { padding: 44px 24px !important; }

  /* Pilates page — inline grids that override class-based media queries */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Pilates "How would you like to train" choice cards */
  body.pilates [style*="display:grid"] { grid-template-columns: 1fr !important; }

  /* Private session format cards — already single col, fine; ensure gap */
  .dn-badge { min-width: unset; max-width: 100%; min-height: 200px; }
}

/* ══════════════════════════════════
   RESPONSIVE — phone (≤480px)
══════════════════════════════════ */
@media (max-width: 480px) {
  .hero-content h1, .hero-sub-text h1, .hero-center h1 { font-size: 29px; }
  .hero-content p, .hero-sub-text p { font-size: 16px; }
  .section-title { font-size: 26px; }
  .wrap, .wrap-sm, .wrap-full { padding: 36px 18px; }
  .content-wrap { padding-left: 18px; padding-right: 18px; }
  .hero-btns, .hero-sub-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a, .hero-btns button, .hero-sub-btns a, .hero-sub-btns button { text-align: center; }
  .hero-home { min-height: 70vh; }
  .hero-center { padding: 64px 20px 56px; }
  .tbl { font-size: 13px; }
  .tbl th, .tbl td { padding: 10px 10px; }
  .sched-outer { overflow-x: auto; }
  .price-card { padding: 28px 22px; }
  .cta-band { padding: 52px 20px; }
  .popup-card { padding: 36px 28px; }
  .foot-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .hs-eyebrow { text-align: center; }
}


/* ── Testimonial accordion (mobile only) ───────────────────────────────────── */

/* Desktop: accordion header + chevron hidden, everything shown normally */
.testi-acc-header { display: none; }
.testi-chevron { display: none; }

@media (max-width: 820px) {
  /* Override grid from tablet breakpoint */
  .testi-row { display: block !important; margin-top: 0 !important; margin-bottom: 0 !important; }
  .testi-row + .testi-row { margin-top: 0 !important; }

  .testi-card {
    border-radius: 0 !important;
    border: none !important;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0 !important;
  }
  .testi-card:last-child { border-bottom: 1px solid rgba(0,0,0,0.1) !important; }

  /* Accordion header visible on mobile */
  .testi-acc-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4px;
  }
  .testi-acc-header .t-name { font-size: 15px; font-weight: 600; color: var(--navy); }
  .testi-acc-header .t-label { font-size: 12px; color: var(--slate); margin-top: 2px; }

  .testi-chevron { display: block !important; flex-shrink: 0; color: var(--slate); transition: transform 0.2s ease; }
  .testi-card.testi-open .testi-chevron { transform: rotate(180deg); }

  /* Quote hidden by default, shown when open */
  .testi-card .quote { display: none !important; padding: 0 4px 18px; margin: 0 !important; font-size: 14px; }
  .testi-card.testi-open .quote { display: block !important; }

  /* Meta hidden on mobile — name is in accordion header */
  .testi-card .testi-meta { display: none !important; }
}
