/* VanVolt — mobile-first, offline en zonder externe fonts */
:root {
  --navy: #4d4d4d;
  --navy-2: #7f7f7f;
  --navy-3: #999999;
  --yellow: #ff7f23;
  --yellow-2: #ffa05c;
  --paper: #f7f9fb;
  --white: #ffffff;
  --ink: #16212a;
  --muted: #63717e;
  --line: #dfe5ea;
  --soft-blue: #efefef;
  --soft-yellow: #ffe9dc;
  --success: #1e7854;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 35px rgba(77, 77, 77, .08);
  --shadow-lg: 0 30px 70px rgba(77, 77, 77, .16);
  --container: 1180px;
  --header-height: 96px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(2.8rem, 11.2vw, 5.9rem); font-weight: 790; }
h2 { margin-bottom: 24px; font-size: clamp(2.15rem, 7.6vw, 4.3rem); font-weight: 780; }
h3 { margin-bottom: 12px; font-size: 1.35rem; font-weight: 750; }
h1 em, h2 span { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; letter-spacing: -.045em; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.sr-only { position: absolute !important; 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; z-index: 9999; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 16px; border-radius: 8px; color: var(--navy); background: var(--yellow); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header { position: sticky; z-index: 1000; top: 0; height: var(--header-height); border-bottom: 1px solid rgba(77, 77, 77, .08); background: rgba(247, 249, 251, .92); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { height: 64px; width: auto; transition: transform .25s ease; }
.brand:hover .brand-logo { transform: scale(1.03); }
.brand-logo-footer { height: 88px; padding: 6px 12px; border-radius: 10px; background: var(--paper); }
.menu-toggle { display: grid; place-content: center; gap: 5px; width: 46px; height: 46px; padding: 0; border-radius: 12px; color: var(--navy); background: var(--soft-blue); cursor: pointer; }
.menu-toggle span:not(.sr-only) { width: 21px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
.site-nav { position: fixed; inset: var(--header-height) 0 auto 0; display: grid; gap: 4px; padding: 20px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-sm); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .3s ease, opacity .25s ease, visibility .3s; }
.site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
.site-nav a { padding: 13px 14px; border-radius: 10px; color: var(--navy); font-size: 1rem; font-weight: 700; }
.site-nav a:hover, .site-nav a.active { background: var(--soft-blue); }
.site-nav .nav-cta { margin-top: 6px; color: var(--navy); background: var(--yellow); text-align: center; }
.site-nav .nav-cta:hover { background: var(--yellow-2); }

/* Shared */
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: #956300; font-size: .76rem; font-weight: 850; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 6px rgba(255, 127, 35, .22); }
.eyebrow-light { color: var(--yellow); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 14px 22px; border-radius: 12px; font-size: .95rem; font-weight: 800; letter-spacing: -.01em; line-height: 1.2; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, .menu-toggle:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 13px 25px rgba(77, 77, 77, .2); }
.button-primary:hover { background: var(--navy-2); box-shadow: 0 17px 30px rgba(77, 77, 77, .25); }
.button-yellow { color: var(--navy); background: var(--yellow); box-shadow: 0 13px 26px rgba(255, 127, 35, .2); }
.button-yellow:hover { background: var(--yellow-2); }
.text-link, .card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 800; }
.text-link:hover, .card-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.section-head { display: grid; gap: 10px; margin-bottom: 42px; }
.section-head > p { max-width: 600px; margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.section-head h2 { margin-bottom: 0; }

/* Hero */
.hero { position: relative; overflow: hidden; padding-top: 58px; padding-bottom: 68px; background: var(--paper); }
.hero::before { content: ""; position: absolute; top: -170px; right: -180px; width: 440px; height: 440px; border: 80px solid rgba(255, 127, 35, .12); border-radius: 50%; }
.hero-grid { display: grid; align-items: center; gap: 52px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 780px; }
.hero-copy h1 em { display: block; color: #b47808; }
.hero-intro { max-width: 670px; margin-bottom: 30px; color: #4c5b68; font-size: 1.1rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: stretch; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.hero-actions .text-link { justify-content: center; min-height: 44px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .87rem; font-weight: 700; }
.hero-points li { display: inline-flex; align-items: center; gap: 6px; }
.hero-points span { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: var(--navy); background: var(--yellow); font-size: .72rem; }
.hero-visual { position: relative; z-index: 1; }
.hero-image-wrap { position: relative; width: min(100%, 600px); margin: auto; }
.hero-image-wrap::before { content: ""; position: absolute; inset: 8% 2% 2% 5%; z-index: -1; border-radius: 45% 45% 26% 28%; background: var(--yellow); transform: rotate(-3deg); }
.hero-image-wrap img { width: 100%; filter: drop-shadow(0 30px 28px rgba(77, 77, 77, .17)); }
.visual-note { position: absolute; display: flex; align-items: center; gap: 10px; min-width: 174px; padding: 11px 13px; border: 1px solid rgba(77, 77, 77, .08); border-radius: 13px; background: rgba(255, 255, 255, .94); box-shadow: var(--shadow-sm); }
.visual-note strong, .visual-note small { display: block; white-space: nowrap; }
.visual-note strong { color: var(--navy); font-size: .76rem; line-height: 1.2; }
.visual-note small { margin-top: 3px; color: var(--muted); font-size: .65rem; line-height: 1.2; }
.note-top { top: 8%; left: 0; }
.note-bottom { right: -2%; bottom: 10%; }
.note-bottom svg { width: 26px; fill: var(--navy); }
.pulse { position: relative; width: 12px; height: 12px; flex: 0 0 auto; border: 3px solid var(--white); border-radius: 50%; background: #2fb676; box-shadow: 0 0 0 2px #2fb676; }
.pulse::after { content: ""; position: absolute; inset: -7px; border: 1px solid #2fb676; border-radius: 50%; animation: pulse 2.2s infinite; }
.route-line { display: none; }
.audience-strip { position: relative; z-index: 2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.audience-inner { display: grid; gap: 8px; padding-top: 22px; padding-bottom: 22px; }
.audience-inner p { margin: 0; color: var(--muted); font-size: .73rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.audience-inner ul { display: flex; flex-wrap: wrap; gap: 7px 19px; margin: 0; padding: 0; list-style: none; color: var(--navy); font-size: .9rem; font-weight: 750; }
.audience-inner li:not(:last-child)::after { content: "•"; margin-left: 19px; color: var(--yellow); }

/* Services */
.services { background: var(--white); }
.service-grid { display: grid; gap: 18px; }
.service-card { position: relative; display: flex; min-width: 0; flex-direction: column; min-height: 390px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); transition: transform .25s ease, box-shadow .25s ease, border-color .25s; }
.service-card:hover { transform: translateY(-5px); border-color: #c7d1da; box-shadow: var(--shadow-sm); }
.service-card.featured { color: rgba(255, 255, 255, .78); border-color: var(--navy); background: var(--navy); }
.service-card.featured::after { content: ""; position: absolute; right: -55px; bottom: -80px; width: 190px; height: 190px; border: 38px solid rgba(255, 127, 35, .1); border-radius: 50%; }
.service-card.featured h3 { color: var(--white); }
.service-card h3 { margin-top: 22px; }
.service-card p { color: var(--muted); }
.service-card.featured p { color: rgba(255, 255, 255, .7); }
.card-number { position: absolute; top: 25px; right: 25px; color: #9aa6b0; font-family: Georgia, serif; font-size: .88rem; font-style: italic; }
.featured .card-number { color: rgba(255, 255, 255, .45); }
.icon-box { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; color: var(--navy); background: var(--soft-yellow); }
.icon-box svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.featured .icon-box { color: var(--navy); background: var(--yellow); }
.check-list { position: relative; z-index: 1; display: grid; gap: 8px; margin: auto 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255, 255, 255, .14); list-style: none; color: rgba(255, 255, 255, .84); font-size: .87rem; font-weight: 650; }
.check-list li::before { content: "✓"; margin-right: 9px; color: var(--yellow); }
.card-link { margin-top: auto; padding-top: 18px; font-size: .87rem; }

/* Approach */
.approach { position: relative; background: var(--soft-blue); }
.approach-grid { display: grid; gap: 48px; }
.approach-intro { align-self: start; }
.approach-intro > p:not(.eyebrow) { max-width: 540px; color: var(--muted); font-size: 1.04rem; }
.quote-card { position: relative; margin: 36px 0 0; padding: 27px 24px 24px; border-left: 4px solid var(--yellow); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--white); box-shadow: var(--shadow-sm); }
.quote-card svg { position: absolute; top: -19px; left: 20px; width: 36px; fill: var(--yellow); }
.quote-card p { margin: 0; color: var(--navy); font-family: Georgia, serif; font-size: 1.04rem; font-style: italic; line-height: 1.65; }
.steps-list { position: relative; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.steps-list::before { content: ""; position: absolute; top: 34px; bottom: 34px; left: 28px; width: 1px; background: #cbd6e1; }
.steps-list li { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 0 0 35px; }
.steps-list li:last-child { padding-bottom: 0; }
.steps-list .step-no { position: relative; z-index: 1; display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid #c9c9c9; border-radius: 50%; color: var(--navy); background: var(--white); font-family: Georgia, serif; font-size: .8rem; font-style: italic; box-shadow: 0 5px 13px rgba(77, 77, 77, .06); }
.steps-list li:first-child .step-no { border-color: var(--yellow); background: var(--yellow); }
.steps-list h3 { margin: 5px 0 7px; font-size: 1.16rem; }
.steps-list p { margin: 0; color: var(--muted); font-size: .92rem; }

/* Projects */
.projects { background: var(--white); }
.project-grid { display: grid; gap: 24px; }
.project-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); transition: transform .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.project-image { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--soft-blue); }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.project-card:hover .project-image img { transform: scale(1.025); }
.project-tag { position: absolute; top: 16px; left: 16px; padding: 7px 11px; border-radius: 999px; color: var(--navy); background: rgba(255, 255, 255, .92); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 5px 18px rgba(77, 77, 77, .12); }
.project-copy { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px; }
.project-copy h3 { margin-bottom: 7px; font-size: 1.15rem; }
.project-copy p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.project-arrow { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%; color: var(--navy); background: var(--yellow); font-weight: 850; }
.project-note { display: grid; align-items: center; gap: 10px; margin-top: 28px; padding: 22px; border: 1px dashed #bcc9d4; border-radius: var(--radius-sm); background: var(--paper); text-align: center; }
.project-note > span { color: #b47808; font-size: 1.6rem; }
.project-note p { margin: 0; color: var(--muted); }
.project-note p strong { color: var(--navy); }
.project-note a { color: var(--navy); font-weight: 850; }

/* Care */
.care { position: relative; overflow: hidden; color: rgba(255, 255, 255, .76); background: var(--navy); }
.care::after { content: "24/7"; position: absolute; right: -20px; bottom: -67px; color: rgba(255, 255, 255, .025); font-size: 18rem; font-weight: 900; line-height: 1; letter-spacing: -.1em; }
.care-grid { position: relative; z-index: 1; display: grid; gap: 72px; }
.care-visual { position: relative; display: grid; place-items: center; min-height: 370px; }
.orbit { position: absolute; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; }
.orbit-one { width: 310px; height: 310px; }
.orbit-two { width: 230px; height: 230px; border-style: dashed; animation: rotate 28s linear infinite; }
.orbit-two::before, .orbit-two::after { content: ""; position: absolute; width: 12px; height: 12px; border: 4px solid var(--navy); border-radius: 50%; background: var(--yellow); }
.orbit-two::before { top: 22px; left: 22px; }
.orbit-two::after { right: 4px; bottom: 54px; }
.care-badge { position: relative; z-index: 1; display: grid; place-items: center; width: 184px; height: 184px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 50%; color: var(--white); background: var(--navy-2); box-shadow: 0 25px 60px rgba(0, 0, 0, .22); }
.care-badge svg { width: 55px; margin-bottom: -8px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.care-badge strong { font-size: 2.6rem; line-height: 1; letter-spacing: -.06em; }
.care-badge span { color: rgba(255, 255, 255, .65); font-size: .74rem; font-weight: 700; }
.status-pill { position: absolute; right: 0; bottom: 28px; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 999px; color: rgba(255, 255, 255, .75); background: #15305c; font-size: .68rem; font-weight: 700; }
.status-pill i { width: 8px; height: 8px; border-radius: 50%; background: #4fce8d; }
.care h2 { color: var(--white); }
.care h2 span { color: var(--yellow); }
.care-lead { max-width: 610px; font-size: 1.04rem; line-height: 1.75; }
.care-list { display: grid; gap: 0; margin: 30px 0 34px; padding: 0; list-style: none; }
.care-list li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .1); }
.care-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.care-list > li > span { color: var(--yellow); font-family: Georgia, serif; font-size: .76rem; font-style: italic; }
.care-list strong { color: var(--white); }
.care-list p { margin: 4px 0 0; font-size: .88rem; }

/* Partners */
.partners { background: var(--paper); }
.partners-title { max-width: 740px; margin: 0 auto 42px; text-align: center; }
.partners-title .eyebrow { justify-content: center; }
.partners-title > p:last-child { color: var(--muted); }
.partner-grid { display: grid; gap: 20px; }
.partner-card { display: grid; gap: 23px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.partner-icon { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 18px; color: var(--navy); background: var(--soft-yellow); }
.partner-icon svg { width: 39px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mini-label { margin-bottom: 7px; color: #a56b00; font-size: .7rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.partner-card p:last-child { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.partners-footnote { max-width: 840px; margin: 28px auto 0; color: var(--muted); font-size: .78rem; text-align: center; }

/* Form */
.quote-section { background: var(--soft-yellow); }
.quote-grid { display: grid; gap: 45px; }
.quote-intro { align-self: start; }
.quote-intro > p:not(.eyebrow) { max-width: 580px; color: var(--muted); font-size: 1.05rem; }
.quote-facts { display: grid; gap: 14px; margin-top: 30px; }
.quote-facts div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(77, 77, 77, .13); }
.quote-facts strong { color: var(--navy); }
.quote-facts span { color: var(--muted); font-size: .9rem; }
.form-card { min-width: 0; padding: 25px; border: 1px solid rgba(77, 77, 77, .08); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-lg); }
.form-progress { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; margin-bottom: 25px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-progress span { color: var(--navy); font-size: 1.14rem; font-weight: 800; }
.form-progress small { color: var(--muted); font-size: .69rem; text-align: right; }
.field-row { display: grid; gap: 14px; }
.field-row.two-columns { grid-template-columns: 1fr; }
.field { min-width: 0; margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .82rem; font-weight: 800; }
.field label span, .check-field span span { color: #a96b00; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cbd4dc; border-radius: 10px; color: var(--ink); background: #fbfcfd; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 126px; padding: 13px 14px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #919ca5; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); outline: 0; background: var(--white); box-shadow: 0 0 0 4px rgba(77, 77, 77, .08); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #b73d3d; background: #fffafa; }
.select-wrap { position: relative; }
.select-wrap::after { content: "⌄"; position: absolute; top: 10px; right: 15px; color: var(--navy); font-weight: 800; pointer-events: none; }
.field select { appearance: none; padding-right: 40px; }
.field-error { display: block; min-height: 0; margin-top: 5px; color: #a42626; font-size: .72rem; font-weight: 650; }
.field-error:not(:empty) { min-height: 1em; }
.field-hint { margin: -11px 0 18px; color: var(--muted); font-size: .71rem; }
.check-field { display: grid; grid-template-columns: 21px 1fr; gap: 9px; color: var(--muted); font-size: .75rem; line-height: 1.45; cursor: pointer; }
.check-field input { width: 19px; height: 19px; margin: 1px 0 0; accent-color: var(--navy); }
.submit-button { width: 100%; margin-top: 20px; }
.form-disclaimer { display: flex; align-items: flex-start; justify-content: center; gap: 7px; margin: 14px 0 0; color: var(--muted); font-size: .66rem; line-height: 1.45; text-align: center; }
.form-disclaimer svg { width: 17px; flex: 0 0 auto; fill: var(--success); }
.form-success { padding: 46px 15px; text-align: center; }
.form-success[hidden] { display: none; }
.success-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 25px; border-radius: 50%; color: var(--navy); background: var(--yellow); font-size: 2rem; font-weight: 900; box-shadow: 0 0 0 12px var(--soft-yellow); }
.form-success .eyebrow { justify-content: center; }
.form-success h3 { font-size: 2rem; }
.form-success h3 span { font-family: Georgia, serif; font-weight: 400; font-style: italic; }
.form-success p:not(.eyebrow) { max-width: 430px; margin-inline: auto; color: var(--muted); }

/* Contact and footer */
.contact { padding: 70px 0; color: var(--white); background: var(--navy-2); }
.contact-inner { display: grid; gap: 32px; }
.contact h2 { margin: 0; color: var(--white); }
.contact-options { display: grid; gap: 10px; }
.contact-option { display: grid; grid-template-columns: 42px 1fr 20px; align-items: center; gap: 12px; min-width: 0; padding: 15px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px; background: rgba(255, 255, 255, .045); transition: background .2s, transform .2s; }
.contact-option:hover { transform: translateX(3px); background: rgba(255, 255, 255, .08); }
.contact-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; color: var(--yellow); background: rgba(255, 127, 35, .12); }
.contact-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-option small, .contact-option strong { display: block; overflow-wrap: anywhere; }
.contact-option small { color: rgba(255, 255, 255, .54); font-size: .67rem; }
.contact-option strong { color: var(--white); font-size: .82rem; }
.contact-option b { color: var(--yellow); }
.site-footer { color: rgba(255, 255, 255, .65); background: #3f3f3f; }
.footer-main { display: grid; gap: 38px; padding-top: 62px; padding-bottom: 50px; }
.footer-brand > p { max-width: 330px; margin: 18px 0 0; font-size: .85rem; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 5px; color: var(--white); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links a, .footer-links span { font-size: .84rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-cta p { max-width: 280px; color: var(--white); font-weight: 750; }
.footer-cta .button { min-height: 48px; padding: 12px 17px; font-size: .82rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 20px; padding-top: 20px; padding-bottom: 22px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .69rem; }
.footer-bottom p { margin: 0; }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay, .reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
@keyframes pulse { 0%, 100% { opacity: 0; transform: scale(.55); } 45% { opacity: .7; } 80% { opacity: 0; transform: scale(1.35); } }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (min-width: 560px) {
  .container { width: min(100% - 64px, var(--container)); }
  .hero-actions { align-items: center; flex-direction: row; }
  .hero-actions .text-link { justify-content: flex-start; }
  .project-note { grid-template-columns: auto 1fr auto; text-align: left; }
  .partner-card { grid-template-columns: auto 1fr; }
  .field-row.two-columns { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 34px; }
  .audience-inner { display: flex; align-items: center; gap: 30px; }
}

@media (min-width: 760px) {
  :root { --header-height: 82px; }
  .section { padding: 118px 0; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card.featured { grid-row: span 2; min-height: 600px; }
  .approach-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: 70px; }
  .approach-intro { position: sticky; top: calc(var(--header-height) + 45px); }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-card.project-wide { grid-column: auto; }
  .care-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quote-facts div { display: block; padding: 0 15px 0 0; border-right: 1px solid rgba(77, 77, 77, .13); border-bottom: 0; }
  .quote-facts div:last-child { border-right: 0; }
  .quote-facts span { display: block; margin-top: 3px; }
  .contact-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.7fr .8fr .9fr 1.1fr; }
}

@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .site-nav { position: static; display: flex; align-items: center; gap: 2px; padding: 0; border: 0; background: transparent; box-shadow: none; transform: none; opacity: 1; visibility: visible; transition: none; }
  .site-nav a { padding: 10px 12px; font-size: .82rem; }
  .site-nav a:not(.nav-cta):hover, .site-nav a.active:not(.nav-cta) { background: transparent; box-shadow: inset 0 -2px var(--yellow); }
  .site-nav .nav-cta { margin: 0 0 0 9px; padding: 12px 16px; }
  .hero { min-height: calc(100svh - var(--header-height)); display: grid; align-items: center; padding-top: 72px; padding-bottom: 85px; }
  .hero-grid { grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr); gap: 28px; }
  .hero-copy h1 { font-size: clamp(4.5rem, 7vw, 6rem); }
  .hero-intro { font-size: 1.13rem; }
  .route-line { position: absolute; right: 1.5%; bottom: 6%; display: flex; align-items: center; gap: 52px; }
  .route-line::before { content: ""; position: absolute; right: 0; left: 0; height: 1px; background: rgba(77, 77, 77, .16); }
  .route-line span { position: relative; width: 6px; height: 6px; border: 1px solid var(--white); border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 3px var(--navy); }
  .route-line span:nth-child(3) { background: var(--yellow); box-shadow: 0 0 0 3px var(--yellow); }
  .section-head { grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); align-items: end; gap: 70px; }
  .service-grid { grid-template-columns: 1.18fr .91fr .91fr; }
  .service-card.featured { grid-row: auto; min-height: 465px; }
  .service-card { min-height: 465px; padding: 31px; }
  .approach-grid { gap: 120px; }
  .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-card.project-wide { grid-column: span 2; }
  .project-card.project-wide .project-image { aspect-ratio: 2 / 1; }
  .project-image { aspect-ratio: 1.2 / 1; }
  .partner-card { padding: 36px; }
  .quote-grid { grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr); align-items: center; gap: 80px; }
  .quote-facts { grid-template-columns: 1fr; }
  .quote-facts div { display: grid; grid-template-columns: 120px 1fr; padding: 0 0 14px; border-right: 0; border-bottom: 1px solid rgba(77, 77, 77, .13); }
  .quote-facts span { margin: 0; }
  .contact-inner { grid-template-columns: .85fr 2.15fr; align-items: center; gap: 70px; }
}

@media (min-width: 1200px) {
  .hero-grid { gap: 52px; }
  .note-top { left: -5%; }
  .note-bottom { right: -5%; }
  .care-visual { min-height: 520px; }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { width: 325px; height: 325px; }
  .care-badge { width: 225px; height: 225px; }
  .care-badge strong { font-size: 3.25rem; }
}

@media (max-width: 390px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding-top: 45px; }
  .visual-note { min-width: 146px; padding: 9px; }
  .visual-note strong { font-size: .66rem; }
  .visual-note small { font-size: .58rem; }
  .service-card { padding: 23px; }
  .form-card { padding: 20px; }
  .quote-facts div { grid-template-columns: 105px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
