/* ─── Dreamfit shared stylesheet ───
   Cream-on-black aesthetic matched to dreamfitstudio.com (Framer original).
   Updated 2026-04 — adds full equipment / packages / q+a / contact pages
   plus shared scroll-reveal & marquee animation system.                   */

:root {
  --cream: #faf7f0;
  --cream-soft: #f3eee2;
  --cream-line: rgba(0, 0, 0, 0.13);
  --ink: #0e0e0e;
  --ink-2: #1a1a1a;
  --ink-dim: #5c5c5c;
  --ink-faint: #8a8a8a;
  --gold: #c9a961;
  --gold-deep: #a8884a;
  --cryo: #6cc5d4;
  /* All three families collapse to Futura BT. We only ship Book (400),
     Medium (500), and Bold (700) — each with italic. Anywhere the CSS
     used 300 we now use 400 (no light Futura), and 600 falls back to
     500, since font-synthesis: none prevents fake-bold rendering. */
  --serif: 'Futura BT', Futura, 'Trebuchet MS', Arial, sans-serif;
  --display: 'Futura BT', Futura, 'Trebuchet MS', Arial, sans-serif;
  --sans: 'Futura BT', Futura, 'Trebuchet MS', Arial, sans-serif;
  --cubic: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--cream); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 940px; margin: 0 auto; padding: 0 32px; }

/* ─── Top utility strip ─── */
.utility-bar {
  background: var(--ink); color: var(--cream);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  padding: 9px 32px; display: flex; justify-content: space-between; align-items: center;
}
.utility-bar a:hover { color: var(--gold); }
.utility-bar .ub-tag { color: rgba(250,247,240,.7); }
@media (max-width: 760px) { .utility-bar .ub-tag { display: none; } }

/* ─── Navigation ─── */
nav.top {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background .25s var(--cubic);
}
nav.top.scrolled { background: rgba(250,247,240,.92); backdrop-filter: blur(12px); }
nav.top .brand { font-family: var(--display); font-size: 26px; letter-spacing: .01em; font-weight: 500; display: inline-flex; align-items: center; line-height: 0; }
nav.top .brand em { font-style: italic; color: var(--gold-deep); }
nav.top .brand img.brand-mark { display: block; height: 30px; width: auto; }
@media (max-width: 700px) { nav.top .brand img.brand-mark { height: 24px; } }
nav.top ul { list-style: none; display: flex; gap: 36px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
nav.top ul a { position: relative; padding-bottom: 4px; transition: color .25s; }
nav.top ul a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--cubic);
}
nav.top ul a:hover::after, nav.top ul a.active::after { transform: scaleX(1); transform-origin: left; }
nav.top ul a.active { font-weight: 500; }
.book-cta {
  border: 1px solid var(--ink); color: var(--ink);
  padding: 11px 22px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  transition: all .25s; cursor: pointer; background: transparent; font-weight: 500;
}
.book-cta:hover { background: var(--ink); color: var(--cream); }
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .3s, opacity .3s; }
nav.top.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.top.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.top.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 880px) {
  nav.top ul { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--cream); padding: 16px 32px; border-bottom: 1px solid var(--cream-line);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .3s var(--cubic), opacity .2s, visibility .3s;
    pointer-events: none; }
  nav.top.open ul { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  nav.top ul li { padding: 14px 0; border-bottom: 1px solid var(--cream-line); width: 100%; }
  nav.top ul li:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
}

/* ─── Sections / typography ─── */
section { padding: 130px 0; position: relative; }
@media (max-width: 800px) { section { padding: 80px 0; } }
.eyebrow { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 22px; }
.eyebrow.dark { color: rgba(250,247,240,.7); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; letter-spacing: -.015em; line-height: 1.04; }
h1 { font-size: clamp(54px, 9vw, 124px); }
h2 { font-size: clamp(38px, 5.5vw, 72px); }
h3 { font-size: clamp(28px, 3vw, 42px); }
h1 em, h2 em, h3 em { font-style: italic; }
p.lede { font-family: var(--sans); font-size: 17px; line-height: 1.7; color: var(--ink-dim); max-width: 620px; font-weight: 400; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; font-weight: 500; transition: all .3s var(--cubic); cursor: pointer; border: 1px solid var(--ink);
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-light:hover { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn .arrow { font-family: var(--sans); font-weight: 400; }

/* ─── Marquee ─── */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line);
  padding: 18px 0;
}
.marquee-track {
  display: inline-flex; gap: 56px; animation: marquee 38s linear infinite;
  font-family: var(--display); font-size: clamp(28px, 3.6vw, 48px); font-style: italic;
  color: var(--ink); padding-right: 64px;
}
.marquee-track .dot { color: var(--gold); margin: 0 28px; font-style: normal; }
.marquee.dark { background: var(--ink); border-color: rgba(250,247,240,.12); }
.marquee.dark .marquee-track { color: var(--cream); }
.marquee.invert { background: var(--ink); color: var(--cream); border: none; }
.marquee.invert .marquee-track { color: var(--cream); }
.marquee.fast .marquee-track { animation-duration: 28s; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Reveal animations ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--cubic), transform .9s var(--cubic); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--cubic), transform .8s var(--cubic); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .65s; }
.reveal-img { overflow: hidden; }
.reveal-img img { transform: scale(1.12); transition: transform 1.6s var(--cubic); }
.reveal-img.in img { transform: scale(1); }
.reveal-mask { position: relative; overflow: hidden; }
.reveal-mask::after {
  content: ''; position: absolute; inset: 0; background: var(--cream);
  transform-origin: right; transition: transform 1.1s var(--cubic);
}
.reveal-mask.in::after { transform: scaleX(0); }
.reveal-mask.dark::after { background: var(--ink); }

/* word-by-word reveal */
.split { display: inline-block; }
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .22em; margin-bottom: -.22em; }
.split .w span { display: inline-block; transform: translateY(135%); transition: transform .9s var(--cubic); }
.split.in .w span { transform: translateY(0); }
.split .w:nth-child(2) span { transition-delay: .07s; }
.split .w:nth-child(3) span { transition-delay: .14s; }
.split .w:nth-child(4) span { transition-delay: .21s; }
.split .w:nth-child(5) span { transition-delay: .28s; }
.split .w:nth-child(6) span { transition-delay: .35s; }
.split .w:nth-child(7) span { transition-delay: .42s; }
.split .w:nth-child(8) span { transition-delay: .49s; }
.split .w:nth-child(9) span { transition-delay: .56s; }
.split .w:nth-child(10) span { transition-delay: .63s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .split .w span { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
}

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--ink); color: var(--cream);
}
.hero video, .hero .bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(14,14,14,.52) 0%, rgba(14,14,14,.32) 40%, rgba(14,14,14,.85) 100%);
}
.hero-inner { position: relative; z-index: 3; text-align: center; padding: 120px 24px 80px; max-width: 1100px; }
.hero h1 em { color: var(--cream); }
.hero .hero-sub { font-size: 17px; line-height: 1.75; color: rgba(250,247,240,.78); max-width: 640px; margin: 30px auto 40px; font-weight: 400; }
.hero .badge { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: rgba(250,247,240,.78); margin-bottom: 32px; }
.hero .badge::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: rgba(250,247,240,.62);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue::after { content: ''; width: 1px; height: 38px; background: linear-gradient(to bottom, var(--gold), transparent); animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .4; transform: scaleY(.9); } 50% { opacity: 1; transform: scaleY(1.1); } }

/* sub-hero variant for inner pages */
.subhero {
  background: var(--cream-soft); padding: 200px 0 130px;
  border-bottom: 1px solid var(--cream-line);
}
.subhero .eyebrow { color: var(--gold-deep); }
.subhero h1 { font-size: clamp(48px, 7vw, 96px); margin-bottom: 24px; }
.subhero .lede { font-size: 18px; max-width: 640px; }

/* ─── Section helpers ─── */
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 70px; }
.section-head .right { padding-bottom: 8px; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }
.dark-section { background: var(--ink); color: var(--cream); }
.dark-section .eyebrow { color: rgba(250,247,240,.7); }
.dark-section p.lede { color: rgba(250,247,240,.72); }

/* ─── Pillars / Benefits 4-up ─── */
.benefits { background: var(--cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; border-top: 1px solid var(--cream-line); }
.benefit { padding: 44px 28px 36px; border-right: 1px solid var(--cream-line); position: relative; }
.benefit:last-child { border-right: none; }
.benefit .num { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--gold-deep); margin-bottom: 22px; display: block; }
.benefit h3 { font-size: 28px; margin-bottom: 14px; }
.benefit p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.7; }
@media (max-width: 1000px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } .benefit:nth-child(2) { border-right: none; } .benefit:nth-child(1), .benefit:nth-child(2) { border-bottom: 1px solid var(--cream-line); } }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } .benefit { border-right: none; border-bottom: 1px solid var(--cream-line); } .benefit:last-child { border-bottom: none; } }

/* ─── Equipment / Treatment cards (carousel) ─── */
.eq-carousel { margin-top: 60px; display: flex; gap: 24px; overflow-x: auto; padding: 8px 0 24px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.eq-carousel::-webkit-scrollbar { height: 6px; }
.eq-carousel::-webkit-scrollbar-thumb { background: var(--cream-line); border-radius: 3px; }
.eq-card {
  flex: 0 0 360px; scroll-snap-align: start;
  background: var(--cream); border: 1px solid var(--cream-line); padding: 0;
  transition: transform .4s var(--cubic), box-shadow .4s; position: relative;
  display: flex; flex-direction: column;
}
.eq-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.06); }
.eq-card .eq-img { aspect-ratio: 4/3; overflow: hidden; }
.eq-card .eq-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--cubic); }
.eq-card:hover .eq-img img { transform: scale(1.05); }
.eq-card .eq-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.eq-card .eq-num { font-size: 11px; letter-spacing: .25em; color: var(--ink-faint); margin-bottom: 14px; text-transform: uppercase; }
.eq-card h4 { font-size: 26px; margin-bottom: 10px; }
.eq-card .eq-desc { font-size: 14.5px; color: var(--ink-dim); line-height: 1.65; margin-bottom: 22px; flex: 1; }
.eq-card .eq-meta { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--cream-line); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-faint); }
.eq-card .eq-meta b { color: var(--gold-deep); font-weight: 500; }

/* ─── Equipment detail (sticky-numbered sections) ─── */
.eq-detail-list { padding: 0; }
.eq-detail {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px; align-items: stretch;
  padding: 110px 0; border-bottom: 1px solid var(--cream-line);
}
.eq-detail:last-child { border-bottom: none; }
.eq-detail > .reveal { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.eq-detail.flip > .img-frame, .eq-detail.flip > .reveal-img { order: 2; }
.eq-detail.flip > .reveal { order: 1; }
.eq-detail .img-frame {
  overflow: hidden; border: 1px solid var(--cream-line); position: relative;
  min-height: 520px; height: 100%; align-self: stretch;
}
.eq-detail .img-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.eq-detail .num-tag { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--gold-deep); margin-bottom: 12px; letter-spacing: .04em; }
.eq-detail h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; }
.eq-detail .lede { font-size: 16.5px; margin-bottom: 28px; }
.eq-detail .col h5 { font-family: var(--sans); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; font-weight: 500; }
.eq-detail .col ul { list-style: none; }
.eq-detail .col li { font-size: 14.5px; color: var(--ink-dim); padding: 8px 0; border-bottom: 1px dashed var(--cream-line); display: flex; gap: 10px; }
.eq-detail .col li::before { content: '—'; color: var(--gold); }
.eq-detail .col li:last-child { border-bottom: none; }
.eq-detail .meta-row {
  margin-top: 28px; padding: 22px 0; border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.eq-detail .meta-row .m .l { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
.eq-detail .meta-row .m .v { font-family: var(--display); font-size: 20px; color: var(--ink); }
@media (max-width: 900px) {
  .eq-detail, .eq-detail.flip { grid-template-columns: 1fr; gap: 40px; padding: 80px 0; }
  .eq-detail.flip > .img-frame, .eq-detail.flip > .reveal-img { order: 0; }
  .eq-detail.flip > .reveal { order: 0; }
  .eq-detail .img-frame { min-height: 0; aspect-ratio: 4/5; height: auto; }
  .eq-detail .meta-row { grid-template-columns: 1fr; gap: 14px; }
  .eq-detail .meta-row .m { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--cream-line); }
}

/* sticky equipment side-nav */
.eq-stickynav {
  position: sticky; bottom: 24px; z-index: 30; margin: -56px auto 0;
  background: var(--ink); color: var(--cream); border-radius: 999px;
  display: flex; gap: 8px; padding: 10px 14px; max-width: max-content;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  overflow-x: auto;
}
.eq-stickynav a {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px; white-space: nowrap; opacity: .65;
  transition: opacity .2s, background .2s;
}
.eq-stickynav a:hover { opacity: 1; }
.eq-stickynav a.active { background: var(--gold); color: var(--ink); opacity: 1; }
@media (max-width: 760px) { .eq-stickynav { left: 16px; right: 16px; max-width: calc(100% - 32px); } }

/* ─── Packages ─── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.pkg {
  background: var(--cream); border: 1px solid var(--cream-line); padding: 44px 36px 38px; position: relative;
  transition: transform .4s var(--cubic), border-color .3s, box-shadow .4s;
}
.pkg:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,0,0,.08); border-color: var(--gold); }
.pkg.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pkg.featured h4 { color: var(--cream); }
.pkg.featured .pkg-sub { color: rgba(250,247,240,.7); }
.pkg.featured ul li { color: rgba(250,247,240,.84); border-color: rgba(250,247,240,.16); }
.pkg.featured .btn { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.pkg.featured .btn:hover { background: var(--cream); border-color: var(--cream); }
.pkg-tag { position: absolute; top: -12px; left: 36px; background: var(--gold); color: var(--ink); font-size: 10px; letter-spacing: .25em; padding: 5px 12px; text-transform: uppercase; font-weight: 700; }
.pkg .pkg-num { font-family: var(--display); font-style: italic; font-size: 18px; color: var(--gold-deep); margin-bottom: 14px; }
.pkg.featured .pkg-num { color: var(--gold); }
.pkg h4 { font-size: 30px; margin-bottom: 8px; }
.pkg .pkg-sub { font-size: 14px; color: var(--ink-dim); margin-bottom: 28px; }
.pkg ul { list-style: none; margin-bottom: 32px; }
.pkg ul li { padding: 14px 0; border-bottom: 1px solid var(--cream-line); font-size: 14.5px; color: var(--ink-dim); display: flex; gap: 12px; line-height: 1.55; }
.pkg ul li::before { content: '—'; color: var(--gold); }
.pkg ul li:last-child { border-bottom: none; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ─── Q+A accordion ─── */
.faq-list { margin-top: 60px; border-top: 1px solid var(--cream-line); }
.faq {
  border-bottom: 1px solid var(--cream-line);
  padding: 0;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 28px 8px; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  font-family: var(--display); font-size: clamp(20px, 2.4vw, 30px); font-weight: 400;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-deep); }
.faq summary .plus { width: 24px; height: 24px; flex: 0 0 24px; position: relative; margin-top: 8px; }
.faq summary .plus::before, .faq summary .plus::after { content: ''; position: absolute; background: currentColor; transition: transform .35s var(--cubic); }
.faq summary .plus::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq summary .plus::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq[open] summary .plus::after { transform: translateX(-50%) rotate(90deg); }
.faq .a { padding: 0 8px 32px; font-size: 16px; line-height: 1.75; color: var(--ink-dim); max-width: 820px; font-weight: 400; }

/* ─── Visit / Contact info block ─── */
.visit { background: var(--cream-soft); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.visit-grid img { aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--cream-line); width: 100%; }
.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; border-top: 1px solid var(--cream-line); }
.info-col { padding: 44px 28px; border-right: 1px solid var(--cream-line); }
.info-col:last-child { border-right: none; }
.info-col .num { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--gold-deep); margin-bottom: 22px; }
.info-col h4 { font-size: 26px; margin-bottom: 14px; }
.info-col p, .info-col a { font-size: 15.5px; color: var(--ink-dim); line-height: 1.7; }
.info-col a:hover { color: var(--ink); }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; gap: 40px; } .info-cols { grid-template-columns: 1fr; } .info-col { border-right: none; border-bottom: 1px solid var(--cream-line); } .info-col:last-child { border-bottom: none; } }

/* ─── Pull quote ─── */
.pull {
  background: var(--ink); color: var(--cream);
  padding: 160px 24px; text-align: center;
}
.pull blockquote {
  font-family: var(--display); font-size: clamp(34px, 5vw, 64px); font-weight: 400; font-style: italic;
  line-height: 1.2; max-width: 1000px; margin: 0 auto;
}
.pull blockquote em { color: var(--gold); }
.pull cite { display: block; margin-top: 26px; font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: rgba(250,247,240,.5); }

/* ─── CTA strip ─── */
.cta-strip { background: var(--cream); padding: 140px 0; text-align: center; }
.cta-strip h2 { margin: 0 auto 28px; max-width: 900px; }
.cta-strip p { max-width: 580px; margin: 0 auto 40px; }

/* ─── Contact form ─── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.contact-form { background: var(--cream); border: 1px solid var(--cream-line); padding: 48px; }
.contact-form .field { margin-bottom: 22px; }
.contact-form label { display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; font-weight: 500; }
.contact-form input, .contact-form textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--cream-line);
  padding: 12px 2px; font-family: var(--sans); font-size: 16px; color: var(--ink); outline: none;
  transition: border-color .25s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .check { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-dim); margin-bottom: 22px; }
.contact-form .check input { width: auto; }
.form-status { margin-top: 14px; font-size: 13px; color: var(--gold-deep); min-height: 18px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .contact-form { padding: 32px 24px; } }

/* ─── Footer ─── */
footer.site {
  background: var(--ink); color: var(--cream); padding: 90px 0 36px; margin-top: 0;
}
footer.site .foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,247,240,.12);
}
footer.site h5 { font-family: var(--sans); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(250,247,240,.6); margin-bottom: 22px; font-weight: 500; }
footer.site .foot-brand { font-family: var(--display); font-size: 32px; }
footer.site .foot-brand em { color: var(--gold); font-style: italic; }
footer.site .foot-brand img.brand-mark { display: block; height: 44px; width: auto; margin-bottom: 6px; }
footer.site .foot-brand p { margin-top: 18px; font-size: 14px; color: rgba(250,247,240,.7); max-width: 320px; line-height: 1.7; }
footer.site ul { list-style: none; }
footer.site ul li { padding: 6px 0; font-size: 14px; color: rgba(250,247,240,.78); }
footer.site ul li a:hover { color: var(--gold); }
footer.site .foot-meta { display: flex; justify-content: space-between; padding-top: 26px; font-size: 11px; color: rgba(250,247,240,.4); letter-spacing: .12em; flex-wrap: wrap; gap: 12px; }
@media (max-width: 800px) { footer.site .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } footer.site .foot-brand { grid-column: 1 / -1; } }

/* ─── Equipment v2: black full-screen deck ───
   Used by /equipment/ page. Body gets .eqx class for theming. */
body.eqx { background: #000; color: var(--cream); }
body.eqx .utility-bar { background: #000; color: rgba(250,247,240,.78); border-bottom: 1px solid rgba(250,247,240,.06); }
body.eqx nav.top { background: #000; border-bottom: 1px solid rgba(250,247,240,.08); }
body.eqx nav.top.scrolled { background: rgba(0,0,0,.88); backdrop-filter: blur(14px); }
body.eqx nav.top ul { color: var(--cream); }
body.eqx nav.top ul a { color: var(--cream); }
body.eqx nav.top ul a::after { background: var(--cream); }
body.eqx .book-cta { border-color: var(--cream); color: var(--cream); }
body.eqx .book-cta:hover { background: var(--cream); color: var(--ink); }
body.eqx .nav-toggle span { background: var(--cream); }
body.eqx nav.top { color: var(--cream); }
@media (max-width: 880px) {
  body.eqx nav.top ul { background: #000; border-color: rgba(250,247,240,.08); }
  body.eqx nav.top ul li { border-color: rgba(250,247,240,.08); }
}

.eqx-deck { position: relative; }

.eqx-panel {
  position: relative;
  min-height: 100vh;
  padding: 96px 6vw 200px;
  display: block;
  overflow: hidden;
}
.eqx-panel + .eqx-panel { border-top: 1px solid rgba(250,247,240,.05); }

.eqx-titlebar {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  pointer-events: none;
}
.eqx-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 6.6vw, 104px);
  letter-spacing: -.01em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  flex: 1;
  opacity: 0; transform: translateY(-12px);
  transition: opacity 1s var(--cubic), transform 1s var(--cubic);
}
.eqx-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 120px);
  color: rgba(250,247,240,.55);
  line-height: 1;
  flex: 0 0 auto;
  opacity: 0; transform: translateY(-12px);
  transition: opacity 1s var(--cubic) .15s, transform 1s var(--cubic) .15s;
}
.eqx-panel.in .eqx-title,
.eqx-panel.in .eqx-num { opacity: 1; transform: translateY(0); }

.eqx-art {
  position: absolute;
  inset: 14vh -8vw 22vh 0;
  z-index: 1;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 0;
  pointer-events: none;
  overflow: visible;
}
.eqx-art img {
  width: 70%; max-width: 70%; max-height: 72vh;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 40px 90px rgba(0,0,0,.7));
  opacity: 0; transform: scale(1.08) translateX(4%);
  transition: opacity 1.4s var(--cubic), transform 1.8s var(--cubic);
}
.eqx-panel.in .eqx-art img { opacity: 1; transform: scale(1) translateX(0); }
.eqx-art::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 88% 50%, transparent 0%, rgba(0,0,0,.0) 45%, rgba(0,0,0,.6) 100%);
  pointer-events: none;
}

.eqx-copy {
  position: absolute; z-index: 3;
  left: 6vw; right: auto;
  bottom: 30vh;
  max-width: 380px;
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s var(--cubic) .35s, transform 1s var(--cubic) .35s;
}
.eqx-panel.in .eqx-copy { opacity: 1; transform: translateY(0); }
.eqx-copy .l1 { font-size: 14px; color: rgba(250,247,240,.7); margin-bottom: 6px; font-weight: 400; }
.eqx-copy .l2 { font-family: var(--sans); font-weight: 500; font-size: 22px; line-height: 1.35; color: var(--cream); margin-bottom: 8px; }
.eqx-copy .l3 { font-size: 14px; color: rgba(250,247,240,.62); font-weight: 400; }

.eqx-meta {
  position: absolute; z-index: 3;
  left: 6vw; right: 6vw;
  bottom: 14vh;
  display: flex; gap: 0; align-items: stretch;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--cubic) .55s, transform 1s var(--cubic) .55s;
}
.eqx-panel.in .eqx-meta { opacity: 1; transform: translateY(0); }
.eqx-meta .m { padding: 0 44px; border-left: 1px solid rgba(250,247,240,.16); }
.eqx-meta .m:first-child { padding-left: 0; border-left: 0; }
.eqx-meta .l { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: rgba(250,247,240,.55); margin-bottom: 12px; font-weight: 500; }
.eqx-meta .v { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); font-weight: 400; color: var(--cream); line-height: 1; }
.eqx-meta .v small { font-size: 14px; font-family: var(--sans); color: rgba(250,247,240,.6); margin-left: 6px; font-weight: 400; }

/* Sticky tab bar */
.eqx-tabs {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 50;
  background: rgba(24,24,24,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(250,247,240,.08);
  border-radius: 999px;
  padding: 6px;
  display: flex; gap: 2px;
  max-width: calc(100vw - 32px);
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  opacity: 0; transition: opacity .4s var(--cubic);
}
.eqx-tabs::-webkit-scrollbar { display: none; }
.eqx-tabs.show { opacity: 1; }
.eqx-tabs button {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(250,247,240,.55); padding: 13px 18px; border-radius: 999px;
  white-space: nowrap; transition: all .25s var(--cubic); font-weight: 500;
}
.eqx-tabs button:hover { color: var(--cream); }
.eqx-tabs button.active { background: rgba(250,247,240,.06); color: var(--cream); box-shadow: inset 0 0 0 1px rgba(250,247,240,.14); }

/* Equipment-page sub-hero override */
body.eqx .subhero { background: #000; color: var(--cream); border-bottom: 1px solid rgba(250,247,240,.08); padding: 160px 0 90px; }
body.eqx .subhero .eyebrow { color: var(--gold); }
body.eqx .subhero h1 { color: var(--cream); }
body.eqx .subhero .lede { color: rgba(250,247,240,.7); }

/* Equipment-page footer/CTA */
body.eqx .cta-strip { background: #000; color: var(--cream); border-top: 1px solid rgba(250,247,240,.06); }
body.eqx .cta-strip h2 { color: var(--cream); }
body.eqx .cta-strip .lede { color: rgba(250,247,240,.7); }
body.eqx .cta-strip .eyebrow { color: var(--gold); }
body.eqx .cta-strip .btn-primary { background: var(--cream); color: var(--ink); border-color: var(--cream); }
body.eqx .cta-strip .btn-primary:hover { background: transparent; color: var(--cream); }
body.eqx .cta-strip .btn-ghost { color: var(--cream); border-color: rgba(250,247,240,.4); }
body.eqx .cta-strip .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

@media (max-width: 900px) {
  .eqx-panel { padding: 80px 24px 220px; min-height: 100vh; }
  .eqx-art { inset: 18vh 0 30vh 0; padding-right: 0; justify-content: center; }
  .eqx-art img { max-width: 95%; max-height: 50vh; object-position: center; }
  .eqx-copy { left: 24px; right: 24px; bottom: 36vh; max-width: 100%; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.75) 30%); padding-top: 40px; }
  .eqx-meta { left: 24px; right: 24px; bottom: 12vh; flex-wrap: wrap; gap: 12px 0; }
  .eqx-meta .m { padding: 0 18px; }
  .eqx-meta .v { font-size: 22px; }
  .eqx-tabs { bottom: 16px; padding: 4px; }
  .eqx-tabs button { padding: 10px 12px; font-size: 10px; }
}

/* ─── Intro band ("What is Dreamfit?" — homepage above-the-fold explainer) ─── */
.intro-band { background: var(--cream); padding: 110px 0 100px; border-bottom: 1px solid var(--cream-line); }
.intro-band .ib-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: center; }
.intro-band .eyebrow { color: var(--gold-deep); }
.intro-band h2 { font-size: clamp(38px, 5.2vw, 68px); margin-bottom: 22px; }
.intro-band h2 em { color: var(--gold-deep); }
.intro-band .ib-lede { font-size: 17.5px; line-height: 1.75; color: var(--ink-dim); font-weight: 400; max-width: 560px; }
.intro-band .ib-lede strong { color: var(--ink); font-weight: 500; }
.intro-band .pills { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.intro-band .pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border: 1px solid var(--cream-line); border-radius: 999px;
  background: var(--cream-soft); transition: all .25s var(--cubic);
}
.intro-band .pill:hover { border-color: var(--gold); background: var(--cream); transform: translateY(-2px); }
.intro-band .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.intro-band .pill .label { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.intro-band .pill .desc { font-size: 12.5px; color: var(--ink-dim); font-weight: 400; }
@media (max-width: 900px) {
  .intro-band { padding: 80px 0 70px; }
  .intro-band .ib-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Light-section variants (replaces former dark mid-sections on inner pages) ─── */
.light-feature { background: var(--cream-soft); }
.light-feature .feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.light-feature .feat-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--cream-line); }
@media (max-width: 900px) { .light-feature .feat-grid { grid-template-columns: 1fr; gap: 40px; } }

.marquee.soft { background: var(--cream-soft); border-color: var(--cream-line); }
.marquee.soft .marquee-track { color: var(--ink); }

.pull.light { background: var(--cream); color: var(--ink); border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line); }
.pull.light blockquote em { color: var(--gold-deep); }
.pull.light cite { color: var(--ink-faint); }

/* ─── Equipment-page per-modality benefits list ─── */
.eqx-benefits {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(250,247,240,.16);
  list-style: none;
  display: grid;
  gap: 10px;
}
.eqx-benefits li {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(250,247,240,.78);
  font-weight: 400;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.eqx-benefits li::before {
  content: '';
  flex: 0 0 auto;
  width: 14px; height: 1px;
  background: var(--gold);
  margin-top: 10px;
}
.eqx-benefits .bh {
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(250,247,240,.5); font-weight: 500; margin-bottom: 4px;
}

/* ─── Page transitions ─── */
.page-fade { animation: pageFade .55s var(--cubic); }
@keyframes pageFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
