
:root {
  --ink: #101214;
  --ink-soft: #252a2e;
  --muted: #686f74;
  --line: #ddd8ce;
  --paper: #f5f2eb;
  --white: #ffffff;
  --orange: #f4a300;
  --orange-dark: #d88300;
  --green: #167a45;
  --radius: 18px;
  --radius-lg: 32px;
  --shadow: 0 18px 50px rgba(16, 18, 20, .11);
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 52px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; overflow-wrap: anywhere; }
body.menu-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
main article:hover { filter: brightness(1.015); }
img { display: block; max-width: 100%; }
.motion-ready .reveal-on-scroll { opacity: 0; transform: translate3d(0, 34px, 0); transition: opacity .72s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms), transform .72s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms); will-change: opacity, transform; }
.motion-ready .reveal-on-scroll.reveal-from-left { transform: translate3d(-38px, 12px, 0); }
.motion-ready .reveal-on-scroll.reveal-from-right { transform: translate3d(38px, 12px, 0); }
.motion-ready .reveal-on-scroll.is-visible { opacity: 1; transform: translate3d(0, 0, 0); will-change: auto; }
.container { width: min(100% - (2 * var(--gutter)), var(--container)); margin-inline: auto; min-width: 0; }
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.skip-link { position: fixed; z-index: 9999; left: 12px; top: -100px; background: var(--orange); color: var(--ink); padding: 10px 16px; border-radius: 0 0 8px 8px; font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 0; }
.skip-link:hover { background: #ffb414; }

.service-bar { background: #0a0b0c; color: #fff; font-size: 13px; }
.service-bar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.service-bar-inner > span, .service-bar-inner a { display: inline-flex; align-items: center; gap: 7px; }
.service-bar-inner > div { display: flex; gap: 22px; }
.service-bar a { color: #e6e6e6; transition: color .2s; }
.service-bar a:hover, .service-bar a:focus-visible { color: var(--orange); }

.site-header { position: sticky; z-index: 80; top: 0; background: rgba(255, 255, 255, .96); border-bottom: 1px solid rgba(16, 18, 20, .1); backdrop-filter: blur(16px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.site-logo { width: 96px; height: auto; max-height: 64px; object-fit: contain; transition: transform .25s, filter .25s; }
.brand:hover .site-logo, .brand:focus-visible .site-logo { transform: translateY(-2px) scale(1.035); filter: drop-shadow(0 7px 10px rgba(16, 18, 20, .18)); }
.brand:focus-visible { outline: 3px solid rgba(244, 163, 0, .32); outline-offset: 5px; border-radius: 7px; }
.main-nav { display: flex; align-items: center; gap: 3px; }
.main-nav > a, .nav-dropdown > button { min-height: 44px; display: inline-flex; align-items: center; gap: 6px; padding: 0 14px; border: 0; border-radius: 8px; background: transparent; color: var(--ink-soft); font-size: 14px; font-weight: 750; cursor: pointer; transition: color .2s, background .2s; }
.main-nav > a:hover, .main-nav > a:focus-visible, .nav-dropdown > button:hover, .nav-dropdown > button:focus-visible, .main-nav .active { color: var(--ink); background: var(--paper); outline: none; }
.main-nav .nav-call { margin-left: 9px; color: var(--ink); background: var(--orange); padding-inline: 18px; box-shadow: 0 5px 0 var(--orange-dark); }
.main-nav .nav-call:hover, .main-nav .nav-call:focus-visible { background: #ffb414; transform: translateY(1px); box-shadow: 0 4px 0 var(--orange-dark); }
.nav-dropdown { position: relative; padding-block: 10px; margin-block: -10px; }
.dropdown-panel { position: absolute; top: calc(100% - 1px); left: 0; width: 310px; display: grid; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(7px); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel, .nav-dropdown.is-open .dropdown-panel { opacity: 1; visibility: visible; transform: none; }
.dropdown-panel a { padding: 10px 12px; border-radius: 7px; font-size: 14px; font-weight: 650; color: var(--ink-soft); }
.dropdown-panel a:hover, .dropdown-panel a:focus-visible { background: var(--paper); color: var(--ink); outline: 2px solid transparent; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 10px; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle .icon { width: 25px; height: 25px; }
.menu-toggle:hover, .menu-toggle:focus-visible { color: var(--ink); border-color: var(--orange-dark); background: #fff4da; box-shadow: 0 6px 18px rgba(16, 18, 20, .1); outline: 3px solid rgba(244, 163, 0, .2); outline-offset: 2px; }
.menu-backdrop { display: none; }
.menu-backdrop:hover { background: rgba(16, 18, 20, .56); }

.eyebrow { margin: 0 0 14px; color: var(--orange-dark); font-size: 12px; line-height: 1.3; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: #ffc857; }
h1, h2, h3, p { overflow-wrap: normal; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 5.7vw, 5.3rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.55rem); }
h3 { font-size: 1.15rem; }
p { line-height: 1.72; }
.section { padding-block: clamp(88px, 10vw, 138px); }
.section-heading { max-width: 760px; margin-bottom: clamp(44px, 5.5vw, 70px); }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 { margin-bottom: 20px; }
.section-lead { margin: 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.16rem); max-width: 680px; line-height: 1.75; }
.hero-lead { max-width: 700px; margin: 22px 0 32px; color: #565d61; font-size: clamp(1.08rem, 1.8vw, 1.32rem); line-height: 1.7; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border: 1px solid transparent; border-radius: 9px; font-weight: 850; cursor: pointer; transition: transform .2s, box-shadow .2s, color .2s, background .2s, border-color .2s; }
.button-primary { background: var(--orange); color: var(--ink); box-shadow: 0 5px 0 var(--orange-dark); }
.button-primary:hover, .button-primary:focus-visible { background: #ffb414; transform: translateY(1px); box-shadow: 0 4px 0 var(--orange-dark); outline: 3px solid rgba(244, 163, 0, .25); outline-offset: 2px; }
.button-secondary { background: #fff; color: var(--ink); border-color: #c9c5bc; box-shadow: 0 5px 0 #d5d0c6; }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--ink); transform: translateY(1px); box-shadow: 0 4px 0 #bbb6ad; outline: 3px solid rgba(16, 18, 20, .12); outline-offset: 2px; }
.button-light { background: #fff; color: var(--ink); box-shadow: 0 5px 0 #a96f00; }
.button-light:hover, .button-light:focus-visible { background: #fff4da; border-color: var(--ink); transform: translateY(1px); box-shadow: 0 4px 0 #704a00; outline: 3px solid rgba(255, 255, 255, .35); outline-offset: 2px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 850; border-bottom: 2px solid var(--orange); padding-bottom: 3px; }
.text-link .icon { transition: transform .2s; }
.text-link:hover, .text-link:focus-visible { color: var(--orange-dark); border-bottom-color: currentColor; }
.text-link:hover .icon, .text-link:focus-visible .icon { transform: translateX(4px); }
.text-link:focus-visible { outline: 3px solid rgba(244, 163, 0, .35); outline-offset: 5px; }

.home-hero { position: relative; overflow: clip; background: linear-gradient(135deg, #fff 0%, #fff 52%, #f0ece2 52%, #f6f3ed 100%); }
.home-hero::before { content: ""; position: absolute; right: -180px; top: -150px; width: 520px; height: 520px; border: 80px solid rgba(244, 163, 0, .12); border-radius: 50%; pointer-events: none; }
.hero-grid { min-height: 670px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: clamp(45px, 7vw, 100px); padding-block: 76px 90px; }
.hero-copy h1 { max-width: 770px; margin-bottom: 0; }
.pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(22, 122, 69, .13); margin-right: 7px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 17px 24px; margin: 34px 0 0; padding: 0; list-style: none; color: #454b4f; font-size: 14px; font-weight: 750; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points .icon { color: var(--orange-dark); }
.hero-visual { position: relative; min-width: 0; }
.hero-image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 180px 180px 24px 24px; background: #dcd7cd; box-shadow: var(--shadow); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transition: transform .7s ease; }
.hero-image-wrap:hover img { transform: scale(1.02); }
.hero-badge { position: absolute; left: -35px; bottom: 35px; display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 12px; background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.hero-badge strong { color: var(--orange); font-size: 24px; }
.hero-badge span { max-width: 110px; font-size: 12px; line-height: 1.3; font-weight: 700; }
.hero-strip { border-top: 1px solid rgba(16, 18, 20, .1); background: rgba(255, 255, 255, .82); }
.hero-strip .container { min-height: 72px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; }
.hero-strip span { text-align: center; color: #60666a; font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; border-right: 1px solid var(--line); }
.hero-strip span:last-child { border-right: 0; }

.services-section { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card { position: relative; min-width: 0; min-height: 325px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .28s, box-shadow .28s, border-color .28s; }
.service-card::after { content: ""; position: absolute; right: -40px; top: -55px; width: 130px; height: 130px; border-radius: 50%; border: 24px solid rgba(244, 163, 0, .1); pointer-events: none; }
.service-card:hover, .service-card:focus-visible { transform: translateY(-7px); border-color: var(--orange); box-shadow: var(--shadow); outline: none; }
.service-number { color: #a39d92; font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; margin: 22px 0 26px; border-radius: 10px; background: var(--orange); color: var(--ink); }
.service-icon .icon { width: 25px; height: 25px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.25rem; }
.service-card p { margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card .text-link { margin-top: auto; font-size: 13px; }

.trust-section { background: var(--ink); color: #fff; }
.trust-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 9vw, 120px); align-items: center; }
.trust-copy .section-heading { margin-bottom: 32px; }
.trust-copy p:not(.eyebrow) { margin-block: 0 18px; color: #c9ccce; font-size: 1.08rem; line-height: 1.78; }
.trust-copy .text-link { margin-top: 10px; color: #fff; }
.trust-copy .text-link:hover, .trust-copy .text-link:focus-visible { color: var(--orange); }
.trust-list { display: grid; }
.trust-list article { position: relative; display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 20px; margin: 0 -24px; padding: 31px 24px; overflow: hidden; border-bottom: 1px solid #353a3e; border-radius: 14px; isolation: isolate; transition: transform .35s cubic-bezier(.2,.75,.25,1), border-color .3s ease, background-color .3s ease, box-shadow .35s ease; }
.trust-list article::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(244, 163, 0, .16), rgba(244, 163, 0, .035) 55%, transparent 82%); opacity: 0; transform: translateX(-16px); transition: opacity .3s ease, transform .4s cubic-bezier(.2,.75,.25,1); }
.trust-list article:last-child { border-bottom: 0; }
.trust-list article > span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid #4f555a; border-radius: 50%; color: var(--orange); transition: transform .4s cubic-bezier(.2,.75,.25,1), color .3s ease, border-color .3s ease, background-color .3s ease, box-shadow .3s ease; }
.trust-list article > span .icon { transition: transform .4s cubic-bezier(.2,.75,.25,1); }
.trust-list h3 { margin: 0 0 10px; transition: color .3s ease; }
.trust-list p { margin: 0; color: #aeb3b6; line-height: 1.68; transition: color .3s ease; }
@media (hover: hover) {
  .trust-list article:hover { transform: translateX(9px); border-color: rgba(244, 163, 0, .34); background: rgba(255, 255, 255, .025); box-shadow: -5px 0 0 var(--orange), 0 16px 36px rgba(0, 0, 0, .22); }
  .trust-list article:hover::before { opacity: 1; transform: translateX(0); }
  .trust-list article:hover > span { transform: scale(1.08); border-color: var(--orange); color: var(--ink); background: var(--orange); box-shadow: 0 0 0 7px rgba(244, 163, 0, .11), 0 8px 22px rgba(244, 163, 0, .2); }
  .trust-list article:hover > span .icon { transform: scale(1.06) rotate(-5deg); }
  .trust-list article:hover h3 { color: var(--orange); }
  .trust-list article:hover p { color: #fff; }
}

.coverage-section { background: #fff; }
.coverage-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(45px, 8vw, 110px); align-items: start; }
.coverage-cloud { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.coverage-cloud li { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #4e5559; background: var(--paper); font-size: 13px; font-weight: 700; transition: transform .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease; }
@media (hover: hover) {
  .coverage-cloud li:hover { transform: translateY(-3px); color: var(--ink); background: #fff4da; border-color: var(--orange); box-shadow: 0 8px 20px rgba(16, 18, 20, .1); }
}

.gallery-section { background: #ece7dc; }
.work-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: dense; gap: 14px; }
.work-card { position: relative; min-width: 0; aspect-ratio: 4 / 5; margin: 0; padding: 0; overflow: hidden; border: 0; border-radius: 12px; background: #d8d2c6; box-shadow: 0 8px 25px rgba(16, 18, 20, .08); cursor: zoom-in; text-align: left; }
.work-card-wide { grid-column: span 2; aspect-ratio: 8 / 5; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.work-card:hover img, .work-card:focus-visible img { transform: scale(1.04); }
.work-caption { position: absolute; inset: auto 0 0; padding: 38px 16px 16px; background: linear-gradient(transparent, rgba(0, 0, 0, .82)); color: #fff; font-size: 11px; font-weight: 750; line-height: 1.55; opacity: 0; transition: opacity .25s; }
.work-zoom { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .55); border-radius: 50%; color: #fff; background: rgba(16, 18, 20, .68); opacity: 0; transform: scale(.84); backdrop-filter: blur(8px); transition: opacity .25s, transform .25s, background .25s; }
.work-zoom .icon { width: 19px; height: 19px; }
.work-card:hover .work-caption, .work-card:focus-visible .work-caption, .work-card:hover .work-zoom, .work-card:focus-visible .work-zoom { opacity: 1; }
.work-card:hover .work-zoom, .work-card:focus-visible .work-zoom { transform: scale(1); background: var(--orange-dark); }
.work-card:focus-visible { outline: 4px solid var(--orange); outline-offset: 4px; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 34px clamp(58px, 8vw, 120px); color: #fff; background: rgba(5, 6, 7, .94); backdrop-filter: blur(12px); }
.lightbox-content { max-width: min(1200px, 100%); max-height: calc(100dvh - 68px); display: grid; grid-template-rows: minmax(0, 1fr) auto; margin: 0; }
.lightbox-content img { width: auto; max-width: 100%; height: auto; max-height: calc(100dvh - 145px); margin: auto; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0, 0, 0, .55); }
.lightbox-content figcaption { display: flex; justify-content: space-between; gap: 24px; padding: 15px 2px 0; color: #e7e7e7; font-size: 13px; }
.lightbox-content figcaption small { flex: 0 0 auto; color: var(--orange); font-weight: 850; }
.lightbox-close, .lightbox-nav { position: fixed; z-index: 1; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .28); color: #fff; background: rgba(255, 255, 255, .08); cursor: pointer; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.lightbox-close { top: 22px; right: 22px; width: 48px; height: 48px; border-radius: 50%; }
.lightbox-close .icon { width: 24px; height: 24px; }
.lightbox-nav { top: 50%; width: 50px; height: 70px; border-radius: 12px; transform: translateY(-50%); }
.lightbox-nav span { font-size: 40px; line-height: 1; transform: translateY(-2px); }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-close:hover, .lightbox-close:focus-visible, .lightbox-nav:hover, .lightbox-nav:focus-visible { color: var(--ink); background: var(--orange); border-color: var(--orange); outline: 3px solid rgba(244, 163, 0, .28); outline-offset: 3px; }
.lightbox-close:hover { transform: rotate(6deg); }
.lightbox-nav:hover, .lightbox-nav:focus-visible { transform: translateY(-50%) scale(1.05); }

.emergency-cta { padding-block: 82px; color: #fff; background: var(--orange-dark); }
.emergency-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.emergency-inner h2 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3.5rem); }
.emergency-inner p:not(.eyebrow) { margin: 0; color: #fff5df; }
.emergency-inner .button-row { flex: 0 0 auto; }

.inner-hero { padding: 50px 0 105px; background: linear-gradient(135deg, #f7f4ed, #fff 65%); border-bottom: 1px solid var(--line); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 68px; padding: 0; list-style: none; color: #767c80; font-size: 13px; }
.breadcrumbs li { display: inline-flex; gap: 7px; }
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { color: var(--ink); text-decoration: underline; }
.inner-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(50px, 10vw, 130px); align-items: end; }
.inner-hero h1 { margin-bottom: 0; max-width: 860px; }
.inner-hero-card { padding: 34px; border-radius: var(--radius); color: #fff; background: var(--ink); box-shadow: var(--shadow); }
.inner-hero-card > span { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 50%; background: var(--orange); color: var(--ink); }
.inner-hero-card p { margin: 0; color: #b8bdc0; font-size: 13px; }
.inner-hero-card strong, .inner-hero-card a { display: block; }
.inner-hero-card strong { margin: 5px 0 18px; font-size: 1.35rem; }
.inner-hero-card a { color: var(--orange); font-size: 1.3rem; font-weight: 900; }
.inner-hero-card a:hover, .inner-hero-card a:focus-visible { color: #fff; transform: translateX(4px); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 5px; outline: none; }

.source-story { background: #fff; }
.source-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(50px, 9vw, 115px); align-items: start; }
.source-copy { position: sticky; top: 120px; align-self: start; padding-block: 6px 18px; }
.source-copy h2 { margin-bottom: 32px; font-size: clamp(2rem, 3vw, 3rem); }
.source-copy p:not(.eyebrow) { margin: 0 0 20px; color: var(--muted); font-size: 1.03rem; line-height: 1.78; }
.source-copy .text-link { margin-top: 8px; }
.fact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.fact-grid article { position: relative; min-height: 235px; padding: 31px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: transform .32s cubic-bezier(.2, .75, .25, 1), border-color .28s, box-shadow .32s, background-color .28s; }
.fact-grid article::after { content: ""; position: absolute; right: -38px; bottom: -48px; width: 120px; height: 120px; border-radius: 50%; background: rgba(244, 163, 0, .11); opacity: 0; pointer-events: none; transform: scale(.7); transition: opacity .28s, transform .32s cubic-bezier(.2, .75, .25, 1); }
.fact-grid article > span { position: relative; z-index: 1; width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 50%; background: var(--orange); transition: transform .32s cubic-bezier(.2, .75, .25, 1), background-color .28s, color .28s, box-shadow .28s; }
.fact-grid article > span .icon { transition: transform .32s cubic-bezier(.2, .75, .25, 1); }
.fact-grid h3 { position: relative; z-index: 1; margin-bottom: 10px; transition: color .25s; }
.fact-grid p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; transition: color .25s; }
@media (hover: hover) {
  .fact-grid article:hover { transform: translateY(-7px); border-color: var(--orange); background: #fff; box-shadow: var(--shadow); }
  .fact-grid article:hover::after { opacity: 1; transform: scale(1); }
  .fact-grid article:hover > span { color: var(--orange); background: var(--ink); box-shadow: 0 0 0 7px rgba(244, 163, 0, .14); transform: scale(1.08); }
  .fact-grid article:hover > span .icon { transform: rotate(-8deg) scale(1.05); }
  .fact-grid article:hover h3 { color: var(--orange-dark); }
  .fact-grid article:hover p { color: #3f4549; }
}

.process-section { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.process-grid article { position: relative; padding: 38px 35px; overflow: hidden; border-top: 3px solid var(--ink); background: #fff; transition: transform .32s cubic-bezier(.2, .75, .25, 1), border-color .28s, box-shadow .32s, background-color .28s; }
.process-grid article > span { display: block; margin-bottom: 45px; color: var(--orange-dark); font-size: 13px; font-weight: 900; transition: color .25s, transform .32s cubic-bezier(.2, .75, .25, 1); }
.process-grid h3 { margin-bottom: 10px; font-size: 1.35rem; transition: color .25s; }
.process-grid p { margin: 0; color: var(--muted); line-height: 1.72; transition: color .25s; }
@media (hover: hover) {
  .process-grid article:hover { transform: translateY(-7px); border-color: var(--orange); background: #fffdf8; box-shadow: var(--shadow); }
  .process-grid article:hover > span { color: var(--ink); transform: translateX(5px) scale(1.08); }
  .process-grid article:hover h3 { color: var(--orange-dark); }
  .process-grid article:hover p { color: #3f4549; }
}

.benefits-section { background: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.benefit-grid article { position: relative; padding: 36px 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .32s cubic-bezier(.2, .75, .25, 1), border-color .28s, box-shadow .32s, background-color .28s; }
.benefit-grid article > .icon { width: 34px; height: 34px; margin-bottom: 35px; color: var(--orange-dark); transition: color .25s, transform .32s cubic-bezier(.2, .75, .25, 1); }
.benefit-grid h3 { transition: color .25s; }
.benefit-grid p { margin: 0; color: var(--muted); line-height: 1.72; transition: color .25s; }
@media (hover: hover) {
  .benefit-grid article:hover { transform: translateY(-7px); border-color: var(--orange); background: #fffaf0; box-shadow: var(--shadow); }
  .benefit-grid article:hover > .icon { color: var(--ink); transform: translateY(-3px) rotate(-6deg) scale(1.12); }
  .benefit-grid article:hover h3 { color: var(--orange-dark); }
  .benefit-grid article:hover p { color: #3f4549; }
}

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(45px, 8vw, 100px); align-items: start; }
.faq-grid .section-heading { margin: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); border-radius: 9px; transition: transform .28s cubic-bezier(.2, .75, .25, 1), border-color .25s, background-color .25s, box-shadow .28s; }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 24px; padding: 23px 12px; border: 0; border-radius: 9px; background: transparent; text-align: left; font-weight: 800; cursor: pointer; transition: color .2s, background .2s, padding .2s; }
.faq-item button span:last-child { color: var(--orange-dark); font-size: 24px; }
.faq-item button:hover { color: var(--orange-dark); background: #fff7e8; padding-inline: 18px; }
.faq-item button:focus-visible { outline: 3px solid rgba(244, 163, 0, .3); outline-offset: 5px; }
@media (hover: hover) {
  .faq-item:hover { transform: translateX(6px); border-color: var(--orange); background: #fff; box-shadow: 0 10px 28px rgba(25, 29, 31, .09); }
  .faq-item:hover button { color: var(--orange-dark); padding-inline: 18px; }
}
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding: 4px 18px 30px 12px; line-height: 1.75; }

.related-section { background: #fff; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.related-grid a { position: relative; min-height: 185px; padding: 30px; border-radius: var(--radius); background: var(--ink); color: #fff; transition: transform .25s, background .25s; }
.related-grid a:hover, .related-grid a:focus-visible { transform: translateY(-5px); background: #1d2226; outline: 3px solid var(--orange); outline-offset: 3px; }
.related-grid span { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.related-grid h3 { max-width: 75%; margin: 25px 0 0; font-size: 1.35rem; }
.related-grid .icon { position: absolute; right: 24px; bottom: 24px; color: var(--orange); }

.about-statement { padding: 44px; border-left: 5px solid var(--orange); background: var(--ink); color: #fff; }
.about-statement .icon { width: 38px; height: 38px; color: var(--orange); }
.about-statement blockquote { margin: 38px 0 15px; font-size: clamp(1.55rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
.about-statement p { margin: 0; color: #b9bdc0; }
.about-copy-section { background: #fff; }
.about-copy-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 10vw, 130px); }
.about-copy-grid p { margin: 0 0 20px; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.values-section { background: var(--paper); }

.contact-details { display: grid; gap: 10px; }
.contact-details > a, .contact-details > div { display: flex; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.contact-details > a:hover, .contact-details > a:focus-visible, .contact-details > div:hover { border-color: var(--orange); outline: 3px solid rgba(244, 163, 0, .2); }
.contact-details .icon { width: 28px; height: 28px; color: var(--orange-dark); }
.contact-details span { display: flex; flex-direction: column; color: var(--muted); font-size: 12px; }
.contact-details strong { color: var(--ink); font-size: 15px; }
.form-section { background: var(--paper); }
.form-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(45px, 8vw, 100px); align-items: start; }
.availability-card { display: flex; gap: 18px; padding: 25px; border-radius: 12px; color: #fff; background: var(--ink); }
.availability-card .icon { width: 30px; height: 30px; color: var(--orange); }
.availability-card p { margin: 4px 0 0; color: #c6cacc; font-size: 14px; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding: clamp(24px, 4vw, 44px); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.field { display: grid; gap: 8px; min-width: 0; }
.field.wide, .privacy-check.wide, .form-actions.wide { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; min-width: 0; border: 1px solid #bcb8af; border-radius: 8px; background-color: #fff; color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s, background-color .2s; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 48px; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, #101214 50%), linear-gradient(135deg, #101214 50%, transparent 50%), linear-gradient(to right, #ded9cf, #ded9cf); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%, calc(100% - 42px) 50%; background-size: 6px 6px, 6px 6px, 1px 24px; background-repeat: no-repeat; }
.field select:hover { border-color: var(--orange-dark); background-color: #fffbf3; }
.field select option { color: var(--ink); background: #fff; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange-dark); box-shadow: 0 0 0 4px rgba(244, 163, 0, .16); }
.field input:invalid:not(:placeholder-shown), .field textarea:invalid:not(:placeholder-shown) { border-color: #b52626; }
.privacy-check { display: flex; align-items: flex-start; gap: 11px; color: #51575b; font-size: 13px; }
.privacy-check input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange-dark); }
.privacy-check a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
.privacy-check a:hover, .privacy-check a:focus-visible { color: var(--orange-dark); text-decoration-thickness: 2px; outline: 2px solid rgba(244, 163, 0, .24); outline-offset: 3px; }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-success { margin: 0; color: var(--green); font-size: 13px; font-weight: 750; }
.contact-coverage { background: #fff; }

.legal-hero { padding: 42px 0 72px; color: #fff; background: var(--ink); }
.legal-hero .breadcrumbs a, .legal-hero .breadcrumbs span { color: #bcc1c4; }
.legal-hero .breadcrumbs ol { margin-bottom: 58px; }
.legal-hero h1 { margin-bottom: 18px; }
.legal-hero > .container > p:last-child { color: #b7bbbe; }
.legal-content { background: var(--paper); }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(45px, 8vw, 100px); align-items: start; }
.legal-layout aside { position: sticky; top: 120px; display: grid; gap: 10px; padding: 24px; border-radius: 14px; background: #fff; border: 1px solid var(--line); font-size: 13px; }
.legal-layout aside strong { font-size: 18px; }
.legal-layout aside a { color: var(--muted); }
.legal-layout aside a:hover, .legal-layout aside a:focus-visible { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 4px; outline: none; }
.legal-layout article { padding: clamp(25px, 5vw, 65px); border: 1px solid transparent; border-radius: var(--radius); background: #fff; transition: border-color .28s, box-shadow .32s, background-color .28s; }
.legal-layout article section { margin-bottom: 48px; }
.legal-layout article section:last-child { margin-bottom: 0; }
.legal-layout h2 { margin-bottom: 18px; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.legal-layout p, .legal-layout li { color: #555b5f; line-height: 1.82; }
.legal-layout p { margin: 0 0 20px; }
.legal-layout section > *:last-child { margin-bottom: 0; }
@media (hover: hover) {
  .legal-layout article:hover { border-color: rgba(244, 163, 0, .45); background: #fffefa; box-shadow: var(--shadow); }
}

.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; padding-block: 90px; }
.not-found h1 { max-width: 800px; margin-inline: auto; }
.not-found .button-row { justify-content: center; margin-top: 30px; }

.site-footer { color: #fff; background: #0b0d0e; }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(35px, 6vw, 80px); padding-block: 76px; }
.footer-brand .brand { width: max-content; padding: 10px 14px; border-radius: 10px; background: #fff; }
.footer-brand .site-logo { width: 132px; max-height: none; }
.footer-brand > p { max-width: 350px; margin: 25px 0; color: #aeb3b6; font-size: 14px; }
.footer-contact { display: grid; gap: 10px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 750; }
.footer-contact a:hover, .footer-contact a:focus-visible { color: var(--orange); }
.footer-main h2, .footer-heading { margin-bottom: 22px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.footer-main ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-main li a { color: #b9bdc0; font-size: 13px; }
.footer-main li a:hover, .footer-main li a:focus-visible { color: #fff; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 4px; }
.footer-bottom { border-top: 1px solid #2e3336; color: #8d9396; font-size: 12px; }
.footer-bottom .container { min-height: 65px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-bottom a { color: #fff; font-weight: 800; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; transition: color .2s; }
.footer-bottom a:hover, .footer-bottom a:focus-visible { color: var(--orange); outline: none; }

.floating-actions { position: fixed; z-index: 70; right: 18px; bottom: 22px; display: grid; gap: 10px; }
.floating-actions a { width: 52px; height: 52px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; color: #fff; background: var(--ink); box-shadow: 0 8px 25px rgba(0, 0, 0, .2); transition: transform .2s, background .2s; }
.floating-actions a:last-child { background: var(--green); }
.floating-actions a:hover, .floating-actions a:focus-visible { transform: translateY(-3px); background: var(--orange-dark); outline: 3px solid rgba(244, 163, 0, .3); outline-offset: 2px; }
.floating-actions .icon { width: 23px; height: 23px; }
.cookie-notice { position: fixed; z-index: 100; left: 20px; bottom: 20px; width: min(560px, calc(100% - 40px)); display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px; border: 1px solid #3c4246; border-radius: 14px; color: #fff; background: #15191b; box-shadow: 0 20px 70px rgba(0, 0, 0, .3); }
.cookie-notice p { margin: 4px 0 0; color: #c8ccce; font-size: 13px; }
.cookie-notice p a { color: var(--orange); text-decoration: underline; }
.cookie-notice p a:hover, .cookie-notice p a:focus-visible { color: #fff; text-decoration-thickness: 2px; outline: none; }
.cookie-notice > div:last-child { display: flex; gap: 8px; flex: 0 0 auto; }
.cookie-notice .button { min-height: 42px; padding: 8px 13px; font-size: 12px; }

@media (max-width: 1060px) {
  .main-nav > a, .nav-dropdown > button { padding-inline: 9px; }
  .main-nav .nav-call { display: none; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr); gap: 45px; }
}

@media (max-width: 820px) {
  .service-bar-inner > div a:last-child { display: none; }
  .menu-toggle { display: inline-flex; }
  .main-nav { position: fixed; z-index: 90; top: 116px; right: var(--gutter); left: var(--gutter); max-height: calc(100dvh - 140px); display: none; overflow-y: auto; align-items: stretch; flex-direction: column; gap: 2px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav > a, .nav-dropdown > button { width: 100%; justify-content: space-between; padding: 11px 13px; }
  .nav-dropdown { padding: 0; margin: 0; }
  .dropdown-panel { position: static; width: 100%; max-height: 0; padding: 0 10px; overflow: hidden; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: max-height .3s, padding .3s; }
  .nav-dropdown:not(.is-open) .dropdown-panel { max-height: 0; }
  .nav-dropdown.is-open .dropdown-panel { max-height: 560px; padding-block: 8px; background: var(--paper); }
  .menu-backdrop { position: fixed; z-index: 75; inset: 116px 0 0; display: block; border: 0; background: rgba(16, 18, 20, .48); }
  .hero-grid, .inner-hero-grid, .trust-grid, .coverage-grid, .source-grid, .faq-grid, .form-layout, .about-copy-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: 0; padding-block: 68px 80px; }
  .hero-visual { max-width: 530px; }
  .hero-image-wrap { aspect-ratio: 5 / 4; border-radius: 120px 120px 20px 20px; }
  .hero-badge { left: 20px; }
  .hero-strip .container { grid-template-columns: repeat(3, 1fr); padding-block: 12px; }
  .hero-strip span { padding-block: 8px; }
  .hero-strip span:nth-child(3) { border-right: 0; }
  .source-copy, .legal-layout aside { position: static; }
  .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid, .benefit-grid, .related-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .emergency-inner { align-items: flex-start; flex-direction: column; }
  .inner-hero-card { max-width: 430px; }
  .legal-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .service-bar-inner { justify-content: center; }
  .service-bar-inner > div { display: none; }
  .header-inner { min-height: 72px; }
  .main-nav { top: 110px; max-height: calc(100dvh - 128px); }
  .menu-backdrop { inset-block-start: 110px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.65rem); }
  .section { padding-block: 80px; }
  .hero-grid { padding-block: 55px 68px; }
  .hero-lead { margin-block: 18px 26px; }
  .button-row, .button-row .button { width: 100%; }
  .hero-points { display: grid; }
  .hero-image-wrap { aspect-ratio: 4 / 5; border-radius: 100px 100px 16px 16px; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; justify-content: center; }
  .hero-strip .container { grid-template-columns: repeat(2, 1fr); }
  .hero-strip span:nth-child(3) { border-right: 1px solid var(--line); }
  .hero-strip span:nth-child(even) { border-right: 0; }
  .service-grid, .fact-grid, .work-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 305px; }
  .work-card, .work-card-wide { grid-column: auto; aspect-ratio: 4 / 5; }
  .work-caption { opacity: 1; }
  .work-zoom { opacity: 1; transform: scale(1); }
  .lightbox { padding: 76px 16px 88px; }
  .lightbox-content img { max-height: calc(100dvh - 190px); }
  .lightbox-content figcaption { padding-inline: 2px; }
  .lightbox-nav { top: auto; bottom: 18px; width: 54px; height: 50px; transform: none; }
  .lightbox-nav:hover, .lightbox-nav:focus-visible { transform: scale(1.04); }
  .lightbox-prev { left: calc(50% - 62px); }
  .lightbox-next { right: calc(50% - 62px); }
  .inner-hero { padding-bottom: 82px; }
  .breadcrumbs ol { margin-bottom: 45px; }
  .inner-hero-grid { gap: 38px; }
  .fact-grid article { min-height: 220px; }
  .contact-form { grid-template-columns: 1fr; border-radius: 18px; }
  .field.wide, .privacy-check.wide, .form-actions.wide { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; padding-block: 68px; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
  .floating-actions { right: 12px; bottom: 12px; }
  .floating-actions a { width: 48px; height: 48px; }
  .cookie-notice { left: 12px; bottom: 12px; width: calc(100% - 24px); align-items: stretch; flex-direction: column; }
  .cookie-notice > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* WordPress + Flat Theme Manager 2.5.4 */
.admin-bar .site-header { top: 32px; }
.ftm-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; background: inherit; }
.ftm-hero-media__image, .ftm-hero-media__video, .ftm-hero-media__mobile-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--ftm-hero-position, center center); }
.ftm-hero-media__video { display: block; }
.ftm-hero-media__mobile-fallback { display: none; }
.ftm-hero-media__overlay { position: absolute; inset: 0; background: #000; opacity: var(--ftm-hero-overlay, 0); pointer-events: none; }
.ftm-hero-media__play { position: absolute; right: 22px; bottom: 22px; z-index: 3; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(20,27,16,.68); color: #fff; cursor: pointer; pointer-events: auto; backdrop-filter: blur(7px); }
.ftm-hero-media__play[hidden] { display: none; }
.ftm-hero-media__play:hover, .ftm-hero-media__play:focus-visible { background: rgba(255,255,255,.94); color: var(--ink); outline: 2px solid #fff; outline-offset: 3px; transform: scale(1.06); }
.hero-image-wrap > .ftm-hero-media { border-radius: inherit; }
.hero-image-wrap .ftm-hero-media__image, .hero-image-wrap .ftm-hero-media__video { transition: transform .7s ease; }
.hero-image-wrap:hover .ftm-hero-media__image, .hero-image-wrap:hover .ftm-hero-media__video { transform: scale(1.02); }

.hero-eyebrow-row { display: flex; align-items: center; margin-bottom: 14px; }
.hero-eyebrow-row .eyebrow { margin: 0; }
.hero-title, .service-hero__title, .about-hero__title, .contact-hero__title, .legal-page__title { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
.hero-title, .service-hero__title, .about-hero__title, .contact-hero__title, .legal-page__title { font-size: clamp(2.65rem, 5.7vw, 5.3rem); }
.section-heading__title { margin: 0 0 20px; font-size: clamp(2rem, 3.7vw, 3.55rem); line-height: 1.08; letter-spacing: -.035em; }
.service-card__title, .trust-card__title, .fact-card__title, .process-card__title, .benefit-card__title { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
.service-card__title { margin-bottom: 15px; font-size: 1.25rem; }
.service-card__text { margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.trust-card__title { margin: 0 0 10px; transition: color .3s ease; }
.trust-card__text { margin: 0; color: #aeb3b6; line-height: 1.68; transition: color .3s ease; }
.fact-card__title { position: relative; z-index: 1; margin-bottom: 10px; transition: color .25s; }
.fact-card__text { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; transition: color .25s; }
.process-card__title { margin-bottom: 10px; font-size: 1.35rem; transition: color .25s; }
.process-card__text, .benefit-card__text { margin: 0; color: var(--muted); line-height: 1.72; transition: color .25s; }
.benefit-card__title { transition: color .25s; }
.source-copy > p, .source-copy > .ftm-tag--p { margin: 0 0 20px; color: var(--muted); font-size: 1.03rem; line-height: 1.78; }
.source-copy > .eyebrow { color: var(--orange-dark); font-size: 12px; line-height: 1.3; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }

.custom-section--paper { background: var(--paper); }
.custom-section--primary { color: var(--ink); background: var(--orange); }
.custom-section--dark { color: #fff; background: var(--ink); }
.custom-section__inner { display: grid; gap: 24px; }
.custom-section--two-columns .custom-section__inner, .custom-section--image-left .custom-section__inner, .custom-section--image-right .custom-section__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.custom-section--full .container { width: 100%; max-width: none; }
.custom-block--image { margin: 0; overflow: hidden; border-radius: var(--radius); }
.custom-block--image img { width: 100%; height: auto; transition: transform .5s ease; }
.custom-block--image:hover img { transform: scale(1.025); }
.custom-block--gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.custom-block--gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; transition: transform .4s ease, box-shadow .4s ease; }
.custom-block--gallery img:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow); }

.wpcf7 { width: 100%; }
.wpcf7 form { margin: 0; }
.wpcf7-not-valid-tip { margin-top: 7px; color: #8f2600; font-size: 13px; font-weight: 700; }
.wpcf7 form .wpcf7-response-output { margin: 18px 0 0; padding: 14px 16px; border: 1px solid var(--orange-dark); border-radius: 10px; background: #fff8e8; }
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--green); background: #effbf4; }
.wpcf7-spinner { margin: 0 0 0 12px; vertical-align: middle; }
.contact-form--fallback button[disabled] { opacity: .72; cursor: not-allowed; }
.wp-page-content { padding: clamp(25px, 5vw, 65px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.wp-page-content img:not(.custom-logo) { border-radius: 12px; transition: transform .45s ease, box-shadow .45s ease; }
.wp-page-content img:not(.custom-logo):hover { transform: scale(1.015); box-shadow: var(--shadow); }

@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
@media (max-width: 767px), (prefers-reduced-motion: reduce) {
  .ftm-hero-media.has-mobile-fallback .ftm-hero-media__video { display: none; }
  .ftm-hero-media.has-mobile-fallback .ftm-hero-media__mobile-fallback { display: block; }
}
@media (max-width: 760px) {
  .custom-section--two-columns .custom-section__inner, .custom-section--image-left .custom-section__inner, .custom-section--image-right .custom-section__inner { grid-template-columns: 1fr; }
  .custom-block--gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
