@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --black: #020304;
  --black-2: #060809;
  --white: #ffffff;
  --soft: #b9c0c5;
  --muted: #7f8a92;
  --aqua: #00e5ff;
  --aqua-2: #27f4ff;
  --line: rgba(255,255,255,.14);
  --line-aqua: rgba(0,229,255,.5);
  --glass: rgba(255,255,255,.035);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 10%, rgba(0,229,255,.14), transparent 26%),
    radial-gradient(circle at 15% 40%, rgba(0,229,255,.08), transparent 24%),
    linear-gradient(180deg, #000 0%, #050607 42%, #010101 100%);
  z-index: -4;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 85%);
}

.glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(0,229,255,.12);
  filter: blur(80px);
  pointer-events: none;
  z-index: -3;
}

.glow-one { top: 9%; right: -120px; }
.glow-two { bottom: 20%; left: -170px; }

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

a {
  color: inherit;
  text-decoration: none;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 92px;
  padding: 0 clamp(22px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.logo-img[src$=".png"] + .fallback-logo {
  display: none;
}

.fallback-logo {
  line-height: .82;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fallback-logo span {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.fallback-logo strong {
  display: inline-block;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: .08em;
}

.fallback-logo small {
  font-size: 10px;
  color: var(--soft);
  margin-left: 4px;
}

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

.nav a {
  color: #f4f4f4;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  transition: .25s ease;
}

.nav a:hover {
  color: var(--aqua);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line-aqua);
  color: var(--white);
  background: rgba(0,229,255,.04);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  transition: .25s ease;
  box-shadow: inset 0 0 22px rgba(0,229,255,.08), 0 0 0 transparent;
}

.outline-btn svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.outline-btn:hover {
  color: var(--aqua);
  box-shadow: 0 0 28px rgba(0,229,255,.22), inset 0 0 24px rgba(0,229,255,.1);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 38%;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0,0,0,.88) 18%, rgba(0,0,0,.38) 52%, rgba(0,0,0,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.35));
  z-index: 1;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin-left: clamp(22px, 5.5vw, 72px);
  padding: 70px 0;
}

.kicker {
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(46px, 7vw, 88px);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: -.045em;
  font-weight: 900;
  max-width: 660px;
}

h1 span,
.final-cta h2 span {
  color: var(--aqua);
  display: block;
}

h2 {
  font-size: clamp(30px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 500;
  line-height: 1.1;
}

h3 {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 15px;
  line-height: 1.25;
}

.hero-tags {
  margin-top: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 14px;
  font-weight: 800;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ghost-link {
  color: var(--soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.ghost-link:hover {
  color: var(--aqua);
}

.section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.about {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: .82fr 1fr;
  align-items: stretch;
  gap: 46px;
}

.about-copy {
  align-self: center;
  max-width: 610px;
}

.about-copy p {
  color: var(--soft);
  font-size: 14px;
  margin-top: 18px;
}

.about-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-left: 1px solid rgba(0,229,255,.15);
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020304 0%, rgba(2,3,4,.1) 35%, rgba(0,229,255,.06) 100%);
}

.about-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.1);
}

.patron-mark {
  margin-top: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.patron-mark strong {
  display: block;
  font-size: 27px;
  letter-spacing: .16em;
  font-weight: 500;
}

.patron-mark span {
  color: var(--aqua);
  font-size: 11px;
  letter-spacing: .28em;
  font-weight: 900;
}

.services {
  padding-top: 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.icon-card {
  min-height: 220px;
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0));
}

.icon-card:last-child {
  border-right: 0;
}

.icon {
  width: 58px;
  height: 58px;
  color: var(--aqua);
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 18px rgba(0,229,255,.22));
}

.icon-card p {
  color: var(--soft);
  font-size: 13px;
  max-width: 240px;
  margin: 14px auto 0;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.07);
}

.photo-card img {
  height: 100%;
  object-fit: cover;
  transition: .5s ease;
}

.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
}

.photo-card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  z-index: 2;
  inset: auto 18px 18px;
  text-align: center;
}

.card-overlay svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  color: var(--aqua);
  filter: drop-shadow(0 0 12px rgba(0,229,255,.35));
}

.card-overlay h3 {
  font-size: 14px;
}

.center {
  text-align: center;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid img {
  height: 230px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
  filter: contrast(1.04) saturate(1.05);
  transition: .25s ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  filter: contrast(1.08) saturate(1.15);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  align-items: start;
}

.city-grid div {
  text-align: center;
  color: var(--aqua);
}

.city-grid svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 12px rgba(0,229,255,.22));
}

.city-grid span {
  display: block;
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}

.footer-cta {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--soft);
  font-size: 13px;
  margin-top: 4px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info a,
.contact-info span {
  color: var(--soft);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info svg {
  width: 22px;
  height: 22px;
  color: var(--aqua);
}

.final-cta h2 {
  max-width: 380px;
  margin-bottom: 28px;
}

.legal {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 24px 0 90px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 18px;
}

.socials svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.socials a:hover svg {
  color: var(--aqua);
}

.float-wa {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aqua);
  color: #001014;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(0,229,255,.34);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .hero-image {
    inset: 0;
  }

  .hero-image::before {
    background:
      linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)),
      linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.72));
  }

  .about,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 500px;
  }

  .service-grid,
  .event-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .icon-card:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .topbar {
    height: 76px;
    padding: 0 16px;
  }

  .logo-img {
    max-width: 124px;
  }

  .nav-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero {
    min-height: calc(100vh - 76px);
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 60px 0;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-tags {
    font-size: 12px;
  }

  .outline-btn {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 11px;
  }

  .ghost-link {
    width: 100%;
    text-align: center;
  }

  .section {
    width: calc(100% - 28px);
    padding: 54px 0;
  }

  .about {
    min-height: auto;
  }

  .about-photo {
    min-height: 420px;
  }

  .service-grid,
  .event-grid,
  .diff-grid,
  .gallery-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .icon-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .icon-card:last-child {
    border-bottom: 0;
  }

  .photo-card {
    min-height: 270px;
  }

  .gallery-grid img {
    height: 260px;
  }

  .city-grid {
    gap: 28px;
  }

  .legal {
    width: calc(100% - 28px);
    flex-direction: column;
    padding-bottom: 84px;
  }

  .float-wa {
    left: 18px;
  }
}
