/* Connected Body Pilates base styles */

:root{
  --navy:#1c2b4a;
  --navy-deep:#131f37;
  --gold:#c9a24b;
  --gold-soft:#d8bd7e;
  --cream:#faf6ef;
  --cream-deep:#f1e9da;
  --ink:#26303f;
  --muted:#6a7384;
  --white:#ffffff;
  --line:rgba(28,43,74,.12);
  --shadow:0 18px 50px -22px rgba(28,43,74,.35);
  --radius:18px;
  --maxw:1340px;
  --serif:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  --sans:"Jost","Helvetica Neue",Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

h1,h2,h3,h4{
  font-family:var(--serif);
  color:var(--navy);
  font-weight:600;
  line-height:1.1;
  margin:0 0 .4em;
  letter-spacing:.2px;
}
h1{font-size:clamp(2.6rem,6vw,4.6rem)}
h2{font-size:clamp(2rem,4vw,3rem)}
h3{font-size:clamp(1.4rem,2.4vw,1.9rem)}
p{margin:0 0 1.1em}

.wrap{width:min(94%,var(--maxw));margin-inline:auto}
.center{text-align:center}
.eyebrow{
  font-family:var(--sans);
  text-transform:uppercase;
  letter-spacing:.32em;
  font-size:.74rem;
  font-weight:500;
  color:var(--gold);
  margin:0 0 1rem;
}
.lead{font-size:1.18rem;color:var(--muted)}
.review-summary{margin:.75rem 0 0;color:var(--muted);font-size:.95rem;letter-spacing:.02em}
.review-summary[hidden]{display:none}
.section{padding:clamp(2.6rem,5.5vw,4.6rem) 0}
.section--cream{background:var(--cream)}
.section--white{background:var(--white)}
.section--navy{background:var(--navy);color:var(--cream)}
.section--navy h1,.section--navy h2,.section--navy h3{color:var(--white)}
.section--navy .eyebrow{color:var(--gold-soft)}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;gap:.5em;
  font-family:var(--sans);font-weight:500;
  letter-spacing:.06em;text-transform:uppercase;font-size:.8rem;
  padding:1.05em 2.4em;border-radius:999px;
  border:1.5px solid var(--gold);
  transition:transform .25s ease,background .25s ease,color .25s ease,box-shadow .25s ease;
  cursor:pointer;
}
.btn--gold{background:var(--gold);color:var(--navy)}
.btn--gold:hover{background:var(--navy);color:var(--white);border-color:var(--navy);transform:translateY(-2px);box-shadow:var(--shadow)}
.btn--ghost{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn--ghost:hover{background:var(--navy);color:var(--white);transform:translateY(-2px)}
.btn--light{background:transparent;color:var(--cream);border-color:var(--gold-soft)}
.btn--light:hover{background:var(--gold);color:var(--navy);border-color:var(--gold);transform:translateY(-2px)}

/* Header / nav */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(250,246,239,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding:.7rem 0}
.nav__logo img{height:78px;width:auto}
.nav__links{display:flex;align-items:center;gap:2rem;list-style:none;margin:0;padding:0}
.nav__links a{
  font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;font-weight:500;
  color:var(--navy);position:relative;padding:.3em 0;
}
.nav__links a::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:1.5px;background:var(--gold);transition:width .28s ease;
}
.nav__links a:hover::after,.nav__links a.active::after{width:100%}
.nav__cta{margin-left:.5rem}
.nav__cta .btn{padding:1.05em 2.6em}
.nav__toggle{display:none;background:none;border:0;cursor:pointer;padding:.4rem;color:var(--navy)}
.nav__toggle svg{width:28px;height:28px}

/* Nav dropdown (About / FAQ) */
.nav__dropdown{position:relative}
.nav__dropdown-toggle{
  display:inline-flex;align-items:center;gap:.35em;background:none;border:0;cursor:pointer;
  font:inherit;font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;font-weight:500;
  color:var(--navy);position:relative;padding:.3em 0;
}
.nav__dropdown-toggle::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:1.5px;background:var(--gold);transition:width .28s ease;
}
.nav__dropdown-toggle:hover::after,.nav__dropdown-toggle.active::after{width:100%}
.nav__caret{width:11px;height:11px;transition:transform .2s ease}
.nav__dropdown:hover .nav__caret,.nav__dropdown.open .nav__caret{transform:rotate(180deg)}
.nav__dropdown-menu{
  position:absolute;top:100%;left:50%;transform:translate(-50%,8px);
  margin:0;padding:.6rem;list-style:none;min-width:160px;
  background:var(--white);border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);
  opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
  z-index:60;
}
.nav__dropdown-menu li{padding:0}
.nav__dropdown-menu a{
  display:block;padding:.55em .7em;font-size:.8rem;letter-spacing:.08em;text-transform:uppercase;
  color:var(--navy);border-radius:8px;white-space:nowrap;
}
.nav__dropdown-menu a::after{content:none}
.nav__dropdown-menu a:hover,.nav__dropdown-menu a.active{background:var(--cream)}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0)}

/* Hero */
.hero{position:relative;background:var(--navy-deep);color:var(--cream);overflow:hidden}
.hero__media{position:absolute;inset:0}
.hero__media img,.hero__media video{width:100%;height:100%;object-fit:cover;object-position:25% 30%;opacity:.55}
.hero__media::after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,rgba(19,31,55,.8),rgba(19,31,55,.42))}
.hero__inner{position:relative;padding:clamp(3rem,6vw,5rem) 0;max-width:1080px;display:flex;align-items:center;gap:clamp(1.5rem,4vw,3.5rem)}
.hero__logo{height:clamp(150px,20vw,240px);width:auto;margin-bottom:0;flex-shrink:0;filter:brightness(0) invert(1)}
.hero__text{min-width:0}
@media(max-width:680px){
  .hero__inner{flex-direction:column;text-align:center}
  .hero__logo{height:clamp(120px,32vw,170px)}
  .hero__actions{justify-content:center}
}
.hero h1{color:var(--white);margin-bottom:.3em;font-size:clamp(2.1rem,4.4vw,3.5rem)}
.hero h1 em{font-style:italic;color:var(--gold-soft)}
.hero__sub{font-size:1.2rem;color:rgba(250,246,239,.85);margin-bottom:1.4rem;max-width:48ch}
.hero__actions{display:flex;flex-wrap:wrap;gap:1rem}
.hero__tagline{margin-top:1.5rem;font-family:var(--serif);font-style:italic;font-size:1.25rem;color:var(--gold-soft);letter-spacing:.04em}

/* Generic grid */
.grid{display:grid;gap:2rem}
.grid--2{grid-template-columns:repeat(2,1fr)}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--4{grid-template-columns:repeat(4,1fr)}
.split{display:grid;grid-template-columns:1.05fr 1fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.split--reverse .split__media{order:2}

/* Image slots (swap with real photos) */
.imgslot{
  position:relative;border-radius:var(--radius);overflow:hidden;
  background:linear-gradient(135deg,var(--cream-deep),#e7dcc6);
  aspect-ratio:4/3;box-shadow:var(--shadow);
}
.imgslot img{width:100%;height:100%;object-fit:cover}
.imgslot--tall{aspect-ratio:3/4}

/* Decorative offset gold frame, sized to the photo, peeking out behind it */
.framed-photo{position:relative;width:100%;max-width:540px;margin-inline:auto}
.framed-photo--tall{max-width:400px}
.framed-photo .imgslot{position:relative;z-index:1}
.framed-photo::before{
  content:"";position:absolute;inset:0;
  border:1.5px solid var(--gold);border-radius:var(--radius);
  transform:translate(18px,18px);
  z-index:0;pointer-events:none;
}
.split--reverse .framed-photo::before{transform:translate(-18px,18px)}
@media(max-width:680px){
  .framed-photo::before{transform:translate(12px,12px)}
  .split--reverse .framed-photo::before{transform:translate(-12px,12px)}
}
.imgslot__label{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  text-align:center;color:var(--gold);font-family:var(--serif);font-style:italic;
  font-size:1.05rem;padding:1.5rem;letter-spacing:.03em;
}

/* Cards */
.card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:2.2rem;box-shadow:0 10px 30px -24px rgba(28,43,74,.4);
  transition:transform .3s ease,box-shadow .3s ease;
  display:flex;flex-direction:column;
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.card__icon{
  width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:var(--cream);border:1px solid var(--line);color:var(--gold);margin-bottom:1.2rem;font-size:1.4rem;
}
.card h3{margin-bottom:.4em}
.card p{color:var(--muted);margin-bottom:0}

/* Pricing */
.price-block{margin-bottom:3.5rem}
.price-block:last-child{margin-bottom:0}
.lessons-grid{align-items:start}
.lessons-grid .price-block{
  margin-bottom:0;background:var(--white);border:1px solid var(--line);
  border-radius:var(--radius);padding:2rem 2.2rem;
  box-shadow:0 10px 30px -24px rgba(28,43,74,.4);
}
.price-block__head{display:flex;align-items:baseline;gap:1rem;flex-wrap:wrap;margin-bottom:1.4rem;padding-bottom:.8rem;border-bottom:1px solid var(--line)}
.price-block__head h3{margin:0}
.price-block__note{color:var(--muted);font-size:.95rem;font-style:italic}
.price-list{list-style:none;margin:0;padding:0;display:grid;gap:.2rem}
.price-list li{
  display:flex;justify-content:space-between;gap:1.5rem;align-items:baseline;
  padding:.7rem 0;border-bottom:1px dashed var(--line);
}
.price-list li:last-child{border-bottom:0}
.price-list .name{color:var(--ink)}
.price-list .amt{font-family:var(--serif);font-size:1.25rem;color:var(--navy);white-space:nowrap;font-weight:600}
.price-list .amt small{font-family:var(--sans);font-size:.7rem;color:var(--muted);letter-spacing:.05em}
.nowrap{white-space:nowrap}

/* Bundles */
.bundle{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:2.2rem;display:flex;flex-direction:column;box-shadow:0 10px 30px -24px rgba(28,43,74,.4);
}
.bundle--feature{background:var(--navy);color:var(--cream);border-color:var(--navy)}
.bundle--feature h3{color:var(--white)}
.bundle--feature .bundle__price{color:var(--gold-soft)}
.bundle--feature li{color:rgba(250,246,239,.85)}
.bundle__tag{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem}
.bundle__price{font-family:var(--serif);font-size:2.2rem;color:var(--navy);margin:.2rem 0 1rem}
.bundle__price small{font-family:var(--sans);font-size:.85rem;color:var(--muted)}
.bundle ul{list-style:none;margin:0 0 1.6rem;padding:0;display:grid;gap:.55rem;flex:1}
.bundle li{position:relative;list-style:none;padding-left:1.5rem;font-size:.97rem;color:var(--muted);line-height:1.5}
.bundle li::before{content:"";position:absolute;left:0;top:.6em;width:7px;height:7px;border-radius:50%;background:var(--gold)}
.bundle .btn{align-self:center;justify-content:center;min-width:230px}

/* Video feature */
.video-frame{position:relative;max-width:540px;width:100%;margin-inline:auto}
.video-frame video{
  width:100%;height:auto;display:block;border-radius:var(--radius);
  box-shadow:var(--shadow);background:var(--navy-deep);
}
.video-frame::before{
  content:"";position:absolute;inset:0;border:1.5px solid var(--gold);
  border-radius:var(--radius);transform:translate(16px,16px);z-index:-1;pointer-events:none;
}

/* Accent photo row */
.accents{display:flex;flex-wrap:nowrap;justify-content:center;gap:.7rem}
.accent-section .wrap{width:100%;padding-inline:.7rem}
.accents .tile{
  position:relative;
  flex:1 1 0;min-width:0;aspect-ratio:1;overflow:hidden;border-radius:22px;
  box-shadow:0 12px 30px -20px rgba(28,43,74,.5);
  border:2px solid rgba(255,255,255,.6);
}
.accents img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.accents .tile::after{content:"";position:absolute;inset:0;background:rgba(28,43,74,.4);pointer-events:none;transition:opacity .45s ease}
.accents .tile:hover::after{opacity:.45}
.accents .tile:hover img{transform:scale(1.08)}

/* Testimonials */
.quote{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:2.4rem;box-shadow:0 10px 30px -24px rgba(28,43,74,.4);
}
.quote p{font-family:var(--serif);font-style:italic;font-size:1.2rem;color:var(--navy);line-height:1.5}
/* Reviews shown 3-up as tall, equal-height cards with the name pinned to the bottom */
.reviews-grid .quote{display:flex;flex-direction:column;min-height:26rem;padding:2.6rem}
.reviews-grid .quote p{flex:1 1 auto;margin:0 0 1.5rem}
.reviews-grid .quote .who{margin-top:auto}
.quote .who{font-family:var(--sans);font-style:normal;font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin:0}
.stars{color:var(--gold);letter-spacing:.15em;margin-bottom:1rem;font-size:.95rem}

/* Info / contact rows */
.info-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2.2rem}
.info-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:2rem}
.info-card h3{font-size:1.25rem;margin-bottom:.6rem}
.info-card a{color:var(--navy);border-bottom:1px solid var(--gold)}
.info-grid--center .info-card{text-align:center}
.hours{list-style:none;margin:0;padding:0}
.hours li{display:flex;justify-content:space-between;gap:1rem;padding:.5rem 0;border-bottom:1px dashed var(--line)}
.hours li:last-child{border-bottom:0}
.hours .day{color:var(--muted)}
.hours .time{color:var(--navy);font-weight:500}

/* FAQ */
.faq{max-width:820px;margin-inline:auto}
.faq details{border-bottom:1px solid var(--line);padding:.4rem 0}
.faq summary{
  cursor:pointer;list-style:none;padding:1.2rem 2.5rem 1.2rem 0;position:relative;
  font-family:var(--serif);font-size:1.3rem;color:var(--navy);
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";position:absolute;right:.3rem;top:50%;transform:translateY(-50%);
  font-family:var(--sans);font-size:1.6rem;color:var(--gold);transition:transform .25s ease;
}
.faq details[open] summary::after{content:"\2013"}
.faq details p{color:var(--muted);margin:0 0 1.4rem;padding-right:2.5rem}

/* Booking embed */
.booking-frame{
  max-width:1040px;margin-inline:auto;width:100%;
  border:1px solid var(--line);border-radius:var(--radius);
  background:var(--white);box-shadow:var(--shadow);overflow:hidden;
}
.booking-frame iframe{width:100%;height:1400px;border:0;display:block;overflow:hidden}
@media(max-width:680px){.booking-frame iframe{height:1100px}}
.book-section{scroll-margin-top:100px}

/* Live schedule (Square weekly availability calendar) */
.sched-nav[hidden],.sched-legend[hidden]{display:none}
.sched-nav{display:flex;align-items:center;justify-content:center;gap:1.4rem;margin-bottom:1.4rem}
.sched-nav__btn{
  display:flex;align-items:center;justify-content:center;width:38px;height:38px;
  border:1px solid var(--line);border-radius:50%;background:var(--white);color:var(--navy);
  cursor:pointer;transition:border-color .2s,color .2s,background .2s;
}
.sched-nav__btn svg{width:18px;height:18px}
.sched-nav__btn:hover:not(:disabled){border-color:var(--gold);background:var(--cream)}
.sched-nav__btn:disabled{opacity:.35;cursor:default}
.sched-nav__range{font-family:var(--serif);font-size:1.2rem;color:var(--navy);min-width:11ch;text-align:center}

.sched-legend{display:flex;justify-content:center;gap:1.6rem;flex-wrap:wrap;margin-bottom:1.6rem;font-size:.85rem;color:var(--muted)}
.sched-legend__item{display:inline-flex;align-items:center;gap:.5rem}
.sched-swatch{width:14px;height:14px;border-radius:4px;display:inline-block}
.sched-swatch--open{background:#e3f0e5;border:1px solid #a9d1af}
.sched-swatch--busy{background:#f3e7e2;border:1px solid #dcb9ab}
.sched-swatch--closed{background:transparent;border:1px solid var(--line)}
.sched-swatch--full{background:#f2eee7;border:1px solid #cdc4b3}

.sched-grid-wrap{max-width:1000px;margin-inline:auto;transition:opacity .2s ease}
.sched-grid-wrap.is-loading{opacity:.45;pointer-events:none}
.sched-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid var(--line);border-radius:var(--radius);background:var(--white)}
.sched-day__label{display:block;font-weight:600;color:var(--navy);letter-spacing:.04em;text-transform:uppercase;font-size:.78rem}
.sched-day__date{display:block;color:var(--muted);font-size:.72rem;margin-top:.15rem}

/* Day-column calendar: each column lists that day's real open times */
.sched-cols{display:flex;min-width:620px}
.sched-col{flex:1 1 0;min-width:104px;border-right:1px solid var(--line)}
.sched-col:last-child{border-right:0}
.sched-col__head{padding:.7rem .4rem;background:var(--cream-deep);text-align:center;border-bottom:1px solid var(--line)}
.sched-col__slots{display:flex;flex-direction:column;gap:.45rem;padding:.65rem .5rem;min-height:3rem}
.sched-slot{
  border:1px solid #a9d1af;background:#eaf5ec;border-radius:999px;
  padding:.5rem .3rem;cursor:pointer;font-family:inherit;
  color:#2f6b3d;font-weight:600;font-size:.8rem;letter-spacing:.02em;white-space:nowrap;
  transition:background .15s ease,border-color .15s ease;
}
.sched-slot:hover{background:#d8ecdc;border-color:#7fbf89}
.sched-slot--shared{background:#fbf3e0;border-color:#e0c48a;color:#8a6a1f}
.sched-slot--shared:hover{background:#f6ead0;border-color:#cfae6a}
.sched-slot--full{background:#f2eee7;border-color:#cdc4b3;color:#8a8272}
.sched-slot--full:hover{background:#e9e3d7;border-color:#b8ac93}
.sched-slot__left{display:block;font-size:.62rem;font-weight:500;letter-spacing:0;text-transform:none;margin-top:.12rem;opacity:.85}
.sched-col__none{display:block;text-align:center;color:var(--muted);font-size:.74rem;padding:.6rem .2rem;font-style:italic}
.sched-fallback{max-width:520px;margin-inline:auto}

/* Booking-options popup, shown when an open slot is tapped */
.sched-modal{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;padding:1.2rem}
.sched-modal[hidden]{display:none}
.sched-modal__backdrop{position:absolute;inset:0;background:rgba(10,18,35,.55);backdrop-filter:blur(3px)}
.sched-modal__card{
  position:relative;z-index:1;width:100%;max-width:660px;max-height:85vh;
  background:var(--white);border-radius:var(--radius);padding:2.2rem 2rem 1.8rem;
  box-shadow:0 30px 80px -30px rgba(0,0,0,.5);overflow-y:auto;
  animation:promoIn .3s cubic-bezier(.2,.8,.2,1) both;
}
.sched-modal__close{position:absolute;top:.6rem;right:.9rem;background:none;border:0;color:var(--muted);font-size:1.9rem;line-height:1;cursor:pointer;transition:color .2s}
.sched-modal__close:hover{color:var(--navy)}
.sched-modal__card h3{margin:0 0 1.4rem;font-size:1.3rem}

/* Quick-book: simple single-price services as compact wrapped chips */
.sched-modal__quick{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:1.4rem}
.sched-modal__chip{
  display:inline-flex;align-items:center;padding:.65em 1.1em;border:1px solid var(--line);
  border-radius:999px;font-size:.82rem;color:var(--navy);background:var(--cream);
  text-decoration:none;transition:border-color .2s,background .2s;
}
.sched-modal__chip:hover{border-color:var(--gold);background:var(--white)}

/* Packages: one full-width card per service; multi-tier ones list their
   pricing as a plain price-list (same pattern as book.html's price blocks) */
.sched-modal__packages{display:flex;flex-direction:column;gap:1.1rem}
.sched-modal__pkg{border:1px solid var(--line);border-radius:12px;padding:1.1rem 1.2rem;background:var(--cream)}
.sched-modal__pkg h4{margin:0 0 .3rem;font-size:.95rem;color:var(--navy)}
.sched-modal__pkg .price-list .btn{padding:.4em 1em;font-size:.65rem}
.sched-modal__pkg--single{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.sched-modal__pkg--single h4{margin:0}
.sched-modal__pkg--single .btn{padding:.5em 1.3em;font-size:.7rem;flex:0 0 auto}
.sched-modal__empty{color:var(--muted);font-style:italic;margin:0}
.sched-modal__hint{font-size:.8rem;color:var(--muted);margin:-.4rem 0 1rem}

/* Shared form styling (contact form, booking modal's contact-capture step) */
.form-field{margin-bottom:1.2rem}
.form-field label{display:block;font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:.5rem}
.form-field input,.form-field textarea{
  width:100%;padding:.85rem 1rem;border:1px solid var(--line);border-radius:12px;
  font-family:var(--sans);font-size:1rem;color:var(--ink);background:var(--white);
}
.form-field input:focus,.form-field textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,162,75,.15)}
.form-field textarea{min-height:140px;resize:vertical}
.form-field input[aria-invalid="true"],.form-field textarea[aria-invalid="true"]{border-color:#c0392b;box-shadow:0 0 0 3px rgba(192,57,43,.12)}
/* Honeypot: hidden from people, tempting to bots. Must stay empty. */
.cf-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.cf-status{margin-top:1.2rem;padding:.9rem 1.1rem;border-radius:12px;font-size:.95rem;line-height:1.5}
.cf-status[hidden]{display:none}
.cf-status.is-error{background:rgba(192,57,43,.08);border:1px solid rgba(192,57,43,.35);color:#8e2a20}
.cf-status.is-ok{background:rgba(201,162,75,.1);border:1px solid rgba(201,162,75,.4);color:var(--navy)}
.cf-status a{border-bottom:1px solid var(--gold);color:var(--navy)}

/* Legal pages */
.legal{max-width:820px;margin-inline:auto}
.legal h2{font-size:clamp(1.4rem,2.4vw,1.8rem);margin-top:2.4rem}
.legal h2:first-of-type{margin-top:0}
.legal p,.legal li{color:var(--ink)}
.legal ul{padding-left:1.2rem;margin:0 0 1.1em}
.legal li{margin-bottom:.5rem}
.legal a{color:var(--navy);border-bottom:1px solid var(--gold)}
.legal .updated{color:var(--muted);font-style:italic;margin-bottom:2rem}

/* CTA band */
.cta-band{background:var(--navy);color:var(--cream);text-align:center}
.cta-band h2{color:var(--white)}
.cta-band p{color:rgba(250,246,239,.82);max-width:54ch;margin-inline:auto}

/* Footer */
.site-footer{background:var(--navy-deep);color:rgba(250,246,239,.78);padding:4rem 0 2rem}
.site-footer a{color:rgba(250,246,239,.78)}
.site-footer a:hover{color:var(--gold-soft)}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem;margin-bottom:3rem}
.site-footer h4{color:var(--white);font-family:var(--sans);text-transform:uppercase;letter-spacing:.14em;font-size:.8rem;margin-bottom:1.2rem}
.site-footer ul{list-style:none;margin:0;padding:0;display:grid;gap:.55rem;font-size:.95rem}
.footer-hours{margin-top:1.4rem}
.footer-brand img{width:100%;max-width:34ch;height:auto;font-size:.95rem;margin-bottom:1rem}
.footer-brand p{font-size:.95rem;max-width:34ch}
.social{display:flex;gap:1rem;margin-top:1rem}
.social a{width:40px;height:40px;border:1px solid rgba(250,246,239,.25);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:border-color .25s,color .25s}
.social a:hover{border-color:var(--gold);color:var(--gold-soft)}
.social svg{width:18px;height:18px}
.footer-bottom{border-top:1px solid rgba(250,246,239,.14);padding-top:1.6rem;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:1rem 1.4rem;font-size:.82rem;color:rgba(250,246,239,.55)}
.footer-bottom > :first-child{justify-self:start}
.footer-bottom > :last-child{justify-self:end}
.footer-credit{justify-self:center;text-align:center;font-size:.76rem;color:rgba(250,246,239,.45)}

/* Reveal on scroll */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.in{opacity:1;transform:none}

/* Page header (interior pages) */
.page-head{background:var(--navy);color:var(--cream);text-align:center;padding:clamp(4rem,9vw,6.5rem) 0 clamp(3rem,6vw,4.5rem)}
.page-head h1{color:var(--white)}
.page-head p{color:rgba(250,246,239,.82);max-width:56ch;margin:.5rem auto 0}

/* Responsive */
@media(max-width:900px){
  .grid--3,.grid--4{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .split--reverse .split__media{order:0}
  .info-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
/* Nav: switch to the hamburger before the desktop bar overflows */
@media(max-width:860px){
  .nav{padding:.5rem 0}
  .nav__logo img{height:100px}
  .nav__toggle{display:block;z-index:120;position:relative}
  .nav__links{
    position:fixed;inset:0;width:100%;height:100vh;height:100dvh;margin:0;
    background:var(--cream);
    flex-direction:column;align-items:center;justify-content:center;gap:2rem;text-align:center;
    padding:2rem;
    opacity:0;visibility:hidden;pointer-events:none;
    transition:opacity .3s ease,visibility .3s ease;z-index:110;
  }
  .nav__links.open{opacity:1;visibility:visible;pointer-events:auto}
  .nav__links a{font-size:1.35rem}
  .nav__links a::after{display:none}
  .nav__cta{margin:.6rem 0 0}
  .nav__dropdown{display:flex;flex-direction:column;align-items:center}
  .nav__dropdown-toggle{font-size:1.35rem}
  .nav__dropdown-menu{
    position:static;transform:none;opacity:1;visibility:visible;pointer-events:auto;
    background:transparent;border:0;box-shadow:none;
    max-height:0;overflow:hidden;padding:0;margin-top:0;text-align:center;
    transition:max-height .3s ease,margin-top .3s ease;
  }
  .nav__dropdown.open .nav__dropdown-menu{max-height:220px;margin-top:1.2rem}
  .nav__dropdown-menu li{margin-bottom:1.2rem}
  .nav__dropdown-menu li:last-child{margin-bottom:0}
  .nav__dropdown-menu a{font-size:1.05rem;padding:0}
}
@media(max-width:680px){
  body{font-size:16px}
  .grid--3,.grid--4,.grid--2{grid-template-columns:1fr}
  .reviews-grid .quote{min-height:0}

  /* center content on mobile */
  .split__body{text-align:center}
  .split__body ul{display:inline-block;text-align:left}
  .card{text-align:center;align-items:center}
  /* Calendar stacks on mobile: one day per row (label left, times wrap right),
     so it fits the screen with no horizontal scroll. */
  .sched-scroll{overflow-x:visible}
  .sched-cols{flex-direction:column;min-width:0}
  .sched-col{flex:1 1 auto;min-width:0;display:flex;align-items:flex-start;gap:.7rem;
    border-right:0;border-bottom:1px solid var(--line);padding:.7rem .85rem}
  .sched-col:last-child{border-bottom:0}
  .sched-col__head{flex:0 0 3.4rem;padding:0;background:none;border-bottom:0;text-align:left;padding-top:.35rem}
  .sched-col__slots{flex:1 1 0;flex-direction:row;flex-wrap:wrap;gap:.45rem;padding:0;min-height:0}
  .sched-col__none{padding:.35rem 0;text-align:left}

  /* mobile footer: centered, nav hidden */
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-grid > :nth-child(2){display:none}
  .footer-brand img{margin-inline:auto}
  .footer-brand p{margin-inline:auto}
  .social{justify-content:center}
  .footer-bottom{grid-template-columns:1fr;justify-items:center;text-align:center;gap:.5rem}
  .footer-bottom > :first-child,.footer-bottom > :last-child{justify-self:center}

  /* hide accent photos on mobile */
  .accent-section{display:none}
}

/* Independence Day promo bar */
.promo-bar{
  display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap;
  background:var(--navy);color:var(--cream);
  padding:.55rem 1.2rem;text-align:center;font-size:.85rem;line-height:1.3;
  border-bottom:1px solid rgba(201,162,75,.35);
}
.promo-bar[hidden]{display:none}
.promo-br{display:none}
.promo-btn-br{display:none}
.promo-bar__text strong{color:var(--gold-soft);font-weight:600}
.promo-bar__btn{
  background:var(--gold);color:var(--navy);border:0;border-radius:999px;
  padding:.42em 1.15em;font-family:var(--sans);font-weight:500;font-size:.72rem;
  letter-spacing:.08em;text-transform:uppercase;cursor:pointer;white-space:nowrap;
  transition:transform .2s ease,background .2s ease;
}
.promo-bar__btn:hover{transform:translateY(-1px);background:var(--gold-soft)}
@media(max-width:680px){
  .promo-bar{gap:.45rem .7rem;padding:.38rem .7rem;font-size:.7rem;line-height:1.25}
  .promo-bar__btn{font-size:.62rem;padding:.5em 1.35em;letter-spacing:.06em;margin-top:.15rem}
  .promo-br{display:inline}
  .promo-btn-br{display:block;flex-basis:100%;width:100%;height:0;margin:0;border:0}
}

/* Independence Day / 250th promo modal */
.promo-modal{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;padding:1.2rem}
.promo-modal[hidden]{display:none}
.promo-modal__backdrop{position:absolute;inset:0;background:rgba(10,18,35,.62);backdrop-filter:blur(3px)}
.promo-card{
  position:relative;z-index:1;width:100%;max-width:440px;
  background:var(--navy);color:var(--cream);
  border-radius:24px;padding:2.7rem 2rem 2rem;text-align:center;overflow:hidden;
  border:1px solid rgba(201,162,75,.4);
  box-shadow:0 30px 80px -30px rgba(0,0,0,.7);
  animation:promoIn .5s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes promoIn{from{opacity:0;transform:translateY(18px) scale(.97)}to{opacity:1;transform:none}}
.promo-card::before{content:"";position:absolute;top:0;left:0;right:0;height:5px;background:linear-gradient(90deg,#b22234 0 33.3%,#f7f5ef 33.3% 66.6%,#3c5a99 66.6%)}
.promo-card__close{position:absolute;top:.6rem;right:.9rem;background:none;border:0;color:rgba(250,246,239,.6);font-size:1.9rem;line-height:1;cursor:pointer;transition:color .2s}
.promo-card__close:hover{color:var(--gold-soft)}
.promo-card__stars{color:var(--gold);letter-spacing:.3em;font-size:.85rem;margin-bottom:.8rem}
.promo-card__eyebrow{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-soft);margin-bottom:.6rem}
.promo-card__title{color:var(--white);font-size:clamp(1.55rem,4.5vw,2rem);line-height:1.15;margin-bottom:.8rem}
.promo-card__body{color:rgba(250,246,239,.82);font-size:.95rem;line-height:1.6;margin-bottom:1.6rem}
.promo-offers{display:flex;gap:.9rem;margin-bottom:1.6rem}
.promo-offer{flex:1;background:rgba(255,255,255,.06);border:1px solid rgba(201,162,75,.3);border-radius:14px;padding:1rem .5rem}
.promo-offer__deal{display:block;font-size:.8rem;color:rgba(250,246,239,.82);margin-bottom:.35rem}
.promo-offer__price{display:block;font-family:var(--serif);font-size:1.7rem;color:var(--gold-soft);line-height:1}
.promo-offer__reg{display:block;font-size:.72rem;color:rgba(250,246,239,.5);text-decoration:line-through;margin-top:.3rem}
.promo-card__cta{margin-bottom:.85rem}
.promo-card__fine{font-size:.72rem;color:rgba(250,246,239,.5);margin:0}
@media(max-width:420px){.promo-offers{flex-direction:column}}

/* ---- Intro splash (once per session) ---- */
.home-splash{position:fixed;inset:0;z-index:9999;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.4rem;background:var(--cream);animation:splash-out .6s ease .85s forwards}
.no-splash .home-splash{display:none}
.home-splash__logo{width:210px;height:auto}
.home-splash__spin{width:48px;height:48px;border-radius:50%;border:4px solid var(--cream-deep);border-top-color:var(--gold);animation:home-spin .8s linear infinite}
@keyframes home-spin{to{transform:rotate(360deg)}}
@keyframes splash-out{to{opacity:0;visibility:hidden}}
@media(prefers-reduced-motion:reduce){.home-splash{animation-delay:.2s}.home-splash__spin{animation:none}}
