/* ============================================================
   BASIC TRAINING — PRIVATE FITNESS CENTER
   Design system: "After Hours" — near-black, bone white,
   volt green (the neon BT sign), hexagon LED motif.
   ============================================================ */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
}

:root {
  /* Color */
  --ink: #0a0a0b;
  --coal: #101012;
  --surface: #141417;
  --surface-2: #1a1a1e;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f2f1ed;
  --muted: #a6a69f;
  --volt: #c9f24b;
  --volt-bright: #d9ff62;
  --bone: #f1efe8;
  --bone-2: #e7e4da;
  --ink-on-bone: #131312;
  --muted-on-bone: #5c5b54;

  /* Type */
  --font-display: "Space Grotesk", "Helvetica Neue", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --section-pad: clamp(4.5rem, 10vw, 8rem);
  --container: 1200px;
  --radius: 16px;      /* cards, media, surfaces */
  --radius-btn: 10px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Hexagon LED pattern (heropatterns "Hexagons") */
  --hex-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z' fill='%23ffffff' fill-opacity='0.045' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; }
ul, ol { padding: 0; list-style: none; }

::selection { background: var(--volt); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--volt);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 8vw, 5.25rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: 0.04em; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 58ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 11px;
  height: 12px;
  flex: none;
  background: var(--volt);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.accent { color: var(--volt); }

/* ---------- Layout helpers ---------- */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.section { padding-block: var(--section-pad); position: relative; }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head h2 { margin-bottom: 1rem; }

.section-light {
  background: var(--bone);
  color: var(--ink-on-bone);
}
.section-light .lead { color: var(--muted-on-bone); }
.section-light .eyebrow { color: var(--ink-on-bone); }
.section-light .eyebrow::before { background: var(--ink-on-bone); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-btn);
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background-color 0.2s, color 0.2s, border-color 0.2s;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }

.btn-volt {
  background: var(--volt);
  color: var(--ink);
}
.btn-volt:hover {
  background: var(--volt-bright);
  box-shadow: 0 0 34px rgba(201, 242, 75, 0.35);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--volt); color: var(--volt); }

.section-light .btn-ghost {
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--ink-on-bone);
}
.section-light .btn-ghost:hover { border-color: var(--ink-on-bone); background: var(--ink-on-bone); color: var(--bone); }

.btn-dark {
  background: var(--ink);
  color: var(--bone);
}
.btn-dark:hover { box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35); }

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--volt);
  min-height: 44px;
}
.arrow-link svg { transition: transform 0.25s var(--ease-out); }
.arrow-link:hover svg { transform: translateX(6px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img {
  height: clamp(50px, 5vw, 58px);
  width: auto;
  /* Logo art is black — render it white on dark chrome */
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
}
.nav-links a:not(.btn) {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 0.6rem 0;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--volt); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 2px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links .btn { min-height: 44px; padding: 0.6rem 1.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-bar { min-height: 78px; }
  .brand img { height: 50px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 10, 11, 0.97);
    background-image: var(--hex-pattern);
    background-size: 84px 147px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { font-size: 1.3rem; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding-block: clamp(7rem, 14vh, 10rem) clamp(3rem, 7vh, 5rem);
  isolation: isolate;
  overflow: hidden;
}
.hero.hero-short { min-height: 72svh; }

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.55) 0%, rgba(10, 10, 11, 0.25) 40%, rgba(10, 10, 11, 0.93) 100%),
    linear-gradient(100deg, rgba(10, 10, 11, 0.72) 0%, rgba(10, 10, 11, 0.1) 65%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--hex-pattern);
  background-size: 84px 147px;
  mask-image: linear-gradient(200deg, rgba(0,0,0,0.9), transparent 55%);
  -webkit-mask-image: linear-gradient(200deg, rgba(0,0,0,0.9), transparent 55%);
}

.hero h1 { max-width: 15ch; margin-bottom: 1.4rem; }
.hero .lead { color: #cfcec7; margin-bottom: 2.4rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.hero-stats > div { padding: 1.4rem 1.5rem 0 0; }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--volt);
  line-height: 1.1;
}
.hero-stats span {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; gap: 0.2rem; }
  .hero-stats > div { padding-block: 0.9rem 0; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 2.2rem;
  width: 1px;
  height: 72px;
  background: var(--line-strong);
  overflow: hidden;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--volt);
  animation: cue 2.2s var(--ease-out) infinite;
}
@keyframes cue {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--coal);
  overflow: hidden;
  padding-block: 1.05rem;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee span i {
  font-style: normal;
  color: var(--volt);
  font-size: 0.6rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Split cards (two ways in) ---------- */
.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 1.5rem;
}
.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.path-card:hover { border-color: rgba(201, 242, 75, 0.5); transform: translateY(-4px); }
.path-card figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.path-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
  filter: saturate(0.85);
}
.path-card:hover figure img { transform: scale(1.05); filter: saturate(1); }
.path-card .path-body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.path-card .path-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--volt);
}
.path-card p { color: var(--muted); flex: 1; }

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.feature-row + .feature-row { margin-top: var(--section-pad); }
.feature-row.flip > .feature-media { order: 2; }
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.flip > .feature-media { order: 0; }
}

.feature-media {
  position: relative;
}
.feature-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.feature-media.portrait img { aspect-ratio: 3 / 4; }
.feature-media::before {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 58%;
  height: 58%;
  border: 1px solid rgba(201, 242, 75, 0.4);
  border-radius: var(--radius);
  z-index: -1;
}

.feature-copy h2 { margin-bottom: 1.2rem; }
.feature-copy .lead { margin-bottom: 1.6rem; }

.check-list { display: grid; gap: 0.85rem; margin-bottom: 2rem; }
.check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--text);
}
.section-light .check-list li { color: var(--ink-on-bone); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 11px;
  height: 12px;
  background: var(--volt);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.section-light .check-list li::before { background: var(--ink-on-bone); }

/* ---------- Zone cards (studio) ---------- */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr));
  gap: 1.5rem;
}
.zone-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.zone-card:hover { border-color: rgba(201, 242, 75, 0.45); transform: translateY(-4px); }
.zone-card figure { aspect-ratio: 4 / 5; overflow: hidden; position: relative; }
.zone-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.zone-card:hover figure img { transform: scale(1.05); }
.zone-num {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 50px;
  background: rgba(10, 10, 11, 0.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--volt);
}
.zone-card .zone-body { padding: 1.4rem 1.5rem 1.7rem; }
.zone-card h3 { margin-bottom: 0.5rem; }
.zone-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Gallery / masonry ---------- */
.masonry {
  columns: 3;
  column-gap: 1.1rem;
}
@media (max-width: 960px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }
.masonry button {
  display: block;
  width: 100%;
  margin-bottom: 1.1rem;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  break-inside: avoid;
  position: relative;
}
.masonry button img {
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-out), filter 0.4s;
}
.masonry button:hover img { transform: scale(1.03); filter: brightness(1.08); }
.masonry button::after {
  content: "+";
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: rgba(10, 10, 11, 0.7);
  color: var(--volt);
  font-size: 1.2rem;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.25s;
}
.masonry button:hover::after,
.masonry button:focus-visible::after { opacity: 1; }

/* Photo strip (about) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.photo-strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}
.photo-strip img:nth-child(even) { transform: translateY(1.6rem); }
@media (max-width: 720px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 7, 0.94);
  padding: 3.5rem 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 84vh;
  width: auto;
  border-radius: var(--radius);
}
.lightbox .lb-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  background: rgba(10, 10, 11, 0.6);
  transition: border-color 0.2s, color 0.2s;
}
.lightbox .lb-btn:hover { border-color: var(--volt); color: var(--volt); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- Steps (how it works) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.8rem 2.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--volt);
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.6rem; }
.step p { color: var(--muted); }
.section-light .step::before { -webkit-text-stroke-color: var(--ink-on-bone); opacity: 0.55; }

/* ---------- Value grid (about) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 1.25rem;
}
.value-card {
  padding: 2rem 1.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.value-card svg { color: var(--volt); margin-bottom: 1.1rem; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.55rem; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}
.quote-card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.2rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}
.quote-card blockquote::before { content: "“"; color: var(--volt); }
.quote-card blockquote::after { content: "”"; color: var(--volt); }
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.quote-card figcaption::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--volt);
}
.stars { color: var(--volt); letter-spacing: 0.2em; font-size: 0.8rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0.2rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--volt);
  transition: transform 0.3s var(--ease-out);
}
.faq details[open] summary { color: var(--volt); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 0.2rem 1.5rem; color: var(--muted); max-width: 62ch; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--volt);
  color: var(--ink);
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z' fill='%230a0a0b' fill-opacity='0.07' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 84px 147px;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 780px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-banner h2 { margin-bottom: 0.8rem; }
.cta-banner p { font-weight: 500; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-banner .btn-ghost { border-color: rgba(10, 10, 11, 0.4); color: var(--ink); }
.cta-banner .btn-ghost:hover { background: var(--ink); color: var(--volt); border-color: var(--ink); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.form-grid { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.field label .req { color: var(--volt); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  background: var(--coal);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(201, 242, 75, 0.18);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9f24b' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
}
.consent input { width: 18px; height: 18px; margin-top: 0.2rem; accent-color: var(--volt); }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-status { font-weight: 600; color: var(--volt); }

.info-list { display: grid; gap: 1.6rem; }
.info-list > div { display: flex; gap: 1rem; align-items: flex-start; }
.info-list svg { flex: none; color: var(--volt); margin-top: 0.2rem; }
.info-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.info-list a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.info-list a:hover { color: var(--volt); }
.info-list p, .info-list span { color: var(--muted); }

.map-wrap {
  margin-top: var(--section-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

/* ---------- Social icons ---------- */
.social-row { display: flex; gap: 0.8rem; }
.social-row a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}
.social-row a:hover { border-color: var(--volt); color: var(--volt); transform: translateY(-3px); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--coal);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hex-pattern);
  background-size: 84px 147px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
  -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img {
  height: 62px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.2rem;
}
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; margin-bottom: 1.4rem; }

.site-footer .footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--volt); }
.footer-contact li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-contact svg { flex: none; color: var(--volt); margin-top: 0.25rem; }
.footer-contact a { color: var(--muted); text-decoration: none; }
.footer-contact a:hover { color: var(--volt); }

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--volt); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 62svh;
  padding-block: 9rem 3.5rem;
  isolation: isolate;
  overflow: hidden;
}
.page-hero .hero-media::after {
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.6) 0%, rgba(10, 10, 11, 0.35) 45%, rgba(10, 10, 11, 0.95) 100%);
}
.page-hero h1 { max-width: 16ch; margin-bottom: 1rem; }
.page-hero .lead { color: #cfcec7; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--volt); }
.breadcrumb .sep { color: var(--volt); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-ready .reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 50px;
  height: 54px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--volt);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }

/* ============================================================
   MODERN LAYER — bento grid, gallery strip, review badges,
   header phone, ambient glow, sticky mobile CTA
   ============================================================ */

/* Header phone link */
.nav-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  color: var(--volt) !important;
}
.nav-phone svg { flex: none; }
.nav-phone::after { display: none; }

/* Ambient volt glow (decorative) */
.glow-section { position: relative; overflow: hidden; }
.glow-section::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  top: -280px;
  right: -180px;
  background: radial-gradient(circle, rgba(201, 242, 75, 0.09), transparent 65%);
  pointer-events: none;
}

/* Hero rating pill */
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.rating-pill:hover { border-color: var(--volt); color: var(--text); }
.rating-pill .stars { font-size: 0.75rem; }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  min-height: 230px;
  padding: 1.9rem 1.8rem;
  background: linear-gradient(160deg, var(--surface-2), var(--surface) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.bento-card:hover {
  border-color: rgba(201, 242, 75, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.bento-card > svg {
  color: var(--volt);
  margin-bottom: auto;
}
.bento-card h3 { font-size: 1.1rem; }
.bento-card p { color: var(--muted); font-size: 0.95rem; max-width: 44ch; }
.bento-7 { grid-column: span 7; }
.bento-5 { grid-column: span 5; }
.bento-4 { grid-column: span 4; }
.bento-media {
  justify-content: flex-end;
  min-height: 340px;
  isolation: isolate;
}
.bento-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s var(--ease-out);
}
.bento-media:hover img { transform: scale(1.04); }
.bento-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.05) 30%, rgba(10, 10, 11, 0.9) 100%);
}
.bento-kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--volt);
}
@media (max-width: 960px) {
  .bento-7, .bento-5, .bento-4 { grid-column: span 6; }
  .bento-media { grid-column: span 12; }
}
@media (max-width: 620px) {
  .bento-7, .bento-5, .bento-4, .bento-media { grid-column: span 12; }
  .bento-card { min-height: 0; }
  .bento-card > svg { margin-bottom: 1rem; }
}

/* Gallery strip (horizontal scroll-snap) */
.strip-wrap { overflow: hidden; }
.strip {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--surface-2) transparent;
}
.strip::-webkit-scrollbar { height: 6px; }
.strip::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 999px; }
.strip figure {
  flex: 0 0 min(78vw, 420px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
}
.strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.5s;
  filter: saturate(0.85);
}
.strip figure:hover img { transform: scale(1.04); filter: saturate(1); }

/* Review platform badges */
.review-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.review-badge:hover { border-color: var(--volt); color: var(--text); }
.review-badge .stars { font-size: 0.7rem; }

/* Sticky mobile CTA bar */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  gap: 0.7rem;
  padding: 0.7rem clamp(0.9rem, 4vw, 1.5rem)
    calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 11, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-cta .btn {
  flex: 1;
  min-height: 50px;
  padding: 0.7rem 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 6rem; }
  .to-top { bottom: 6.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
