/* style.css */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-section-alt: #111111;
  --bg-dark: #1a1a1a;
  --gold: #f5c518;
  --text-primary: #ffffff;
  --text-muted: #aaaaaa;
  --text-very-muted: #777777;
  --text-card: #888888;
  --text-on-gold: #333333;
  --text-footer: #444444;
  --border: #222222;
  --border-subtle: #1a1a1a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
}

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

/* ── Splash ── */
.splash {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg-primary);
  cursor: pointer;
}

.splash-logo {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text-primary);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.splash:hover .splash-logo {
  opacity: 1;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: var(--bg-primary);
  border-bottom: 2px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-accent {
  color: var(--gold);
}

/* ── Shared button styles ── */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.15s ease;
  font-family: inherit;
}

.btn:hover {
  opacity: 0.85;
}

.btn-nav {
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
}

/* ── Label tag ── */
.label-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.hero .label-tag {
  font-size: 16px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.blurred {
  display: inline-block;
  filter: blur(4px);
}

.blurred.active {
  animation: come-into-focus 2s ease forwards;
}

@keyframes come-into-focus {
  from { filter: blur(4px); }
  to   { filter: blur(0px); }
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  min-height: calc(100vh - 56px);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.hero-headline {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.0;
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero-headline em {
  color: var(--gold);
  font-style: normal;
}

.hero-cable {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 16px;
}

.hero-sub {
  font-size: 22px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.btn-hero {
  background: var(--gold);
  color: #000;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 48px;
}

/* ── Services ── */
.services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 72px 40px;
  background: var(--bg-section-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.section-subheading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 8px;
}

.gold {
  color: var(--gold);
}

.services-list {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  grid-template-columns: 4px 1fr 1fr;
  gap: 0 64px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.service-card:first-child {
  border-top: 1px solid var(--border);
}

.service-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -3px;
  line-height: 1;
  opacity: 0.35;
}

.service-card:first-child {
  border-top: 1px solid var(--border);
}

.service-card:hover {
  background: rgba(245, 197, 24, 0.04);
}

.service-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-desc {
  font-size: 16px;
  color: var(--text-card);
  line-height: 1.7;
}

/* ── About ── */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 40px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.about-heading {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  max-width: 600px;
  margin: 0 auto 16px;
}

.about-heading em {
  color: var(--gold);
  font-style: normal;
}

.about-body {
  font-size: 15px;
  color: var(--text-card);
  max-width: 500px;
  line-height: 1.7;
  margin: 0 auto;
}

/* ── CTA Band ── */
.cta-band {
  padding: 56px 40px;
  background: var(--gold);
  text-align: center;
}

.cta-band-heading {
  color: #000;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.cta-band-body {
  color: var(--text-on-gold);
  font-size: 15px;
  margin-bottom: 28px;
}

.btn-cta-band {
  background: #000;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
}

/* ── Footer ── */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: #000;
  border-top: 1px solid var(--border-subtle);
}

.footer-logo {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-primary);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-footer);
}

/* ── Responsive (< 768px) ── */
@media (max-width: 767px) {
  .nav {
    padding: 16px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .services {
    padding: 48px 20px;
    min-height: unset;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    padding: 28px 0;
  }

  .service-num {
    font-size: 36px;
    grid-row: 1;
    grid-column: 1;
    align-self: center;
  }

  .service-title {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    margin-bottom: 0;
  }

  .service-desc {
    grid-row: 2;
    grid-column: 2;
  }

  .about {
    padding: 48px 20px;
  }

  .cta-band {
    padding: 40px 20px;
  }

  .footer {
    padding: 24px 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
