:root {
  --bg: #050505;
  --bg-soft: #0e0e0e;
  --bg-card: rgba(16, 16, 16, 0.88);
  --text: #f5f5f5;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #00ff47;
  --accent-soft: rgba(0, 255, 71, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0,255,71,0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(0,255,71,0.05), transparent 22%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code {
  background: rgba(255,255,255,0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 8px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  inset: -20% auto auto -10%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(0,255,71,0.15), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.03));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
}

h1, h2 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 { font-size: 1.2rem; }
h4 { font-size: 1.02rem; }

p, li {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  font-size: 1.08rem;
  max-width: 680px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5,5,5,0.72);
  border-bottom: 1px solid var(--line);
}

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

.brand-logo {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: #e9e9e9;
  font-size: 0.94rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #03110a;
  box-shadow: 0 14px 34px rgba(0,255,71,0.22);
}

.btn-secondary,
.btn-outline {
  background: transparent;
  border-color: rgba(0,255,71,0.35);
  color: var(--text);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: var(--accent-soft);
}

.btn-small {
  min-height: 44px;
  padding: 0 1rem;
  font-size: 0.92rem;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero-grid,
.section-grid,
.contact-grid,
.reserve-box,
.footer-wrap,
.steps-grid,
.equipment-grid,
.legal-grid,
.location-showcase {
  display: grid;
}

.hero-grid {
  grid-template-columns: 1.25fr 0.95fr;
  align-items: center;
  gap: 3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero-highlights,
.location-tags,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-highlights li,
.location-tags li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: #f0f0f0;
  font-weight: 600;
}

.hero-card-inner,
.step-card,
.equipment-card,
.contact-card,
.reserve-box,
.location-panel,
.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card-inner {
  border-radius: var(--radius);
  padding: 2rem;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.hero-logo { width: min(100%, 430px); }

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0,255,71,0.28);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.hero-stats div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-grid {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
}

.section-content {
  display: grid;
  gap: 1.25rem;
}

.section-heading.centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.section-intro { margin-top: 1rem; }

.steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.equipment-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.legal-grid { grid-template-columns: 1fr; gap: 1.25rem; }
.location-showcase { grid-template-columns: 1fr; gap: 1.5rem; }

.step-card,
.equipment-card,
.location-panel,
.contact-card,
.reserve-box,
.legal-card {
  border-radius: var(--radius);
  padding: 1.6rem;
}

.step-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
}

.clean-list { display: grid; gap: 0.6rem; }
.clean-list li {
  position: relative;
  padding-left: 1.2rem;
}
.clean-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0,255,71,0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  aspect-ratio: 1 / 0.8;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-empty { margin-top: 1rem; text-align: center; }

.location-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-label {
  display: inline-flex;
  align-self: flex-start;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(0,255,71,0.2);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.location-map {
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.reserve-box {
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 2rem;
}

.legal-card {
  padding: 0;
  overflow: hidden;
}

.legal-card summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 1.6rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-card summary::-webkit-details-marker { display: none; }
.legal-card summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
}
.legal-card[open] summary::after { content: '–'; }

.legal-content {
  border-top: 1px solid var(--line);
  padding: 0 1.6rem 1.6rem;
  display: grid;
  gap: 1rem;
}

.legal-content ol,
.legal-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-content li { margin-bottom: 0.55rem; }
.legal-list { padding-left: 0; }

.contact-grid {
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 0.85rem;
}

.contact-card a {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 700;
}
.contact-card a:hover { color: var(--accent); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  background: rgba(0,0,0,0.38);
}

.footer-wrap {
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.footer-wrap a {
  color: var(--accent);
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0,0,0,0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1080px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(10,10,10,0.96);
  }

  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .nav-wrap > .btn-small { display: none; }

  .hero-grid,
  .section-grid,
  .contact-grid,
  .reserve-box,
  .steps-grid,
  .equipment-grid,
  .location-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .section { padding: 74px 0; }
  .brand-logo { width: 180px; }
  .hero { min-height: auto; padding-top: 1rem; }

  .hero-grid,
  .section-grid,
  .contact-grid,
  .reserve-box,
  .steps-grid,
  .equipment-grid,
  .location-panel,
  .gallery-grid,
  .footer-wrap,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card-inner,
  .contact-card,
  .reserve-box,
  .step-card,
  .equipment-card,
  .location-panel,
  .legal-content,
  .legal-card summary {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .hero-card-inner,
  .contact-card,
  .reserve-box,
  .step-card,
  .equipment-card,
  .location-panel {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }

  .location-map { min-height: 260px; }
  h1 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-highlights li { width: calc(50% - 0.45rem); text-align: center; }
}


.footer-links { display:flex; gap:1rem; align-items:center; flex-wrap:wrap; justify-content:flex-end; }
.footer-links a { color: var(--text); }
.modal { position: fixed; inset: 0; z-index: 1200; display: none; }
.modal.is-open { display: block; }
.modal-overlay { position:absolute; inset:0; background: rgba(2, 6, 3, 0.78); backdrop-filter: blur(6px); }
.modal-dialog { position: relative; width: min(960px, calc(100vw - 32px)); margin: 4vh auto; background: linear-gradient(180deg, rgba(18,24,20,.98), rgba(8,12,10,.98)); border: 1px solid rgba(0,255,71,.2); border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(0,255,71,.08) inset; }
.legal-modal-dialog { max-height: 92vh; overflow: hidden; }
.modal-scroll { max-height: 92vh; overflow: auto; padding: 40px 28px 32px; }
.modal-close { position:absolute; top:14px; right:14px; width:44px; height:44px; border:none; border-radius:50%; background: rgba(255,255,255,.06); color: #fff; font-size: 30px; line-height:1; cursor:pointer; z-index:2; }
.modal-close:hover { background: rgba(0,255,71,.14); color: var(--accent); }
body.modal-open { overflow: hidden; }
@media (max-width: 768px) { .modal-dialog { width: min(100vw - 18px, 960px); margin: 2vh auto; border-radius: 18px; } .modal-scroll { padding: 34px 18px 22px; } .footer-links { justify-content: center; } }


.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 1rem 0 max(1rem, env(safe-area-inset-bottom));
  transform: translateY(calc(100% + 20px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  align-items: center;
  background: rgba(8, 8, 8, 0.96);
  border: 1px solid rgba(0,255,71,0.22);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  padding: 1.1rem 1.25rem;
}

.cookie-banner-copy strong {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 1rem;
}

.cookie-banner-copy p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner-copy a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

body.cookie-space {
  padding-bottom: 120px;
}

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

  .cookie-banner-actions {
    justify-content: flex-start;
  }
}


/* SEO copy */
.seo-copy{
  padding-top:0;
  padding-bottom:0;
}
.seo-copy .container{
  max-width:1px;
  max-height:1px;
  overflow:hidden;
  opacity:0.01;
  pointer-events:none;
}


/* Auto gallery by location */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.4rem;
}
.gallery-tab {
  appearance: none;
  border: 1px solid rgba(0,255,71,0.18);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.gallery-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(0,255,71,0.34);
}
.gallery-tab.is-active {
  background: var(--accent);
  color: #031005;
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(0,255,71,0.22);
}
.gallery-panel {
  display: block;
}
.gallery-panel[hidden] {
  display: none !important;
}
.gallery-empty {
  margin-top: 1rem;
  text-align: center;
  padding: 1.1rem 1rem;
  border: 1px dashed rgba(0,255,71,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
@media (max-width: 780px) {
  .gallery-tabs {
    justify-content: stretch;
  }
  .gallery-tab {
    flex: 1 1 220px;
  }
}
