/* ============================
   DESIGN TOKENS
============================ */
:root{
  --ink:      #1A1A1A;
  --ink-soft: #2A2A28;
  --paper:    #FFFFFF;
  --paper-off:#F5F4F1;
  --orange:   #FF6600;
  --orange-deep: #CC4E00;
  --orange-glow: #FF8A3D;
  --line:     rgba(26,26,26,0.10);
  --line-on-dark: rgba(255,255,255,0.14);

  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1200px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.locked{ overflow:hidden; height:100vh; }

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }

h1,h2,h3,h4{ font-family:var(--display); letter-spacing:0.02em; line-height:1; }

.eyebrow{
  font-family:var(--body); font-weight:700; font-size:12px;
  letter-spacing:0.22em; text-transform:uppercase; color:var(--orange);
  display:flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--orange); display:inline-block; }

button, .btn{
  font-family:var(--body); font-weight:700; font-size:14px;
  letter-spacing:0.04em; text-transform:uppercase; border:none; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border-radius:2px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary{ background:var(--orange); color:var(--paper); box-shadow:0 8px 20px -6px rgba(255,102,0,0.55); }
.btn-primary:hover{ background:var(--orange-glow); transform:translateY(-2px); box-shadow:0 12px 26px -6px rgba(255,102,0,0.65); }
.btn-outline{ background:transparent; color:var(--paper); border:1.5px solid rgba(255,255,255,0.55); }
.btn-outline:hover{ border-color:var(--paper); background:rgba(255,255,255,0.08); transform:translateY(-2px); }
.btn-ghost-dark{ background:transparent; color:var(--ink); border:1.5px solid var(--ink); }
.btn-ghost-dark:hover{ background:var(--ink); color:var(--paper); }

:focus-visible{ outline:3px solid var(--orange); outline-offset:3px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ============================
   PRELOADER
============================ */
#preloader{
  position:fixed; inset:0; z-index:9999;
  background:var(--ink);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
#preloader.hide{ opacity:0; visibility:hidden; pointer-events:none; }
#preloader img{
  width:120px; height:120px;
  animation:logoPulse 1.4s ease-in-out infinite;
}
@keyframes logoPulse{
  0%,100%{ transform:scale(1); filter:drop-shadow(0 0 0 rgba(255,102,0,0)); }
  50%{ transform:scale(1.08); filter:drop-shadow(0 0 22px rgba(255,102,0,0.55)); }
}
.preloader-bar{
  width:180px; height:3px;
  background:rgba(255,255,255,0.12);
  margin-top:34px;
  border-radius:2px;
  overflow:hidden;
}
.preloader-bar::after{
  content:"";
  display:block;
  width:40%; height:100%;
  background:var(--orange);
  animation:barSlide 1.1s ease-in-out infinite;
}
@keyframes barSlide{
  0%{ transform:translateX(-100%); }
  100%{ transform:translateX(350%); }
}
.preloader-tag{
  margin-top:22px;
  font-size:11px;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.45);
}

/* ============================
   NAV
============================ */
header.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(26,26,26,0.0);
  transition:background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding:20px 0;
}
header.site-nav.scrolled{
  background:rgba(20,20,20,0.94);
  backdrop-filter:blur(8px);
  padding:12px 0;
  box-shadow:0 8px 24px -12px rgba(0,0,0,0.5);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; }
.logo{ display:flex; align-items:center; gap:12px; font-family:var(--display); font-size:24px; color:var(--paper); letter-spacing:0.03em; }
.logo img{ width:42px; height:42px; flex-shrink:0; }
.nav-links{ display:flex; align-items:center; gap:42px; }
.nav-links a{
  font-size:13px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
  color:rgba(255,255,255,0.85); position:relative; padding:4px 0;
}
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--orange); transition:width .2s ease; }
.nav-links a:hover{ color:var(--paper); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-cta .btn-primary{ padding:12px 24px; font-size:12px; }

.burger{ background:none; border:none; padding:0; display:none; width:24px; height:18px; position:relative; cursor:pointer; }
.burger span{ position:absolute; left:0; right:0; height:2px; background:var(--paper); transition:transform .25s ease, opacity .25s ease, top .25s ease; }
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:8px; }
.burger span:nth-child(3){ top:16px; }
.burger.open span:nth-child(1){ top:8px; transform:rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ top:8px; transform:rotate(-45deg); }

/* ============================
   HERO
============================ */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:flex-end;
  color:var(--paper); overflow:hidden; background:var(--ink);
}
.hero-bg{
  position:absolute; inset:0;
  background-image:
    linear-gradient(180deg, rgba(15,15,15,0.6) 0%, rgba(15,15,15,0.5) 40%, rgba(15,15,15,0.94) 100%),
    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1800&q=80');
  background-size:cover; background-position:center 30%;
  transform:scale(1.06);
}
.hero-content{ position:relative; z-index:2; width:100%; padding-bottom:96px; padding-top:180px; }
.hero-tag{ font-family:var(--body); font-weight:700; font-size:12px; letter-spacing:0.28em; text-transform:uppercase; color:var(--orange-glow); margin-bottom:22px; }
.hero h1{ font-size:clamp(52px, 9vw, 118px); text-transform:uppercase; max-width:17ch; color:var(--paper); }
.hero h1 .accent{ color:var(--orange); }
.hero p.lede{ margin-top:26px; max-width:540px; font-size:18px; color:rgba(255,255,255,0.78); font-weight:400; }
.hero-actions{ margin-top:40px; display:flex; gap:18px; flex-wrap:wrap; }
.hero-stats{
  margin-top:72px; display:grid; grid-template-columns:repeat(4,auto); gap:56px;
  border-top:1px solid var(--line-on-dark); padding-top:28px; max-width:860px;
}
.hero-stats .stat b{ display:block; font-family:var(--display); font-size:38px; color:var(--orange); }
.hero-stats .stat b.phone-stat{ font-size:22px; line-height:1.2; }
.hero-stats .stat span{ font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.65); }

.scroll-cue{
  position:absolute; right:32px; bottom:32px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:rgba(255,255,255,0.65); font-size:11px; letter-spacing:0.2em; text-transform:uppercase;
}
.scroll-cue .line{ width:1px; height:46px; background:linear-gradient(to bottom, var(--orange), transparent); animation:scrollpulse 1.8s ease-in-out infinite; }
@keyframes scrollpulse{
  0%{ transform:scaleY(0.4); transform-origin:top; opacity:.4; }
  50%{ transform:scaleY(1); transform-origin:top; opacity:1; }
  100%{ transform:scaleY(0.4); transform-origin:top; opacity:.4; }
}

/* ============================
   SECTION SHELL
============================ */
section{ position:relative; }
.section-pad{ padding:120px 0; }
.section-head{ max-width:640px; margin-bottom:64px; }
.section-head h2{ font-size:clamp(36px, 5vw, 56px); text-transform:uppercase; margin-top:14px; }
.section-head p{ margin-top:18px; font-size:17px; color:#555; max-width:520px; }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ============================
   ABOUT
============================ */
.about{ background:var(--paper); }
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-media{ position:relative; }
.about-media img{ width:100%; height:520px; object-fit:cover; border-radius:2px; }
.about-media::before{ content:""; position:absolute; top:24px; left:24px; width:100%; height:100%; border:2px solid var(--orange); z-index:-1; }
.about-text .section-head{ margin-bottom:26px; }
.about-text p{ color:#4a4a4a; font-size:16px; margin-bottom:16px; }
.goal-tags{ display:flex; flex-wrap:wrap; gap:10px; margin:24px 0 6px; }
.goal-tags span{
  font-size:13px; font-weight:600; padding:8px 16px;
  background:var(--paper-off); border:1px solid var(--line); border-radius:20px;
}
.about-list{ margin-top:30px; display:grid; gap:16px; }
.about-list li{ list-style:none; display:flex; align-items:flex-start; gap:14px; font-weight:600; font-size:15px; }
.about-list li .dot{
  width:22px; height:22px; border-radius:50%; background:var(--orange); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; margin-top:2px;
}
.about-list li .dot svg{ width:12px; height:12px; }

/* ============================
   WHAT YOU GET (formerly facilities)
============================ */
.experience{ background:var(--ink); color:var(--paper); }
.experience .section-head p{ color:rgba(255,255,255,0.6); }
.experience .eyebrow{ color:var(--orange-glow); }
.experience .eyebrow::before{ background:var(--orange-glow); }

.exp-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:2px; background:var(--line-on-dark); }
.exp-card{ background:var(--ink); padding:42px 30px; position:relative; overflow:hidden; transition:background .3s ease; }
.exp-card::after{
  content:""; position:absolute; left:0; bottom:0; right:0; height:3px; background:var(--orange);
  transform:scaleX(0); transform-origin:left; transition:transform .35s ease;
}
.exp-card:hover{ background:var(--ink-soft); }
.exp-card:hover::after{ transform:scaleX(1); }
.exp-icon{
  width:52px; height:52px; border:1.5px solid var(--orange); border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin-bottom:24px; transition:background .25s ease;
}
.exp-icon svg{ width:24px; height:24px; stroke:var(--orange); }
.exp-card:hover .exp-icon{ background:var(--orange); }
.exp-card:hover .exp-icon svg{ stroke:var(--ink); }
.exp-card h3{ font-size:23px; text-transform:uppercase; margin-bottom:12px; letter-spacing:0.01em; }
.exp-card p{ color:rgba(255,255,255,0.6); font-size:14.5px; }

/* ============================
   RESULTS / TESTIMONIALS
============================ */
.results{ background:var(--paper-off); }
.results-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:64px; align-items:center; }
.results-copy blockquote{
  font-family:var(--display); font-size:clamp(28px,3.4vw,40px); text-transform:uppercase;
  line-height:1.15; color:var(--ink); margin-top:8px;
}
.results-copy blockquote span{ color:var(--orange); }
.results-copy p.attrib{ margin-top:20px; font-size:14px; color:#777; }
.results-media{ position:relative; }
.results-media img{ width:100%; border-radius:3px; box-shadow:0 30px 60px -20px rgba(26,26,26,0.28); }
.results-media .tagchip{
  position:absolute; bottom:-18px; left:-18px;
  background:var(--orange); color:var(--paper);
  font-family:var(--display); font-size:15px; letter-spacing:0.05em;
  padding:14px 22px; border-radius:2px;
  box-shadow:0 14px 30px -10px rgba(255,102,0,0.55);
  z-index:3;
}

/* rotating testimonial carousel */
.rcarousel{ position:relative; border-radius:3px; overflow:hidden; box-shadow:0 30px 60px -20px rgba(26,26,26,0.28); background:var(--ink); aspect-ratio:4/3.15; }
.rcarousel .rslide{ position:absolute; inset:0; opacity:0; transition:opacity .7s ease; display:flex; align-items:center; justify-content:center; }
.rcarousel .rslide.active{ opacity:1; }
.rcarousel .rslide img{ width:100%; height:100%; object-fit:cover; border-radius:0; box-shadow:none; }
.rcarousel .rcaption{
  position:absolute; left:0; right:0; bottom:0;
  background:linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color:var(--paper); padding:26px 22px 16px; font-size:13px; font-weight:600;
  letter-spacing:0.04em; text-transform:uppercase;
}
.rdots{ position:absolute; bottom:14px; right:16px; z-index:4; display:flex; gap:7px; }
.rdots button{
  width:8px; height:8px; padding:0; border-radius:50%; background:rgba(255,255,255,0.45); border:none; cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.rdots button.active{ background:var(--orange); transform:scale(1.3); }

/* rotating quote ticker */
.quote-ticker{ margin-top:26px; min-height:64px; position:relative; }
.quote-ticker .qline{
  position:absolute; inset:0; opacity:0; transform:translateY(10px);
  transition:opacity .5s ease, transform .5s ease;
  font-size:15.5px; font-style:italic; color:#666;
}
.quote-ticker .qline.active{ opacity:1; transform:none; position:relative; }

/* plan comparison table */
.compare-wrap{ margin:8px 0 56px; overflow-x:auto; }
table.compare{ width:100%; border-collapse:collapse; min-width:640px; }
table.compare th, table.compare td{ padding:14px 16px; text-align:left; font-size:13.5px; border-bottom:1px solid var(--line); }
table.compare th{ font-size:11.5px; text-transform:uppercase; letter-spacing:0.06em; color:#888; font-weight:700; }
table.compare td.plan-cell{ font-weight:700; }
table.compare tr:hover td{ background:var(--paper-off); }
table.compare td.price-cell{ font-family:var(--display); font-size:19px; color:var(--orange); }

/* ============================
   MEMBERSHIP / PRICING (interactive)
============================ */
.membership{ background:var(--paper); }
.plan-tabs{
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px;
  border-bottom:1px solid var(--line); padding-bottom:0;
}
.plan-tab{
  background:none; border:none; cursor:pointer;
  padding:14px 22px; font-family:var(--body); font-weight:700; font-size:13px;
  letter-spacing:0.06em; text-transform:uppercase; color:#888;
  border-bottom:3px solid transparent; margin-bottom:-1px;
  transition:color .2s ease, border-color .2s ease;
}
.plan-tab.active{ color:var(--ink); border-color:var(--orange); }
.plan-tab:hover{ color:var(--ink); }

.plan-panel{ display:none; }
.plan-panel.active{ display:block; }

.plan-layout{ display:grid; grid-template-columns:1fr 1.3fr; gap:56px; align-items:start; }
.plan-info .plan-days{ font-size:12px; font-weight:800; letter-spacing:0.16em; text-transform:uppercase; color:var(--orange); }
.plan-info h3{ font-size:clamp(30px,4vw,42px); text-transform:uppercase; margin-top:10px; }
.plan-info .plan-sub{ font-size:14px; font-weight:600; color:#777; text-transform:uppercase; letter-spacing:0.04em; margin-top:4px; }
.plan-info .plan-tagline{ margin-top:18px; font-size:15.5px; color:#4a4a4a; font-style:italic; }
.plan-includes{ margin-top:26px; display:grid; gap:12px; }
.plan-includes li{ list-style:none; display:flex; align-items:center; gap:12px; font-size:14.5px; color:#444; }
.plan-includes li svg{ width:16px; height:16px; stroke:var(--orange); flex-shrink:0; }

.price-card{
  background:var(--paper-off); border:1px solid var(--line); padding:38px;
}
.dur-toggle{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:28px; }
.dur-btn{
  background:var(--paper); border:1.5px solid var(--line); cursor:pointer;
  padding:10px 18px; font-family:var(--body); font-weight:700; font-size:12.5px;
  letter-spacing:0.04em; color:var(--ink); border-radius:2px;
  transition:background .18s ease, border-color .18s ease, color .18s ease;
}
.dur-btn.active{ background:var(--ink); border-color:var(--ink); color:var(--paper); }
.dur-btn:not(.active):hover{ border-color:var(--orange); }

.price-display{ display:flex; align-items:baseline; gap:10px; }
.price-display .amount{ font-family:var(--display); font-size:56px; color:var(--ink); }
.price-display .amount .sym{ font-size:26px; margin-right:4px; color:var(--orange); }
.price-display .per{ font-size:13px; color:#888; font-weight:500; }
.price-note{ margin-top:8px; font-size:13px; color:#999; }

.group-line{
  margin-top:24px; padding-top:24px; border-top:1px dashed var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.group-line .g-label{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; color:#666; }
.group-line .g-price{ font-family:var(--display); font-size:26px; color:var(--ink); }
.group-line .g-price small{ font-family:var(--body); font-size:12px; color:#999; font-weight:500; }

.price-card .btn{ width:100%; margin-top:30px; }

/* ============================
   CTA STRIP
============================ */
.cta-strip{ background:var(--orange); color:var(--paper); padding:64px 0; }
.cta-strip .wrap{ display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.cta-strip h3{ font-size:clamp(28px,4vw,44px); text-transform:uppercase; max-width:16ch; }
.cta-strip .btn{ background:var(--ink); color:var(--paper); flex-shrink:0; }
.cta-strip .btn:hover{ background:#000; transform:translateY(-2px); }

/* ============================
   FOOTER
============================ */
footer{ background:#101010; color:rgba(255,255,255,0.7); padding:80px 0 30px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:48px; padding-bottom:56px; border-bottom:1px solid var(--line-on-dark); }
.footer-brand .logo{ margin-bottom:18px; }
.footer-brand p{ font-size:14px; max-width:300px; color:rgba(255,255,255,0.55); }
.footer-social{ display:flex; gap:12px; margin-top:24px; }
.footer-social a{ width:38px; height:38px; border:1px solid var(--line-on-dark); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:background .2s ease, border-color .2s ease; }
.footer-social a:hover{ background:var(--orange); border-color:var(--orange); }
.footer-social a svg{ width:16px; height:16px; }
.footer-col h4{ font-family:var(--body); font-size:13px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--paper); margin-bottom:20px; }
.footer-col ul{ display:grid; gap:12px; }
.footer-col li{ list-style:none; }
.footer-col a{ font-size:14.5px; color:rgba(255,255,255,0.6); transition:color .2s ease; }
.footer-col a:hover{ color:var(--orange); }
.footer-col address{ font-style:normal; font-size:14.5px; color:rgba(255,255,255,0.6); line-height:1.9; }
.footer-bottom{ padding-top:28px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:rgba(255,255,255,0.4); }

/* ============================
   RESPONSIVE
============================ */
@media (max-width:980px){
  .about-grid{ grid-template-columns:1fr; gap:48px; }
  .about-media img{ height:380px; }
  .exp-grid{ grid-template-columns:repeat(2,1fr); }
  .results-grid{ grid-template-columns:1fr; gap:40px; }
  .results-media{ order:-1; }
  .plan-layout{ grid-template-columns:1fr; gap:36px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .hero-stats{ grid-template-columns:repeat(2,auto); row-gap:28px; }
}
@media (max-width:760px){
  .wrap{ padding:0 22px; }
  .nav-links, .nav-cta .btn-primary span.txt{ display:none; }
  .burger{ display:block; }
  .nav-cta{ gap:10px; }
  .hero-content{ padding-top:140px; padding-bottom:56px; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-stats{ display:none; }
  .section-pad{ padding:80px 0; }
  .exp-grid{ grid-template-columns:1fr; }
  .cta-strip .wrap{ flex-direction:column; align-items:flex-start; }
  .cta-strip .btn{ width:100%; }
  .footer-grid{ grid-template-columns:1fr; gap:36px; }
  .scroll-cue{ display:none; }
  .plan-tabs{ gap:6px; }
  .plan-tab{ padding:12px 14px; font-size:12px; }
  .results-media .tagchip{ left:0; }
}

/* mobile nav drawer */
.mobile-drawer{
  position:fixed; top:0; right:-100%; width:78%; max-width:340px; height:100vh;
  background:var(--ink); z-index:1100; padding:100px 32px 40px;
  transition:right .35s ease; box-shadow:-20px 0 40px rgba(0,0,0,0.4);
}
.mobile-drawer.open{ right:0; }
.mobile-drawer a{
  display:block; font-size:20px; font-family:var(--display); letter-spacing:0.03em;
  color:var(--paper); padding:16px 0; border-bottom:1px solid var(--line-on-dark); text-transform:uppercase;
}
.mobile-drawer .btn{ margin-top:28px; width:100%; }
.drawer-backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:1050;
  opacity:0; pointer-events:none; transition:opacity .35s ease;
}
.drawer-backdrop.open{ opacity:1; pointer-events:auto; }