:root {
  --bg: #0d0f12;
  --bg-soft: #15181d;
  --panel: #1b1f25;
  --text: #f3f3f3;
  --muted: #b8bcc4;
  --gold: #d4af37;
  --gold-soft: #f0d878;
  --border: rgba(255,255,255,.11);
  --shadow: 0 18px 50px rgba(0,0,0,.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,15,18,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  color: var(--gold-soft) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 12px;
}

.hero {
  padding: 110px 0 92px;
  background:
    radial-gradient(circle at 78% 18%, rgba(212,175,55,.18), transparent 30%),
    linear-gradient(180deg, #101318 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.03em;
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, opacity .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #101010;
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,.035);
}

.hero-mark {
  display: flex;
  justify-content: center;
}

.hero-mark img {
  width: min(100%, 430px);
  filter: drop-shadow(0 25px 50px rgba(0,0,0,.4));
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

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

.card {
  min-height: 250px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card p,
.work-copy p,
.about-copy p,
.cta-box p,
.site-footer p {
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 42px;
  align-items: center;
}

.video-shell {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: var(--shadow);
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.text-link {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: none;
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.about-copy {
  font-size: 1.08rem;
}

.cta-section {
  padding: 0 0 92px;
}

.cta-box {
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background:
    linear-gradient(135deg, rgba(212,175,55,.12), rgba(255,255,255,.03)),
    var(--panel);
  border: 1px solid rgba(212,175,55,.32);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}

.footer-grid p {
  margin: 4px 0 0;
}

@media (max-width: 920px) {
  .hero-grid,
  .work-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    order: -1;
    justify-content: flex-start;
  }

  .hero-mark img {
    width: 210px;
  }

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

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: #13161a;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 72px 0 66px;
  }

  .section {
    padding: 70px 0;
  }

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

  .card {
    min-height: 0;
  }

  .cta-box {
    padding: 28px 22px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
