@font-face { font-family: "Manrope"; src: url("/assets/manrope-400.ttf") format("truetype"); font-style: normal; font-weight: 400 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/manrope-600.ttf") format("truetype"); font-style: normal; font-weight: 600 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/manrope-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --ink: #132022;
  --ink-soft: #344143;
  --paper: #f8faf9;
  --white: #ffffff;
  --mist: #e9efed;
  --line: #d5dedb;
  --sage: #aeb9b5;
  --mint: #d8e5e0;
  --signal: #afc9bf;
  --gold: #c6a968;
  --radius-sm: 0.85rem;
  --radius-md: 1.4rem;
  --radius-lg: 2.2rem;
  --shadow: 0 24px 70px rgba(15, 32, 34, 0.12);
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Manrope", Arial, sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; border-radius: 8px; background: var(--white); color: var(--ink); transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 128px) 0; }
.section-tight { padding: clamp(56px, 7vw, 90px) 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-mist { background: var(--mist); }
.center { text-align: center; }
.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; }

.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--paper) 89%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent); backdrop-filter: blur(18px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 45px; height: 45px; object-fit: contain; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word strong { font-size: 1.08rem; letter-spacing: 0.14em; }
.brand-word span { margin-top: 6px; color: #677375; font-size: 0.68rem; letter-spacing: 0.08em; }
.desktop-nav { display: flex; align-items: center; gap: 27px; }
.desktop-nav a { position: relative; color: var(--ink-soft); font-size: 0.88rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.desktop-nav a[aria-current="page"] { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
.menu-toggle svg { width: 21px; height: 21px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }
.mobile-nav { position: fixed; inset: 85px 0 0; z-index: 90; display: none; flex-direction: column; padding: 28px 20px 40px; background: var(--paper); overflow-y: auto; }
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 17px 6px; border-bottom: 1px solid var(--line); font-size: 1.35rem; font-weight: 600; }
.mobile-nav .button { margin-top: 26px; border-bottom: 0; font-size: 0.95rem; }

.button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 0.92rem; font-weight: 700; line-height: 1; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; height: 17px; flex-shrink: 0; }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: #263638; }
.button-light { background: var(--white); color: var(--ink); }
.button-outline { border-color: var(--line); background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--white); border-color: #b6c2bf; }
.button-ghost-light { border-color: rgba(255,255,255,.3); color: var(--white); }
.button-ghost-light:hover { background: rgba(255,255,255,.08); }
.button-arrow::after { content: "↗"; font-size: 1rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: #5f6e6f; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.section-dark .eyebrow { color: #aebcba; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.035em; line-height: 1.08; }
h1 { font-size: clamp(3rem, 6.8vw, 6.7rem); font-weight: 600; }
h2 { font-size: clamp(2.2rem, 4.3vw, 4.4rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 650; }
.lead { max-width: 690px; color: #536164; font-size: clamp(1.04rem, 1.5vw, 1.22rem); line-height: 1.8; }
.section-dark .lead { color: #c1ccca; }
.kicker { color: #657275; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.hero { position: relative; min-height: calc(100svh - 84px); display: grid; align-items: stretch; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: clamp(40px, 6vw, 90px); padding: clamp(56px, 7vw, 96px) 0; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 780px; margin-bottom: 28px; }
.hero-copy h1 span { color: #7f8c8b; }
.hero-copy .lead { max-width: 610px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; color: #526163; font-size: 0.82rem; font-weight: 650; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 5px rgba(175,201,191,.2); }
.hero-visual { position: relative; min-height: 650px; }
.hero-image { position: absolute; inset: 0 0 0 6%; width: 94%; height: 100%; object-fit: cover; border-radius: 160px 18px 160px 18px; box-shadow: var(--shadow); }
.hero-image-overlay { position: absolute; inset: 0 0 0 6%; border-radius: 160px 18px 160px 18px; background: linear-gradient(180deg, transparent 55%, rgba(12,25,27,.32)); }
.hero-card { position: absolute; left: 0; bottom: 40px; width: min(270px, 70%); padding: 24px; border: 1px solid rgba(255,255,255,.75); border-radius: 24px; background: rgba(248,250,249,.88); box-shadow: 0 20px 50px rgba(11,27,29,.18); backdrop-filter: blur(16px); }
.hero-card strong { display: block; margin-bottom: 7px; font-size: 1.04rem; }
.hero-card span { display: block; color: #657275; font-size: 0.82rem; line-height: 1.55; }
.hero-mark { position: absolute; top: 36px; right: -18px; display: grid; width: 102px; height: 102px; place-items: center; border-radius: 34px; background: var(--ink); box-shadow: var(--shadow); }
.hero-mark img { width: 64px; height: 64px; object-fit: contain; filter: brightness(1.25); }

.signal-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-item { min-height: 132px; padding: 30px 24px; border-right: 1px solid var(--line); }
.signal-item:first-child { border-left: 1px solid var(--line); }
.signal-item strong { display: block; margin-bottom: 6px; font-size: 1.08rem; letter-spacing: -0.02em; }
.signal-item span { color: #697678; font-size: 0.82rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading .lead { max-width: 420px; margin-bottom: 0; }
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered h2, .section-heading.centered .lead { margin-inline: auto; }
.section-heading.centered .lead { margin-top: 22px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #bcc8c4; box-shadow: 0 20px 45px rgba(17,35,37,.08); }
.service-number { color: #899694; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; }
.service-card h3 { max-width: 270px; margin: 46px 0 13px; }
.service-card p { margin-bottom: 22px; color: #657275; font-size: 0.92rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 800; }
.text-link::after { content: "↗"; }

.feature-split { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(44px, 8vw, 112px); }
.image-stack { position: relative; min-height: 640px; }
.image-stack .image-main { position: absolute; inset: 0 74px 58px 0; width: calc(100% - 74px); height: calc(100% - 58px); object-fit: cover; border-radius: 28px 110px 28px 28px; }
.image-stack .image-small { position: absolute; right: 0; bottom: 0; width: 42%; height: 44%; object-fit: cover; border: 10px solid var(--paper); border-radius: 22px; box-shadow: var(--shadow); }
.feature-copy h2 { margin-bottom: 26px; }
.process-list { margin: 36px 0 0; padding: 0; list-style: none; counter-reset: step; }
.process-list li { position: relative; padding: 0 0 26px 54px; border-left: 1px solid var(--line); }
.process-list li:last-child { padding-bottom: 0; border-left-color: transparent; }
.process-list li::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; top: -3px; left: -17px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .68rem; font-weight: 800; }
.process-list strong { display: block; margin-bottom: 5px; font-size: 1rem; }
.process-list span { color: #657275; font-size: 0.9rem; }

.expert-panel { display: grid; grid-template-columns: 1fr .95fr; gap: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); color: var(--white); }
.expert-copy { padding: clamp(42px, 6vw, 78px); }
.expert-copy h2 { margin-bottom: 24px; }
.expert-copy p { color: #c2ccca; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 36px; }
.credential { padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #d8e1df; font-size: .74rem; font-weight: 700; }
.expert-visual { position: relative; min-height: 560px; background: #263437; }
.expert-visual img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.expert-caption { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(14,27,29,.72); backdrop-filter: blur(12px); }
.expert-caption strong, .expert-caption span { display: block; }
.expert-caption span { margin-top: 4px; color: #bfcbca; font-size: .8rem; }

.cta-panel { position: relative; overflow: hidden; padding: clamp(46px, 7vw, 86px); border-radius: var(--radius-lg); background: var(--mint); }
.cta-panel::after { content: ""; position: absolute; right: -100px; bottom: -180px; width: 440px; height: 440px; border: 1px solid rgba(19,32,34,.18); border-radius: 47% 53% 43% 57%; transform: rotate(19deg); }
.cta-panel h2 { max-width: 820px; margin-bottom: 22px; }
.cta-panel .lead { max-width: 610px; }
.cta-actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.page-hero { padding: clamp(72px, 10vw, 132px) 0 clamp(60px, 8vw, 104px); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.page-hero h1 { max-width: 930px; margin-bottom: 0; font-size: clamp(3.2rem, 7vw, 7rem); }
.page-hero .lead { margin-bottom: 4px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #748181; font-size: .78rem; font-weight: 700; }
.breadcrumb span { color: #9aa5a3; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail { padding: clamp(28px, 4vw, 45px); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.service-detail-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 56px; }
.service-detail-top span { color: #8b9795; font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.service-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 15px; background: var(--mist); }
.service-icon svg { width: 22px; height: 22px; }
.service-detail p { color: #617073; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag { padding: 7px 10px; border-radius: 8px; background: var(--mist); color: #536164; font-size: .72rem; font-weight: 700; }

.scope-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.scope-intro { position: sticky; top: 120px; align-self: start; }
.scope-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.scope-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.scope-list span { color: #84918f; font-size: .74rem; font-weight: 800; }
.scope-list strong { font-size: 1rem; font-weight: 650; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.method { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.24); }
.method span { color: #91a09d; font-size: .75rem; font-weight: 800; }
.method h3 { margin: 34px 0 12px; }
.method p { color: #b8c5c2; font-size: .9rem; }

.team-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(44px, 8vw, 118px); }
.team-card { position: sticky; top: 120px; align-self: start; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.team-portrait { min-height: 480px; display: flex; align-items: end; padding: 24px; overflow: hidden; border-radius: 20px; background: linear-gradient(145deg, #cfd8d5, #73807f); }
.team-monogram { color: rgba(255,255,255,.8); font-size: clamp(5rem, 10vw, 9rem); font-weight: 700; letter-spacing: -.08em; line-height: .8; }
.team-meta { padding: 24px 4px 4px; }
.team-meta h2 { margin-bottom: 8px; font-size: 2rem; }
.team-meta p { margin-bottom: 0; color: #687577; font-size: .85rem; }
.bio-block { padding-bottom: 42px; margin-bottom: 42px; border-bottom: 1px solid var(--line); }
.bio-block:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.bio-block h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.bio-block p { color: #556366; }
.check-list { display: grid; gap: 13px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #526164; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #668078; font-weight: 800; }

.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(34px, 7vw, 90px); }
.contact-cards { display: grid; gap: 12px; margin-top: 34px; }
.contact-card { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 15px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); transition: transform .2s ease, border-color .2s ease; }
.contact-card:hover { transform: translateX(4px); border-color: #b3c1bd; }
.contact-card .icon-box { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; background: var(--mist); }
.contact-card svg { width: 20px; height: 20px; }
.contact-card strong, .contact-card span { display: block; }
.contact-card strong { font-size: .92rem; }
.contact-card span { margin-top: 2px; color: #6c787a; font-size: .75rem; }
.contact-card .arrow { color: #7d8b89; font-size: 1.1rem; }
.appointment-form { padding: clamp(28px, 5vw, 52px); border-radius: var(--radius-md); background: var(--ink); color: var(--white); }
.appointment-form h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.appointment-form > p { color: #b8c5c2; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; outline: none; background: rgba(255,255,255,.07); color: var(--white); }
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 122px; padding: 14px 15px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--signal); box-shadow: 0 0 0 3px rgba(175,201,191,.14); }
.field select option { color: var(--ink); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; }
.form-note { max-width: 340px; margin: 0; color: #aebbb8; font-size: .7rem; line-height: 1.55; }
.form-status { min-height: 24px; margin: 16px 0 0; color: #d6e5df; font-size: .78rem; }
.map-shell { min-height: 480px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--mist); }
.map-shell iframe { width: 100%; height: 480px; border: 0; filter: grayscale(1) contrast(.92); }
.map-meta { display: grid; grid-template-columns: 1fr auto; gap: 24px; margin-top: 22px; }
.map-meta h3 { margin-bottom: 8px; }
.map-meta p { margin-bottom: 0; color: #697678; }
.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 46px 25px 0; list-style: none; cursor: pointer; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; font-size: 1.45rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding: 0 40px 24px 0; color: #657275; }
.legal { max-width: 820px; }
.legal h2 { margin-top: 52px; font-size: 1.8rem; }
.legal p, .legal li { color: #59676a; }

.site-footer { padding: 70px 0 26px; background: #0c1719; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: 70px; }
.footer-brand .brand-word span { color: #96a4a2; }
.footer-brand p { max-width: 390px; margin: 24px 0 0; color: #9fadaa; font-size: .88rem; }
.footer-title { margin-bottom: 20px; color: #7f8f8c; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a, .footer-links span { color: #cfdbd8; font-size: .85rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; margin-top: 58px; border-top: 1px solid rgba(255,255,255,.12); color: #84928f; font-size: .72rem; }
.footer-bottom a { color: #b8c3c1; }
.gx-link { font-weight: 800; color: var(--gold) !important; }
.call-float { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: none; width: 56px; height: 56px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); box-shadow: 0 12px 30px rgba(10,24,26,.28); }
.call-float svg { width: 22px; height: 22px; }
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .header-actions .button { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 840px; }
  .hero-visual { min-height: 620px; }
  .hero-image, .hero-image-overlay { left: 0; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split { grid-template-columns: 1fr; }
  .image-stack { min-height: 720px; }
  .expert-panel { grid-template-columns: 1fr; }
  .expert-visual { min-height: 500px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .scope-grid, .team-layout, .contact-grid { grid-template-columns: 1fr; }
  .scope-intro, .team-card { position: static; }
  .team-card { max-width: 540px; }
}

@media (max-width: 760px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  .header-inner { min-height: 74px; }
  .mobile-nav { inset-block-start: 75px; }
  .brand img { width: 40px; height: 40px; }
  .brand-word strong { font-size: 1rem; }
  .hero-grid { padding: 46px 0 62px; gap: 44px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .hero-visual { min-height: 500px; }
  .hero-image, .hero-image-overlay { border-radius: 88px 14px 88px 14px; }
  .hero-mark { width: 76px; height: 76px; right: -5px; top: 24px; border-radius: 25px; }
  .hero-mark img { width: 47px; height: 47px; }
  .hero-card { bottom: 22px; width: 76%; padding: 20px; }
  .hero-trust { gap: 14px; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-item { min-height: 115px; border-bottom: 1px solid var(--line); }
  .signal-item:nth-child(odd) { border-left: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading .lead { margin-top: 22px; }
  .services-grid, .service-detail-grid, .method-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .image-stack { min-height: 520px; }
  .image-stack .image-main { right: 44px; width: calc(100% - 44px); }
  .image-stack .image-small { width: 48%; height: 40%; border-width: 7px; }
  .expert-copy { padding: 38px 26px; }
  .expert-visual { min-height: 440px; }
  .page-hero { padding-top: 58px; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .team-portrait { min-height: 390px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-foot { display: grid; }
  .map-meta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { flex-direction: column; }
  .call-float { display: grid; }
}

@media (max-width: 430px) {
  .brand-word span { display: none; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-item, .signal-item:first-child, .signal-item:nth-child(odd) { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .hero-actions .button, .cta-actions .button { width: 100%; }
  .contact-card { grid-template-columns: 40px 1fr; }
  .contact-card .arrow { display: none; }
}

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