:root {
  --bg: #070707;
  --panel: rgba(255,255,255,0.08);
  --panel-strong: rgba(255,255,255,0.12);
  --text: #f7f7f7;
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.14);
  --accent: #ffffff;
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Oswald', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.68) 50%, rgba(7,7,7,1) 85%),
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 45%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
}
.eyebrow,
.section-tag {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin: 0 0 14px;
}
.hero-eyebrow {
  grid-column: 1 / -1;
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
  margin: 0 0 18px;
  grid-column: 1 / -1;
  text-align: center;
  font-weight: 700;
}
.subhead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 34rem;
  margin: 0;
}
.cta-card,
.quote-card,
.secondary-card,
.stat-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.cta-card {
  padding: 28px;
}
.cta-card h2,
.secondary-card h2,
.intro h2,
.gallery-section h2,
.secondary-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
  font-weight: 700;
}
.cta-card > p,
.body-copy,
.section-copy,
.quote-card p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 20px;
}
.vip-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}
.form-field input {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input::placeholder {
  color: rgba(255,255,255,0.38);
}
.form-field input:focus {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.12);
}
.btn-submit {
  margin-top: 4px;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #fff;
  color: #070707;
  font-family: 'Oswald', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}
.btn-submit:active {
  transform: translateY(0);
}
.microcopy {
  margin: 16px 0 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.66);
}

.section {
  padding: 84px 0;
}
.section-inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}
.stats {
  padding-top: 22px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 26px;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.bullet-list {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--text);
}
.bullet-list li {
  margin-bottom: 12px;
  padding-left: 4px;
}
.quote-card {
  padding: 28px;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.quote-card p {
  margin: 0;
  font-size: 1.15rem;
}
.center {
  text-align: center;
}
.gallery-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}
.gallery-card {
  overflow: hidden;
  border-radius: 24px;
  min-height: 260px;
  background: #111;
  position: relative;
}
.gallery-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, #111 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery-card--large {
  grid-row: span 2;
  min-height: 540px;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}
.gallery-card:hover img {
  transform: scale(1.03);
}
.gallery-card:nth-child(5) img {
  object-position: center 25%;
}
.secondary-cta__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.secondary-card {
  padding: 24px;
}

@media (max-width: 900px) {
  .hero__content,
  .split,
  .secondary-cta__wrap,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero__content {
    padding-top: 120px;
    align-items: start;
  }
  .hero h1 {
    text-align: center;
  }
  .gallery-card--large {
    min-height: 360px;
    grid-row: auto;
  }
  .gallery-card {
    min-height: 240px;
  }
  .section {
    padding: 64px 0;
  }
}
