:root {
  --bg: #080711;
  --bg-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f3ff;
  --muted: #c8c2de;
  --pink: #ff79c9;
  --mint: #80ffd7;
  --violet: #8f79ff;
  --shadow: 0 20px 60px rgba(5, 2, 18, 0.45);
  --radius: 28px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 121, 201, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(128, 255, 215, 0.12), transparent 24%),
    linear-gradient(180deg, #0d0a18 0%, #080711 48%, #06050c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.bg-grid,
.bg-orb {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 80%);
}

.bg-orb {
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.45;
}

.orb-1 {
  top: -8rem;
  left: -8rem;
  background: rgba(255, 121, 201, 0.45);
}

.orb-2 {
  right: -10rem;
  top: 22rem;
  background: rgba(143, 121, 255, 0.3);
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 10px 24px rgba(255, 121, 201, 0.22));
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.nav a { transition: color .25s ease; }
.nav a:hover { color: var(--text); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
}
.menu-btn span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.lead,
.section-copy p,
.info-card p,
.contact-card p,
.quote-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  border: 1px solid transparent;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff92d5);
  color: #19051a;
}
.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: min(480px, 100%);
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  background: #120f1e;
}

.hero-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.glass {
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

.mini-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 22px;
  max-width: 220px;
}
.mini-card span,
.stat span,
.gallery-caption span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}
.mini-card strong,
.stat strong,
.gallery-caption strong { font-size: 1rem; }

.mini-card-top { top: 7%; left: -3%; }
.mini-card-bottom { right: 0; bottom: 10%; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.stat,
.info-card,
.quote-card,
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.quote-card p {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--text);
  line-height: 1.5;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #120f1e;
}

.gallery-card.large { grid-row: span 2; min-height: 660px; }
.gallery-card-wide {
  grid-column: 2 / 4;
  min-height: 290px;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px 18px;
  border-radius: 20px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.contact-card {
  padding: 38px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 40px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .gallery,
  .cards-3,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; padding-top: 20px; }
  .hero-visual { min-height: auto; padding-top: 12px; }
  .gallery-card.large { grid-row: auto; min-height: 420px; }
  .gallery-card-wide { grid-column: auto; min-height: 320px; }
  .mini-card-top { left: 2%; top: 4%; }
  .mini-card-bottom { right: 2%; bottom: 4%; }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 24px;
    width: min(240px, calc(100vw - 48px));
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(11, 9, 21, 0.9);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
  }
  .nav.open { display: flex; }
  .menu-btn { display: flex; }
  .mini-card { position: static; margin-top: 14px; max-width: none; }
  .hero-visual { display: block; }
  .hero-card { width: 100%; }
  .section { padding: 34px 20px; }
  .site-header { padding: 18px 20px; }
  .contact-card { padding: 28px; }
}

@media (max-width: 760px) {
  .logo-image { width: 42px; height: 42px; }
}
