@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --navy: #071a35;
  --navy-2: #0e2b52;
  --blue: #155b91;
  --gold: #c99c3b;
  --gold-light: #e8c875;
  --ink: #182638;
  --muted: #68778b;
  --line: #d9e2eb;
  --paper: #f4f7fa;
  --white: #fff;
  --shadow: 0 24px 70px rgba(7, 26, 53, .12);
  --serif: 'Manrope', sans-serif;
  --sans: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font: 16px/1.65 var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.eyebrow { color: var(--gold); font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.dark { color: var(--blue); }
.display { margin: 16px 0 20px; color: var(--navy); font: 800 clamp(2.75rem, 6vw, 5.55rem)/1.02 var(--serif); letter-spacing: -.06em; }
.lede { max-width: 640px; color: var(--muted); font-size: 1.11rem; }
.section { padding: 110px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 50px; }
.section-title { max-width: 680px; margin: 12px 0 0; color: var(--navy); font: 800 clamp(2rem, 4vw, 3.65rem)/1.08 var(--serif); letter-spacing: -.05em; }
.section-intro { max-width: 480px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--navy); font-weight: 700; }
.text-link::after { content: '↗'; color: var(--gold); font-size: 1.2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; padding: 14px 22px; cursor: pointer; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--gold); color: var(--navy); }
.button.primary:hover { background: var(--gold-light); }
.button.ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.button.ghost:hover { border-color: var(--gold-light); }
.button.dark { background: var(--navy); color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(217,226,235,.8); background: rgba(255,255,255,.94); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 174px; }
.brand img { width: 100%; height: auto; }
.nav { display: flex; align-items: center; gap: 25px; color: var(--muted); font-size: .92rem; font-weight: 600; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--navy); }
.nav-cta { color: var(--navy) !important; }
.lang-switch { display: inline-flex; gap: 6px; border-left: 1px solid var(--line); padding-left: 18px; }
.lang-switch a { color: var(--muted); font-size: .78rem; letter-spacing: .08em; }
.lang-switch a.active { color: var(--navy); font-weight: 800; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); font-size: 1.6rem; }

.hero { position: relative; overflow: hidden; padding: 92px 0 112px; background: var(--paper); }
.hero::after { position: absolute; right: -80px; bottom: -180px; width: 500px; height: 500px; border: 1px solid rgba(21,91,145,.15); border-radius: 50%; content: ''; }
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 72px; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy .display { max-width: 640px; }
.hero-copy .lede { margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.slogan { margin-top: 45px; color: var(--blue); font-size: .9rem; font-weight: 600; letter-spacing: .02em; }
.hero-media { position: relative; min-height: 555px; }
.hero-media::before { position: absolute; top: 28px; left: -25px; width: 78%; height: 88%; border: 1px solid var(--gold); content: ''; }
.hero-media img { position: relative; z-index: 1; width: 100%; height: 555px; object-fit: cover; box-shadow: var(--shadow); }
.hero-tag { position: absolute; right: -18px; bottom: 36px; z-index: 2; max-width: 215px; padding: 18px; background: var(--navy); color: white; }
.hero-tag strong { display: block; margin-bottom: 6px; color: var(--gold-light); font: 700 1.35rem/1.1 var(--serif); }
.hero-tag span { color: #c8d5e3; font-size: .82rem; }

.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.intro-image { position: relative; }
.intro-image img { width: 100%; aspect-ratio: 1.2; object-fit: cover; }
.image-caption { position: absolute; bottom: 18px; left: 18px; padding: 11px 14px; background: var(--white); color: var(--navy); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.intro-copy h2 { margin: 14px 0 18px; color: var(--navy); font: 800 clamp(2rem, 4vw, 3.45rem)/1.08 var(--serif); letter-spacing: -.05em; }
.intro-copy p { color: var(--muted); }
.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 30px; margin: 30px 0 0; padding: 0; list-style: none; }
.value-list li { border-top: 1px solid var(--line); padding-top: 11px; color: var(--navy); font-weight: 700; }
.value-list li::before { margin-right: 8px; color: var(--gold); content: '—'; }

.dark-section { background: var(--navy); color: var(--white); }
.dark-section .section-title, .dark-section h2 { color: var(--white); }
.dark-section .section-intro, .dark-section p { color: #afc1d4; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.16); }
.process-card { min-height: 250px; padding: 28px 24px; background: var(--navy); }
.process-number { color: var(--gold-light); font-size: .8rem; font-weight: 700; letter-spacing: .15em; }
.process-card h3 { margin: 28px 0 10px; color: var(--white); font: 700 1.55rem var(--serif); }
.process-card p { margin: 0; font-size: .92rem; }
.process-arrow { display: block; margin-top: 22px; color: var(--gold); font-size: 1.25rem; }
.flow-line { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; color: var(--gold-light); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.flow-line span { color: white; font-size: 1rem; }

.pathways { background: var(--paper); }
.pathway-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pathway { position: relative; overflow: hidden; min-height: 390px; padding: 38px; background: var(--navy); }
.pathway::after { position: absolute; right: -110px; bottom: -130px; width: 330px; height: 330px; border: 1px solid rgba(232,200,117,.45); border-radius: 50%; content: ''; }
.pathway h3 { position: relative; z-index: 1; margin: 42px 0 14px; max-width: 390px; color: var(--white); font: 700 clamp(1.75rem, 3vw, 2.7rem)/1.1 var(--serif); letter-spacing: -.04em; }
.pathway p { position: relative; z-index: 1; max-width: 450px; color: #c1d0df; }
.pathway .button { position: absolute; bottom: 34px; left: 38px; z-index: 1; }
.pathway--light { background: var(--blue); }
.pathway--light::after { border-color: rgba(255,255,255,.24); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.service { min-height: 190px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 24px; }
.service:nth-child(4n) { border-right: 0; }
.service-icon { color: var(--gold); font-size: 1.7rem; }
.service h3 { margin: 20px 0 7px; color: var(--navy); font: 700 1.2rem var(--serif); }
.service p { margin: 0; color: var(--muted); font-size: .9rem; }

.image-strip { display: grid; grid-template-columns: 1.15fr .85fr 1fr; gap: 12px; }
.image-strip figure { position: relative; min-height: 340px; margin: 0; overflow: hidden; }
.image-strip figure:nth-child(2) { min-height: 460px; }
.image-strip figure:nth-child(3) { min-height: 340px; }
.image-strip img { width: 100%; height: 100%; object-fit: cover; }
.image-strip figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 10px 12px; background: rgba(7,26,53,.84); color: var(--white); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.industries { background: var(--paper); }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.industry { min-height: 120px; padding: 25px 22px; background: var(--paper); color: var(--navy); font-weight: 700; }
.industry small { display: block; margin-bottom: 10px; color: var(--gold); font-size: .75rem; letter-spacing: .15em; }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 76px; align-items: start; }
.contact-copy h2 { margin: 15px 0; color: var(--navy); font: 800 clamp(2.2rem, 4vw, 3.8rem)/1.06 var(--serif); letter-spacing: -.06em; }
.contact-copy p { color: var(--muted); }
.contact-email { display: inline-block; margin-top: 14px; border-bottom: 1px solid var(--gold); color: var(--navy); font-weight: 700; }
.contact-form { border: 1px solid var(--line); padding: 34px; background: var(--paper); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .83rem; font-weight: 700; }
.field label span { color: var(--gold); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: 12px 13px; outline: 0; background: var(--white); color: var(--ink); }
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,91,145,.1); }
.consent { display: flex; align-items: flex-start; gap: 10px; grid-column: 1 / -1; color: var(--muted); font-size: .82rem; }
.consent input { margin-top: 5px; accent-color: var(--navy); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.turnstile-wrap { min-height: 66px; grid-column: 1 / -1; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: .76rem; }
.form-status { margin: 0 0 20px; border-left: 3px solid var(--gold); padding: 12px 15px; background: var(--white); color: var(--navy); }
.form-status[data-type='error'] { border-color: #b04a48; color: #7e2624; }
.form-status[data-type='loading'] { opacity: .7; }

.site-footer { padding: 58px 0 25px; background: var(--navy); color: #b3c5d8; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 48px; }
.footer-brand img { width: 210px; margin-bottom: 18px; }
.footer-brand p { max-width: 255px; margin: 0; font-size: .88rem; }
.site-footer h3 { margin: 0 0 13px; color: var(--gold-light); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; gap: 7px; font-size: .88rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 19px; font-size: .78rem; }

.legal-page { background: var(--paper); }
.page-hero { padding: 92px 0 84px; background: var(--navy); color: var(--white); }
.page-hero h1 { max-width: 850px; margin: 16px 0 18px; font: 800 clamp(2.7rem, 6vw, 5.3rem)/1.02 var(--serif); letter-spacing: -.06em; }
.page-hero p { max-width: 720px; margin: 0; color: #c1d0df; font-size: 1.1rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.feature-card { min-height: 240px; padding: 32px; background: var(--white); }
.feature-card h2 { margin: 28px 0 10px; color: var(--navy); font: 700 clamp(1.45rem, 3vw, 2.15rem)/1.12 var(--serif); letter-spacing: -.035em; }
.feature-card p { max-width: 520px; margin: 0; color: var(--muted); }
.cta-band { background: var(--paper); text-align: center; }
.cta-band h2 { margin: 0 0 22px; color: var(--navy); font: 800 clamp(2rem, 4vw, 3.4rem)/1.08 var(--serif); letter-spacing: -.05em; }
.legal-hero { padding: 80px 0 50px; background: var(--navy); color: var(--white); }
.legal-hero h1 { margin: 15px 0 0; font: 800 clamp(2.5rem, 5vw, 4.8rem)/1 var(--serif); letter-spacing: -.06em; }
.legal-content { max-width: 820px; padding: 72px 0 110px; }
.legal-content h2 { margin: 38px 0 10px; color: var(--navy); font: 700 1.55rem var(--serif); }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { padding-left: 20px; }

@media (max-width: 960px) {
  .nav { gap: 14px; }
  .hero-grid, .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 430px; }
  .hero-media img { height: 430px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(2n) { border-right: 0; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .container { width: min(100% - 32px, 560px); }
  .section { padding: 76px 0; }
  .section-head { display: block; margin-bottom: 32px; }
  .section-intro { margin-top: 18px; }
  .header-inner { min-height: 72px; }
  .brand { width: 142px; }
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 72px; right: 16px; left: 16px; display: none; align-items: stretch; flex-direction: column; gap: 0; border: 1px solid var(--line); padding: 14px; background: var(--white); box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 10px 4px; }
  .lang-switch { border-top: 1px solid var(--line); border-left: 0; margin-top: 8px; padding: 12px 4px 0; }
  .hero { padding: 70px 0 80px; }
  .hero-media { min-height: 300px; }
  .hero-media img { height: 300px; }
  .hero-tag { right: -2px; bottom: 15px; max-width: 170px; padding: 13px; }
  .hero-tag strong { font-size: 1rem; }
  .value-list, .pathway-grid, .form-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 70px 0 64px; }
  .process-grid, .services-grid, .industry-grid { grid-template-columns: 1fr; }
  .service, .service:nth-child(2n), .service:nth-child(4n) { border-right: 0; }
  .pathway { min-height: 360px; padding: 28px; }
  .pathway .button { bottom: 26px; left: 28px; }
  .image-strip { grid-template-columns: 1fr; }
  .image-strip figure, .image-strip figure:nth-child(2), .image-strip figure:nth-child(3) { min-height: 280px; }
  .contact-form { padding: 22px 18px; }
  .form-actions, .footer-bottom { display: block; }
  .form-note { margin-top: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
