:root {
  --bg: #04060a;
  --surface: rgba(10, 14, 22, 0.72);
  --border: rgba(0, 245, 192, 0.14);
  --text: #eafff9;
  --muted: #7f95a4;
  --accent: #00f5c0;
  --accent-strong: #b026ff;
  --glow: rgba(0, 245, 192, 0.55);
  --wrap: 60rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(55rem 35rem at 12% -12%, rgba(0, 245, 192, 0.16), transparent 65%),
    radial-gradient(45rem 32rem at 92% 6%, rgba(176, 38, 255, 0.18), transparent 65%),
    radial-gradient(40rem 28rem at 50% 112%, rgba(0, 132, 255, 0.14), transparent 65%),
    var(--bg);
  background-attachment: fixed;
}

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

a {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(4, 6, 10, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(0, 245, 192, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(0, 245, 192, 0.05);
  border: 1px solid rgba(0, 245, 192, 0.16);
}

.site-header nav a {
  position: relative;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-header nav a:hover {
  color: var(--accent);
  background: rgba(0, 245, 192, 0.1);
  transform: translateY(-1px);
}

.site-header nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-header nav a.is-active {
  color: #02120e;
  background: var(--accent);
  box-shadow: 0 0 1.4rem var(--glow);
}

@media (prefers-reduced-motion: reduce) {
  .site-header nav a {
    transition: none;
  }

  .site-header nav a:hover {
    transform: none;
  }
}

.hero {
  width: calc(100% - 3rem);
  max-width: calc(var(--wrap) - 3rem);
  margin: 0 auto 1.5rem;
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 0 2.5rem rgba(0, 245, 192, 0.35);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 0.6rem var(--glow), 0 0 2.4rem rgba(176, 38, 255, 0.45);
}

.tagline {
  color: var(--accent);
  opacity: 0.85;
  margin: 0.5rem 0 1.5rem;
  font-style: italic;
}

.cta {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #02120e;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 1.6rem var(--glow);
}

.cta:hover {
  background: #6bffdc;
  box-shadow: 0 0 2.4rem rgba(0, 245, 192, 0.8);
}

.video-band {
  max-width: var(--wrap);
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
  background: none;
  border: 0;
}

.video-band video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-shell {
  position: relative;
  aspect-ratio: 832 / 464;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 245, 192, 0.2);
  box-shadow: 0 0 2rem rgba(0, 245, 192, 0.12);
}

.video-toggle {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #0b0e14;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.video-shell:hover .video-toggle,
.video-toggle:focus-visible,
.video-toggle.is-paused {
  opacity: 1;
}

.video-toggle:hover {
  background: #fff;
}

main {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  scroll-margin-top: 5rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.7);
}

h2 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #fff;
  text-shadow: 0 0 1.6rem rgba(0, 245, 192, 0.35);
}

.facts {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.facts li {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 1rem;
}

.facts strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.facility-layout {
  display: grid;
  gap: 1.5rem 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
  align-items: start;
}

.facility-wide {
  grid-column: 1 / -1;
}

.facility-group {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.facilities {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(min(16rem, 100%), 1fr));
}

.facilities li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.facilities li:hover {
  border-color: var(--accent);
  box-shadow: 0 0 1.4rem rgba(0, 245, 192, 0.3);
}

.facility-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.facility-icon {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: var(--accent);
  filter: drop-shadow(0 0 0.4rem var(--glow));
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facility-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.facility-link {
  margin-top: 0.2rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.facility-link:hover {
  text-decoration: underline;
}

@media (max-width: 40rem) {
  .facility-layout {
    grid-template-columns: 1fr;
  }
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 22rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.hours li:last-child {
  border-bottom: 0;
}

.hours li span:last-child {
  color: var(--muted);
}

.address {
  font-size: 1.05rem;
}

.map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 192, 0.2);
  box-shadow: 0 0 2rem rgba(0, 245, 192, 0.12);
}

.map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

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

.tiles {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 9rem;
  grid-auto-flow: dense;
}

.tile {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.5);
}

.tile-wide {
  grid-column: span 2;
}

.tile-xwide {
  grid-column: span 3;
}

.tile-tall {
  grid-row: span 2;
}

.tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.75rem 0.85rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.tile:hover img,
.tile:focus-within img {
  transform: scale(1.07);
  filter: brightness(1.05);
}

.tile:hover figcaption,
.tile:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .tile figcaption {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 52rem) {
  .tiles {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 8rem;
  }

  .tile-xwide {
    grid-column: span 2;
  }
}

@media (max-width: 26rem) {
  .tiles {
    grid-auto-rows: 7rem;
  }
}

footer {
  max-width: var(--wrap);
  margin: 2rem auto 0;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.contact {
  background: linear-gradient(145deg, rgba(0, 245, 192, 0.12), rgba(176, 38, 255, 0.14));
  border-color: rgba(176, 38, 255, 0.45);
}

.contact-lead {
  color: var(--muted);
  margin-top: 0;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  margin-bottom: 1.25rem;
}

@media (min-width: 40rem) {
  .contact-cards {
    grid-template-columns: 1fr 1.2fr 1fr;
  }

  .contact-card[href^="tel:"],
  .contact-card[href*="wa.me"] {
    grid-column: 1;
  }

  .contact-card[href*="maps"] {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .contact-card[href*="instagram"] {
    grid-column: 3;
    grid-row: 1 / 3;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 0 1.4rem rgba(0, 245, 192, 0.3);
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex: none;
  fill: currentColor;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}

.contact-card[href^="tel:"] .contact-value,
.contact-card[href*="wa.me"] .contact-value {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.contact-card[href*="maps"] .contact-value {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-hint {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-card[href^="tel:"],
.contact-card[href*="wa.me"] {
  justify-content: center;
}

.cta-block {
  display: block;
  text-align: center;
  font-size: 1.05rem;
  padding: 0.9rem 1.4rem;
}

@media (max-width: 400px) {
  section {
    scroll-margin-top: 9.5rem;
  }
}
