:root {
  --yellow: #fff200;
  --yellow-soft: #fffbd1;
  --red: #f1261b;
  --ink: #121212;
  --paper: #f4f2eb;
  --white: #ffffff;
  --line: rgba(18, 18, 18, 0.16);
  --muted: #66645e;
  --shell: 1200px;
  --radius: 3px;
  --shadow: 0 20px 60px rgba(22, 20, 10, 0.11);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px; background: var(--white); color: var(--ink); font-weight: 800; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.emergency-bar { background: var(--red); color: var(--white); font-size: .78rem; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.emergency-bar__inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; gap: 20px; }
.emergency-bar a { text-decoration: none; }
.emergency-bar a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(244, 242, 235, .95); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; width: 238px; }
.brand img { width: 100%; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.main-nav a { position: relative; text-decoration: none; font-size: .86rem; font-weight: 760; letter-spacing: .01em; }
.main-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; min-height: 42px; align-items: center; padding: 0 18px; background: var(--ink); color: var(--white); }
.nav-cta:hover { background: var(--red); }
.nav-toggle { display: none; }

.hero { position: relative; overflow: hidden; padding: clamp(64px, 8vw, 118px) 0 clamp(72px, 9vw, 130px); background: linear-gradient(90deg, transparent 49.92%, rgba(18, 18, 18, .055) 50%, transparent 50.08%), var(--yellow); }
.hero::before { position: absolute; top: -160px; right: -80px; width: 520px; height: 520px; border: 1px solid rgba(18, 18, 18, .18); border-radius: 50%; content: ""; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr); align-items: center; gap: clamp(44px, 7vw, 100px); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; font-size: .75rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 3px; background: var(--red); }
.eyebrow--dark > span { background: var(--ink); }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { overflow-wrap: break-word; word-break: normal; hyphens: auto; text-wrap: balance; }
.hero h1 { overflow-wrap: normal; hyphens: none; }
h1, h2, h3 { margin-top: 0; line-height: 1.05; }
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3.1rem, 6.4vw, 6rem); font-weight: 900; letter-spacing: -.065em; }
h2 { margin-bottom: 24px; font-size: clamp(2.3rem, 4.6vw, 4.6rem); font-weight: 880; letter-spacing: -.055em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -.025em; }
.hero-lead { max-width: 650px; margin: 0; font-size: clamp(1.08rem, 1.7vw, 1.32rem); line-height: 1.55; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 38px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 18px; padding: 0 24px; border: 2px solid transparent; border-radius: var(--radius); text-decoration: none; font-size: .86rem; font-weight: 850; letter-spacing: .025em; transition: background-color 180ms ease, color 180ms ease, transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--ink); color: var(--white); }
.button--primary:hover { background: var(--red); }
.button--outline { border-color: var(--ink); background: transparent; }
.button--outline:hover { background: var(--ink); color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding: 8px 0 5px; border-bottom: 2px solid rgba(18, 18, 18, .75); text-decoration: none; font-weight: 820; }
.text-link:hover { border-color: var(--red); color: var(--red); }
.text-link--dark { color: var(--white); border-color: rgba(255, 255, 255, .65); }
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 52px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(18, 18, 18, .22); list-style: none; }
.trust-list li { display: flex; flex-direction: column; padding-right: 18px; }
.trust-list li + li { padding-left: 18px; border-left: 1px solid rgba(18, 18, 18, .22); }
.trust-list strong { font-size: 1rem; font-weight: 900; }
.trust-list span { color: rgba(18, 18, 18, .68); font-size: .76rem; }
.hero-media { position: relative; margin: 0; padding: 16px 16px 50px; background: var(--ink); box-shadow: var(--shadow); transform: translateY(var(--float-y, 0px)) rotate(1.4deg); transition: transform 120ms linear; }
.hero-media img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; filter: saturate(.88) contrast(1.05); }
.hero-media figcaption { position: absolute; right: 18px; bottom: 14px; left: 18px; display: flex; justify-content: space-between; color: var(--white); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.section { padding: clamp(82px, 10vw, 150px) 0; }
.section-head { display: grid; grid-template-columns: 1.1fr .7fr; align-items: end; gap: 80px; margin-bottom: clamp(42px, 6vw, 76px); }
.section-head h2, .section-head p, .section-head .eyebrow { margin-top: 0; }
.section-head h2 { margin-bottom: 0; }
.section-head > p { margin-bottom: 9px; color: var(--muted); font-size: 1.05rem; }
.section-head--compact { grid-template-columns: 1fr; }
.service-section { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-width: 0; background: var(--paper); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background-color 200ms ease, transform 200ms ease; }
.service-card:hover { z-index: 2; background: var(--white); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card > a { display: flex; height: 100%; min-height: 438px; flex-direction: column; padding: 15px 15px 28px; text-decoration: none; }
.service-card img { width: 100%; aspect-ratio: 1.92 / 1; margin-bottom: 26px; object-fit: cover; filter: grayscale(18%) saturate(.9); }
.service-number { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.service-card h3 { margin: 10px 0 12px; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: .94rem; }
.card-link { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: .8rem; font-weight: 850; }
.service-card--alert .service-number, .service-card--alert .card-link { color: var(--red); }
.centered-action { display: flex; justify-content: center; margin-top: 50px; }

.about-section { background: var(--ink); color: var(--white); }
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 42px 110px; }
.about-intro h2 { max-width: 670px; }
.about-copy { padding-top: 46px; }
.about-copy p { max-width: 680px; color: rgba(255, 255, 255, .68); }
.about-copy .large-copy { color: var(--white); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.5; }
.about-copy .text-link { margin-top: 20px; }
.about-facts { grid-column: 1 / -1; display: grid; grid-template-columns: .7fr .7fr 1.6fr; margin-top: 30px; border-top: 1px solid rgba(255, 255, 255, .18); border-left: 1px solid rgba(255, 255, 255, .18); }
.about-facts div { display: flex; min-height: 190px; flex-direction: column; justify-content: space-between; padding: 30px; border-right: 1px solid rgba(255, 255, 255, .18); border-bottom: 1px solid rgba(255, 255, 255, .18); }
.about-facts strong { color: var(--yellow); font-size: clamp(3.2rem, 6vw, 5.6rem); font-weight: 900; line-height: 1; letter-spacing: -.055em; }
.about-facts span { max-width: 260px; color: rgba(255, 255, 255, .7); font-size: .8rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.process-section { background: var(--yellow); }
.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; }
.process-title-wrap { position: sticky; top: 140px; align-self: start; }
.process-list { margin: 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.process-list li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid rgba(18, 18, 18, .35); }
.process-list > li > span { color: var(--red); font-size: .8rem; font-weight: 900; letter-spacing: .08em; }
.process-list h3 { margin-bottom: 8px; }
.process-list p { max-width: 560px; margin: 0; }

.testimonials { background: var(--white); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.quote-grid figure { display: flex; min-height: 330px; flex-direction: column; justify-content: space-between; margin: 0; padding: clamp(28px, 4vw, 46px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-grid blockquote { margin: 0; font-size: clamp(1.2rem, 2.1vw, 1.7rem); font-weight: 680; line-height: 1.42; letter-spacing: -.025em; }
.quote-grid figcaption { display: flex; flex-direction: column; margin-top: 40px; font-size: .78rem; }
.quote-grid figcaption strong { font-size: .9rem; }
.quote-grid figcaption span { color: var(--muted); }
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }
.faq-grid > div:first-child > p:last-child { max-width: 410px; color: var(--muted); }
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; cursor: pointer; font-size: 1.05rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-size: 1.6rem; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > p { max-width: 670px; margin: -4px 0 26px; color: var(--muted); }

.contact-section { padding: clamp(82px, 10vw, 140px) 0; background: var(--ink); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .87fr 1.13fr; gap: 110px; }
.contact-grid > div:first-child > p:last-child { max-width: 540px; color: rgba(255, 255, 255, .67); font-size: 1.05rem; }
.contact-actions { border-top: 1px solid rgba(255, 255, 255, .25); }
.contact-actions > a, .contact-actions > address { position: relative; display: grid; grid-template-columns: 112px 1fr 30px; align-items: start; gap: 20px; min-height: 106px; padding: 27px 0; border-bottom: 1px solid rgba(255, 255, 255, .25); font-style: normal; text-decoration: none; }
.contact-actions > a:hover strong { color: var(--yellow); }
.contact-actions span { color: rgba(255, 255, 255, .54); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-actions strong { min-width: 0; font-size: clamp(1.05rem, 2vw, 1.35rem); overflow-wrap: anywhere; }
.contact-actions i { color: var(--yellow); font-style: normal; }

.site-footer { padding: 70px 0 25px; background: var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .55fr .85fr; gap: 70px; padding-bottom: 60px; }
.footer-brand img { width: min(300px, 100%); }
.footer-brand p { max-width: 340px; margin: 22px 0 0; }
.footer-grid h2 { margin-bottom: 22px; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li + li { margin-top: 8px; }
.footer-grid a { text-underline-offset: 4px; }
.footer-grid address { font-style: normal; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(18, 18, 18, .28); font-size: .75rem; font-weight: 700; }
.footer-bottom > span:last-child { display: flex; gap: 24px; }

/* Inner pages */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 44px; font-size: .76rem; font-weight: 760; }
.breadcrumbs a { color: inherit; text-underline-offset: 3px; }
.breadcrumbs i { opacity: .45; font-style: normal; }
.breadcrumbs span { opacity: .65; }
.simple-hero { padding: clamp(70px, 9vw, 126px) 0; background: var(--yellow); }
.simple-hero h1 { max-width: 980px; margin-bottom: 26px; }
.simple-hero > .shell > p:last-child { max-width: 760px; margin: 0; font-size: clamp(1.1rem, 2vw, 1.38rem); }
.simple-hero--dark { background: var(--ink); color: var(--white); }
.simple-hero--dark .breadcrumbs { color: rgba(255, 255, 255, .72); }
.subhero { padding: 34px 0 clamp(70px, 9vw, 122px); background: var(--yellow); }
.subhero--danger { background: var(--red); color: var(--white); }
.subhero--danger .eyebrow > span { background: var(--white); }
.subhero--danger .button--danger { background: var(--white); color: var(--red); }
.subhero--danger .service-phone { color: var(--white); }
.subhero-grid { display: grid; grid-template-columns: 1fr minmax(380px, .75fr); align-items: center; gap: clamp(50px, 7vw, 100px); }
.subhero h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(3rem, 6.5vw, 6.4rem); }
.subhero-grid > div > p:not(.eyebrow) { max-width: 620px; margin: 0; font-size: clamp(1.1rem, 2vw, 1.42rem); font-weight: 620; }
.subhero figure { margin: 0; padding: 12px; background: var(--ink); box-shadow: var(--shadow); transform: translateY(var(--float-y, 0px)) rotate(1.2deg); transition: transform 120ms linear; }
.subhero--danger figure { background: var(--white); }
.subhero figure img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; }
.service-phone { align-self: center; color: var(--ink); font-size: clamp(1.25rem, 2.2vw, 1.65rem); font-weight: 900; text-underline-offset: 5px; }
.button--danger { background: var(--red); color: var(--white); }
.button--danger:hover { background: var(--ink); }
.detail-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px, 9vw, 130px); }
.detail-grid > div { max-width: 700px; }
.large-copy { font-size: clamp(1.22rem, 2vw, 1.52rem); line-height: 1.55; letter-spacing: -.018em; }
.detail-grid > div > p:not(.eyebrow) { color: var(--muted); }
.detail-grid > div > .large-copy { color: var(--ink); }
.detail-grid aside { align-self: start; padding: 34px; background: var(--white); border-top: 6px solid var(--yellow); box-shadow: var(--shadow); }
.detail-grid aside h2 { margin-bottom: 26px; font-size: 1.45rem; letter-spacing: -.025em; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 28px; border-top: 1px solid var(--line); font-weight: 720; }
.check-list li::before { position: absolute; top: 15px; left: 2px; color: var(--red); content: "↗"; font-size: .82rem; font-weight: 900; }
.region-band { background: var(--yellow); }
.region-band__inner { display: flex; min-height: 180px; align-items: center; justify-content: space-between; gap: 40px; padding-block: 34px; }
.region-band p { display: flex; flex-direction: column; margin: 0; }
.region-band p span { font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.region-band p strong { font-size: clamp(1.35rem, 3vw, 2rem); }
.related-section { background: var(--white); }
.mini-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.mini-service { display: grid; grid-template-columns: 34px 1fr 20px; min-height: 92px; align-items: center; gap: 12px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; font-size: .9rem; font-weight: 780; }
.mini-service > span { color: var(--red); font-size: .7rem; }
.mini-service i { font-style: normal; }
.mini-service:hover, .mini-service.is-current { background: var(--yellow); }
.mini-service.is-current { box-shadow: inset 0 -4px var(--red); }
.service-grid--overview .service-card h2 { margin: 10px 0 12px; font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -.025em; }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.story-grid > div:last-child { padding-top: 48px; }
.story-grid > div:last-child p:not(.large-copy) { color: var(--muted); }
.facts-band { padding: 0 0 clamp(82px, 10vw, 150px); background: var(--ink); color: var(--white); }
.facts-band .about-facts { margin-top: 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-grid article { min-height: 300px; padding: clamp(28px, 4vw, 46px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-grid article > span { color: var(--red); font-size: .72rem; font-weight: 900; }
.value-grid h3 { margin: 65px 0 16px; }
.value-grid p { color: var(--muted); }
.contact-page-section { background: var(--paper); }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 110px); }
.contact-panel { padding: clamp(28px, 5vw, 56px); background: var(--ink); color: var(--white); }
.contact-panel > a, .contact-panel > address { display: grid; grid-template-columns: 92px 1fr 22px; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, .22); font-style: normal; text-decoration: none; }
.contact-panel span { color: rgba(255, 255, 255, .55); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-panel strong { overflow-wrap: anywhere; }
.contact-panel i { color: var(--yellow); font-style: normal; }
.contact-panel > a:hover strong { color: var(--yellow); }
.contact-copy { align-self: center; }
.contact-copy > p { max-width: 570px; color: var(--muted); font-size: 1.08rem; }
.contact-copy > .button { margin-top: 20px; }
.emergency-note { margin-top: 54px; padding: 26px; border-left: 5px solid var(--red); background: var(--white); }
.emergency-note > span { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.emergency-note p { margin: 8px 0 12px; }
.emergency-note a { font-size: 1.35rem; font-weight: 900; text-underline-offset: 5px; }
.legal-hero { padding: 34px 0 70px; background: var(--yellow); }
.legal-hero h1 { margin: 0; }
.legal-hero > .shell > p:last-child { max-width: 660px; margin: 20px 0 0; font-size: 1.15rem; }
.legal-section { background: var(--white); }
.legal-layout { display: grid; grid-template-columns: .3fr .7fr; gap: 100px; }
.legal-layout aside { display: flex; flex-direction: column; align-self: start; padding: 24px; border-top: 5px solid var(--red); background: var(--paper); }
.legal-layout aside strong { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-layout aside span { margin-top: 10px; color: var(--muted); }
.legal-layout article { max-width: 780px; }
.legal-layout article h2 { margin: 52px 0 14px; font-size: 1.5rem; letter-spacing: -.025em; }
.legal-layout article h2:first-child { margin-top: 0; }
.legal-layout article p { color: #46453f; }
.legal-layout article a { text-underline-offset: 4px; }
.legal-note { margin-top: 55px; padding: 22px; border-left: 5px solid var(--yellow); background: var(--paper); }
.error-page { display: grid; min-height: 100vh; align-items: center; padding: 50px 0; background: var(--yellow); }
.error-page__inner { text-align: center; }
.error-page .brand { display: block; width: min(290px, 80vw); margin: 0 auto 60px; }
.error-code { margin: 0; color: var(--red); font-size: .8rem; font-weight: 900; letter-spacing: .2em; }
.error-page h1 { max-width: 820px; margin: 14px auto 24px; }
.error-page__inner > p:not(.error-code) { margin: 0 auto 34px; font-size: 1.15rem; }

@media (max-width: 1020px) {
  .shell { width: min(var(--shell), calc(100% - 36px)); }
  .brand { width: 210px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: .79rem; }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 44px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid, .faq-grid, .contact-grid { gap: 70px; }
  .subhero-grid { grid-template-columns: 1fr .8fr; gap: 48px; }
  .detail-grid, .story-grid { gap: 70px; }
  .mini-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 84px; }
  .emergency-bar__inner > span { display: none; }
  .emergency-bar__inner { justify-content: center; }
  .header-inner { min-height: 76px; }
  .brand { width: 190px; }
  .nav-toggle { display: inline-flex; min-height: 44px; align-items: center; gap: 12px; padding: 0 4px; border: 0; background: transparent; color: var(--ink); cursor: pointer; font-size: .75rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
  .nav-toggle__icon { display: grid; width: 24px; gap: 6px; }
  .nav-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; top: 110px; right: 0; bottom: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 30px 18px 40px; background: var(--paper); overflow-y: auto; }
  .site-header[data-open="true"] .main-nav { display: flex; }
  .main-nav > a { display: flex; min-height: 63px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 1.25rem; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .main-nav > a:not(.nav-cta)::before { order: 2; color: var(--red); content: "↗"; }
  .main-nav .nav-cta { justify-content: center; margin-top: 28px; border: 0; color: var(--white); font-size: 1rem; }
  .hero-grid, .section-head, .about-grid, .process-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .subhero-grid, .detail-grid, .story-grid, .contact-page-grid, .legal-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 58px; }
  .hero-media { width: min(620px, 96%); margin-inline: auto; }
  .section-head, .about-grid, .process-grid, .faq-grid, .contact-grid { gap: 38px; }
  .section-head > p { max-width: 650px; }
  .about-copy { padding-top: 0; }
  .about-facts { grid-column: auto; grid-template-columns: repeat(3, 1fr); }
  .about-facts div { min-height: 160px; padding: 22px; }
  .process-title-wrap { position: static; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-grid figure { min-height: 250px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .subhero figure { width: min(650px, 96%); }
  .story-grid > div:last-child { padding-top: 0; }
  .value-grid { grid-template-columns: 1fr; }
  .legal-layout { gap: 50px; }
  .legal-layout aside { max-width: 420px; }
}

@media (max-width: 580px) {
  .shell { width: min(var(--shell), calc(100% - 28px)); }
  .emergency-bar { font-size: .7rem; }
  .header-inner { min-height: 70px; }
  .brand { width: 156px; }
  .nav-toggle__label { display: none; }
  .main-nav { top: 104px; }
  .hero { padding-top: 58px; }
  .hero::before { display: none; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .button-row .text-link { align-self: flex-start; }
  .trust-list { grid-template-columns: 1fr; padding-top: 0; }
  .trust-list li, .trust-list li + li { padding: 14px 0; border: 0; border-bottom: 1px solid rgba(18, 18, 18, .2); }
  .hero-media { width: 100%; padding: 9px 9px 42px; transform: none; }
  .hero-media img { aspect-ratio: 1.2 / 1; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card > a { min-height: 0; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts div { min-height: 145px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 15px; }
  .contact-actions > a, .contact-actions > address { grid-template-columns: 1fr 26px; gap: 6px 16px; }
  .contact-actions span { grid-column: 1 / -1; }
  .contact-actions i { grid-column: 2; grid-row: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .subhero { padding-top: 24px; }
  .subhero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .subhero figure { width: 100%; padding: 8px; transform: none; }
  .subhero figure img { aspect-ratio: 1.22 / 1; }
  .region-band__inner { align-items: flex-start; flex-direction: column; }
  .region-band__inner .button { width: 100%; }
  .mini-service-grid { grid-template-columns: 1fr; }
  .contact-panel > a, .contact-panel > address { grid-template-columns: 1fr 22px; gap: 6px 12px; }
  .contact-panel span { grid-column: 1 / -1; }
  .contact-panel i { grid-column: 2; grid-row: 2; }
}

/* Editorial inspection story: static-first, enhanced with native scroll progress. */
.inspection-story { --progress: 0; background: var(--ink); color: var(--white); position: relative; }
.inspection-stage { padding: 100px 0; overflow: clip; }
.inspection-layout { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 8%; }
.inspection-copy { position: relative; z-index: 2; }
.inspection-copy .eyebrow { color: var(--yellow); font-size: .7rem; }
.inspection-copy h2 { font-size: clamp(3.2rem, 6.6vw, 6rem); line-height: .98; letter-spacing: -.065em; margin: 26px 0; }
.inspection-copy h2 em { color: var(--yellow); font-style: normal; }
.inspection-copy > p:not(.eyebrow) { max-width: 440px; color: #c8c8be; font-size: 1.1rem; margin-bottom: 30px; }
.inspection-scroll { display: none; font-size: .65rem; letter-spacing: .2em; margin-top: 40px; color: #aaa99d; }
.inspection-scroll > span { margin-left: 15px; color: var(--yellow); }
.inspection-visual { min-width: 0; position: relative; }
.inspection-photo { margin: 0 0 24px; position: relative; border: 1px solid #545447; overflow: hidden; }
.inspection-photo img { width: 100%; height: 225px; object-fit: cover; }
.inspection-photo figcaption { background: var(--yellow); color: var(--ink); padding: 9px 16px; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.inspection-orbit { position: absolute; right: -35px; top: -48px; width: 112px; height: 112px; border: 1px solid var(--yellow); border-radius: 50%; z-index: 2; display: grid; place-content: center; text-align: center; background: var(--ink); color: var(--yellow); transform: rotate(12deg); }
.inspection-orbit span { font-size: .42rem; letter-spacing: .08em; }
.inspection-orbit b { font-size: 3rem; line-height: 1.1; font-weight: 300; }
.inspection-steps { display: grid; gap: 12px; }
.inspection-step { padding: 20px 24px; border: 1px solid #414138; background: #20201b; border-left: 3px solid var(--yellow); }
.inspection-step > span { color: var(--yellow); font-size: .65rem; letter-spacing: .16em; font-weight: 750; }
.inspection-step h3 { font-size: 1.45rem; line-height: 1.2; letter-spacing: -.035em; margin: 9px 0; }
.inspection-step p { color: #c8c8be; font-size: .91rem; margin: 0; }
.inspection-track { display: none; height: 3px; background: #414138; margin-top: 20px; }
.inspection-track span { display: block; height: 100%; background: var(--yellow); transform-origin: left; transform: scaleX(var(--progress)); }
.inspection-caption { color: #aaa99d; font-size: .72rem; line-height: 1.6; margin-top: 16px; max-width: 470px; }
.norm-banner { display: grid; grid-template-columns: auto auto auto; align-items: baseline; gap: 10px 14px; margin: 0 0 38px; padding: 25px 28px 22px; border: 2px solid var(--ink); background: var(--yellow); color: var(--ink); }
.norm-banner__kicker { grid-column: 1 / -1; font-size: .68rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.norm-banner strong { font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.05em; }
.norm-banner > span:not(.norm-banner__kicker) { font-size: 1.05rem; font-weight: 800; }
.norm-banner p { grid-column: 1 / -1; margin: 0; font-weight: 700; }
.has-scroll-motion { height: 230vh; }
.has-scroll-motion .inspection-stage { position: sticky; top: 0; height: 100vh; padding: 125px 0 35px; display: flex; align-items: center; }
.has-scroll-motion .inspection-scroll, .has-scroll-motion .inspection-track { display: block; }
.has-scroll-motion .inspection-photo img { transform: scale(calc(1 + var(--progress) * .16)); }
.has-scroll-motion .inspection-orbit { transform: rotate(calc(12deg + var(--progress) * 150deg)); }
.has-scroll-motion .inspection-copy h2 { transform: translateX(calc(var(--progress) * -12px)); }
.has-scroll-motion .inspection-steps { grid-template-columns: 1fr; }
.has-scroll-motion .inspection-step { grid-area: 1 / 1; min-height: 164px; opacity: 0; transform: translateY(24px) rotate(2deg); transition: opacity .3s, transform .5s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.has-scroll-motion[data-step="0"] .inspection-step:nth-child(1),
.has-scroll-motion[data-step="1"] .inspection-step:nth-child(2),
.has-scroll-motion[data-step="2"] .inspection-step:nth-child(3) { opacity: 1; transform: none; }
.reveal-ready.is-revealed { animation: bryla-reveal .8s cubic-bezier(.2,.7,.2,1) both; animation-delay: var(--reveal-delay, 0ms); }
.reveal-ready { will-change: transform; }
@keyframes bryla-reveal { from { transform: translateY(28px); } to { transform: translateY(0); } }
@media (max-width: 999px) {
  .inspection-stage { padding: 75px 0; }
  .inspection-layout { grid-template-columns: 1fr; gap: 55px; }
  .inspection-copy h2 { font-size: clamp(3.2rem, 11vw, 6rem); }
  .inspection-copy > p:not(.eyebrow) { max-width: 580px; }
  .inspection-orbit { right: 12px; top: -30px; width: 88px; height: 88px; }
  .inspection-photo img { height: auto; aspect-ratio: 1.9; }
  .norm-banner { grid-template-columns: 1fr auto; }
  .norm-banner strong { grid-column: 1; }
  .norm-banner > span:not(.norm-banner__kicker) { grid-column: 2; }
}
@media (max-width: 820px) {
  .site-header { backdrop-filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation: none !important; }
}
