:root {
  --navy-950: #04101f;
  --navy-900: #07182f;
  --navy-800: #0c2545;
  --forest-950: #041a14;
  --forest-900: #07291f;
  --forest-800: #0d3b2e;
  --green-600: #11845f;
  --green-500: #1ca474;
  --blue-700: #005a9e;
  --blue-600: #0078d4;
  --blue-500: #2b88d8;
  --cyan-400: #50e6ff;
  --green-400: #7ed957;
  --mint-300: #8ce3c3;
  --ink: #101b2b;
  --muted: #5d6b7d;
  --line: #d9e7e0;
  --surface: #f2f7f4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 48, 37, 0.15);
  --radius: 24px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.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: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-600);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 76, 57, 0.1);
  backdrop-filter: blur(18px);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { height: 74px; box-shadow: 0 12px 35px rgba(8, 31, 58, .1); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 200px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 27px; font-size: .91rem; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; color: #304056; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-600));
  transition: right .2s ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.language-pill { color: var(--blue-700); background: #eaf4fb; border: 1px solid #b7d9f2; border-radius: 99px; padding: 7px 11px; font-size: .76rem; white-space: nowrap; }
.nav-cta { padding: 12px 17px; color: var(--white); background: linear-gradient(135deg, var(--forest-900), var(--blue-600)); border-radius: 12px; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 10px 25px rgba(0,120,212,.22); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,120,212,.34); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px auto; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 790px;
  padding: 176px 0 0;
  color: var(--white);
  overflow: hidden;
  background: var(--forest-950) url("assets/hero.webp") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 28%, rgba(0, 120, 212, .34), transparent 32%),
    radial-gradient(circle at 62% 86%, rgba(28, 164, 116, .2), transparent 34%),
    linear-gradient(90deg, rgba(3, 22, 17, .98) 0%, rgba(4, 34, 29, .93) 46%, rgba(0, 49, 88, .72) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  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: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(350px, .62fr); gap: 86px; align-items: center; }
.hero-copy { max-width: 720px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: #c6f4df; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: var(--mint-300); }
.eyebrow.dark { color: var(--green-600); }
.hero h1 { max-width: 780px; margin: 0; font-size: clamp(3.2rem, 6.1vw, 6.15rem); line-height: .95; letter-spacing: -.062em; }
.hero h1 em { display: block; color: var(--cyan-400); font-style: normal; }
.hero-lede { max-width: 650px; margin: 30px 0 0; color: #d9e8f4; font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 13px 21px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--green-600), var(--blue-600)); box-shadow: 0 14px 32px rgba(0,120,212,.26); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(0,120,212,.4); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.button-secondary:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.14); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 33px 0 0; list-style: none; color: #d4e1ec; font-size: .86rem; }
.hero-trust li { position: relative; padding-left: 18px; }
.hero-trust li::before { content: ""; position: absolute; left: 0; top: .56em; width: 7px; height: 7px; background: var(--mint-300); border-radius: 50%; box-shadow: 0 0 0 5px rgba(140,227,195,.12); }
.hero-panel { padding: 34px; background: linear-gradient(145deg, rgba(11, 61, 47, .94), rgba(0, 70, 124, .88)); border: 1px solid rgba(80, 230, 255, .3); border-radius: var(--radius); box-shadow: 0 28px 80px rgba(0,0,0,.3); backdrop-filter: blur(12px); }
.panel-kicker { margin: 0 0 8px; color: var(--cyan-400); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-panel h2 { margin: 0; font-size: 1.75rem; line-height: 1.22; letter-spacing: -.03em; }
.hero-panel ul { display: grid; gap: 18px; padding: 24px 0; margin: 24px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); list-style: none; }
.hero-panel li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; }
.hero-panel li > span { display: grid; place-items: center; width: 34px; height: 34px; color: var(--cyan-400); background: rgba(0,120,212,.16); border: 1px solid rgba(80,230,255,.34); border-radius: 9px; font-size: .7rem; font-weight: 900; }
.hero-panel strong, .hero-panel small { display: block; }
.hero-panel small { margin-top: 2px; color: #adc0d2; line-height: 1.45; }
.hero-panel > a { display: flex; justify-content: space-between; color: var(--white); font-size: .92rem; font-weight: 700; }
.hero-metrics { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-metrics div { display: flex; align-items: center; gap: 15px; min-height: 110px; padding-right: 30px; }
.hero-metrics div + div { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-metrics strong { color: var(--cyan-400); font-size: 2.4rem; line-height: 1; }
.hero-metrics span { max-width: 160px; color: #d2e0ec; font-size: .82rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }

.trust-strip { color: var(--forest-900); background: linear-gradient(90deg, #e8f7f0, #edf6fc); border-bottom: 1px solid #c4dfed; }
.trust-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 90px; }
.trust-strip p { margin: 0; }
.trust-strip a { color: var(--blue-600); font-weight: 800; white-space: nowrap; }

.section-heading { display: grid; grid-template-columns: 1.2fr .72fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.section-heading h2, .approach h2, .coverage h2, .assurance h2, .contact h2 { margin: 0; font-size: clamp(2.35rem, 4.5vw, 4.2rem); line-height: 1.03; letter-spacing: -.055em; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 1.05rem; }
.services { position: relative; background: linear-gradient(180deg, #ffffff 0%, #f2f8fb 100%); overflow: hidden; }
.services::before { content: ""; position: absolute; width: 520px; height: 520px; top: 80px; right: -340px; border: 90px solid rgba(0,120,212,.04); border-radius: 50%; }
.services .container { position: relative; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 360px; padding: 30px; overflow: hidden; background: linear-gradient(145deg, #ffffff, #f2f7f4); border: 1px solid #dfeae4; border-radius: 18px; box-shadow: 0 12px 34px rgba(7,56,43,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::before { content: ""; position: absolute; top: -70px; right: -70px; width: 160px; height: 160px; background: radial-gradient(circle, rgba(28,164,116,.13), transparent 70%); }
.service-card::after { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--green-500); }
.service-card:nth-child(3n)::after { background: var(--blue-500); }
.service-card:nth-child(3n + 2)::after { background: linear-gradient(90deg, var(--green-500), var(--blue-600)); }
.service-card:hover { transform: translateY(-7px); border-color: #9bc8e9; box-shadow: var(--shadow); }
.service-card.featured { color: var(--white); background: linear-gradient(150deg, var(--forest-800), var(--blue-700)); border-color: var(--forest-800); }
.service-card.featured p, .service-card.featured li { color: #c4d5e3; }
.service-number { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 40px; color: var(--green-600); background: var(--white); border: 1px solid #d8e8df; border-radius: 12px; font-size: .78rem; font-weight: 900; box-shadow: 0 10px 25px rgba(7, 76, 57, .09); }
.service-card:nth-child(3n) .service-number { color: var(--blue-600); border-color: #c6dff0; }
.featured .service-number { color: var(--cyan-400); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.service-card h3 { margin: 0 0 13px; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.65; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 25px 0 0; list-style: none; }
.service-card li { padding: 6px 9px; color: #506175; background: rgba(255,255,255,.75); border: 1px solid rgba(140,164,184,.28); border-radius: 6px; font-size: .72rem; font-weight: 700; }
.featured li { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }

.field-story { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; min-height: 450px; margin-top: 28px; overflow: hidden; color: var(--white); background: linear-gradient(145deg, var(--forest-900), #075b65 58%, var(--blue-700)); border-radius: 28px; box-shadow: 0 28px 72px rgba(0,82,143,.2); }
.field-story::after { content: ""; position: absolute; right: -115px; bottom: -135px; width: 360px; height: 360px; border: 65px solid rgba(80,230,255,.065); border-radius: 50%; pointer-events: none; }
.field-story figure { position: relative; min-height: 450px; margin: 0; overflow: hidden; }
.field-story figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(0,82,143,.34)); }
.field-story img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; }
.field-story-copy { position: relative; z-index: 2; align-self: center; padding: 54px; }
.field-story-copy h3 { max-width: 520px; margin: 0; font-size: clamp(2.05rem, 3.5vw, 3.35rem); line-height: 1.04; letter-spacing: -.045em; }
.field-story-copy > p:not(.eyebrow) { margin: 23px 0 0; color: #c7ddd4; font-size: 1rem; }
.field-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.field-tags span { padding: 7px 10px; color: #e1f8ee; background: rgba(255,255,255,.07); border: 1px solid rgba(140,227,195,.22); border-radius: 7px; font-size: .74rem; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 32px; color: var(--cyan-400); font-weight: 850; }
.text-link:hover { color: var(--white); }

.approach { background: linear-gradient(145deg, #eef7f2, #eff7fc); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.approach-visual { position: relative; min-height: 600px; padding: 22px; overflow: hidden; background: linear-gradient(160deg, var(--forest-900), var(--blue-700)); border-radius: 28px; box-shadow: 0 26px 70px rgba(0,82,143,.18); }
.approach-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(4,16,31,.7)); pointer-events: none; }
.approach-visual img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; border-radius: 19px; box-shadow: var(--shadow); }
.visual-note { position: absolute; z-index: 2; right: 65px; bottom: 62px; left: 65px; color: var(--white); }
.visual-note span { display: block; margin-bottom: 7px; color: var(--cyan-400); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.visual-note strong { display: block; max-width: 470px; font-size: 1.5rem; line-height: 1.2; }
.approach-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.steps { display: grid; gap: 0; padding: 0; margin: 34px 0 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps li > span { display: grid; place-items: center; width: 42px; height: 42px; color: var(--green-600); background: #dff3e9; border-radius: 50%; font-size: .72rem; font-weight: 900; }
.steps li:nth-child(2) > span { color: var(--blue-700); background: #e3f1fb; }
.steps h3 { margin: 0 0 3px; font-size: 1.1rem; }
.steps p { margin: 0; color: var(--muted); font-size: .91rem; }

.coverage { position: relative; color: var(--white); background: linear-gradient(135deg, var(--forest-950), var(--forest-800) 55%, var(--blue-700)); overflow: hidden; }
.coverage::before { content: ""; position: absolute; width: 620px; height: 620px; right: -280px; top: -260px; border: 1px solid rgba(140,227,195,.15); border-radius: 50%; box-shadow: 0 0 0 80px rgba(140,227,195,.03), 0 0 0 160px rgba(77,215,236,.02); }
.coverage-grid { position: relative; display: grid; grid-template-columns: 1fr .76fr; gap: 95px; align-items: center; }
.coverage-copy > p:not(.eyebrow) { max-width: 650px; color: #b9c9d7; font-size: 1.05rem; }
.coverage-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 35px 0 36px; }
.coverage-list div { padding: 17px 14px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; }
.coverage-list span { display: block; margin-bottom: 17px; color: var(--cyan-400); font-size: .69rem; font-weight: 900; }
.coverage-list strong { display: block; font-size: .83rem; line-height: 1.35; }
.map-card { position: relative; padding: 26px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 30px; box-shadow: 0 32px 90px rgba(0,0,0,.28); }
.map-card img { width: 100%; border-radius: 22px; }
.map-label { position: absolute; left: 47px; bottom: 47px; display: flex; align-items: center; gap: 10px; padding: 10px 14px; color: var(--forest-900); background: rgba(255,255,255,.94); border-radius: 99px; font-size: .76rem; font-weight: 800; box-shadow: 0 12px 28px rgba(3,20,37,.25); }
.pulse { width: 9px; height: 9px; background: #18b674; border-radius: 50%; box-shadow: 0 0 0 5px rgba(24,182,116,.15); }

.assurance { padding-bottom: 75px; }
.assurance-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.assurance-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.assurance-cards article { padding: 29px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 14px 35px rgba(7,56,43,.06); }
.assurance-cards article:first-child { color: var(--white); background: linear-gradient(145deg, var(--forest-900), var(--blue-700)); border-color: var(--forest-800); }
.assurance-cards article:first-child p { color: #c7ddd4; }
.assurance-cards article:nth-child(2) { background: linear-gradient(145deg, #f7fbf9, #eaf4fb); border-color: #c6dff0; }
.assurance-cards strong { color: var(--green-600); font-size: 1.8rem; }
.assurance-cards article:first-child strong { color: var(--cyan-400); }
.assurance-cards h3 { margin: 17px 0 8px; font-size: 1.18rem; }
.assurance-cards p { margin: 0; color: var(--muted); font-size: .9rem; }
.fine-print { margin-top: 40px; color: #788696; font-size: .75rem; }

.contact { color: var(--white); background: linear-gradient(135deg, #e9f3ee, #eaf4fb); }
.contact-shell { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 650px; padding: 0; overflow: hidden; background: var(--forest-900); border-radius: 30px; box-shadow: var(--shadow); }
.contact-copy { position: relative; padding: 70px 55px; overflow: hidden; background: linear-gradient(155deg, var(--forest-800), var(--forest-950) 58%, var(--blue-700)); }
.contact-copy::after { content: ""; position: absolute; right: -130px; bottom: -140px; width: 380px; height: 380px; border: 60px solid rgba(80,230,255,.07); border-radius: 50%; }
.contact-copy > p:not(.eyebrow) { color: #b9c9d7; font-size: 1.05rem; }
.contact-options { display: grid; gap: 11px; margin-top: 35px; }
.contact-options a { position: relative; z-index: 2; padding: 17px 18px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; transition: background .2s ease, border-color .2s ease; }
.contact-options a:hover { background: rgba(255,255,255,.1); border-color: rgba(140,227,195,.55); }
.contact-options span, .contact-options strong { display: block; }
.contact-options span { color: var(--cyan-400); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-options strong { margin-top: 3px; font-size: 1rem; }
.language-note { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; color: #d9e8f4; font-weight: 700; }
.language-note span { display: grid; place-items: center; width: 23px; height: 23px; color: var(--navy-900); background: var(--green-400); border-radius: 50%; font-size: .72rem; }
.contact-form { display: grid; gap: 19px; padding: 70px 60px; color: var(--ink); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-size: .8rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #f7fafc; border: 1px solid #d8e3ec; border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { min-height: 49px; }
.contact-form textarea { resize: vertical; min-height: 128px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(0,120,212,.13); }
.form-submit { width: 100%; margin-top: 3px; }
.form-note, .form-status { margin: 0; color: #748294; font-size: .75rem; text-align: center; }
.form-status { min-height: 1.3em; color: var(--blue-700); font-weight: 700; }

.site-footer { padding: 65px 0 28px; color: #c4d9d0; background: linear-gradient(135deg, var(--forest-950), var(--navy-950) 72%, #00395f); }
.footer-main { display: grid; grid-template-columns: 1.2fr .65fr .85fr; gap: 70px; padding-bottom: 52px; }
.footer-main img { width: 210px; padding: 7px 10px; background: var(--white); border-radius: 8px; }
.footer-main p { max-width: 400px; color: #8fa3b4; font-size: .9rem; }
.footer-main nav, .footer-contact { display: grid; align-content: start; gap: 12px; }
.footer-main a { transition: color .2s ease; }
.footer-main a:hover { color: var(--mint-300); }
.footer-contact a { font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: #72889a; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-bottom p { margin: 0; }
.mobile-actions { display: none; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .language-pill { display: none; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(3.4rem, 7vw, 5.3rem); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .field-story-copy { padding: 42px; }
  .approach-grid, .coverage-grid { gap: 52px; }
  .approach-visual { min-height: 540px; padding: 30px; }
  .contact-copy { padding-inline: 42px; }
  .contact-form { padding-inline: 42px; }
}

@media (max-width: 900px) {
  .site-header, .site-header.scrolled { height: 74px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 55px rgba(8,31,58,.16);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav > a:not(.nav-cta) { padding: 13px 4px; border-bottom: 1px solid #edf2f6; }
  .site-nav > a::after { display: none; }
  .site-nav .nav-cta { margin-top: 17px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-panel { max-width: 620px; }
  .hero-metrics { margin-top: 60px; }
  .section-heading, .field-story, .approach-grid, .coverage-grid, .assurance-grid, .contact-shell { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; }
  .field-story figure, .field-story img { min-height: 420px; }
  .approach-copy { order: -1; }
  .coverage-copy { max-width: 750px; }
  .map-card { max-width: 580px; }
  .assurance-grid { gap: 40px; }
  .contact-copy, .contact-form { padding: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 64px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .brand img { width: 172px; }
  .hero { padding-top: 122px; background-position: 59% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3,22,17,.98), rgba(0,67,119,.9)); }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-trust { display: grid; gap: 9px; }
  .hero-panel { padding: 25px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics div { min-height: 80px; }
  .hero-metrics div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .trust-strip-inner { align-items: flex-start; flex-direction: column; padding: 23px 0; gap: 8px; }
  .section-heading h2, .approach h2, .coverage h2, .assurance h2, .contact h2 { font-size: clamp(2.25rem, 12vw, 3.2rem); }
  .service-grid, .assurance-cards, .coverage-list { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .field-story { min-height: 0; }
  .field-story figure, .field-story img { min-height: 285px; }
  .field-story-copy { padding: 38px 26px; }
  .approach-visual { min-height: 440px; padding: 18px; }
  .approach-visual img { min-height: 404px; }
  .visual-note { right: 36px; bottom: 38px; left: 36px; }
  .coverage-grid { gap: 45px; }
  .map-card { padding: 14px; }
  .map-label { left: 29px; bottom: 29px; }
  .contact-shell { width: min(calc(100% - 20px), var(--container)); border-radius: 22px; }
  .contact-copy, .contact-form { padding: 42px 25px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: .7fr .7fr 1.6fr; height: 64px; padding: 7px; background: rgba(255,255,255,.97); border-top: 1px solid var(--line); box-shadow: 0 -12px 30px rgba(8,31,58,.12); backdrop-filter: blur(14px); }
  .mobile-actions a { display: grid; place-items: center; color: var(--navy-900); border-right: 1px solid var(--line); font-size: .78rem; font-weight: 800; }
  .mobile-actions a:last-child { color: var(--white); background: linear-gradient(135deg, var(--green-600), var(--blue-600)); border: 0; border-radius: 8px; }
}

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

:focus-visible { outline: 3px solid var(--mint-300); outline-offset: 3px; }
