/* ==========================================================================
   iGolf By Space — igolf32.com
   Dark-luxe neon design system drawn from the venue itself:
   near-black rooms, amber "iGOLF by SPACE" neon, magenta/cyan LED glow,
   marble + golf-ball bar, simulator green.
   ========================================================================== */

/* ---- Fonts (self-hosted, captured from original site CDN) ---- */
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/space-mono-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/space-mono-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/rubik-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/rubik-latin-700-normal.woff2") format("woff2");
}

/* ---- Tokens ---- */
:root {
  --bg: #07090d;
  --bg-2: #0b0f16;
  --panel: #10151f;
  --panel-2: #141b28;
  --line: rgba(255, 255, 255, 0.08);
  --ink: #f4f6f8;
  --muted: #9aa6b6;
  --gold: #f6c453;
  --gold-soft: #ffdd87;
  --magenta: #ff4d9d;
  --cyan: #3ee6c5;
  --green: #34d96b;
  --font-body: "Rubik", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", monospace;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 40px rgba(246, 196, 83, 0.18);
  --header-h: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}

.skip-link:focus { left: 0; }

::selection {
  background: var(--gold);
  color: #14110a;
}

/* ---- Utility ---- */
.wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

.text-gradient {
  background: linear-gradient(100deg, var(--gold-soft) 10%, var(--gold) 45%, var(--magenta) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: clamp(72px, 10vw, 130px) 0;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, #e0a93a);
  color: #161003;
  box-shadow: 0 8px 28px rgba(246, 196, 83, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(246, 196, 83, 0.5);
  color: #161003;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-magenta {
  background: linear-gradient(135deg, #ff6cb1, var(--magenta));
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 77, 157, 0.35);
}

.btn-magenta:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 14px 40px rgba(255, 77, 157, 0.5);
}

.btn-lg { padding: 19px 38px; font-size: 1rem; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1320px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav-links a:not(.btn) {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 246, 248, 0.82);
  position: relative;
  padding: 6px 0;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn)[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn)[aria-current="page"] {
  color: var(--ink);
}

.nav-links .btn {
  padding: 12px 24px;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), top 0.3s, opacity 0.2s;
}

.nav-toggle span { top: 22px; }
.nav-toggle span::before { top: -7px; left: 0; right: 0; }
.nav-toggle span::after { top: 7px; left: 0; right: 0; }

.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(7, 9, 13, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a:not(.btn) { font-size: 1.05rem; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  opacity: 1;
  transition: opacity 1.2s ease;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.55) 0%, rgba(7, 9, 13, 0.35) 40%, var(--bg) 98%),
    radial-gradient(90% 70% at 18% 38%, rgba(7, 9, 13, 0.62), transparent 70%);
}

.hero-inner {
  width: min(1320px, 94vw);
  margin-inline: auto;
  padding: calc(var(--header-h) + 40px) 0 110px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid rgba(246, 196, 83, 0.35);
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.45);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.6); opacity: 0.6; }
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 22px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}

.hero .lead {
  color: rgba(244, 246, 248, 0.85);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 30px;
  max-width: 860px;
}

.stat .num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--gold-soft);
  display: block;
  line-height: 1;
}

.stat .label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 9px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--gold);
  animation: cue 1.8s infinite var(--ease-out);
}

@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---- Marquee ---- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "•";
  color: var(--gold);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}

.card {
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 65%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 50% -20%, rgba(246, 196, 83, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 196, 83, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), var(--shadow-glow);
}

.card:hover::before { opacity: 1; }

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(246, 196, 83, 0.1);
  border: 1px solid rgba(246, 196, 83, 0.3);
}

.card p { color: var(--muted); margin: 0; }

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

.card .card-link::after {
  content: "→";
  transition: transform 0.25s var(--ease-out);
}

.card:hover .card-link::after { transform: translateX(6px); }

/* ---- Split feature ---- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.split-media:hover img { transform: scale(1.05); }

.split-media .tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(7, 9, 13, 0.68);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  padding: 9px 16px;
  border-radius: 999px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 32px;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list li strong { color: var(--ink); }

.feature-list .tick {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: #14110a;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(246, 196, 83, 0.5);
}

/* ---- Neon band / big CTA ---- */
.neon-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(255, 77, 157, 0.12), rgba(7, 9, 13, 0) 35%, rgba(62, 230, 197, 0.1) 80%),
    var(--bg-2);
}

.cta-panel {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(44px, 7vw, 90px) clamp(28px, 6vw, 80px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 9, 13, 0.92) 30%, rgba(7, 9, 13, 0.55)),
    var(--cta-img, url("assets/img/neon-bar.jpg")) center / cover no-repeat;
  border: 1px solid rgba(246, 196, 83, 0.28);
  box-shadow: var(--shadow-glow);
}

.cta-panel h2 { max-width: 18ch; }

.cta-panel .lead { max-width: 52ch; }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  grid-column: span 4;
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(4) { grid-column: span 8; }

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform 0.7s var(--ease-out), filter 0.7s;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 20px 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 13, 0.85));
}

@media (max-width: 760px) {
  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4) { grid-column: span 12; }
}

/* ---- Pricing tables / tiers ---- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.tier {
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  position: relative;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.tier.featured {
  border-color: rgba(246, 196, 83, 0.55);
  box-shadow: var(--shadow-glow);
  background:
    radial-gradient(480px 240px at 50% -10%, rgba(246, 196, 83, 0.12), transparent 70%),
    linear-gradient(170deg, var(--panel-2), var(--panel) 70%);
}

.tier .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #14110a;
  white-space: nowrap;
}

.tier .badge.alt {
  background: linear-gradient(135deg, #ff6cb1, var(--magenta));
  color: #fff;
}

.tier h3 { margin-bottom: 6px; }

.tier .tier-sub {
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 3em;
  margin-bottom: 18px;
}

.tier .price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--gold-soft);
  line-height: 1;
}

.tier .price small {
  font-size: 1rem;
  color: var(--muted);
}

.tier .feature-list { margin: 24px 0 28px; flex: 1; }

.tier .btn { width: 100%; }

/* ---- Rate table ---- */
.rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.rate-table th,
.rate-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.rate-table th {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg-2);
}

.rate-table tr:last-child td { border-bottom: 0; }

.rate-table td:last-child {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-soft);
  white-space: nowrap;
}

/* ---- Coach cards ---- */
.coach {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.coach:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 230, 197, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(62, 230, 197, 0.12);
}

.coach .coach-role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.coach .avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.3rem;
  color: #0c1410;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  margin-bottom: 20px;
}

.coach p { color: var(--muted); }

/* ---- FAQ ---- */
.faq {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq details[open] { border-color: rgba(246, 196, 83, 0.4); }

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 24px;
  font-weight: 700;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
}

.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq details p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
}

/* ---- Info / contact panels ---- */
.info-panel {
  background: linear-gradient(170deg, var(--panel-2), var(--panel) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.info-panel dl {
  margin: 0;
  display: grid;
  gap: 20px;
}

.info-panel dt {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.info-panel dd { margin: 0; color: var(--ink); }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  filter: grayscale(0.2) contrast(1.05);
  min-height: 380px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ---- Forms ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full { grid-column: 1 / -1; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

label.field {
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246, 196, 83, 0.18);
}

.field textarea { min-height: 130px; resize: vertical; }

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---- Page hero (interior pages) ---- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(64px, 10vw, 120px)) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--page-img, url("assets/img/sim-bay-1.jpg")) center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.78), rgba(7, 9, 13, 0.6) 50%, var(--bg));
}

.page-hero h1 { max-width: 16ch; }

.page-hero .lead { color: rgba(244, 246, 248, 0.85); }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(54px, 7vw, 88px) 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img { height: 60px; margin-bottom: 18px; }

.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 32ch; }

.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.site-footer ul a {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.site-footer ul a:hover { color: var(--gold-soft); }

.footer-bottom {
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--muted);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.social-row a:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.social-row svg { width: 18px; height: 18px; fill: currentColor; }

/* ---- Sticky mobile CTA ---- */
.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.mobile-cta a {
  background: rgba(7, 9, 13, 0.95);
  backdrop-filter: blur(12px);
  text-align: center;
  padding: 16px 10px calc(16px + env(safe-area-inset-bottom));
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-cta a.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #14110a;
}

@media (max-width: 760px) {
  .mobile-cta { display: grid; }
  .site-footer { padding-bottom: 140px; }
}

/* ---- Decorative glows ---- */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.glow-gold { background: rgba(246, 196, 83, 0.16); }
.glow-magenta { background: rgba(255, 77, 157, 0.13); }
.glow-cyan { background: rgba(62, 230, 197, 0.12); }

.section > .wrap { position: relative; z-index: 1; }
