:root {
  color-scheme: light;
  --navy-950: #041426;
  --navy-900: #071d35;
  --navy-800: #0b2b4d;
  --blue-700: #14518a;
  --blue-100: #eaf2f8;
  --gold-600: #a9823d;
  --gold-500: #c6a15b;
  --gold-300: #e8cf97;
  --ink: #132238;
  --slate: #5d6a7b;
  --mist: #f3f6f9;
  --line: #d9e0e8;
  --white: #ffffff;
  --shadow: 0 28px 75px rgba(4, 20, 38, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 4px; }

.shell { width: min(1180px, calc(100% - 3rem)); margin-inline: auto; }
.kicker {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.2rem;
  color: var(--gold-600);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.kicker.light { color: var(--gold-300); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
h2 { margin-bottom: 1rem; font-size: clamp(2.45rem, 5vw, 4.7rem); line-height: 1.06; }
h3 { margin-bottom: .7rem; font-family: var(--serif); font-size: 1.55rem; line-height: 1.2; }
.lead { color: var(--slate); font-size: 1.08rem; line-height: 1.8; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(217, 224, 232, .9);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}
.nav-shell { min-height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.brand { width: max-content; display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark { width: 45px; height: 45px; overflow: hidden; border-radius: 50%; box-shadow: 0 0 0 1px rgba(198, 161, 91, .5); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { color: var(--navy-900); font-size: .84rem; font-weight: 850; letter-spacing: .19em; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; color: #33445a; font-size: .88rem; font-weight: 700; }
.desktop-nav > a, .service-menu > summary { transition: color .18s ease; }
.desktop-nav > a:hover, .service-menu > summary:hover, .service-menu[open] > summary { color: var(--gold-600); }
.service-menu { position: relative; }
.service-menu > summary { display: flex; align-items: center; gap: .45rem; cursor: pointer; list-style: none; }
.service-menu > summary::-webkit-details-marker, .mobile-nav > summary::-webkit-details-marker { display: none; }
.service-menu > summary span { color: var(--gold-600); transition: transform .18s ease; }
.service-menu[open] > summary span { transform: rotate(180deg); }
.service-dropdown {
  position: absolute;
  top: calc(100% + 1.55rem);
  left: 50%;
  width: 340px;
  padding: .65rem 1.25rem 1rem;
  transform: translateX(-50%);
  border-top: 3px solid var(--gold-500);
  background: var(--white);
  box-shadow: var(--shadow);
}
.service-dropdown::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 1.6rem; }
.service-dropdown small { display: block; padding: .65rem 0; color: var(--slate); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.service-dropdown a { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: .6rem; padding: .9rem 0; border-top: 1px solid var(--line); color: var(--ink); }
.service-dropdown a span { color: var(--gold-600); font-size: .7rem; }
.service-dropdown a b { color: var(--blue-700); font-weight: 600; }
.service-dropdown a:hover { color: var(--blue-700); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 1.2rem; }
.language-switcher { display: flex; align-items: center; gap: .45rem; color: var(--slate); font-size: .72rem; font-weight: 850; letter-spacing: .08em; }
.language-switcher span[aria-current="page"] { color: var(--navy-900); }
.language-switcher > * + *::before { content: "/"; margin-right: .45rem; color: var(--line); }
.language-switcher a:hover { color: var(--gold-600); }
.header-action { justify-self: end; display: inline-flex; align-items: center; gap: .6rem; padding-bottom: .25rem; border-bottom: 1px solid var(--gold-500); color: var(--navy-900); font-size: .88rem; font-weight: 800; }
.mobile-nav { display: none; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .82rem 1.2rem;
  border: 1px solid transparent;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold-300); color: var(--navy-950); }
.button-gold:hover { background: #f1dda9; }
.button-outline { border-color: rgba(255, 255, 255, .38); color: var(--white); }
.button-outline:hover { border-color: var(--gold-300); color: var(--gold-300); }

.home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(112deg, var(--navy-950) 0%, var(--navy-900) 63%, var(--mist) 63%, var(--white) 100%);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0 37% 0 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent);
}
.hero-shell { position: relative; min-height: 690px; display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 7vw; padding-block: 6rem; }
.hero-copy { position: relative; z-index: 1; color: var(--white); }
.hero-copy h1 { max-width: 760px; margin: 0 0 1.7rem; font-size: clamp(4rem, 7.4vw, 7.2rem); line-height: .93; }
.hero-copy h1 em { color: var(--gold-300); font-style: normal; }
.hero-copy > p:not(.kicker) { max-width: 650px; margin-bottom: 2.3rem; color: #c8d4df; font-size: 1.12rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.route-card { position: relative; z-index: 1; border: 1px solid rgba(198,161,91,.55); background: var(--white); padding: 2.2rem; box-shadow: var(--shadow); }
.route-card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.route-card-head strong { color: var(--navy-900); font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.route-card-head img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.route { position: relative; display: grid; gap: 0; padding: 1rem 0 0 1.1rem; }
.route::before { content: ""; position: absolute; top: 1.8rem; bottom: 1.8rem; left: 1.38rem; width: 1px; background: var(--gold-500); }
.route-step { position: relative; display: grid; grid-template-columns: 32px 1fr; gap: 1rem; padding: 1.1rem 0; }
.route-step span { position: relative; z-index: 1; width: 10px; height: 10px; margin: .38rem 0 0 .05rem; border: 2px solid var(--gold-500); border-radius: 50%; background: var(--white); box-shadow: 0 0 0 6px var(--white); }
.route-step small { display: block; color: var(--gold-600); font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.route-step b { display: block; margin-top: .2rem; color: var(--ink); font-size: .98rem; }

.proof-bar { background: var(--blue-700); color: var(--white); }
.proof-grid { min-height: 84px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.proof-grid span { padding: .5rem 2rem; border-right: 1px solid rgba(255,255,255,.2); text-align: center; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.proof-grid span:first-child { padding-left: 0; }
.proof-grid span:last-child { border-right: 0; }

.section { padding-block: 7rem; }
.section-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: end; }
.section-intro p:last-child { max-width: 540px; margin-bottom: .35rem; color: var(--slate); font-size: 1.05rem; line-height: 1.8; }
.section-copy p { max-width: 540px; margin: 0; color: var(--slate); font-size: 1.05rem; line-height: 1.8; }
.section-copy p + p { margin-top: 1.25rem; }
.service-cards { margin-top: 4.5rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 430px; display: flex; flex-direction: column; padding: 2.1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); overflow: hidden; }
.service-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card-number { display: flex; align-items: center; justify-content: space-between; color: var(--gold-600); font-size: .72rem; font-weight: 850; letter-spacing: .14em; }
.service-card-number b { color: var(--blue-700); font-size: 1.1rem; }
.service-card h3 { margin-top: 4.2rem; font-size: 2rem; font-weight: 400; }
.service-card p { color: var(--slate); line-height: 1.75; }
.service-card ul { margin: 1.15rem 0 1.8rem; padding: 0; list-style: none; color: #46566b; font-size: .88rem; }
.service-card li { padding: .4rem 0; border-top: 1px solid var(--line); }
.service-card-link { margin-top: auto; color: var(--blue-700); font-size: .8rem; font-weight: 850; letter-spacing: .04em; }

.process-section { padding-block: 7rem; background: var(--mist); }
.process-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 1.5rem; padding: 1.7rem 0; border-bottom: 1px solid var(--line); }
.process-list span { color: var(--gold-600); font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.process-list h3 { margin-bottom: .35rem; font-family: var(--sans); font-size: 1rem; }
.process-list p { margin: 0; color: var(--slate); font-size: .94rem; }

.contact-band { padding-block: 5.5rem; background: var(--gold-300); color: var(--navy-950); }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; align-items: end; }
.contact-grid h2 { margin: 0; max-width: 760px; }
.contact-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--navy-950); border-bottom: 1px solid var(--navy-950); font-size: .95rem; font-weight: 850; }

.service-hero { background: var(--navy-950); color: var(--white); }
.service-hero-shell { min-height: 520px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 7vw; align-items: center; padding-block: 5.5rem; }
.service-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 3.8vw, 4.1rem);
  line-height: 1.04;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: normal;
}
.service-hero-details { padding: .6rem 0 .6rem 2.5rem; border-left: 1px solid rgba(232,207,151,.5); }
.service-hero-details p { max-width: 520px; margin-bottom: 2rem; color: #c2cfdb; font-size: 1.08rem; line-height: 1.8; }

.scope-section { padding-block: 6.5rem; }
.scope-grid { margin-top: 3.8rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.scope-item { padding: 2rem 2rem 2rem 0; border-right: 1px solid var(--line); }
.scope-item + .scope-item { padding-left: 2rem; }
.scope-item:last-child { border-right: 0; }
.scope-item span { color: var(--gold-600); font-size: .7rem; font-weight: 850; letter-spacing: .13em; }
.scope-item h3 { margin-top: 3rem; font-size: 1.55rem; font-weight: 400; }
.scope-item p { margin-bottom: 0; color: var(--slate); }

.case-section { padding-block: 6.5rem; background: var(--mist); }
.case-header { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: end; }
.case-header p:last-child { margin-bottom: .3rem; color: var(--slate); font-size: 1.03rem; line-height: 1.8; }
.case-steps { margin-top: 3.8rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.case-step { min-height: 300px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.case-step span { color: var(--gold-600); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.case-step h3 { margin-top: 3.5rem; font-size: 1.55rem; font-weight: 400; }
.case-step p { margin: 0; color: var(--slate); }
.case-section.dark { background: var(--navy-900); color: var(--white); }
.case-section.dark .case-header p:last-child, .case-section.dark .case-step p { color: #aebdcc; }
.case-section.dark .case-steps { border-color: rgba(255,255,255,.16); }
.case-section.dark .case-step { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.035); }
.case-section.dark .case-step span { color: var(--gold-300); }

.service-outcome { padding-block: 5.5rem; background: var(--white); }
.outcome-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.outcome-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.outcome-list li { position: relative; padding: 1.2rem 0 1.2rem 2rem; border-bottom: 1px solid var(--line); color: var(--slate); }
.outcome-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-600); font-weight: 850; }

.site-footer { padding-block: 3rem; background: var(--navy-950); color: #9eafbf; }
.footer-grid { display: grid; grid-template-columns: .9fr 1.1fr 1fr; gap: 4rem; align-items: start; }
.footer-brand .brand-name { color: var(--white); }
.footer-copy { max-width: 310px; margin: 1.25rem 0 0; font-size: .83rem; }
.footer-column { display: grid; gap: .55rem; font-size: .82rem; }
.footer-column strong { margin-bottom: .5rem; color: var(--gold-300); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a:hover { color: var(--white); }
.footer-column address { font-style: normal; line-height: 1.65; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 1rem; font-size: .72rem; }

@media (max-width: 940px) {
  .nav-shell { grid-template-columns: 1fr auto auto; }
  .desktop-nav { display: none; }
  .nav-actions { gap: .85rem; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav > summary { width: 25px; display: grid; gap: 5px; cursor: pointer; list-style: none; }
  .mobile-nav > summary span { display: block; height: 2px; background: var(--navy-900); }
  .mobile-nav nav { position: absolute; top: calc(100% + 1.7rem); right: -1rem; width: min(340px, calc(100vw - 2rem)); display: grid; padding: .7rem 1.2rem; border-top: 3px solid var(--gold-500); background: var(--white); box-shadow: var(--shadow); }
  .mobile-nav nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .88rem; font-weight: 750; }
  .mobile-nav nav a:last-child { border-bottom: 0; color: var(--blue-700); }
  .home-hero { background: var(--navy-950); }
  .home-hero::before { inset: 0; }
  .hero-shell, .service-hero-shell { grid-template-columns: 1fr; gap: 3.5rem; }
  .service-hero-details { max-width: 680px; padding: 2rem 0 0; border-top: 1px solid rgba(232,207,151,.5); border-left: 0; }
  .route-card { max-width: 620px; }
  .section-intro, .process-grid, .contact-grid, .case-header, .outcome-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .service-cards, .scope-grid, .case-steps { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .scope-item, .scope-item + .scope-item { padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .scope-item h3 { margin-top: 1.8rem; }
  .case-step { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 2rem, 1180px); }
  .nav-shell { min-height: 70px; gap: 1rem; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: .72rem; }
  .nav-actions .header-action { display: none; }
  .hero-shell { min-height: auto; padding-block: 4.8rem; }
  .hero-copy h1 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
  .route-card { padding: 1.5rem; }
  .proof-grid { grid-template-columns: 1fr; padding-block: .65rem; }
  .proof-grid span, .proof-grid span:first-child { padding: .65rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .proof-grid span:last-child { border-bottom: 0; }
  .section, .process-section { padding-block: 5rem; }
  .service-cards { margin-top: 3.2rem; }
  .service-card { padding: 1.6rem; }
  .service-card h3 { margin-top: 2.8rem; }
  .contact-band { padding-block: 4.5rem; }
  .service-hero-shell { min-height: auto; padding-block: 4.8rem; }
  .service-hero-copy h1 { font-size: clamp(2rem, 8.4vw, 2.8rem); line-height: 1.08; }
  .scope-section, .case-section, .service-outcome { padding-block: 4.8rem; }
  .case-steps { margin-top: 3rem; }
  .case-step h3 { margin-top: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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