/* =========================================================
   AURA — PERSONAL TRAINER LANDING PAGE
   ========================================================= */

:root{
  --black: #0a0a0c;
  --black-soft: #121216;
  --pink: #ff2f9c;
  --pink-soft: #ff6fb8;
  --gold: #f7a828;
  --gold-light: #ffd65c;
  --white: #ffffff;
  --off-white: #f3eef2;
  --line: rgba(255,255,255,.14);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 18px;
  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--black);
  color:var(--off-white);
  font-family:var(--font-body);
  font-weight:400;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

/* ---------- grain overlay + sparkle cursor trail ---------- */
.grain{
  position:fixed; inset:0; z-index:9000; pointer-events:none;
  opacity:.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.sparkle-canvas{
  position:fixed; inset:0; z-index:500;
  pointer-events:none;
  opacity:0;
  transition:opacity .5s ease;
}
@media (hover:hover) and (pointer:fine){
  .sparkle-canvas.active{ opacity:1; }
}

/* ---------- reveal-on-scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ---------- typography helpers ---------- */
.eyebrow{
  font-weight:600; letter-spacing:.06em; color:var(--pink);
  text-transform:uppercase; font-size:.82rem; margin:0 0 10px;
}
.hero-title + .eyebrow{ margin-top:18px; }
.eyebrow.light{ color:var(--gold-light); }
.section-title{
  font-family:var(--font-display);
  font-weight:400;
  text-transform:uppercase;
  font-size:clamp(2rem, 4.2vw, 3rem);
  line-height:1.08;
  margin:0 0 18px;
  color:var(--white);
}
.section-title.light{ color:var(--white); }
.section-head{ max-width:720px; margin:0 auto 56px; text-align:center; }
.section-lede{ color:rgba(243,238,242,.75); font-size:1.05rem; }

.hero-rule{
  width:96px; height:4px; background:linear-gradient(90deg,var(--pink),var(--gold));
  border-radius:4px; margin:6px 0 22px;
}
.hero-rule.small{ width:64px; height:3px; }
.hero-rule.center{ margin-left:auto; margin-right:auto; }

/* ---------- buttons ---------- */
.btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center;
  padding:16px 30px; border-radius:100px;
  font-weight:600; font-size:.98rem; letter-spacing:.01em;
  border:2px solid transparent; cursor:pointer;
  overflow:hidden; isolation:isolate;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space:nowrap;
}
.btn > span{ position:relative; z-index:3; }

/* glossy 3D pink button */
.btn-pink{
  color:var(--white);
  background:linear-gradient(180deg, var(--pink-soft) 0%, var(--pink) 45%, #c9006f 100%);
  box-shadow:
    0 0 0 2px rgba(255,255,255,.35) inset,
    0 -6px 10px rgba(255,255,255,.35) inset,
    0 6px 10px rgba(255,0,130,.35) inset,
    0 10px 25px -6px rgba(255,47,156,.55),
    0 2px 4px rgba(0,0,0,.15);
}
/* glossy highlight arc on top */
.btn-pink::before{
  content:"";
  position:absolute; inset:3px 3px auto 3px; height:45%;
  border-radius:999px 999px 50% 50% / 999px 999px 100% 100%;
  background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,0));
  pointer-events:none; z-index:1;
}
/* shine sweep on hover */
.btn-pink::after{
  content:"";
  position:absolute; top:0; left:-60%; width:40%; height:100%;
  background:linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.75) 50%, rgba(255,255,255,0) 100%);
  transform:skewX(-20deg);
  z-index:2; pointer-events:none;
}
.btn-pink:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 2px rgba(255,255,255,.45) inset,
    0 -6px 10px rgba(255,255,255,.4) inset,
    0 6px 10px rgba(255,0,130,.4) inset,
    0 16px 34px -6px rgba(255,47,156,.7),
    0 2px 4px rgba(0,0,0,.15);
}
.btn-pink:hover::after{ animation:shine-sweep .9s ease forwards; }
.btn-pink:active{ transform:translateY(0) scale(1); }
.btn-pink:focus-visible{ outline:3px solid var(--pink); outline-offset:4px; }

@keyframes shine-sweep{
  from{ left:-60%; }
  to{ left:130%; }
}

.btn-ghost{
  background:transparent; color:var(--white); border-color:var(--line);
}
.btn-ghost:hover{ border-color:var(--pink); color:var(--pink); transform:translateY(-3px); }
.btn-small{ padding:11px 20px; font-size:.85rem; }
.btn-magnet > span{ display:inline-block; transition:transform .3s var(--ease); }

/* ---------- header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:20px 0;
  transition:padding .35s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled{
  padding:12px 0;
  background:rgba(10,10,12,.82);
  backdrop-filter:blur(14px) saturate(150%);
  box-shadow:0 8px 30px -12px rgba(0,0,0,.6);
  border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; flex-direction:column; line-height:1; }
.brand-mark{
  font-family:var(--font-display); font-size:1.5rem; letter-spacing:.03em;
  color:var(--white); text-transform:uppercase;
}
.brand-mark.small{ font-size:1.2rem; }
.brand-sub{ font-size:.6rem; letter-spacing:.14em; color:var(--pink-soft); text-transform:uppercase; margin-top:2px; }

.main-nav{ display:flex; align-items:center; gap:32px; }
.main-nav a[data-nav]{
  position:relative; font-size:.92rem; font-weight:500; color:var(--off-white);
  padding:4px 0; transition:color .25s ease;
}
.main-nav a[data-nav]::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px;
  background:linear-gradient(90deg,var(--pink),var(--gold));
  transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.main-nav a[data-nav]:hover{ color:var(--pink-soft); }
.main-nav a[data-nav]:hover::after{ transform:scaleX(1); }
.nav-cta{ margin-left:8px; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; background:transparent; border:0; cursor:pointer; padding:0;
}
.nav-toggle span{ display:block; width:100%; height:2px; background:var(--white); transition:transform .3s var(--ease), opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }


/* ---------- hero ---------- */
.hero{
  position:relative;
  padding:170px 0 120px;
  background:var(--black);
  overflow:hidden;
}

/* ambient background: a grid of small brand-coloured squares pulsing in a
   wave via GSAP's stagger:{grid} — rippling out from the centre on a loop */
.hero-stagger-grid{
  position:absolute; inset:0; z-index:0;
  display:grid;
  grid-template-columns:repeat(16, 1fr);
  grid-template-rows:repeat(9, 1fr);
  gap:3px;
  padding:3px;
  overflow:hidden;
  pointer-events:none;
}
.stagger-box{
  border-radius:4px;
  background:linear-gradient(135deg, rgba(255,47,156,.4), rgba(247,168,40,.22));
}
.hero-glow{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 50% at 82% 18%, rgba(255,47,156,.20), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(247,168,40,.14), transparent 60%);
}

.hero-inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center;
}
.hero-title{ margin:14px 0 0; }
.hero-title .line{
  display:block;
  font-family:var(--font-display);
  text-transform:uppercase;
  font-size:clamp(2.6rem, 6.4vw, 4.6rem);
  line-height:.98;
  color:var(--white);
  letter-spacing:.01em;
}
.hero-title .line.accent{
  background:linear-gradient(100deg, var(--pink) 0%, var(--pink-soft) 40%, var(--gold) 100%);
  background-size:200% 100%;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  animation:shine 7s ease-in-out infinite;
}
@keyframes shine{
  0%,100%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
}
.hero-sub{ font-size:1.12rem; color:rgba(243,238,242,.82); max-width:480px; margin:20px 0 22px; }

.pill{
  display:inline-block; background:var(--pink); color:var(--white);
  font-family:var(--font-display); letter-spacing:.02em;
  padding:10px 24px; border-radius:100px; font-size:1.1rem;
  box-shadow:0 8px 24px -8px rgba(255,47,156,.7);
}

.hero-badges{ display:flex; flex-wrap:wrap; gap:12px 22px; margin:26px 0 30px; }
.hero-badges li{
  display:flex; align-items:center; gap:10px; font-size:.9rem; color:rgba(243,238,242,.85);
}
.ping-dot{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center;
  width:9px; height:9px; flex-shrink:0;
}
.ping-dot i{
  position:relative; z-index:1;
  display:block; width:9px; height:9px; border-radius:50%;
  background:linear-gradient(135deg, var(--pink-soft), var(--pink));
  box-shadow:0 0 6px 1px rgba(255,47,156,.75);
}
.ping-dot::before{
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  background:var(--pink);
  animation:pingDot 2.2s cubic-bezier(0,0,.2,1) infinite;
}
.hero-badges li:nth-child(2) .ping-dot::before{ animation-delay:.4s; }
.hero-badges li:nth-child(3) .ping-dot::before{ animation-delay:.8s; }
.hero-badges li:nth-child(4) .ping-dot::before{ animation-delay:1.2s; }
@keyframes pingDot{
  0%{ transform:scale(1); opacity:.7; }
  75%,100%{ transform:scale(2.6); opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .ping-dot::before{ animation:none; opacity:0; }
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; }

.hero-photo{ position:relative; display:flex; justify-content:center; }
.photo-stage{ position:relative; width:min(380px, 90%); aspect-ratio:1/1; }
.photo-ring{
  position:relative; width:100%; height:100%;
  border-radius:50%;
  padding:10px;
  background:conic-gradient(from 0deg, var(--pink), var(--gold), var(--pink-soft), var(--pink));
  animation:spin 14s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.photo-frame{
  width:100%; height:100%; border-radius:50%; overflow:hidden;
  background:var(--black-soft);
  display:flex; align-items:center; justify-content:center;
  animation:spinReverse 14s linear infinite;
}
@keyframes spinReverse{ to{ transform:rotate(-360deg); } }
.photo-frame img{ width:100%; height:100%; object-fit:cover; }
.photo-placeholder{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:rgba(243,238,242,.45); font-size:.85rem; text-align:center; padding:20px;
}
.photo-placeholder.small{ padding:14px; }

.scroll-cue{
  position:absolute; left:50%; bottom:28px; transform:translateX(-50%);
  width:26px; height:42px; border:2px solid rgba(255,255,255,.4); border-radius:16px;
  display:flex; justify-content:center; padding-top:8px;
}
.scroll-cue span{ width:4px; height:8px; border-radius:4px; background:var(--pink); animation:scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue{ 0%{ opacity:1; transform:translateY(0); } 70%,100%{ opacity:0; transform:translateY(14px); } }

/* ---------- marquee ---------- */
.marquee{
  background:linear-gradient(90deg,var(--pink),#ff5fae 50%,var(--gold));
  overflow:hidden; padding:14px 0;
}
.marquee-track{
  display:flex; gap:18px; white-space:nowrap; width:max-content;
  animation:marquee 26s linear infinite;
}
.marquee-track span{
  font-family:var(--font-display); text-transform:uppercase; letter-spacing:.03em;
  font-size:1rem; color:var(--black);
}
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- about ---------- */
.about{ padding:120px 0; background:var(--black); }
.about-inner{ display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:center; }
.about-photo{ position:relative; }
.about-photo-frame{
  border-radius:var(--radius); overflow:hidden; aspect-ratio:4/5;
  background:linear-gradient(160deg, var(--black-soft), #1a1a20);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:transform .5s var(--ease);
}
.about-photo:hover .about-photo-frame{ transform:translateY(-6px); }
.about-photo-frame img{ width:100%; height:100%; object-fit:cover; }

.stat-card{
  position:absolute; right:-24px; bottom:-24px;
  background:linear-gradient(135deg,var(--pink),#ff5fae);
  color:var(--white); border-radius:var(--radius);
  padding:20px 24px; box-shadow:0 20px 40px -14px rgba(255,47,156,.6);
  display:flex; flex-direction:column; align-items:flex-start; min-width:150px;
}
.stat-card .stat-number{ font-family:var(--font-display); font-size:2.6rem; line-height:1; }
.stat-card .stat-unit{ font-family:var(--font-display); font-size:1.4rem; margin-left:2px; }
.stat-card .stat-label{ font-size:.72rem; opacity:.9; margin-top:6px; line-height:1.3; }

.about-copy p{ color:rgba(243,238,242,.82); font-size:1.02rem; }
.stat-row{ display:flex; gap:36px; margin:30px 0 34px; flex-wrap:wrap; }
.stat-block{ min-width:120px; }
.stat-block .stat-number, .stat-block .stat-plus{
  font-family:var(--font-display); font-size:2.4rem; color:var(--pink);
}
.stat-block p{ margin:4px 0 0; font-size:.85rem; color:rgba(243,238,242,.65); }

/* ---------- why gym ---------- */
.why-gym{
  position:relative; padding:120px 0;
  background:linear-gradient(180deg, var(--black-soft), var(--black));
  overflow:hidden;
}
.why-inner{ position:relative; z-index:1; max-width:760px; }
.why-text{ font-size:1.08rem; color:rgba(243,238,242,.82); }

.gym-logo-badge{
  display:inline-flex; align-items:center; gap:16px; margin-top:36px;
  padding:16px 26px; border-radius:100px;
  background:rgba(255,255,255,.04); border:1px solid var(--line);
  transition:transform .4s var(--ease), border-color .4s ease;
}
.gym-logo-badge:hover{ transform:translateY(-4px); border-color:var(--gold); }
.cg-logo-img{ width:40px; height:auto; flex-shrink:0; }
.cg-text{ font-size:.85rem; letter-spacing:.04em; color:var(--off-white); line-height:1.3; }
.cg-text small{ color:rgba(243,238,242,.55); }

/* ---------- services ---------- */
.services{ padding:120px 0; background:var(--black); }

.services-accordion{ display:flex; flex-direction:column; gap:18px; max-width:820px; margin:0 auto; }
.service-panel{
  background:var(--black-soft); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; transition:border-color .4s ease, box-shadow .4s ease;
}
.service-panel:hover{ border-color:rgba(255,47,156,.35); }
.service-panel.open{ border-color:rgba(255,47,156,.5); box-shadow:0 20px 40px -20px rgba(255,47,156,.35); }

.service-panel-toggle{
  width:100%; display:flex; align-items:center; gap:20px;
  background:none; border:none; cursor:pointer; text-align:left;
  padding:26px 28px; font-family:var(--font-body);
}
.service-panel-toggle:focus-visible{ outline:2px solid var(--pink); outline-offset:-2px; }

.service-icon{ height:44px; width:auto; flex-shrink:0; transition:transform .4s var(--ease); }
.service-panel.open .service-icon{ transform:scale(1.08) rotate(-4deg); }

.service-panel-heading{ flex:1; display:flex; flex-direction:column; gap:4px; min-width:0; }
.service-panel-title{ font-size:1.1rem; font-weight:700; color:#fff; }
.service-panel-teaser{ font-size:.85rem; color:rgba(243,238,242,.6); line-height:1.4; }

.service-panel-icon{
  flex-shrink:0; width:28px; height:28px; border-radius:50%;
  border:1px solid var(--line); position:relative;
  transition:transform .4s var(--ease), border-color .4s ease, background .4s ease;
}
.service-panel-icon::before, .service-panel-icon::after{
  content:""; position:absolute; top:50%; left:50%;
  background:var(--off-white); transition:transform .3s ease, background .3s ease;
}
.service-panel-icon::before{ width:12px; height:2px; transform:translate(-50%,-50%); }
.service-panel-icon::after{ width:2px; height:12px; transform:translate(-50%,-50%); }
.service-panel.open .service-panel-icon{ background:var(--pink); border-color:var(--pink); }
.service-panel.open .service-panel-icon::before{ background:#fff; }
.service-panel.open .service-panel-icon::after{ transform:translate(-50%,-50%) rotate(90deg) scaleY(0); background:#fff; }

.service-panel-body{ max-height:0; overflow:hidden; transition:max-height .5s var(--ease); }
.service-panel-body-inner{ padding:0 28px 30px; }
.service-panel-desc{ color:rgba(243,238,242,.8); font-size:.95rem; line-height:1.6; margin:0 0 18px; }
.service-panel-subhead{
  font-weight:700; color:var(--pink-soft); font-size:.8rem; text-transform:uppercase;
  letter-spacing:.06em; margin:0 0 10px;
}
.service-panel-list{ list-style:none; margin:0 0 20px; padding:0; display:flex; flex-direction:column; gap:8px; }
.service-panel-list li{ position:relative; padding-left:22px; font-size:.9rem; color:rgba(243,238,242,.75); }
.service-panel-list li::before{
  content:""; position:absolute; left:0; top:.5em; width:7px; height:7px; border-radius:50%;
  background:linear-gradient(135deg, var(--pink-soft), var(--pink));
}
.service-panel-price{ font-weight:700; color:var(--gold-light); font-size:.9rem; margin:0 0 20px; }

/* ---------- quote ---------- */
.quote-section{ padding:80px 0; text-align:center; background:var(--black); }
.quote-section blockquote{
  max-width:780px; margin:0 auto; font-family:var(--font-display);
  text-transform:uppercase; font-size:clamp(1.3rem, 2.6vw, 1.9rem); line-height:1.35;
  color:var(--white); font-weight:400;
}
.quote-section blockquote span{ display:inline-block; margin-left:6px; }
.quote-author{ margin-top:18px; color:var(--pink-soft); font-family:var(--font-body); font-weight:600; }

/* ---------- reviews ---------- */
.reviews{ padding:120px 0; background:var(--black-soft); }
.reviews-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:22px;
  margin-bottom:56px;
}
.reviews-loading, .reviews-empty{
  grid-column:1/-1; text-align:center; color:rgba(243,238,242,.5); font-size:.95rem; padding:20px 0;
}
.review-card{
  position:relative;
  background:var(--black); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px; display:flex; flex-direction:column; gap:12px;
  animation:cardIn .5s ease both;
  transition:opacity .3s ease;
}
@keyframes cardIn{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:translateY(0); } }
.review-card-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; padding-right:26px; }
.review-card-name{ font-weight:700; color:#fff; }
.review-card-date{ font-size:.75rem; color:rgba(243,238,242,.45); }
.review-card-stars{ color:var(--gold); letter-spacing:2px; font-size:.95rem; }
.review-card-text{ color:rgba(243,238,242,.8); font-size:.92rem; line-height:1.6; white-space:pre-wrap; }
.review-card-photo{
  width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:12px; margin-top:4px;
}
.review-delete-btn{
  position:absolute; top:20px; right:20px;
  width:22px; height:22px; display:flex; align-items:center; justify-content:center;
  background:transparent; border:none; border-radius:50%;
  color:rgba(243,238,242,.35); font-size:1.1rem; line-height:1; cursor:pointer;
  transition:background .25s ease, color .25s ease;
}
.review-delete-btn:hover{ background:rgba(255,80,80,.15); color:#ff8080; }
.review-delete-btn:disabled{ opacity:.4; cursor:default; }

.review-form-wrap{
  max-width:640px; margin:0 auto; background:var(--black); border:1px solid var(--line);
  border-radius:var(--radius); padding:40px clamp(20px,5vw,44px);
}
.review-form-wrap h3{ font-family:var(--font-display); text-transform:uppercase; font-size:1.5rem; color:#fff; margin:0 0 6px; }
.review-form-lede{ color:rgba(243,238,242,.6); font-size:.92rem; margin:0 0 24px; }
.review-form{ display:flex; flex-direction:column; gap:16px; }
.review-form-row{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.review-input, .review-textarea{
  flex:1; min-width:180px;
  background:rgba(255,255,255,.04); border:1px solid var(--line); border-radius:12px;
  padding:14px 16px; color:#fff; font-family:var(--font-body); font-size:.95rem;
  transition:border-color .25s ease, background .25s ease;
}
.review-input:focus, .review-textarea:focus{ outline:none; border-color:var(--pink); background:rgba(255,255,255,.06); }
.review-textarea{ width:100%; resize:vertical; min-height:110px; }

.star-rating{ display:flex; gap:4px; }
.star-rating .star{
  background:none; border:none; cursor:pointer; font-size:1.5rem; line-height:1;
  color:rgba(255,255,255,.2); transition:color .2s ease, transform .2s ease;
  padding:2px;
}
.star-rating .star:hover{ transform:scale(1.15); }
.star-rating .star.active{ color:var(--gold); }

.review-photo-label{
  display:inline-flex; align-items:center; gap:10px; cursor:pointer;
  background:rgba(255,255,255,.04); border:1px dashed var(--line); border-radius:12px;
  padding:12px 16px; font-size:.88rem; color:rgba(243,238,242,.7);
  transition:border-color .25s ease;
  width:fit-content;
}
.review-photo-label:hover{ border-color:var(--pink); }
.review-photo-label input{ display:none; }

/* honeypot: hidden from real visitors, but not display:none (so it still
   registers as "filled" if a bot's automation ignores CSS visibility) */
.hp-field{
  position:absolute; left:-9999px; top:-9999px;
  width:1px; height:1px; overflow:hidden;
}

.review-consent{
  display:flex; align-items:flex-start; gap:10px; font-size:.82rem;
  color:rgba(243,238,242,.65); line-height:1.5; cursor:pointer;
}
.review-consent input{ margin-top:3px; accent-color:var(--pink); flex-shrink:0; }
.review-consent a{ color:var(--pink-soft); }

.review-submit{ align-self:flex-start; }
.review-status{ margin:0; font-size:.88rem; min-height:1.2em; }
.review-status.success{ color:#5ee6a3; }
.review-status.error{ color:#ff6b6b; }

@media (max-width:640px){
  .review-form-row{ flex-direction:column; align-items:stretch; }
  .star-rating{ align-self:flex-start; }
  .review-submit{ align-self:stretch; }
}

/* ---------- contact ---------- */
.contact{
  position:relative; padding:130px 0; text-align:center;
  background:
    radial-gradient(ellipse 60% 50% at 18% 20%, rgba(255,47,156,.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 85%, rgba(247,168,40,.16), transparent 60%),
    var(--black-soft);
  overflow:hidden;
}
.contact-inner{ position:relative; z-index:1; max-width:720px; margin:0 auto; }
.contact-lede{ font-size:1.08rem; color:rgba(243,238,242,.82); }
.contact-methods{
  display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin:40px 0 36px;
}
.contact-card{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  background:rgba(255,255,255,.04); border:1px solid var(--line);
  border-radius:var(--radius); padding:26px 34px; min-width:170px;
  transition:transform .4s var(--ease), border-color .4s ease, background .4s ease;
}
.contact-icon{
  height:46px; width:auto; display:block; margin-bottom:8px;
  transition:transform .4s var(--ease);
}
.contact-card:hover .contact-icon{ transform:scale(1.12) rotate(-4deg); }
.contact-card span{ font-weight:700; color:var(--white); }
.contact-card small{ color:rgba(243,238,242,.55); font-size:.78rem; }
.contact-card:hover{
  transform:translateY(-6px) scale(1.03);
  border-color:var(--pink); background:rgba(255,47,156,.08);
}
.contact-location{
  display:inline-flex; align-items:center; gap:8px; font-size:.9rem;
  color:rgba(243,238,242,.7);
}

/* ---------- footer ---------- */
.site-footer{ background:var(--black); border-top:1px solid var(--line); padding:44px 0 30px; }
.footer-inner{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:18px; text-align:center; }
.footer-brand{ display:flex; flex-direction:column; align-items:center; }
.footer-copy{ width:100%; text-align:center; margin:18px 0 0; font-size:.78rem; color:rgba(243,238,242,.4); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:980px){
  .hero-inner{ grid-template-columns:1fr; text-align:center; }
  .hero-badges{ justify-content:center; }
  .hero-cta{ justify-content:center; }
  .hero-sub{ margin-left:auto; margin-right:auto; }
  .hero-rule{ margin-left:auto; margin-right:auto; }
  .hero-photo{ order:-1; }
  .about-inner{ grid-template-columns:1fr; }
  .stat-card{ position:static; margin-top:20px; }
}

@media (max-width:860px){
  .main-nav{
    position:fixed; inset:0 0 0 auto; width:min(320px, 82vw); height:100vh;
    background:rgba(10,10,12,.98); backdrop-filter:blur(16px);
    flex-direction:column; align-items:flex-start; justify-content:center;
    gap:26px; padding:40px 36px;
    transform:translateX(100%); transition:transform .45s var(--ease);
    border-left:1px solid var(--line);
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav a[data-nav]{ font-size:1.1rem; }
  .nav-cta{ margin-left:0; }
  .nav-toggle{ display:flex; }
}

@media (max-width:640px){
  .hero{ padding:150px 0 90px; }
  .stat-row{ gap:24px; }
  .contact-card{ min-width:140px; padding:22px 20px; }

  /* desktop section padding (120-170px) reads as huge dead space on
     narrow screens — tighten it up for mobile */
  .about{ padding:64px 0; }
  .why-gym{ padding:64px 0; }
  .services{ padding:64px 0; }
  .quote-section{ padding:56px 0; }
  .contact{ padding:72px 0; }
  .site-footer{ padding:32px 0 22px; }

  .section-head{ margin-bottom:36px; }
  .services-accordion{ gap:14px; }
  .service-panel-toggle{ padding:20px; gap:14px; }
  .service-panel-body-inner{ padding:0 20px 24px; }
  .about-inner{ gap:40px; }
  .why-inner .hero-rule.small{ margin-bottom:16px; }
}
