:root {
  --navy: #0D1B2A;
  --gold: #C8A165;
  --light: #F4F4F4;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --muted: #6F7782;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
.shell { width:min(calc(100% - 48px), var(--shell)); margin:0 auto; }

.site-header {
  position:sticky; top:0; z-index:50;
  background:rgba(13,27,42,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner {
  min-height:82px; display:flex; align-items:center;
  justify-content:space-between; gap:32px;
}
.brand img { width:278px; height:auto; }
.nav {
  display:flex; align-items:center; gap:30px;
  color:rgba(255,255,255,.82);
  font-family:"Montserrat",Arial,sans-serif;
  font-size:13px; font-weight:600; letter-spacing:.02em;
}
.nav a:not(.nav-cta):hover { color:var(--white); }
.nav-cta {
  border:1px solid var(--gold); border-radius:4px;
  padding:11px 17px; color:var(--white);
}

.hero {
  position:relative; overflow:hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(200,161,101,.13), transparent 32%),
    linear-gradient(135deg,#0D1B2A 0%,#101F31 52%,#0A1622 100%);
  color:var(--white);
}
.hero::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.024) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.024) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to right,transparent 0%,black 58%,black 100%);
}
.hero-grid {
  position:relative; z-index:1;
  min-height:620px;
  display:grid; grid-template-columns:1.28fr .72fr;
  align-items:center; gap:64px;
  padding-top:56px; padding-bottom:60px;
}
.eyebrow {
  margin:0 0 20px; color:var(--gold);
  font-family:"Montserrat",Arial,sans-serif;
  font-size:12px; font-weight:700; letter-spacing:.19em;
}
.eyebrow-dark { color:#9C7741; }
h1,h2,h3 { font-family:"Montserrat",Arial,sans-serif; margin-top:0; }
h1 {
  max-width:820px;
  margin-bottom:24px;
  font-size:clamp(50px,4.9vw,70px);
  line-height:1.01;
  letter-spacing:-.05em;
}
.hero-lede {
  max-width:680px; margin:0;
  color:rgba(255,255,255,.76);
  font-size:18px; line-height:1.66;
}
.hero-actions {
  display:flex; align-items:center; gap:28px; margin-top:34px;
}
.button {
  display:inline-flex; min-height:50px;
  align-items:center; justify-content:center;
  border-radius:4px; padding:0 22px;
  font-family:"Montserrat",Arial,sans-serif;
  font-size:13px; font-weight:700;
}
.button-gold { background:var(--gold); color:var(--navy); }
.button-gold:hover { background:#D4B27C; }
.text-link {
  color:rgba(255,255,255,.9); font-size:14px; font-weight:600;
}
.text-link span {
  display:inline-block; margin-left:6px;
  color:var(--gold); transition:transform .2s ease;
}
.text-link:hover span { transform:translateX(4px); }

.hero-mark {
  position:relative; justify-self:end;
  width:min(100%,340px); aspect-ratio:1;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.035),transparent 65%);
}
.hero-mark::before,.hero-mark::after {
  content:""; position:absolute; border-radius:50%;
  border:1px solid rgba(200,161,101,.13);
}
.hero-mark::before { inset:11%; }
.hero-mark::after { inset:25%; }
.hero-mark img { position:relative; z-index:2; width:46%; }
.hero-mark-caption {
  position:absolute; left:50%; bottom:12%;
  transform:translateX(-50%);
  width:max-content; color:rgba(255,255,255,.4);
  font-family:"Montserrat",Arial,sans-serif;
  font-size:9px; font-weight:600; letter-spacing:.24em;
}

.section { padding:104px 0; }
.section-light { background:var(--white); }
.approach-section { padding-top:94px; padding-bottom:94px; }

.split {
  display:grid; grid-template-columns:.85fr 1.15fr;
  gap:92px; align-items:start;
}
.split h2,.section-heading h2,.statement h2,.contact-inner h2 {
  margin-bottom:0; color:var(--navy);
  font-size:clamp(38px,4vw,56px);
  line-height:1.08; letter-spacing:-.04em;
}
.body-large {
  color:#4D5660; font-size:18px; line-height:1.78;
}
.body-large p { margin-top:0; }
.body-large p + p { margin-top:22px; }

.section-navy {
  position:relative; overflow:hidden;
  background:var(--navy); color:var(--white);
}
.section-navy::before {
  content:""; position:absolute;
  width:520px; height:520px; right:-180px; top:-200px;
  border:1px solid rgba(200,161,101,.09); border-radius:50%;
}
.section-heading { max-width:650px; margin-bottom:50px; }
.section-heading h2 { color:var(--white); }

.focus-grid {
  position:relative; z-index:1;
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.12);
  border-left:1px solid rgba(255,255,255,.12);
}
.focus-card {
  min-height:300px; padding:32px 28px;
  border-right:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
  transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.focus-card:hover {
  background:rgba(255,255,255,.055);
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}
.card-number {
  display:block; margin-bottom:58px;
  color:var(--gold);
  font-family:"Montserrat",Arial,sans-serif;
  font-size:11px; font-weight:700; letter-spacing:.18em;
}
.focus-card h3 { margin-bottom:14px; font-size:22px; letter-spacing:-.02em; }
.focus-card p {
  margin:0; color:rgba(255,255,255,.6);
  font-size:14px; line-height:1.7;
}

.statement-section { padding:82px 0; }
.statement {
  max-width:980px;
  display:grid; grid-template-columns:112px 1fr;
  align-items:center; gap:36px;
  text-align:left;
}
.statement-icon-wrap {
  display:grid; place-items:center;
  width:112px; height:112px;
  border:1px solid rgba(13,27,42,.10);
  border-radius:50%;
}
.statement-icon { width:76px; margin:0; }
.statement-kicker {
  margin:0 0 18px; color:var(--gold);
  font-family:"Montserrat",Arial,sans-serif;
  font-size:11px; font-weight:700; letter-spacing:.2em;
}
.statement h2 {
  max-width:820px; margin-left:0; margin-right:0;
}
.statement div > p:last-child {
  max-width:610px; margin:22px 0 0;
  color:#69717A; font-size:17px; line-height:1.7;
}

.contact-band {
  padding:72px 0;
  background:#101E2E; color:var(--white);
  border-top:1px solid rgba(255,255,255,.07);
}
.contact-inner {
  display:flex; align-items:end;
  justify-content:space-between; gap:40px;
}
.contact-inner h2 { color:var(--white); }
.button-outline-gold {
  min-width:240px;
  border:1px solid var(--gold);
  color:var(--gold);
  background:transparent;
}
.button-outline-gold:hover {
  color:var(--navy); background:var(--gold);
}

.footer {
  padding:30px 0;
  background:#09131E; color:rgba(255,255,255,.45);
}
.footer-inner {
  display:flex; align-items:center;
  justify-content:space-between; gap:30px;
}
.footer img { width:210px; }
.footer-copy { font-size:12px; }

@media (max-width:900px) {
  .nav a:not(.nav-cta) { display:none; }
  .hero-grid {
    min-height:auto; grid-template-columns:1fr; gap:50px;
  }
  .hero-mark { justify-self:start; width:270px; }
  .split { grid-template-columns:1fr; gap:44px; }
  .focus-grid { grid-template-columns:repeat(2,1fr); }
  .statement { grid-template-columns:1fr; text-align:center; }
  .statement-icon-wrap { margin:0 auto; }
  .statement h2,.statement div > p:last-child {
    margin-left:auto; margin-right:auto;
  }
}

@media (max-width:620px) {
  .shell { width:min(calc(100% - 30px),var(--shell)); }
  .header-inner { min-height:70px; }
  .brand img { width:215px; }
  .nav-cta { padding:9px 12px; font-size:11px; }
  .hero-grid { padding-top:52px; padding-bottom:54px; }
  h1 { font-size:46px; }
  .hero-lede { font-size:17px; }
  .hero-actions { align-items:flex-start; flex-direction:column; }
  .hero-mark { width:215px; }
  .section { padding:78px 0; }
  .approach-section { padding-top:72px; padding-bottom:72px; }
  .focus-grid { grid-template-columns:1fr; }
  .focus-card { min-height:230px; }
  .statement-section { padding:66px 0; }
  .contact-inner,.footer-inner {
    align-items:flex-start; flex-direction:column;
  }
}
