@font-face {
  font-family: InterFallback;
  src: local("Arial");
}

:root {
  --bg: #080b0f;
  --bg-soft: #0e141b;
  --panel: rgba(16, 22, 30, 0.82);
  --panel-strong: rgba(20, 28, 38, 0.94);
  --text: #f3efe5;
  --muted: #b8b3a8;
  --subtle: #78766f;
  --brass: #d6ad62;
  --brass-bright: #f0cf86;
  --amber: #b26f2b;
  --line: rgba(214, 173, 98, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 10%, rgba(214, 173, 98, 0.18), transparent 27rem),
    radial-gradient(circle at 88% 15%, rgba(69, 126, 142, 0.11), transparent 30rem),
    linear-gradient(135deg, #05070a 0%, var(--bg) 48%, #0d1117 100%);
  color: var(--text);
  font-family: InterFallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 85%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 20% 20%, rgba(255,255,255,.12) 0 1px, transparent 1px 4px);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(8,11,15,.74), rgba(8,11,15,.38));
  border-bottom: 1px solid rgba(214,173,98,.10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(168px, 24vw, 285px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.30));
}

.brand-subtitle {
  display: inline-block;
  padding-left: 12px;
  border-left: 1px solid rgba(214,173,98,.28);
  color: var(--brass);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: clamp(.68rem, .95vw, .82rem);
  opacity: .92;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: .92rem;
}

.site-nav a {
  transition: color .2s ease;
}

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

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--brass);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding-top: 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 44px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--brass);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
}

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

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.06em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: .96;
  letter-spacing: -.045em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brass-bright), var(--brass) 48%, var(--amber));
  color: #161006;
  box-shadow: 0 16px 38px rgba(214, 173, 98, .2);
}

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

.hero-panel,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255,255,255,.07), transparent 40%),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px;
  min-height: 0;
}

.hero-panel::before,
.service-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(214,173,98,.12), transparent 45%);
  pointer-events: none;
}

.panel-logo-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2px;
}

.panel-mark {
  width: 78px;
  height: 78px;
  object-fit: contain;
  opacity: .98;
  filter: drop-shadow(0 0 16px rgba(214,173,98,.20));
}

.panel-line {
  height: 1px;
  background: linear-gradient(90deg, var(--brass), rgba(214,173,98,.18), transparent);
  margin-bottom: 24px;
}

.panel-label {
  max-width: 24rem;
  margin-bottom: 10px;
}

.signal-list {
  flex: 1 1 auto;
}

.signal-list li:last-child {
  border-bottom: 0;
}

.signal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signal-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  font-size: 1.04rem;
  letter-spacing: -.01em;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: rgba(214,173,98,.12);
  box-shadow: 0 0 18px rgba(214,173,98,.25);
}

.coordinate-card {
  position: static;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(214,173,98,.25);
  border-radius: 18px;
  background: rgba(0,0,0,.24);
}

.coordinate-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--subtle);
  letter-spacing: .16em;
  font-size: .72rem;
}

.coordinate-card strong {
  color: var(--brass-bright);
  font-size: 1.1rem;
}

.intro {
  max-width: 900px;
  text-align: center;
  padding-top: 28px;
}

.intro p {
  color: var(--muted);
  font-size: 1.18rem;
}

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

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

.service-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), transparent 42%),
    var(--panel);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,173,98,.38);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), transparent 42%),
    var(--panel);
}

.service-card h3 {
  position: relative;
  padding-top: 38px;
}

.service-card h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--brass-bright), rgba(214,173,98,0));
  box-shadow: 0 0 20px rgba(214,173,98,.22);
}

.service-card p {
  color: var(--muted);
}

.approach {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 40px;
  align-items: start;
}

.approach-steps {
  display: grid;
  gap: 14px;
}

.approach-steps div,
.deliverable-list div {
  padding: 22px;
  border: 1px solid rgba(214,173,98,.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.042), transparent 58%),
    rgba(255,255,255,.03);
}

.approach-steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--brass-bright);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.approach-steps p,
.deliverable-list span {
  color: var(--muted);
  margin-bottom: 0;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.deliverable-list strong,
.deliverable-list span {
  display: block;
}

.deliverable-list strong {
  color: var(--text);
  margin-bottom: 8px;
}

.contact {
  padding-bottom: 72px;
}

.contact-card {
  padding: clamp(32px, 7vw, 72px);
}

.contact-card p:not(.eyebrow):not(.fine-print) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.fine-print {
  margin-top: 34px;
  margin-bottom: 0;
  color: var(--subtle);
  font-size: .92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 46px;
  color: var(--subtle);
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer a {
  color: var(--brass);
}

@media (max-width: 1040px) {
  .brand-logo {
    width: clamp(156px, 24vw, 236px);
  }

  .brand-subtitle {
    display: none;
  }
}

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

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

  .hero-panel {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 32px));
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9, 12, 17, .96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 12px;
  }

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

  .service-card {
    min-height: 0;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 30px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 10px 0;
  }

  .brand-logo {
    width: 166px;
  }

  h1 {
    font-size: clamp(2.7rem, 17vw, 4.6rem);
  }

  .hero-panel {
    padding: 24px;
  }

  .coordinate-card {
    margin-top: 18px;
  }
}
