:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #64748b;
  --line: #d7dee8;
  --navy: #0f172a;
  --blue: #174ea6;
  --gold: #f2aa33;
  --paper: #f8fafc;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  opacity: 0.86;
}

.nav a:hover { opacity: 1; color: var(--gold); }

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.62) 44%, rgba(15, 23, 42, 0.12));
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 72px 32px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
  color: var(--white);
}

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

h1, h2, h3, p { letter-spacing: 0; }

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 { margin: 0 0 12px; font-size: 22px; }

p { line-height: 1.7; }

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #dbe5f1;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 32px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.split p { color: var(--muted); font-size: 18px; }

.stat-panel {
  display: grid;
  gap: 12px;
}

.stat-panel div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--navy);
  color: var(--white);
}

.stat-panel span {
  color: var(--gold);
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 42px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 13px;
  font: inherit;
  background: var(--paper);
}

textarea { resize: vertical; }

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 82px 32px;
  background: var(--paper);
}

.legal h1 {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  color: #dbe5f1;
  background: var(--navy);
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
  }

  .nav { flex-wrap: wrap; gap: 14px; }
  .hero { min-height: 680px; }
  .hero-content { padding: 54px 22px; }
  .hero-overlay { background: rgba(15, 23, 42, 0.76); }
  .card-grid, .split, .contact-band { grid-template-columns: 1fr; }
  .section { padding: 58px 22px; }
  .footer { flex-direction: column; }
}
