:root {
  --navy-950: #07151c;
  --navy-900: #0a202a;
  --navy-800: #10303b;
  --navy-700: #174653;
  --cream: #f4f0e6;
  --cream-dark: #e7e0d2;
  --paper: #fffdf8;
  --gold: #c8a96a;
  --gold-light: #e4ce99;
  --ink: #152127;
  --muted: #5f6a6d;
  --line: rgba(15, 42, 51, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(5, 22, 29, 0.14);
  --radius: 6px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--navy-700);
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
h1 { margin-bottom: 28px; font-size: clamp(3.25rem, 6.8vw, 6.75rem); font-weight: 700; }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4.7vw, 4.75rem); font-weight: 700; }
h3 { margin-bottom: 16px; font-size: 1.48rem; font-weight: 700; }
p { color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 0.7rem; }
.button-dark { color: white; background: var(--navy-950); }
.button-dark:hover { background: var(--navy-700); }
.button-gold { color: var(--navy-950); background: var(--gold); }
.button-gold:hover { background: var(--gold-light); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.text-link span { color: var(--gold-light); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: white;
  border-bottom: 1px solid var(--white-line);
}
.header-inner { display: flex; min-height: 90px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 169, 106, 0.72);
  transform: rotate(45deg);
}
.brand-mark span { position: absolute; display: block; width: 2px; background: var(--gold); transform: rotate(-45deg); }
.brand-mark span:nth-child(1) { left: 10px; top: 8px; height: 21px; }
.brand-mark span:nth-child(2) { left: 18px; top: 5px; height: 27px; }
.brand-mark span:nth-child(3) { left: 26px; top: 8px; height: 21px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Manrope", sans-serif; font-size: 1.13rem; letter-spacing: 0.03em; }
.brand-copy small { margin-top: 7px; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 29px; }
.site-nav > a:not(.button) {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; border: 0; background: transparent; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 28%, rgba(45, 98, 107, 0.38), transparent 28%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 54%, #0e3139 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -15vw;
  top: -24vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(200, 169, 106, 0.12);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  min-height: 810px;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 100px;
}
.hero-content { max-width: 780px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { max-width: 980px; }
.hero-lead { max-width: 690px; margin-bottom: 38px; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.hero-visual { position: relative; min-height: 500px; }
.document-stack { position: absolute; inset: 55px 0 0 20px; }
.document-card {
  position: absolute;
  width: 300px;
  min-height: 380px;
  padding: 34px;
  border-radius: 3px;
  box-shadow: 0 36px 80px rgba(0,0,0,.28);
}
.document-card-back { left: 90px; top: 0; color: var(--navy-900); background: #c6d1ce; transform: rotate(10deg); opacity: .7; }
.document-card-middle { left: 28px; top: 44px; color: var(--navy-900); background: var(--cream); transform: rotate(-6deg); }
.document-card-front { left: 88px; top: 82px; color: white; background: linear-gradient(145deg, #184b58, #0b252e); transform: rotate(1deg); }
.document-card-top { display: flex; justify-content: space-between; }
.document-card-top span { width: 42px; height: 7px; background: rgba(10,32,42,.28); }
.document-line { height: 6px; width: 76%; margin-top: 25px; background: rgba(10,32,42,.22); }
.document-line.wide { width: 100%; margin-top: 55px; }
.document-line.short { width: 52%; }
.folder-tab { display: inline-flex; padding: 8px 12px; margin-bottom: 5px; color: white; background: var(--navy-700); font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.document-seal { display: grid; place-items: center; width: 58px; height: 58px; margin-top: 66px; border: 1px solid rgba(10,32,42,.25); border-radius: 50%; font-family: "Manrope", sans-serif; font-weight: 800; }
.document-label { color: var(--gold-light); font-size: .62rem; font-weight: 800; letter-spacing: .18em; }
.document-card-front h2 { margin: 58px 0 80px; font-size: 2.5rem; }
.document-meta { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); font-size: .62rem; letter-spacing: .13em; }
.document-meta strong { color: var(--gold-light); }
.hero-orbit { position: absolute; border: 1px solid rgba(200,169,106,.25); border-radius: 50%; }
.orbit-one { width: 440px; height: 440px; right: -50px; top: 30px; }
.orbit-two { width: 320px; height: 320px; right: 5px; top: 90px; border-style: dashed; }
.service-ticker { position: relative; z-index: 3; border-top: 1px solid var(--white-line); }
.ticker-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; color: rgba(255,255,255,.68); font-family: "Manrope", sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.ticker-inner i { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }

.services { background: var(--paper); }
.section-heading { margin-bottom: 64px; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: end; }
.split-heading h2 { margin-bottom: 0; max-width: 760px; }
.split-heading > p { max-width: 420px; margin-bottom: 8px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 500px; padding: 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 180ms ease, transform 180ms ease; }
.service-card:hover { z-index: 2; background: var(--cream); transform: translateY(-4px); }
.service-number { margin-bottom: 75px; color: var(--navy-700); font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.service-icon { position: absolute; top: 40px; right: 40px; width: 52px; height: 52px; color: var(--navy-700); }
.service-icon svg { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card p { max-width: 520px; }
.service-card ul { display: grid; gap: 10px; margin: 30px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { display: flex; align-items: center; gap: 12px; color: #34434a; font-size: .92rem; }
.service-card li::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

.about { overflow: hidden; background: var(--cream); }
.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; align-items: center; }
.about-panel { position: relative; min-height: 560px; padding: 55px; color: white; background: var(--navy-900); box-shadow: var(--shadow); }
.about-panel::after { content: ""; position: absolute; right: -110px; bottom: -110px; width: 280px; height: 280px; border: 1px solid rgba(200,169,106,.22); border-radius: 50%; }
.about-stat { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: end; padding-bottom: 40px; border-bottom: 1px solid var(--white-line); }
.about-stat strong { color: var(--gold-light); font-family: "Manrope", sans-serif; font-size: 5.4rem; line-height: .8; }
.about-stat span { max-width: 190px; color: rgba(255,255,255,.75); font-size: .9rem; }
.archive-map { display: grid; gap: 0; margin-top: 60px; }
.archive-row { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--white-line); font-size: .72rem; }
.archive-row span { color: rgba(255,255,255,.72); }
.archive-row i { height: 1px; background: rgba(255,255,255,.16); }
.archive-row b { color: var(--gold-light); font-size: .63rem; letter-spacing: .12em; }
.about-copy { max-width: 650px; }
.about-copy > p { font-size: 1.04rem; }
.about-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 45px; padding-top: 30px; border-top: 1px solid rgba(15,42,51,.18); }
.about-principles div { display: grid; gap: 8px; }
.about-principles span { color: var(--navy-700); font-size: .67rem; font-weight: 800; letter-spacing: .14em; }
.about-principles strong { font-family: "Manrope", sans-serif; font-size: .9rem; }

.process { background: white; }
.centered { max-width: 850px; margin-inline: auto; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { position: relative; min-height: 300px; padding: 42px 34px; border-right: 1px solid var(--line); }
.process-step:first-child { border-left: 1px solid var(--line); }
.process-step::after { content: ""; position: absolute; left: -1px; top: -2px; width: 54px; height: 3px; background: var(--gold); }
.process-step > span { color: var(--navy-700); font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.process-step h3 { margin-top: 70px; }
.process-step p { font-size: .93rem; }

.why { color: white; background: var(--navy-950); }
.why-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.why-heading { position: sticky; top: 40px; align-self: start; }
.why-heading h2 { font-size: clamp(2.5rem, 4vw, 4.15rem); }
.why-heading > p:last-child { max-width: 460px; color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--white-line); border-left: 1px solid var(--white-line); }
.why-item { display: grid; grid-template-columns: 42px 1fr; gap: 20px; min-height: 250px; padding: 34px; border-right: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.why-item > span { color: var(--gold-light); font-size: .64rem; font-weight: 800; letter-spacing: .13em; }
.why-item h3 { margin-top: 42px; font-size: 1.22rem; }
.why-item p { margin-bottom: 0; color: rgba(255,255,255,.58); font-size: .9rem; }

.contact { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 35px; }
.contact-copy h2 { font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.contact-copy > p { max-width: 510px; }
.contact-note { max-width: 510px; margin-top: 40px; padding: 24px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.55); }
.contact-note strong { font-family: "Manrope", sans-serif; }
.contact-note p { margin: 8px 0 0; font-size: .86rem; }
.contact-form { padding: 48px; background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 24px; }
.form-grid label, .contact-form label { display: grid; gap: 8px; }
.form-grid label > span { color: var(--navy-900); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(15,42,51,.24);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
input, select { min-height: 48px; }
textarea { padding: 12px 0; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--navy-700); box-shadow: 0 2px 0 var(--navy-700); }
input::placeholder, textarea::placeholder { color: #9a9f9e; }
.consent { grid-template-columns: auto 1fr !important; gap: 12px !important; align-items: start; margin: 28px 0; color: var(--muted); font-size: .85rem; }
.consent input { width: 18px; min-height: auto; height: 18px; margin-top: 3px; accent-color: var(--navy-700); }
.form-submit { width: 100%; }
.form-status { margin: 14px 0 0; min-height: 24px; font-size: .88rem; }
.honeypot { position: absolute; left: -9999px; }

.site-footer { padding: 60px 0 30px; color: white; background: #041016; }
.footer-top { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 40px; align-items: center; padding-bottom: 45px; border-bottom: 1px solid var(--white-line); }
.brand-light { color: white; }
.footer-top p { max-width: 480px; margin: 0; color: rgba(255,255,255,.56); font-size: .9rem; }
.back-top { color: var(--gold-light); font-family: "Manrope", sans-serif; font-size: .74rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; color: rgba(255,255,255,.4); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .site-nav { gap: 18px; }
  .site-nav > a:not(.button) { display: none; }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; padding-top: 210px; }
  .hero-content { max-width: 900px; }
  .hero-visual { min-height: 500px; max-width: 560px; width: 100%; margin: -20px auto 0; }
  .split-heading, .about-layout, .why-layout, .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .split-heading { gap: 30px; }
  .split-heading > p { max-width: 700px; }
  .about-panel { max-width: 680px; width: 100%; margin-inline: auto; }
  .about-copy { max-width: 820px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-left: 1px solid var(--line); }
  .why-heading, .contact-copy { position: static; }
  .why-heading { max-width: 800px; }
  .why-grid { max-width: 900px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 84px 0; }
  .header-inner { min-height: 78px; }
  .site-header .button { display: none; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy small { font-size: .52rem; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-mark span:nth-child(1) { left: 8px; top: 7px; height: 17px; }
  .brand-mark span:nth-child(2) { left: 15px; top: 4px; height: 23px; }
  .brand-mark span:nth-child(3) { left: 22px; top: 7px; height: 17px; }
  .nav-toggle { display: grid; gap: 7px; padding: 12px; }
  .nav-toggle > span:not(.sr-only) { display: block; width: 26px; height: 1px; background: white; transition: transform 180ms ease; }
  .nav-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 78px 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: var(--navy-950);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { display: block; padding: 20px 0; border-bottom: 1px solid var(--white-line); font-size: 1.05rem; }
  .site-nav .button { display: inline-flex; margin-top: 24px; }
  .hero-layout { padding-top: 150px; padding-bottom: 65px; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .hero-visual { min-height: 420px; margin-top: 10px; transform: scale(.82); transform-origin: left top; }
  .document-stack { left: -15px; }
  .ticker-inner { flex-wrap: wrap; justify-content: flex-start; gap: 13px 20px; padding: 22px 0; }
  .services-grid, .why-grid, .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 34px 28px; }
  .service-number { margin-bottom: 55px; }
  .about-panel { min-height: auto; padding: 34px 26px; }
  .about-stat { grid-template-columns: 1fr; }
  .about-stat strong { font-size: 4.2rem; }
  .about-principles { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:nth-child(3) { border-left: 1px solid var(--line); }
  .why-item { min-height: auto; }
  .contact-form { padding: 32px 24px; }
  .form-full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
