:root {
  --bg: #081222;
  --panel: rgba(255,255,255,0.08);
  --panel-strong: rgba(255,255,255,0.12);
  --text: #f6f8ff;
  --muted: #bfd0eb;
  --yellow: #ffd166;
  --pink: #ff6b9d;
  --cyan: #5ce1e6;
  --green: #8ef0a7;
  --navy: #07101f;
  --shadow: 0 20px 50px rgba(0,0,0,0.28);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 20%, rgba(92,225,230,0.12), transparent 24%),
    radial-gradient(circle at 85% 14%, rgba(255,107,157,0.12), transparent 20%),
    linear-gradient(180deg, #081222 0%, #0b1730 45%, #09111f 100%);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 90%);
  pointer-events: none;
  z-index: -3;
}

.bg-orbs {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .22;
  pointer-events: none;
  z-index: -2;
}
.orb-1 { top: -60px; right: -80px; background: linear-gradient(135deg, var(--pink), var(--yellow)); }
.orb-2 { bottom: 10%; left: -80px; background: linear-gradient(135deg, var(--cyan), var(--green)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(8,18,34,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
}
.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--yellow));
  color: #102033;
  font-weight: 800;
  font-family: 'Fredoka', sans-serif;
  box-shadow: 0 10px 24px rgba(92,225,230,0.25);
}
.brand strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
}
.brand-kicker {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
}
.main-nav a:hover { color: white; }

.hero {
  padding: 4.8rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy h1,
.section-heading h2,
.story-copy h3,
.info-card h2 {
  font-family: 'Fredoka', sans-serif;
  line-height: .98;
}
.hero-copy h1 {
  margin: .45rem 0 1rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 10ch;
}
.eyebrow {
  display: inline-block;
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.76;
  max-width: 60ch;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}
.hero-badges span,
.story-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  padding: .55rem .9rem;
  border-radius: 999px;
}
.hero-card,
.info-card,
.story-card,
.gallery-item {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  overflow: hidden;
  position: relative;
}
.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.zoom-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(8,18,34,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  padding: .45rem .75rem;
  border-radius: 999px;
  font-size: .82rem;
}

.section { padding: 4.8rem 0; }
.alt-section { background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); }
.intro-strip { padding-top: 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.info-card {
  padding: 1.5rem;
}
.info-card p,
.story-copy p,
.section-heading p,
.site-footer p {
  color: var(--muted);
  line-height: 1.78;
}
.section-heading {
  max-width: 840px;
  margin-bottom: 2rem;
}
.section-heading h2 {
  margin: .4rem 0 .8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.story-list {
  display: grid;
  gap: 1.2rem;
}
.story-card {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1.4rem;
  padding: 1.2rem;
  align-items: center;
}
.story-card.reverse {
  grid-template-columns: 0.82fr 1fr;
}
.story-card.reverse .story-copy { order: 2; }
.story-card.reverse .story-media { order: 1; }
.story-copy { padding: .5rem .25rem .5rem .35rem; }
.story-copy h3 {
  margin: .85rem 0 .75rem;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
}
.story-media {
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  position: relative;
}
.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .25s ease;
}
.story-media:hover img,
.gallery-item:hover img,
.hero-card:hover img { transform: scale(1.02); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .9rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 18px;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}
.footer-note {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 20, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 50;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-figure {
  max-width: min(1100px, 100%);
  max-height: 100%;
  margin: 0;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 7rem);
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.lightbox-figure figcaption {
  margin-top: .9rem;
  text-align: center;
  color: white;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: white;
  cursor: pointer;
  font-size: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }

@media (max-width: 1080px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid,
  .story-card,
  .story-card.reverse,
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .story-card.reverse .story-copy,
  .story-card.reverse .story-media {
    order: initial;
  }
}

@media (max-width: 760px) {
  .header-inner { min-height: 74px; }
  .main-nav { display: none; }
  .hero { padding-top: 3.8rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .hero-copy h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .story-card { padding: .85rem; }
  .lightbox { padding: 1rem; }
}
