:root {
  --deep-navy: #031F45;
  --strategic-navy: #062B5F;
  --global-blue: #0074A6;
  --gold: #C7A055;
  --stone: #F1F2F4;
  --white: #FFFFFF;
  --ink: #10213B;
  --muted: #607086;
  --line: rgba(3, 31, 69, .13);
  --shadow: 0 22px 60px rgba(3, 31, 69, .11);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
  --container: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  background: var(--gold);
  color: var(--deep-navy);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 118px 0; }

.eyebrow {
  margin: 0 0 15px;
  color: var(--global-blue);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow-light { color: #E4C47D; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); color: var(--deep-navy); }
h1 { font-size: clamp(3.3rem, 7vw, 6.6rem); line-height: .94; letter-spacing: -.048em; margin-bottom: 30px; }
h1 span { color: var(--strategic-navy); }
h2 { font-size: clamp(2.5rem, 4.8vw, 4.4rem); line-height: 1.02; letter-spacing: -.035em; margin-bottom: 0; }
h3 { color: var(--deep-navy); line-height: 1.2; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .035em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--deep-navy); color: var(--white); border: 1px solid var(--deep-navy); }
.button-primary:hover { background: var(--strategic-navy); border-color: var(--strategic-navy); }
.button-ghost { background: rgba(255,255,255,.78); color: var(--deep-navy); border: 1px solid rgba(3,31,69,.20); }
.button-ghost:hover { border-color: var(--gold); }
.button-gold { background: var(--gold); color: var(--deep-navy); border: 0; }
.button-gold:hover { background: #D4AE61; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(3,31,69,.08);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 96px; display: flex; align-items: center; gap: 30px; }
.brand { flex: 0 0 auto; width: 250px; }
.brand img { width: 100%; height: 66px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav a {
  position: relative;
  padding: 36px 0 30px;
  color: #30425a;
  font-size: .87rem;
  font-weight: 700;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav .services-link { color: var(--deep-navy); }
.nav-cta {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--deep-navy);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--deep-navy); margin: 5px auto; transition: .2s ease; }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 16% 16%, rgba(0,116,166,.055), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(199,160,85,.055), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fbfcfd 74%, #f6f7f9 100%);
}
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; padding: 72px 0 118px; }
.hero-lead { max-width: 700px; color: #4f6075; font-size: 1.08rem; line-height: 1.75; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-values { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-values span { padding: 8px 13px; border: 1px solid rgba(3,31,69,.12); border-radius: 999px; background: rgba(255,255,255,.65); color: #52667f; font-size: .76rem; letter-spacing: .04em; }
.hero-visual { position: relative; }
.hero-panel { position: relative; border-radius: 34px 34px 160px 34px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(3,31,69,.09); background: var(--stone); }
.hero-panel img { width: 100%; aspect-ratio: 1.18; object-fit: cover; object-position: center; }
.hero-panel::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.45); border-radius: inherit; pointer-events: none; }
.hero-panel-label { position: absolute; right: 18px; bottom: 18px; background: rgba(3,31,69,.92); color: white; padding: 10px 14px; border-radius: 999px; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-watermark { position: absolute; left: -120px; bottom: 10px; width: 540px; opacity: .032; z-index: 1; }
.hero-orbit { position: absolute; border: 1px solid rgba(199,160,85,.18); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; z-index: 1; }
.hero-orbit-one { width: 520px; height: 520px; right: -310px; top: -250px; }
.hero-orbit-two { width: 650px; height: 650px; right: -310px; top: -320px; }
.mountain-rule { position: absolute; left: 0; bottom: 0; width: 100%; height: 72px; z-index: 2; }
.mountain-rule svg { width: 100%; height: 100%; }
.mountain-rule path { fill: none; stroke: rgba(199,160,85,.78); stroke-width: 1.4; vector-effect: non-scaling-stroke; }

.split-heading { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: end; margin-bottom: 64px; }
.split-heading > p { color: #59697e; font-size: 1rem; line-height: 1.82; margin-bottom: 7px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillar-card { position: relative; padding: 38px 34px 44px; border-right: 1px solid var(--line); }
.pillar-card:last-child { border-right: 0; }
.pillar-number { color: var(--gold); font-size: .73rem; font-weight: 700; letter-spacing: .12em; }
.pillar-card h3 { font-family: var(--serif); font-size: 2rem; margin: 20px 0 13px; }
.pillar-card p { margin: 0; color: #647286; font-size: .93rem; }

.services-section { position: relative; overflow: hidden; padding: 120px 0; background: linear-gradient(140deg, var(--deep-navy), #062854 58%, #0a3569); color: white; }
.services-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), rgba(199,160,85,.15), var(--global-blue)); }
.services-watermark { position: absolute; right: -120px; top: -30px; width: 500px; opacity: .045; filter: grayscale(1) brightness(4); }
.services-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; margin-bottom: 56px; position: relative; z-index: 1; }
.services-intro h2 { color: white; }
.services-intro h2 span { color: #E7C77D; }
.services-intro > p { color: rgba(255,255,255,.72); line-height: 1.8; margin: 0 0 7px; }
.featured-services { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 310px; padding: 34px 36px; background: rgba(255,255,255,.072); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; overflow: hidden; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.service-card::before { content: ''; position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: linear-gradient(var(--gold), var(--global-blue)); opacity: .95; }
.service-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.10); border-color: rgba(231,199,125,.38); }
.service-topline { display: flex; justify-content: space-between; gap: 20px; color: #E8C97F; text-transform: uppercase; font-size: .68rem; letter-spacing: .16em; font-weight: 700; }
.service-card h3 { color: white; font-family: var(--serif); font-size: clamp(1.65rem, 2.8vw, 2.3rem); margin: 38px 0 15px; max-width: 88%; }
.service-card p { color: rgba(255,255,255,.68); max-width: 90%; margin: 0; font-size: .92rem; }
.service-arrow { position: absolute; right: 28px; bottom: 24px; color: #E8C97F; font-size: 1.35rem; }
.capability-block { position: relative; z-index: 1; margin-top: 64px; padding-top: 42px; border-top: 1px solid rgba(255,255,255,.13); display: grid; grid-template-columns: .65fr 1.35fr; gap: 58px; }
.capability-heading h3 { color: white; font-family: var(--serif); font-size: 2.2rem; margin: 0; }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; }
.capability-item { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.capability-item strong { display: block; color: white; margin-bottom: 4px; font-size: .94rem; }
.capability-item span { color: rgba(255,255,255,.59); font-size: .82rem; line-height: 1.58; }

.approach { background: #fbfbfc; }
.process { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 90px 1fr; align-items: start; gap: 22px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.process-step > span { color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .14em; padding-top: 8px; }
.process-step > div { display: grid; grid-template-columns: 230px 1fr; gap: 55px; align-items: baseline; }
.process-step h3 { margin: 0; font-family: var(--serif); font-size: 1.75rem; }
.process-step p { margin: 0; color: #647286; max-width: 650px; }

.why-us { padding: 118px 0; background: white; }
.why-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; align-items: start; }
.why-copy { position: sticky; top: 140px; }
.why-copy h2 { margin-bottom: 24px; }
.why-copy > p:not(.eyebrow) { color: #627186; max-width: 550px; }
.text-link { display: inline-flex; gap: 10px; color: var(--deep-navy); font-weight: 700; border-bottom: 1px solid var(--gold); padding-bottom: 4px; margin-top: 12px; }
.text-link span { color: var(--gold); }
.why-list { border-top: 1px solid var(--line); }
.why-list > div { padding: 27px 0; display: grid; grid-template-columns: 210px 1fr; gap: 30px; border-bottom: 1px solid var(--line); }
.why-list strong { color: var(--deep-navy); }
.why-list span { color: #66758a; }

.contact-section { position: relative; overflow: hidden; padding: 116px 0 124px; background: linear-gradient(145deg, #031F45, #072C5D); color: white; }
.contact-section::before { content: ''; position: absolute; width: 980px; height: 180px; left: -180px; bottom: -110px; border-radius: 50%; border-top: 1px solid rgba(199,160,85,.5); transform: rotate(2deg); }
.contact-orbit { position: absolute; width: 620px; height: 620px; border: 1px solid rgba(199,160,85,.14); border-radius: 50%; right: -380px; top: -330px; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .78fr 1.22fr; gap: 82px; align-items: start; }
.contact-copy h2 { color: white; margin-bottom: 22px; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); max-width: 480px; }
.contact-details { margin-top: 44px; display: grid; gap: 14px; }
.contact-details a { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.contact-icon { width: 43px; height: 43px; border-radius: 50%; display: inline-grid; place-items: center; border: 1px solid rgba(231,199,125,.36); color: #E8C97F; }
.contact-details small { display: block; color: rgba(255,255,255,.50); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; margin-bottom: 2px; }
.contact-details strong { font-size: .92rem; color: white; word-break: break-word; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 34px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; box-shadow: 0 25px 70px rgba(0,0,0,.12); backdrop-filter: blur(9px); }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { color: rgba(255,255,255,.72); font-size: .76rem; font-weight: 700; letter-spacing: .04em; }
.form-row input, .form-row textarea { width: 100%; color: white; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.17); border-radius: 12px; padding: 14px 15px; outline: none; transition: border .2s ease, background .2s ease; }
.form-row input { min-height: 50px; }
.form-row textarea { resize: vertical; min-height: 150px; }
.form-row input:focus, .form-row textarea:focus { border-color: rgba(231,199,125,.75); background: rgba(255,255,255,.10); }
.form-row input.invalid, .form-row textarea.invalid { border-color: #f0a09b; }
.form-submit { flex-direction: row; align-items: center; gap: 18px; padding-top: 4px; }
.form-status { margin: 0; color: rgba(255,255,255,.68); font-size: .78rem; }

.site-footer { background: #021831; color: rgba(255,255,255,.70); border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { min-height: 140px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-mark { width: 46px; height: 46px; display: grid; place-items: center; }
.footer-mark img { width: 100%; }
.footer-brand strong { display: block; color: white; font-family: var(--serif); font-size: 1.05rem; }
.footer-brand span { display: block; color: #D4B66C; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; margin-top: 2px; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 20px; font-size: .76rem; }
.footer-meta a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

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

@media (max-width: 1050px) {
  .nav-cta { display: none; }
  .site-nav { gap: 22px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 66px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { max-width: 780px; }
  .hero-panel { border-radius: 28px 28px 120px 28px; }
  .split-heading, .services-intro, .why-grid, .contact-grid { gap: 54px; }
  .capability-block { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section, .services-section, .why-us, .contact-section { padding-top: 88px; padding-bottom: 88px; }
  .nav-wrap { height: 82px; }
  .brand { width: 210px; }
  .brand img { height: 57px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    display: none;
    top: 82px;
    left: 16px;
    right: 16px;
    margin: 0;
    padding: 13px;
    border: 1px solid rgba(3,31,69,.09);
    border-radius: 16px;
    background: white;
    box-shadow: 0 18px 50px rgba(3,31,69,.14);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 12px 13px; border-radius: 10px; }
  .site-nav a:hover { background: var(--stone); }
  .site-nav a::after { display: none; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { padding-bottom: 100px; }
  .split-heading, .services-intro, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar-card { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; padding-right: 0; }
  .pillar-card:last-child { border-bottom: 0; }
  .featured-services { grid-template-columns: 1fr; }
  .process-step > div { grid-template-columns: 1fr; gap: 5px; }
  .why-copy { position: static; }
  .contact-grid { gap: 50px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, var(--container)); }
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .hero-grid { padding-top: 48px; gap: 38px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-panel { border-radius: 22px 22px 74px 22px; }
  .hero-panel-label { display: none; }
  .split-heading { margin-bottom: 45px; }
  .service-card { padding: 28px 25px; min-height: 320px; }
  .service-card h3 { max-width: 100%; }
  .service-card p { max-width: 100%; }
  .capability-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 55px 1fr; }
  .why-list > div { grid-template-columns: 1fr; gap: 6px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px 20px; }
  .form-row.full { grid-column: auto; }
  .form-submit { flex-direction: column; align-items: stretch; }
  .footer-inner { padding: 34px 0; flex-direction: column; align-items: flex-start; }
  .footer-meta { justify-content: flex-start; flex-direction: column; gap: 8px; }
}
