@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-variable.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #073b78;
  --blue-deep: #041f42;
  --blue-bright: #0c55a5;
  --yellow: #ffd629;
  --yellow-soft: #fff0a1;
  --ink: #161a1d;
  --text: #333b43;
  --muted: #68737d;
  --steel: #d8dee4;
  --line: #cbd2d9;
  --warm: #f6f4ee;
  --white: #ffffff;
  --green: #177d49;
  --red: #b5362e;
  --shadow: 0 24px 70px rgba(4, 31, 66, 0.12);
  --radius: 8px;
  --container: 1240px;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, ul, ol, dl { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 6.4vw, 6.2rem); margin-bottom: 1.35rem; }
h2 { font-size: clamp(2.15rem, 4.5vw, 4.25rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); margin-bottom: 0.8rem; }
::selection { color: var(--blue-deep); background: var(--yellow); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.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; left: 16px; top: -100px; z-index: 1000;
  padding: 12px 16px; color: var(--blue-deep); background: var(--yellow);
  font-weight: 800; border-radius: 4px;
}
.skip-link:focus { top: 16px; }

.utility-bar { color: rgba(255,255,255,.8); background: var(--blue-deep); font-size: .82rem; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-inner p { margin: 0; }
.utility-links { display: flex; align-items: center; gap: 24px; }
.utility-links a { color: var(--white); font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(7,59,120,.1); transition: box-shadow .25s ease, background .25s ease;
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(4,31,66,.08); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo { display: block; width: auto; height: 52px; object-fit: contain; }
.brand-monogram {
  display: grid; place-items: center; min-width: 58px; height: 38px; padding-inline: 7px;
  color: var(--yellow); background: var(--blue); font-family: "Manrope", sans-serif;
  font-weight: 800; letter-spacing: -0.08em; line-height: 1; border-radius: 3px 10px 3px 3px;
}
.brand-words { display: flex; flex-direction: column; font-family: "Manrope", sans-serif; line-height: 1.05; text-transform: uppercase; }
.brand-words strong { color: var(--blue-deep); font-size: .9rem; letter-spacing: .04em; }
.brand-words span { color: var(--muted); font-size: .66rem; letter-spacing: .09em; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-link { position: relative; color: #303940; font-size: .9rem; font-weight: 650; white-space: nowrap; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--blue); transition: right .25s ease; }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--blue); }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; }
.menu-button span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--blue-deep); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border: 2px solid transparent; border-radius: var(--radius);
  font-family: "Manrope", sans-serif; font-size: .92rem; font-weight: 780; letter-spacing: -0.01em;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--yellow); outline-offset: 3px;
}
.button-yellow { color: var(--blue-deep); background: var(--yellow); box-shadow: 0 8px 22px rgba(255,214,41,.18); }
.button-yellow:hover { box-shadow: 0 12px 30px rgba(255,214,41,.3); background: #ffe057; }
.button-blue { color: var(--white); background: var(--blue); }
.button-blue:hover { background: var(--blue-bright); box-shadow: 0 12px 28px rgba(7,59,120,.2); }
.button-outline { color: var(--blue-deep); border-color: rgba(7,59,120,.35); background: transparent; }
.button-outline:hover { border-color: var(--blue); background: rgba(7,59,120,.04); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.45); }
.button-outline-light:hover { color: var(--blue-deep); background: var(--white); border-color: var(--white); }
.button-small { min-height: 44px; padding: 10px 17px; font-size: .84rem; }
.button-wide { width: 100%; }
.button[disabled] { cursor: wait; opacity: .7; }
.button.is-loading::before { content: ""; width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; color: var(--blue);
  font-family: "Manrope", sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--yellow); }
.eyebrow.yellow { color: var(--yellow); }
.eyebrow.yellow::before { background: var(--yellow); }
.lead { max-width: 690px; color: var(--text); font-size: clamp(1.1rem, 2vw, 1.38rem); line-height: 1.52; }
.light-text { color: rgba(255,255,255,.78); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-family: "Manrope", sans-serif; font-size: .9rem; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link.light { color: var(--white); }
.section { padding: clamp(78px, 10vw, 140px) 0; }
.section-compact { padding: 68px 0; }
.section-dark { color: var(--white); background: var(--blue-deep); }
.section-blue { color: var(--white); background: var(--blue); }
.section-yellow { color: var(--blue-deep); background: var(--yellow); }
.section-soft { background: var(--warm); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 480px); gap: 60px; align-items: end; margin-bottom: 56px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading p { margin-bottom: 4px; }
.section-heading.centered { display: block; max-width: 800px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

.hero { position: relative; min-height: min(830px, calc(100vh - 116px)); overflow: hidden; color: var(--white); background: var(--blue-deep); }
.hero::before {
  content: ""; position: absolute; inset: 0; 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: 80px 80px; mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); min-height: inherit; align-items: center; gap: 70px; padding-block: 84px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 760px; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero .lead { color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { display: flex; gap: 12px; align-items: center; margin-top: 26px; color: rgba(255,255,255,.66); font-size: .88rem; }
.hero-note::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; flex: 0 0 auto; color: var(--blue-deep); background: var(--yellow); border-radius: 50%; font-weight: 900; }
.hero-visual { position: relative; min-height: 570px; }
.hero-photo { position: absolute; inset: 0 0 40px 70px; overflow: hidden; border-radius: 8px 60px 8px 8px; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(4,31,66,.55)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.03) brightness(1.05); }
.hero-stamp { position: absolute; top: 34px; left: 18px; z-index: 2; width: 128px; height: 128px; display: grid; place-content: center; text-align: center; color: var(--blue-deep); background: var(--yellow); border-radius: 50%; transform: rotate(-7deg); font-family: "Manrope", sans-serif; font-size: .76rem; font-weight: 800; line-height: 1.2; text-transform: uppercase; box-shadow: 0 14px 40px rgba(0,0,0,.18); }
.hero-service-card { position: absolute; right: 0; bottom: 0; z-index: 3; width: min(390px, 90%); padding: 26px; color: var(--ink); background: var(--white); border-left: 8px solid var(--yellow); box-shadow: var(--shadow); }
.hero-service-card p { margin: 0 0 4px; color: var(--muted); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.hero-service-card strong { display: block; font-family: "Manrope", sans-serif; font-size: 1.22rem; line-height: 1.3; }
.hero-rail { position: absolute; right: 0; top: 0; bottom: 0; width: 18px; background: var(--yellow); }

.proof-strip { color: var(--blue-deep); background: var(--yellow); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 108px; padding: 24px 30px; border-right: 1px solid rgba(4,31,66,.2); display: flex; flex-direction: column; justify-content: center; }
.proof-item:first-child { border-left: 1px solid rgba(4,31,66,.2); }
.proof-item strong { font-family: "Manrope", sans-serif; font-size: 1.25rem; line-height: 1.2; }
.proof-item span { color: rgba(4,31,66,.68); font-size: .85rem; }

.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pathway-card { position: relative; min-height: 400px; padding: 34px; overflow: hidden; border: 1px solid var(--steel); background: var(--white); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.pathway-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow); }
.pathway-number { display: block; margin-bottom: 80px; color: var(--blue); font-family: "Manrope", sans-serif; font-size: .78rem; font-weight: 800; }
.pathway-card h3 { max-width: 280px; font-size: 1.9rem; }
.pathway-card p { color: var(--muted); }
.pathway-card .text-link { position: absolute; left: 34px; bottom: 32px; }
.pathway-card::after { content: ""; position: absolute; top: 0; right: 0; width: 14px; height: 74px; background: var(--yellow); transition: height .3s ease; }
.pathway-card:hover::after { height: 100%; }

.category-list { border-top: 1px solid var(--line); }
.category-row { display: grid; grid-template-columns: 80px 1.1fr 1fr 40px; gap: 28px; align-items: center; min-height: 130px; padding: 26px 4px; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.category-row:hover { padding-inline: 22px; background: var(--warm); }
.category-row .num { color: var(--blue); font-family: "Manrope", sans-serif; font-size: .78rem; font-weight: 800; }
.category-row h3 { margin: 0; font-size: clamp(1.4rem, 2.6vw, 2.35rem); }
.category-row p { margin: 0; color: var(--muted); }
.category-row .arrow { color: var(--blue); font-size: 1.5rem; transition: transform .2s ease; }
.category-row:hover .arrow { transform: translate(4px, -4px); }

.service-feature { display: grid; grid-template-columns: .92fr 1.08fr; align-items: stretch; min-height: 680px; }
.service-image { position: relative; overflow: hidden; background: var(--blue); }
.service-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); }
.service-image::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.service-copy { padding: clamp(55px, 8vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.service-copy h2 { max-width: 650px; }
.check-list { list-style: none; margin: 28px 0 36px; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; flex: 0 0 auto; margin-top: 2px; color: var(--blue-deep); background: var(--yellow); border-radius: 50%; font-size: .8rem; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.process-step { position: relative; min-height: 310px; padding: 40px; border-right: 1px solid var(--line); }
.process-step:last-child { border: 0; }
.process-step .num { display: block; margin-bottom: 78px; color: var(--blue); font-family: "Manrope", sans-serif; font-weight: 800; }
.process-step h3 { font-size: 1.65rem; }
.process-step p { color: var(--muted); }

.cta-band { position: relative; overflow: hidden; color: var(--blue-deep); background: var(--yellow); }
.cta-band::after { content: "CAC"; position: absolute; right: -2vw; bottom: -5vw; color: rgba(4,31,66,.07); font-family: "Manrope", sans-serif; font-size: clamp(8rem, 24vw, 26rem); font-weight: 800; letter-spacing: -.1em; line-height: .7; }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.cta-grid h2 { max-width: 800px; margin-bottom: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

.page-hero { position: relative; padding: clamp(90px, 12vw, 170px) 0 clamp(75px, 9vw, 120px); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -50px; top: 0; width: 30vw; height: 100%; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero h1 { max-width: 1000px; }
.page-hero .lead { color: rgba(255,255,255,.76); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 32px; color: rgba(255,255,255,.62); font-size: .84rem; }
.breadcrumb a:hover { color: var(--yellow); }

.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.intro-grid h2 { position: sticky; top: 120px; }
.intro-copy p { color: var(--text); font-size: 1.14rem; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 38px; background: var(--line); border: 1px solid var(--line); }
.stat { padding: 30px; background: var(--white); }
.stat strong { display: block; color: var(--blue); font-family: "Manrope", sans-serif; font-size: 2rem; }
.stat span { color: var(--muted); font-size: .9rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 310px; padding: 34px; border: 1px solid var(--line); background: var(--white); }
.feature-card .icon-box { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 70px; color: var(--blue-deep); background: var(--yellow); font-family: "Manrope", sans-serif; font-weight: 850; border-radius: 4px; }
.feature-card p { color: var(--muted); }
.feature-card.dark { color: var(--white); background: var(--blue-deep); border-color: var(--blue-deep); }
.feature-card.dark p { color: rgba(255,255,255,.68); }

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.split-copy { padding: clamp(55px, 8vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.split-image { min-height: 520px; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.rental-poster { padding: 18px; background: var(--blue-deep); }
.rental-poster img, .image-contain { object-fit: contain !important; background: var(--blue-deep); }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.spec { padding: 20px; color: var(--blue-deep); background: var(--yellow); }
.spec strong { display: block; font-family: "Manrope", sans-serif; font-size: 1.2rem; }
.spec span { font-size: .84rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { position: relative; min-height: 360px; padding: 34px; overflow: hidden; color: var(--white); background: var(--blue); }
.product-card:nth-child(even) { color: var(--blue-deep); background: var(--yellow); }
.product-card:nth-child(3n) { background: var(--blue-deep); }
.product-card .num { display: block; margin-bottom: 90px; opacity: .7; font-family: "Manrope", sans-serif; font-size: .78rem; font-weight: 800; }
.product-card h2 { font-size: 2rem; }
.product-card p { color: inherit; opacity: .74; }
.product-card .text-link { position: absolute; left: 34px; bottom: 32px; color: inherit; }
.product-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -40px; top: -40px; border: 18px solid currentColor; opacity: .08; border-radius: 50%; transition: transform .35s ease; }
.product-card:hover::after { transform: scale(1.4); }

.quote-panel { display: grid; grid-template-columns: .72fr 1.28fr; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.quote-aside { padding: 52px; color: var(--white); background: var(--blue-deep); }
.quote-aside h2 { font-size: 2.3rem; }
.quote-aside p { color: rgba(255,255,255,.7); }
.quote-details { list-style: none; padding: 0; margin: 48px 0 0; display: grid; gap: 24px; }
.quote-details li { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); }
.quote-details span { display: block; color: rgba(255,255,255,.52); font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.quote-form { padding: 52px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--blue-deep); font-family: "Manrope", sans-serif; font-size: .84rem; font-weight: 760; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 52px; padding: 13px 15px; color: var(--ink); background: var(--warm);
  border: 1px solid transparent; border-bottom-color: var(--line); border-radius: 2px;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { background: var(--white); border-color: var(--blue); outline: 3px solid rgba(7,59,120,.12); }
.field-note { color: var(--muted); font-size: .8rem; }
.form-actions { display: flex; gap: 16px; align-items: center; margin-top: 30px; }
.form-status { margin-top: 20px; padding: 14px 16px; border-radius: 4px; font-weight: 650; }
.form-status.is-success { color: #0b5d34; background: #dff5e9; }
.form-status.is-error { color: #7e251f; background: #fee8e6; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 27px 56px 27px 0; cursor: pointer; list-style: none; font-family: "Manrope", sans-serif; font-size: 1.18rem; font-weight: 760; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 5px; top: 21px; width: 36px; height: 36px; display: grid; place-items: center; color: var(--blue); background: var(--warm); border-radius: 50%; font-size: 1.5rem; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; color: var(--yellow); background: var(--blue-deep); }
.faq-answer { max-width: 760px; padding: 0 0 28px; color: var(--muted); }

.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px 24px; }
.project-card:nth-child(even) { margin-top: 90px; }
.project-image-wrap { position: relative; display: block; min-height: 440px; overflow: hidden; background: var(--warm); }
.project-image-wrap img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img { transform: scale(1.035); }
.project-index { position: absolute; top: 0; right: 0; display: grid; place-items: center; width: 70px; height: 70px; color: var(--blue-deep); background: var(--yellow); font-family: "Manrope", sans-serif; font-size: .8rem; font-weight: 800; }
.project-card-body { padding: 27px 8px 0; }
.project-card-body h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
.project-card-body p:not(.eyebrow) { max-width: 600px; color: var(--muted); }

.detail-hero { padding: 110px 0 95px; }
.detail-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.detail-hero h1 { font-size: clamp(3rem, 6vw, 6rem); }
.back-link { display: inline-block; margin-bottom: 42px; color: rgba(255,255,255,.64); font-size: .86rem; font-weight: 700; }
.back-link:hover { color: var(--yellow); }
.project-meta { margin: 0; border-top: 1px solid rgba(255,255,255,.2); }
.project-meta div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.project-meta dt { color: rgba(255,255,255,.5); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; }
.project-meta dd { margin: 2px 0 0; }
.detail-cover, .article-cover { width: min(100% - 40px, 1440px); height: min(62vw, 780px); margin: -1px auto 0; overflow: hidden; background: var(--warm); }
.detail-cover img, .article-cover img { width: 100%; height: 100%; object-fit: cover; }
.detail-content-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.detail-content-grid h2 { max-width: 520px; }
.prose { color: var(--text); font-size: 1.12rem; }
.prose > * { max-width: 760px; }
.prose h2 { margin-top: 2.3em; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.prose h3 { margin-top: 2em; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.25em; }
.prose li + li { margin-top: .5em; }
.two-column-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.feature-list { list-style: none; margin: 20px 0 0; padding: 0; border-top: 1px solid var(--line); }
.feature-list li { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: "Manrope", sans-serif; font-weight: 650; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px; }
.gallery-grid img { width: 100%; height: 560px; object-fit: cover; }
.gallery-grid img:only-child { grid-column: 1 / -1; }

.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.article-card { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 360px; border: 1px solid var(--line); background: var(--white); }
.article-card.article-featured { grid-column: 1 / -1; grid-template-columns: 1.2fr .8fr; min-height: 500px; }
.article-image { overflow: hidden; background: var(--warm); }
.article-image img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover img { transform: scale(1.035); }
.article-body { padding: 36px; display: flex; flex-direction: column; align-items: flex-start; }
.article-body h2 { font-size: clamp(1.5rem, 2.8vw, 2.4rem); }
.article-body p:not(.eyebrow) { color: var(--muted); }
.article-body .text-link { margin-top: auto; }
.article-hero { padding: 110px 0 100px; text-align: center; }
.article-header-inner { max-width: 980px; }
.article-header-inner .eyebrow { justify-content: center; }
.article-header-inner h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); }
.article-header-inner .lead { margin-inline: auto; }
.article-byline { display: flex; justify-content: center; gap: 28px; margin-top: 30px; color: rgba(255,255,255,.62); font-size: .86rem; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: 70px; padding-block: 100px 130px; }
.article-aside { align-self: start; position: sticky; top: 120px; }
.tag { display: inline-block; margin: 0 6px 8px 0; padding: 6px 10px; color: var(--blue); background: var(--warm); border-radius: 2px; font-size: .76rem; }

.service-area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.area-card { padding: 42px; border: 1px solid var(--line); }
.area-card strong { display: block; margin-bottom: 12px; color: var(--blue); font-family: "Manrope", sans-serif; font-size: 1.5rem; }
.area-card p { color: var(--muted); }
.map-panel { position: relative; min-height: 480px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--blue-deep); }
.map-panel::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 32% 58%, var(--yellow) 0 8px, transparent 9px), linear-gradient(28deg, transparent 48%, rgba(255,255,255,.25) 49% 51%, transparent 52%), linear-gradient(-22deg, transparent 46%, rgba(255,255,255,.18) 47% 49%, transparent 50%); background-size: auto, 170px 120px, 220px 160px; }
.map-card { position: relative; z-index: 2; max-width: 440px; margin: 30px; padding: 34px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }

.legal { padding-block: 90px 130px; }
.legal h1 { font-size: clamp(2.8rem, 5vw, 4.7rem); }
.legal h2 { margin-top: 2.2em; font-size: 1.7rem; }
.legal p, .legal li { color: var(--text); }

.empty-state { grid-column: 1 / -1; padding: 70px; text-align: center; background: var(--warm); }
.site-footer { color: rgba(255,255,255,.74); background: #03172f; }
.footer-main { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 60px; padding-block: 80px 64px; }
.brand-footer .brand-monogram { background: var(--yellow); color: var(--blue-deep); }
.brand-footer .brand-words strong { color: var(--white); }
.brand-footer .brand-words span { color: rgba(255,255,255,.55); }
.brand-footer .brand-logo { height: 58px; padding: 5px 8px; background: var(--white); border-radius: 3px; }
.footer-brand p { max-width: 390px; margin: 24px 0 20px; }
.footer-title { margin-bottom: 22px; color: var(--white); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .9rem; }
.footer-list a:hover { color: var(--yellow); }
.footer-contact strong { color: var(--white); font-size: 1.1rem; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--yellow); }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; min-height: 50px; display: flex; align-items: center; gap: 9px; padding: 8px 16px 8px 8px; color: var(--white); background: var(--green); border: 2px solid var(--white); border-radius: 999px; box-shadow: 0 12px 32px rgba(0,0,0,.2); font-family: "Manrope", sans-serif; font-size: .78rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,.25); }
.wa-symbol { width: 32px; height: 32px; display: grid; place-items: center; color: var(--green); background: var(--white); border-radius: 50%; font-size: .68rem; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--delay, 0ms), transform .7s ease var(--delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.delay-1 { --delay: 80ms; }
.delay-2 { --delay: 160ms; }
.delay-hero { --delay: 140ms; }
.delay-cta { --delay: 100ms; }
.section-label-spaced { margin-top: 70px; }
.map-title { font-size: 2rem; }
.not-found-hero { min-height: 65vh; display: flex; align-items: center; }

@media (max-width: 1120px) {
  .nav-links { gap: 14px; }
  .nav-link { font-size: .82rem; }
  .site-nav { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr .85fr; gap: 38px; }
  .hero-photo { left: 20px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 920px) {
  :root { --header-h: 68px; }
  body { font-size: 17px; }
  .utility-inner p { display: none; }
  .utility-inner { justify-content: center; }
  .utility-links span { display: none; }
  .menu-button { display: block; z-index: 3; }
  .menu-button[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 106px 0 0; display: block; padding: 28px 20px 40px; overflow-y: auto; background: var(--white); transform: translateX(100%); transition: transform .3s ease; }
  .site-nav.is-open { transform: none; }
  .nav-links { display: grid; gap: 0; }
  .nav-link { padding: 16px 4px; border-bottom: 1px solid var(--steel); font-size: 1.05rem; }
  .nav-link::after { display: none; }
  .nav-cta { width: 100%; margin-top: 24px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 80px; }
  .hero-visual { min-height: 500px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 1px solid rgba(4,31,66,.2); }
  .pathway-grid, .feature-grid, .product-grid { grid-template-columns: 1fr 1fr; }
  .pathway-card:last-child, .feature-card:last-child { grid-column: 1 / -1; }
  .section-heading, .intro-grid, .detail-content-grid { grid-template-columns: 1fr; gap: 28px; }
  .intro-grid h2 { position: static; }
  .category-row { grid-template-columns: 55px 1fr 40px; }
  .category-row p { display: none; }
  .service-feature, .split { grid-template-columns: 1fr; }
  .service-image { min-height: 520px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step .num { margin-bottom: 34px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .quote-panel { grid-template-columns: 1fr; }
  .detail-hero-grid { grid-template-columns: 1fr; }
  .project-meta { max-width: 620px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card, .article-card.article-featured { grid-column: auto; grid-template-columns: 1fr 1fr; min-height: 390px; }
  .article-layout { grid-template-columns: 1fr; gap: 30px; }
  .article-aside { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .brand-logo { height: 44px; }
  .site-nav { inset-top: 106px; }
  .hero-grid { padding-block: 62px 70px; }
  .hero-visual { min-height: 430px; }
  .hero-photo { inset: 0 0 50px 0; border-radius: 6px 36px 6px 6px; }
  .hero-stamp { width: 94px; height: 94px; left: -4px; font-size: .6rem; }
  .hero-service-card { width: 88%; padding: 20px; }
  .hero-actions, .page-hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button, .page-hero-actions .button { width: 100%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid rgba(4,31,66,.2); }
  .pathway-grid, .feature-grid, .product-grid { grid-template-columns: 1fr; }
  .pathway-card:last-child, .feature-card:last-child { grid-column: auto; }
  .pathway-card { min-height: 340px; }
  .pathway-number { margin-bottom: 55px; }
  .category-row { min-height: 105px; grid-template-columns: 40px 1fr 28px; gap: 12px; }
  .service-image, .split-image { min-height: 390px; }
  .service-copy, .split-copy { padding: 58px 22px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .page-hero { padding: 75px 0 70px; }
  .stat-grid, .spec-grid { grid-template-columns: 1fr; }
  .quote-aside, .quote-form { padding: 36px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .project-grid { grid-template-columns: 1fr; gap: 58px; }
  .project-card:nth-child(even) { margin-top: 0; }
  .project-image-wrap, .project-image-wrap img { min-height: 340px; }
  .detail-cover, .article-cover { width: 100%; height: 64vw; min-height: 330px; }
  .two-column-lists, .gallery-grid, .service-area-grid { grid-template-columns: 1fr; gap: 34px; }
  .gallery-grid img { height: 380px; }
  .article-card, .article-card.article-featured { grid-template-columns: 1fr; }
  .article-image { min-height: 260px; }
  .article-layout { padding-block: 70px 100px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; padding-block: 65px 48px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 24px; }
  .footer-bottom div { flex-wrap: wrap; }
  .floating-whatsapp span:last-child { display: none; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 7px; border-radius: 50%; }
  .wa-symbol { width: 38px; height: 38px; }
}

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

@media print {
  .utility-bar, .site-header, .floating-whatsapp, .site-footer, .button { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .section, .page-hero { padding: 24px 0; }
  .section-dark, .section-blue { color: #000; background: #fff; }
  a { text-decoration: underline; }
}
