:root {
  --navy-950: #071522;
  --navy-900: #0b1d2e;
  --navy-800: #102a40;
  --navy-700: #173b58;
  --ink: #142230;
  --slate: #52616d;
  --muted: #74808a;
  --line: #d8dde0;
  --paper: #ffffff;
  --mist: #f2f4f4;
  --sand: #eee9e1;
  --accent: #c69a57;
  --accent-light: #ddb879;
  --container: 1200px;
  --header-height: 84px;
  --shadow: 0 20px 50px rgba(7, 21, 34, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: inherit; line-height: 1.12; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }

:focus-visible { outline: 3px solid var(--navy-700); outline-offset: 4px; }
#main-content:focus { outline: none; }
.site-header :focus-visible,
.hero :focus-visible,
.capabilities :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible { outline-color: var(--accent-light); }
.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px;
  padding: 10px 16px; background: var(--paper); color: var(--navy-900);
  transform: translateY(-160%); transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto;
  height: var(--header-height); color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background-color 220ms ease, box-shadow 220ms ease, height 220ms ease;
}
.site-header.is-scrolled { height: 72px; background: rgba(7,21,34,.97); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-mark {
  position: relative; width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.6); color: var(--paper); font-size: 15px; font-weight: 700;
}
.brand-mark i { position: absolute; width: 7px; height: 7px; right: -1px; bottom: -1px; background: var(--accent); }
.brand-wordmark { font-size: .98rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.brand-wordmark strong { color: var(--accent-light); font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); }
.site-nav a { position: relative; font-size: .9rem; font-weight: 550; letter-spacing: .02em; color: rgba(255,255,255,.8); transition: color 160ms ease; }
.site-nav a:not(.nav-contact)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--accent-light); transition: right 180ms ease; }
.site-nav a:hover, .site-nav a[aria-current="true"] { color: var(--paper); }
.site-nav a:hover::after, .site-nav a[aria-current="true"]::after { right: 0; }
.nav-contact { padding: 10px 17px; border: 1px solid rgba(255,255,255,.46); color: var(--paper) !important; }
.nav-contact:hover { background: var(--paper); color: var(--navy-900) !important; }
.menu-toggle { display: none; }

.hero {
  position: relative; min-height: 780px; padding: 170px 0 0; overflow: hidden;
  color: var(--paper); background: var(--navy-900);
}
.hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--accent); }
.hero::after { content: ""; position: absolute; width: 580px; height: 580px; top: -160px; right: -110px; border: 1px solid rgba(198,154,87,.18); border-radius: 50%; }
.hero-grid {
  position: absolute; inset: 0 0 0 52%; opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: linear-gradient(to right, transparent, black 35%);
}
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(330px, .55fr); gap: clamp(48px, 6vw, 82px); align-items: center; }
.eyebrow, .section-label { margin-bottom: 28px; font-size: .79rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--accent-light); }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.hero h1 { max-width: 800px; margin-bottom: 28px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.6rem, 6.5vw, 6.5rem); font-weight: 400; letter-spacing: -.045em; }
.hero h1 em { color: var(--accent-light); font-weight: 400; }
.hero-lead { max-width: 680px; margin-bottom: 40px; color: #c9d2d9; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 55px; padding: 0 24px; font-size: .86rem; font-weight: 700; letter-spacing: .035em; transition: transform 160ms ease, background-color 160ms ease, color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--accent-light); }
.button-primary:hover { background: var(--paper); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: #dbe1e5; font-size: .9rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 4px; }

.hero-visual {
  position: relative; align-self: stretch; min-height: 470px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(145deg, rgba(23,59,88,.62), rgba(7,21,34,.18));
  background-size: 46px 46px, 46px 46px, auto;
}
.hero-visual::before {
  content: ""; position: absolute; inset: 12%;
  border: 1px solid rgba(221,184,121,.16); transform: rotate(7deg);
}
.hero-visual::after {
  content: ""; position: absolute; width: 8px; height: 8px; top: 50%; left: 50%;
  border-radius: 50%; background: var(--accent-light); transform: translate(-50%, -50%);
  box-shadow: 0 0 0 7px rgba(221,184,121,.09);
}
.visual-axis { position: absolute; z-index: 1; background: linear-gradient(90deg, transparent, rgba(221,184,121,.42), transparent); }
.visual-axis-horizontal { left: 9%; right: 9%; top: 50%; height: 1px; }
.visual-axis-vertical { top: 8%; bottom: 8%; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(221,184,121,.3), transparent); }
.visual-orbit { position: absolute; border: 1px solid rgba(221,184,121,.25); border-radius: 50%; }
.visual-orbit-outer { width: 390px; height: 390px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.visual-orbit-inner { width: 220px; height: 220px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: rgba(255,255,255,.14); }
.visual-route { position: absolute; z-index: 2; inset: 0; transform: rotate(-27deg); }
.visual-route::before { content: ""; position: absolute; width: 74%; height: 1px; top: 50%; left: 13%; background: linear-gradient(90deg, transparent, rgba(221,184,121,.6) 18%, rgba(221,184,121,.6) 82%, transparent); }
.visual-route i { position: absolute; top: calc(50% - 4px); width: 9px; height: 9px; border: 1px solid var(--accent-light); border-radius: 50%; background: var(--navy-800); }
.visual-route i:nth-child(1) { left: 19%; }.visual-route i:nth-child(2) { left: 40%; }.visual-route i:nth-child(3) { left: 61%; }.visual-route i:nth-child(4) { left: 79%; background: var(--accent-light); }
.visual-corner { position: absolute; width: 46px; height: 46px; }
.visual-corner-top { top: 22px; right: 22px; border-top: 1px solid rgba(255,255,255,.32); border-right: 1px solid rgba(255,255,255,.32); }
.visual-corner-bottom { bottom: 22px; left: 22px; border-bottom: 1px solid rgba(255,255,255,.32); border-left: 1px solid rgba(255,255,255,.32); }
.hero-foot { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-foot span { padding: 22px 0; color: #a8b5be; font-size: .74rem; font-weight: 650; letter-spacing: .145em; text-transform: uppercase; }
.hero-foot span + span { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.15); }

.section-label { color: var(--navy-700); }
.section-label::before { content: "/"; margin-right: 9px; color: var(--accent); }
.split-intro { display: grid; grid-template-columns: 1fr .74fr; gap: clamp(60px, 10vw, 140px); }
.split-intro h2, .section-heading h2, .sectors-intro h2, .process-heading h2, .contact h2 { margin-bottom: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 4.5vw, 4.3rem); font-weight: 400; letter-spacing: -.035em; }
.intro-copy { padding-top: 60px; }
.intro-copy p { color: var(--slate); font-size: 1.08rem; }
.intro-copy p:first-child { color: var(--ink); font-size: 1.22rem; }
.arrow-link { display: inline-flex; align-items: center; gap: 28px; margin-top: 14px; padding-bottom: 6px; border-bottom: 1px solid var(--accent); color: var(--navy-800); font-size: .88rem; font-weight: 700; }

.capabilities { color: var(--paper); background: var(--navy-950); }
.section-label-light { color: var(--accent-light); }
.section-heading { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: end; margin-bottom: 64px; }
.section-heading h2 { max-width: 720px; }
.section-heading > p { margin: 0 0 8px; color: #aebbc5; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.capability-card { position: relative; min-height: 358px; padding: 30px; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); transition: background-color 200ms ease; }
.capability-card:hover { background: var(--navy-800); }
.card-number { position: absolute; top: 24px; right: 25px; color: #71818f; font: .75rem Georgia, serif; }
.card-icon { position: relative; width: 58px; height: 58px; margin-bottom: 44px; color: var(--accent-light); border: 1px solid #496072; }
.card-icon i { position: absolute; display: block; background: currentColor; }
.icon-source i:nth-child(1), .icon-source i:nth-child(2), .icon-source i:nth-child(3) { width: 7px; height: 7px; border-radius: 50%; }
.icon-source i:nth-child(1) { left: 11px; top: 24px; }.icon-source i:nth-child(2) { left: 26px; top: 12px; }.icon-source i:nth-child(3) { right: 10px; bottom: 11px; }
.icon-source::before, .icon-source::after { content: ""; position: absolute; height: 1px; background: currentColor; transform-origin: left; }
.icon-source::before { width: 20px; left: 16px; top: 26px; transform: rotate(-39deg); }.icon-source::after { width: 22px; left: 31px; top: 18px; transform: rotate(48deg); }
.icon-represent i { width: 15px; height: 15px; border: 1px solid currentColor; background: transparent; transform: rotate(45deg); top: 20px; }
.icon-represent i:first-child { left: 12px; }.icon-represent i:last-child { right: 12px; }
.icon-represent::after { content: ""; position: absolute; left: 24px; right: 24px; top: 28px; height: 1px; background: currentColor; }
.icon-industry i { bottom: 11px; width: 7px; background: currentColor; }
.icon-industry i:nth-child(1) { left: 12px; height: 17px; }.icon-industry i:nth-child(2) { left: 25px; height: 28px; }.icon-industry i:nth-child(3) { left: 38px; height: 36px; }
.icon-specialist i:first-child { width: 24px; height: 24px; left: 16px; top: 16px; background: transparent; border: 1px solid currentColor; }
.icon-specialist i:last-child { width: 8px; height: 8px; right: 8px; top: 8px; }
.icon-health i:first-child { width: 26px; height: 8px; left: 15px; top: 24px; }.icon-health i:last-child { height: 26px; width: 8px; left: 24px; top: 15px; }
.icon-support i { width: 6px; height: 6px; border-radius: 50%; }
.icon-support i:nth-child(1) { left: 10px; top: 26px; }.icon-support i:nth-child(2) { left: 26px; top: 26px; }.icon-support i:nth-child(3) { right: 9px; top: 26px; }
.icon-support::after { content: ""; position: absolute; left: 14px; right: 14px; top: 28px; height: 1px; background: currentColor; }
.capability-card h3 { min-height: 52px; margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: 1.38rem; font-weight: 400; }
.capability-card p { margin-bottom: 0; color: #b6c1c9; font-size: .98rem; line-height: 1.72; }

.sectors { background: var(--sand); }
.sectors-layout { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(70px, 11vw, 160px); }
.sectors-intro { position: sticky; top: 120px; align-self: start; }
.sectors-intro h2 { margin-bottom: 28px; }
.sectors-intro > p:last-child { max-width: 480px; color: var(--slate); font-size: 1.05rem; }
.sector-list { border-top: 1px solid #c8c5bf; }
.sector-item { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 24px; align-items: center; min-height: 106px; padding-right: 18px; border-bottom: 1px solid #c8c5bf; }
.sector-item span { color: #826536; font: .78rem Georgia, serif; }
.sector-item h3 { margin: 0; font: 400 clamp(1.35rem, 2.2vw, 1.8rem) Georgia, serif; }

.process { background: var(--paper); }
.process-heading { display: grid; grid-template-columns: 220px 1fr; gap: 50px; margin-bottom: 75px; }
.process-heading h2 { max-width: 840px; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; padding: 0; margin: 0; }
.process-grid::before { content: ""; position: absolute; left: 3%; right: 3%; top: 25px; height: 1px; background: var(--line); }
.process-grid li { position: relative; padding-right: 38px; }
.process-number { position: relative; z-index: 1; display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 34px; border: 1px solid var(--accent); border-radius: 50%; color: var(--navy-700); background: var(--paper); font: .75rem Georgia, serif; }
.process-grid h3 { margin-bottom: 15px; font: 400 1.35rem Georgia, serif; }
.process-grid p { margin: 0; color: var(--slate); font-size: .92rem; }

.contact { position: relative; padding: 110px 0; color: var(--paper); background: var(--navy-800); overflow: hidden; }
.contact-accent { position: absolute; inset: 0 0 0 auto; width: 34%; border-left: 1px solid rgba(255,255,255,.12); background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 48px 48px; }
.contact-layout { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(70px, 11vw, 150px); align-items: end; }
.contact h2 { max-width: 760px; margin-bottom: 27px; }
.contact-copy > p:not(.section-label) { max-width: 650px; margin-bottom: 34px; color: #b8c3cb; font-size: 1.05rem; }
.button-light { color: var(--navy-950); background: var(--paper); }
.button-light:hover { background: var(--accent-light); }
.contact-details { align-self: center; padding: 28px 30px; font-style: normal; border: 1px solid rgba(255,255,255,.22); background: rgba(7,21,34,.18); }
.contact-details div { padding: 0; }
.contact-details span { display: block; margin-bottom: 3px; color: var(--accent-light); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-details a, .contact-details p { margin: 0; color: #f1f3f5; font-size: 1rem; overflow-wrap: anywhere; }
.contact-details a:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-footer { padding: 48px 0 26px; color: #aab6bf; background: var(--navy-950); }
.footer-main, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-main { padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-main > a:last-child { font-size: .85rem; letter-spacing: .05em; }
.brand-footer { color: var(--paper); }
.footer-bottom { padding-top: 22px; font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #d0d7dc; }

@media (max-width: 1000px) {
  :root { --header-height: 76px; }
  .section { padding: 96px 0; }
  .js .menu-toggle { position: relative; z-index: 102; display: flex; align-items: center; gap: 13px; padding: 8px 0 8px 8px; border: 0; color: var(--paper); background: transparent; cursor: pointer; }
  .menu-label { font-size: .76rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; }
  .menu-icon { position: relative; display: block; width: 25px; height: 18px; }
  .menu-icon i { position: absolute; right: 0; width: 25px; height: 1px; background: currentColor; transition: transform 180ms ease, top 180ms ease; }
  .menu-icon i:first-child { top: 5px; }.menu-icon i:last-child { top: 13px; width: 17px; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child { top: 9px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child { top: 9px; width: 25px; transform: rotate(-45deg); }
  .js .site-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding: 100px max(24px, calc((100vw - var(--container)) / 2)); background: var(--navy-950); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: visibility 180ms, opacity 180ms ease, transform 180ms ease; }
  .js .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { font: 400 2rem/1.15 Georgia, serif; color: var(--paper); }
  .nav-contact { margin-top: 12px; font: 650 .9rem/1 ui-sans-serif, sans-serif !important; padding: 16px 22px; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { max-width: 850px; }
  .hero-visual { width: min(100%, 660px); min-height: 250px; justify-self: end; }
  .visual-orbit-outer { width: 360px; height: 360px; }
  .visual-orbit-inner { width: 190px; height: 190px; }
  .hero-foot { margin-top: 60px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-layout { grid-template-columns: 1fr; gap: 60px; }
  .sectors-intro { position: static; }
  .sectors-intro h2 { max-width: 700px; }
  .process-heading { grid-template-columns: 1fr; gap: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 52px 30px; }
  .process-grid::before { display: none; }
  .process-grid li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding-right: 10px; }
  .process-number { margin-bottom: 0; }
  .contact-layout { grid-template-columns: 1fr .7fr; gap: 60px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 78px 0; }
  .brand { gap: 10px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-wordmark { font-size: .78rem; letter-spacing: .11em; }
  .hero { padding-top: 125px; }
  .hero::after { width: 360px; height: 360px; top: -120px; right: -190px; }
  .hero h1 { font-size: clamp(3rem, 13.5vw, 4.3rem); }
  .hero-lead { font-size: 1.02rem; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .button { width: 100%; }
  .hero-visual { display: none; }
  .hero-layout { gap: 0; }
  .hero-foot { grid-template-columns: 1fr; padding: 16px 0; }
  .hero-foot span { padding: 6px 0; }
  .hero-foot span + span { padding-left: 0; border: 0; }
  .split-intro, .section-heading, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .intro-copy { padding-top: 0; }
  .split-intro h2, .section-heading h2, .sectors-intro h2, .process-heading h2, .contact h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .section-heading { margin-bottom: 48px; }
  .section-heading > p { max-width: 520px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 0; padding: 26px; }
  .card-icon { margin-bottom: 32px; }
  .capability-card h3 { min-height: auto; }
  .sector-item { min-height: 90px; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; padding-right: 0; }
  .process-heading { margin-bottom: 48px; }
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .process-grid li { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
  .contact { padding: 78px 0; }
  .contact-accent { width: 50%; opacity: .5; }
  .contact-details { margin-top: 5px; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 390px) {
  .menu-label { display: none; }
  .brand-wordmark { font-size: .71rem; }
  .hero h1 { font-size: 2.85rem; }
  .process-grid li { grid-template-columns: 42px 1fr; gap: 16px; }
  .process-number { width: 42px; height: 42px; }
}

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

@media print {
  .site-header, .hero-grid, .hero::after, .hero-actions, .contact-accent, .site-footer { display: none; }
  .hero, .capabilities, .contact { color: #000; background: #fff; }
  .hero { min-height: 0; padding: 40px 0; }
  .section, .contact { padding: 40px 0; }
  .capability-grid, .capability-card { border-color: #aaa; }
}
