:root {
  --black: #000000;
  --charcoal: #0b0b0b;
  --charcoal-2: #111111;
  --gold: #c49b5c;
  --gold-bright: #d4af37;
  --silver: #b4b4b4;
  --white: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.68);
  --line: rgba(196, 155, 92, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --max: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", "Inter", "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold);
  color: #080808;
  border-radius: 4px;
  font-weight: 800;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(0, 0, 0, 0.84);
  border-color: rgba(196, 155, 92, 0.18);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 210px;
  height: auto;
}

.brand-fallback {
  display: none;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  color: var(--gold-bright);
  font-size: 24px;
  font-weight: 800;
}

.brand-line {
  width: 1px;
  height: 42px;
  background: rgba(212, 175, 55, 0.6);
}

.brand-fallback strong,
.brand-fallback small {
  display: block;
}

.brand-fallback strong {
  font-size: 13px;
  line-height: 1.1;
}

.brand-fallback small {
  margin-top: 4px;
  color: var(--silver);
  font-size: 10px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(245, 245, 245, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.nav-panel a {
  transition: color 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 12px 18px;
  color: #080808 !important;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(196, 155, 92, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 7px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 138px 0 64px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 45%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 72% 38%, rgba(196, 155, 92, 0.18), transparent 34%),
    url("/images/hero-office.jpg") center / cover no-repeat,
    linear-gradient(135deg, #050505 0%, #151515 48%, #050505 100%);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), var(--black)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.58fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.28;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(245, 245, 245, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(196, 155, 92, 0.18);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.hero-panel {
  padding: 26px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(5, 5, 5, 0.72));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-list {
  display: grid;
  gap: 18px;
}

.signal-list div {
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.signal-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

.signal-list span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(82px, 10vw, 142px) 0;
}

.section-tight {
  padding: 34px 0;
}

.stats {
  border-block: 1px solid var(--line-soft);
  background: #050505;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-inline: 1px solid var(--line-soft);
}

.stat {
  padding: 30px 22px;
  background: #050505;
}

.stat strong {
  display: block;
  color: var(--gold-bright);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--silver);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-strip {
  background: linear-gradient(90deg, rgba(196, 155, 92, 0.08), rgba(255, 255, 255, 0.018));
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(245, 245, 245, 0.72);
}

.strip-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.strip-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  color: var(--silver);
  font-size: 12px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card,
.process-step,
.insight-card,
.work-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
}

.service-card {
  min-height: 290px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 155, 92, 0.36);
  background: linear-gradient(180deg, rgba(196, 155, 92, 0.075), rgba(255, 255, 255, 0.018));
}

.service-card span,
.process-step span,
.work-card span,
.insight-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card p,
.process-step p {
  color: var(--muted);
  font-size: 15px;
}

.split-section {
  background:
    linear-gradient(180deg, #050505, #0b0b0b),
    radial-gradient(circle at 16% 20%, rgba(196, 155, 92, 0.08), transparent 28%);
  border-block: 1px solid var(--line-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.split-grid .section-heading {
  margin-bottom: 0;
}

.why-copy {
  color: rgba(245, 245, 245, 0.74);
  font-size: 19px;
}

.why-copy p {
  margin-bottom: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-step {
  min-height: 260px;
  padding: 30px 24px;
  border-top: 0;
  border-left: 0;
}

.process-step:first-child {
  border-left: 1px solid var(--line-soft);
}

.work-section {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 85% 45%, rgba(212, 175, 55, 0.12), transparent 28%),
    #050505;
}

.work-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-bright);
  font-weight: 800;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.work-preview {
  display: grid;
  gap: 16px;
}

.work-card {
  min-height: 230px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.64)),
    linear-gradient(135deg, rgba(196, 155, 92, 0.12), rgba(255, 255, 255, 0.025));
}

.work-card span {
  margin-bottom: 16px;
}

.work-card h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(22px, 3vw, 34px);
}

.insights {
  background: #030303;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.insight-card {
  min-height: 220px;
  padding: 28px;
}

.insight-card span {
  margin-bottom: 48px;
}

.cta-section {
  padding: clamp(82px, 10vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 50% 0%, rgba(196, 155, 92, 0.18), transparent 38%),
    #070707;
  border-block: 1px solid var(--line);
}

.cta-inner {
  max-width: 900px;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 20px;
}

.cta-inner p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding: 48px 0;
  background: var(--black);
}

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

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer p {
  margin-bottom: 4px;
  color: var(--silver);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(245, 245, 245, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .hero-panel {
    max-width: 560px;
  }

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

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

  .strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .strip-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a {
    padding: 12px 10px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 128px 0 56px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-panel {
    padding: 22px;
  }

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

@media (max-width: 640px) {
  .brand {
    min-width: 170px;
  }

  .brand img {
    width: 172px;
  }

  h1 {
    font-size: clamp(50px, 18vw, 72px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .hero-copy,
  .why-copy,
  .cta-inner p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .service-card,
  .process-step,
  .insight-card {
    min-height: auto;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
