:root {
  --bg: #05080f;
  --bg-elevated: rgba(10, 18, 32, 0.72);
  --glass: rgba(18, 36, 58, 0.45);
  --glass-border: rgba(120, 220, 255, 0.28);
  --cyan: #5ef0ff;
  --violet: #b48cff;
  --mint: #7dffc2;
  --text: #e8f4ff;
  --text-muted: #9bb4c9;
  --danger: #ff6b8a;
  --radius: 14px;
  --shadow-glow: 0 0 28px rgba(94, 240, 255, 0.18);
  --font-display: "Orbitron", "Segoe UI", sans-serif;
  --font-body: "Exo 2", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(94, 240, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(180, 140, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(125, 255, 194, 0.08), transparent 45%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--mint);
  text-shadow: 0 0 12px rgba(125, 255, 194, 0.45);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--cyan);
  color: #031018;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.holo-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(94, 240, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 240, 255, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

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

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

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.holo-edge {
  position: relative;
}

.holo-edge::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(94, 240, 255, 0.7), transparent 40%, rgba(180, 140, 255, 0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(5, 8, 15, 0.78);
  border-bottom: 1px solid rgba(94, 240, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.brand img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 10px rgba(94, 240, 255, 0.55));
}

.brand:hover {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background: var(--glass);
  color: var(--cyan);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  box-shadow: 0 0 8px rgba(94, 240, 255, 0.6);
}

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

.nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--cyan);
  background: rgba(94, 240, 255, 0.08);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #031018;
  background: linear-gradient(120deg, var(--cyan), var(--mint));
  box-shadow: 0 0 22px rgba(94, 240, 255, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #031018;
  box-shadow: 0 0 32px rgba(125, 255, 194, 0.45);
}

.btn-ghost {
  color: var(--cyan);
  background: rgba(94, 240, 255, 0.06);
  border-color: rgba(94, 240, 255, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--mint);
  border-color: var(--mint);
  background: rgba(125, 255, 194, 0.08);
}

.btn-danger {
  color: #fff;
  background: linear-gradient(120deg, #ff4d6d, #c9184a);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.35) 0%, rgba(5, 8, 15, 0.55) 45%, rgba(5, 8, 15, 0.94) 100%),
    linear-gradient(90deg, rgba(5, 8, 15, 0.55), transparent 45%);
}

.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(94, 240, 255, 0.03) 3px,
    rgba(94, 240, 255, 0.03) 4px
  );
  animation: scan-drift 12s linear infinite;
  opacity: 0.55;
}

@keyframes scan-drift {
  from { background-position: 0 0; }
  to { background-position: 0 80px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vh, 5.5rem) 0 3.5rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  line-height: 1.1;
  background: linear-gradient(110deg, #fff 10%, var(--cyan) 45%, var(--violet) 75%, var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(94, 240, 255, 0.35));
  animation: brand-pulse 5s ease-in-out infinite;
}

@keyframes brand-pulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(94, 240, 255, 0.3)); }
  50% { filter: drop-shadow(0 0 26px rgba(180, 140, 255, 0.45)); }
}

.hero-lead {
  max-width: 36rem;
  margin: 0 0 1.6rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

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

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.1fr 0.9fr;
}

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

.panel {
  padding: 1.35rem 1.4rem;
}

.panel h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan);
}

.panel p,
.panel li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.panel li + li {
  margin-top: 0.35rem;
}

/* Gallery */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.4fr 1fr;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  background: #0a1220;
  padding: 0;
  display: block;
  width: 100%;
  color: inherit;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.05) contrast(1.05);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.15) brightness(1.05);
}

.gallery-item figcaption,
.gallery-item .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(5, 8, 15, 0.9));
  font-size: 0.9rem;
  color: var(--text);
}

.gallery-stack {
  display: grid;
  gap: 1rem;
}

/* Contact / info */
.info-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(94, 240, 255, 0.16);
  background: rgba(94, 240, 255, 0.04);
}

.info-list strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
}

.info-list span,
.info-list a {
  color: var(--text);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th,
.hours-table td {
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid rgba(94, 240, 255, 0.12);
  text-align: left;
}

.hours-table th {
  color: var(--cyan);
  font-weight: 600;
  width: 45%;
}

.hours-table td {
  color: var(--text-muted);
}

/* Accordion */
.accordion {
  display: grid;
  gap: 0.65rem;
}

.accordion-item {
  border-radius: 12px;
  border: 1px solid rgba(94, 240, 255, 0.2);
  background: rgba(10, 18, 32, 0.55);
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.accordion-btn::after {
  content: "+";
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 0 10px rgba(94, 240, 255, 0.6);
}

.accordion-item.is-open .accordion-btn::after {
  content: "–";
}

.accordion-panel {
  display: none;
  padding: 0 1.1rem 1.1rem;
  color: var(--text-muted);
}

.accordion-item.is-open .accordion-panel {
  display: block;
  animation: fade-in 0.25s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* Forms */
.form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

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

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(94, 240, 255, 0.25);
  background: rgba(5, 8, 15, 0.65);
  color: var(--text);
  font: inherit;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(94, 240, 255, 0.15);
  outline: none;
}

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

.form-success {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(125, 255, 194, 0.35);
  background: rgba(125, 255, 194, 0.1);
  color: var(--mint);
}

.form-success.is-visible {
  display: block;
}

/* Legal pages */
.prose {
  max-width: 48rem;
}

.prose h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prose h2 {
  margin: 2rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan);
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.page-hero {
  padding: 2.5rem 0 0.5rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 40rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(94, 240, 255, 0.16);
  background: rgba(3, 6, 12, 0.85);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.3fr 1fr 1fr;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(94, 240, 255, 0.4));
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-col h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  padding: 0.25rem 0;
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(94, 240, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(255, 107, 138, 0.35);
}

/* Modals / overlays */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 5, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.overlay.is-open {
  display: flex;
  animation: fade-in 0.25s ease;
}

.modal {
  width: min(100%, 440px);
  padding: 1.6rem 1.5rem;
  border-radius: 16px;
  text-align: center;
}

.modal h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.modal p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.lightbox-dialog {
  width: min(100%, 920px);
  padding: 0;
  overflow: hidden;
  background: #05080f;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  position: relative;
}

.lightbox-dialog img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(5, 8, 15, 0.8);
  color: var(--cyan);
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 2;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: none;
  width: min(100% - 0rem, 720px);
  margin-inline: auto;
  padding: 1rem 1.15rem;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-bar.is-open {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  flex: 1 1 240px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body.modal-lock {
  overflow: hidden;
}

/* CTA strip */
.cta-strip {
  text-align: center;
  padding: 2rem 1.4rem;
}

.cta-strip h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.cta-strip p {
  margin: 0 auto 1.2rem;
  max-width: 34rem;
  color: var(--text-muted);
}

/* Job cards */
.job-list {
  display: grid;
  gap: 0.9rem;
}

.job-card {
  padding: 1.15rem 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.job-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.job-meta {
  color: var(--cyan);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.85rem 1rem 1.2rem;
    background: rgba(5, 8, 15, 0.96);
    border-bottom: 1px solid rgba(94, 240, 255, 0.18);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.75rem 0.85rem;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
