
:root {
  --bg: #0b0c0f;
  --bg-soft: #101218;
  --surface: #151820;
  --surface-2: #1b1f28;
  --surface-3: #242934;
  --text: #f6f7f8;
  --muted: #a7adb8;
  --muted-2: #7d8490;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.2);
  --accent: #e32636;
  --accent-dark: #af1220;
  --accent-soft: rgba(227,38,54,.14);
  --white: #fff;
  --black: #050506;
  --success: #6fd6a6;
  --shadow: 0 30px 80px rgba(0,0,0,.38);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --container: 1240px;
  --header-h: 88px;
  --ease: cubic-bezier(.2,.7,.2,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1; background: radial-gradient(circle at 8% 15%, rgba(227,38,54,.08), transparent 28rem), radial-gradient(circle at 88% 70%, rgba(75,91,140,.07), transparent 34rem); }
body.nav-open { overflow: hidden; }
img, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0; color: var(--text); font-weight: 760; line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(3.2rem, 8vw, 7.6rem); }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
::selection { background: var(--accent); color: white; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(78px, 9vw, 132px) 0; }
.section-dark { background: #090a0d; }
.section-surface { background: linear-gradient(180deg, var(--surface), #11131a); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 11px 16px; border-radius: 8px; background: white; color: black; transform: translateY(-180%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #ff5b67; font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.section-heading { max-width: 820px; margin-bottom: 56px; }
.section-heading h2 { margin-top: 17px; }
.section-heading p { max-width: 680px; margin-top: 22px; font-size: 1.08rem; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-center .eyebrow { justify-content: center; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.section-heading-row .section-heading { margin-bottom: 0; }
.section-action { display: flex; justify-content: center; margin-top: 42px; }
.lead { color: var(--text); font-size: clamp(1.18rem, 2vw, 1.45rem); line-height: 1.55; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 56px; padding: 0 25px; border: 1px solid var(--accent); border-radius: 999px; background: var(--accent); color: white; font-size: .92rem; font-weight: 800; letter-spacing: .01em; cursor: pointer; transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s; }
.button svg, .text-link svg, .contact-card > svg, .back-to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); background: #f03040; border-color: #f03040; box-shadow: 0 15px 30px rgba(227,38,54,.22); }
.button:hover svg, .text-link:hover svg, .contact-card:hover > svg { transform: translateX(4px); }
.button-small { min-height: 44px; padding-inline: 19px; font-size: .84rem; }
.button-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.035); }
.button-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.36); box-shadow: none; }
.button-light { color: #101115; background: white; border-color: white; }
.button-light:hover { color: #101115; background: #f1f2f4; border-color: #f1f2f4; box-shadow: 0 15px 35px rgba(0,0,0,.18); }
.button-ghost-light { color: white; background: transparent; border-color: rgba(255,255,255,.44); }
.button-ghost-light:hover { background: rgba(255,255,255,.1); border-color: white; box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: white; font-weight: 750; font-size: .92rem; }
.text-link::before { content: ""; width: 20px; height: 2px; background: var(--accent); transition: width .25s var(--ease); }
.text-link:hover::before { width: 30px; }
.text-link-large { margin-top: 12px; font-size: 1rem; }
:focus-visible { outline: 3px solid rgba(255,91,103,.85); outline-offset: 4px; }

/* Header and navigation */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h); border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, backdrop-filter .25s; }
.site-header.is-scrolled { background: rgba(9,10,13,.88); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; position: relative; z-index: 3; align-items: center; flex: 0 0 auto; }
.brand img { width: 108px; height: auto; filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
.site-nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { position: relative; padding: 12px 0; color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 720; transition: color .2s; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 6px; height: 2px; background: var(--accent); transition: right .25s var(--ease); }
.nav-link:hover, .nav-link[aria-current="page"] { color: white; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; position: relative; z-index: 3; width: 48px; height: 48px; padding: 0; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(12,13,16,.5); cursor: pointer; }
.nav-toggle span { position: absolute; left: 13px; width: 21px; height: 2px; background: white; transition: transform .25s, top .25s, opacity .2s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Hero */
.hero, .page-hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-home { min-height: min(920px, 100svh); display: flex; align-items: flex-end; padding: calc(var(--header-h) + 60px) 0 95px; }
.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-home .hero-media img { object-position: 58% center; }
.hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4,5,7,.94) 0%, rgba(4,5,7,.7) 48%, rgba(4,5,7,.22) 78%, rgba(4,5,7,.42) 100%), linear-gradient(0deg, rgba(5,6,8,.9) 0%, transparent 45%, rgba(5,6,8,.3) 100%); }
.hero-home::after, .page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 75% 68%, rgba(24,66,198,.18), transparent 32rem); pointer-events: none; }
.hero-content { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 60px; }
.hero-copy { max-width: 790px; }
.hero-copy h1 { margin: 20px 0 26px; font-size: clamp(4rem, 9.5vw, 8.4rem); }
.hero-copy h1 span { color: transparent; -webkit-text-stroke: 1.6px rgba(255,255,255,.72); }
.hero-copy > p { max-width: 670px; color: rgba(255,255,255,.75); font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: grid; gap: 1px; width: 195px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-trust > div { padding: 20px 22px; background: rgba(10,11,14,.78); backdrop-filter: blur(14px); }
.hero-trust strong { display: block; color: white; font-size: 1.65rem; line-height: 1; }
.hero-trust span { display: block; margin-top: 7px; color: var(--muted); font-size: .73rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.hero-scroll { position: absolute; right: 28px; bottom: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.62); font-size: .64rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll span { width: 1px; height: 42px; background: linear-gradient(180deg, white, transparent); }
.page-hero { min-height: 570px; display: flex; align-items: flex-end; padding: calc(var(--header-h) + 80px) 0 84px; }
.page-hero .hero-media img { object-position: center 44%; }
.page-hero-services .hero-media img { object-position: center 54%; }
.page-hero-contact .hero-media img { object-position: center 44%; }
.page-hero .hero-overlay { background: linear-gradient(90deg, rgba(5,6,8,.94), rgba(5,6,8,.56) 60%, rgba(5,6,8,.34)), linear-gradient(0deg, rgba(5,6,8,.88), transparent 60%); }
.page-hero-content { max-width: 900px; }
.page-hero-content h1 { margin: 16px 0 20px; }
.page-hero-content p { max-width: 720px; color: rgba(255,255,255,.74); font-size: 1.2rem; }

/* Ribbon */
.contact-ribbon { position: relative; z-index: 4; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0e1015; }
.contact-ribbon-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.contact-ribbon-grid > a { display: flex; align-items: center; gap: 17px; min-height: 105px; padding: 20px 35px; border-right: 1px solid var(--line); transition: background .25s; }
.contact-ribbon-grid > a:first-child { border-left: 1px solid var(--line); }
.contact-ribbon-grid > a:hover { background: var(--surface); }
.contact-ribbon-grid svg { width: 25px; height: 25px; fill: none; stroke: var(--accent); stroke-width: 1.7; }
.contact-ribbon-grid small, .contact-ribbon-grid strong { display: block; }
.contact-ribbon-grid small { color: var(--muted-2); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-ribbon-grid strong { margin-top: 2px; color: white; font-size: .95rem; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); transition: transform .3s var(--ease), border-color .3s, background .3s; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(227,38,54,.55); background: linear-gradient(145deg, rgba(227,38,54,.1), rgba(255,255,255,.02)); }
.service-card-top, .service-detail-head { display: flex; justify-content: space-between; align-items: flex-start; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: #ff5b67; }
.service-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.service-number { color: var(--muted-2); font-size: .73rem; font-weight: 850; letter-spacing: .15em; }
.service-card h3 { margin-top: 48px; }
.service-card p { margin: 15px 0 26px; }
.service-card .text-link { margin-top: auto; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail { scroll-margin-top: 120px; min-height: 490px; padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--surface-2), #111319); }
.service-detail:nth-child(3n+2) { background: linear-gradient(145deg, rgba(227,38,54,.11), #111319 58%); }
.service-icon-large { width: 64px; height: 64px; }
.service-icon-large svg { width: 30px; height: 30px; }
.service-detail h2 { margin: 50px 0 17px; font-size: clamp(2rem, 3.8vw, 3.45rem); }
.service-detail .lead { max-width: 580px; }
.service-detail > p:not(.lead) { max-width: 620px; }
.service-detail .text-link { margin-top: 18px; }

/* Splits */
.split-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(45px, 7vw, 100px); }
.split-grid-reverse .split-content { order: 1; }
.split-grid-reverse .split-media { order: 2; }
.split-media { position: relative; min-width: 0; }
.split-media picture, .split-media > img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-media::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1; border: 1px solid rgba(227,38,54,.34); border-radius: var(--radius-lg); }
.image-badge { position: absolute; right: -24px; bottom: 32px; min-width: 170px; padding: 22px 26px; border-radius: var(--radius); background: var(--accent); box-shadow: var(--shadow); }
.image-badge strong, .image-badge span { display: block; }
.image-badge strong { font-size: 1.25rem; }
.image-badge span { font-size: .78rem; font-weight: 700; opacity: .82; }
.split-content h2 { margin: 17px 0 25px; }
.split-content > p { font-size: 1.08rem; }
.check-list { display: grid; gap: 13px; margin: 30px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; color: #dfe2e8; }
.check-list svg { flex: 0 0 22px; width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.number-list { display: grid; gap: 0; margin: 32px 0 0; padding: 0; list-style: none; }
.number-list li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.number-list li > span { color: var(--accent); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.number-list strong { color: white; font-size: 1.05rem; }
.number-list p { margin: 4px 0 0; }

/* Process */
.process-section { overflow: hidden; }
.process-section::before { content: "DH"; position: absolute; right: -3vw; top: 40px; color: rgba(255,255,255,.018); font-size: 25vw; font-weight: 900; line-height: 1; pointer-events: none; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-grid::before { content: ""; position: absolute; left: 16.6%; right: 16.6%; top: 57px; border-top: 1px dashed rgba(255,255,255,.2); z-index: -1; }
.process-card { padding: 30px; text-align: center; }
.process-card > span { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 28px; border: 1px solid var(--accent); border-radius: 50%; background: var(--bg); color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.process-card h3 { margin-bottom: 13px; }
.process-card p { max-width: 350px; margin-inline: auto; }

/* Locations */
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.location-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #101218; }
.location-card::before { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; top: -110px; border: 45px solid rgba(227,38,54,.08); border-radius: 50%; transition: transform .4s var(--ease); }
.location-card:hover::before { transform: scale(1.18); }
.location-card-index { position: absolute; right: 24px; top: 24px; color: rgba(255,255,255,.14); font-size: 3.4rem; font-weight: 850; line-height: 1; }
.location-card-label { width: max-content; padding: 7px 11px; border-radius: 999px; background: var(--accent-soft); color: #ff6671; font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.location-card h3 { margin: 70px 0 17px; font-size: 1.8rem; }
.location-address { color: white; font-size: 1.05rem; }
.location-note { display: flex; align-items: center; gap: 9px; margin-top: 8px; font-size: .84rem; }
.location-note svg { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 1.7; }
.location-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 26px; }
.location-actions .button { min-height: 48px; padding-inline: 18px; }
.location-grid-large .location-card { min-height: 460px; padding: 38px; }
.location-grid-large .location-card h3 { margin-top: 105px; font-size: 2rem; }
.location-info-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.location-info-main h2 { margin: 17px 0 24px; }
.location-contact-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.location-info-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.02); }
.location-info-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; padding: 23px 25px; border-bottom: 1px solid var(--line); }
.location-info-list > div:last-child { border-bottom: 0; }
.location-info-list > div > svg { width: 25px; height: 25px; fill: none; stroke: var(--accent); stroke-width: 1.7; }
.location-info-list span, .location-info-list a, .location-info-list strong { display: block; }
.location-info-list span { color: var(--muted-2); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.location-info-list a, .location-info-list strong { margin-top: 3px; color: white; font-size: 1rem; }

/* Gallery */
.gallery-preview { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px; }
.gallery-preview-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); }
.gallery-preview-wide { grid-column: span 2; grid-row: span 2; }
.gallery-preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .4s; }
.gallery-preview-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.2)); transition: background .3s; }
.gallery-preview-item:hover img { transform: scale(1.05); filter: contrast(1.05); }
.gallery-preview-item:hover::after { background: rgba(227,38,54,.12); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-item { position: relative; grid-column: span 4; overflow: hidden; border-radius: var(--radius-sm); background: var(--surface); aspect-ratio: 3/2; }
.gallery-item:nth-child(7n+1), .gallery-item:nth-child(7n+5) { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; }
.gallery-item img { object-fit: cover; transition: transform .55s var(--ease), filter .4s; }
.gallery-item-overlay { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; align-items: center; padding: 42px 18px 16px; background: linear-gradient(0deg, rgba(0,0,0,.8), transparent); opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; }
.gallery-item-overlay span { font-size: .72rem; font-weight: 850; letter-spacing: .14em; }
.gallery-item-overlay svg { width: 23px; height: 23px; fill: none; stroke: white; stroke-width: 1.7; }
.gallery-item:hover img { transform: scale(1.045); filter: brightness(.84); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; transform: none; }
.lightbox { width: min(96vw, 1280px); max-width: none; height: min(92vh, 900px); max-height: none; padding: 0; border: 0; border-radius: var(--radius); background: #090a0d; color: white; box-shadow: 0 50px 120px rgba(0,0,0,.7); overflow: hidden; }
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(8px); }
.lightbox-inner { position: relative; width: 100%; height: 100%; display: grid; grid-template-rows: 1fr auto; }
.lightbox-stage { min-height: 0; display: grid; place-items: center; padding: 60px 75px 20px; }
.lightbox-stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }
.lightbox-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 22px 20px; border-top: 1px solid var(--line); }
.lightbox-caption { margin: 0; color: var(--muted); font-size: .9rem; }
.lightbox-counter { color: var(--muted-2); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.lightbox-close, .lightbox-nav { position: absolute; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(10,11,14,.72); color: white; cursor: pointer; backdrop-filter: blur(10px); transition: background .2s, transform .2s; }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--accent); transform: scale(1.04); }
.lightbox-close { right: 18px; top: 18px; font-size: 1.5rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 1.55rem; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.04); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* About */
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.intro-title h2 { margin-top: 17px; }
.intro-copy p { font-size: 1.07rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 80px; }
.stat-card { min-height: 170px; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); }
.stat-card strong { color: white; font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: .9; letter-spacing: -.06em; }
.stat-card span { margin-top: 15px; color: var(--muted); font-size: .78rem; font-weight: 780; letter-spacing: .06em; text-transform: uppercase; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { min-height: 310px; padding: 28px; border-top: 2px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.035), transparent); }
.value-card:hover { border-color: var(--accent); }
.value-card > span { color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .14em; }
.value-card h3 { margin: 68px 0 15px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-h) + 40px); }
.faq-intro h2 { margin: 17px 0 22px; }
.faq-intro .button { margin-top: 20px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 4px; color: white; font-size: 1.08rem; font-weight: 740; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 26px; width: 26px; height: 26px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 5px; right: 5px; top: 12px; height: 2px; background: var(--accent); transition: transform .2s; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 700px; padding: 0 50px 24px 4px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.contact-intro h2 { margin: 17px 0 20px; }
.contact-cards { display: grid; gap: 12px; margin-top: 35px; }
.contact-card { display: grid; grid-template-columns: 48px 1fr 24px; align-items: center; gap: 15px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); transition: border-color .2s, background .2s; }
.contact-card:hover { border-color: rgba(227,38,54,.55); background: var(--accent-soft); }
.contact-card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: #ff6975; }
.contact-card-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.contact-card small, .contact-card strong { display: block; overflow-wrap: anywhere; }
.contact-card small { color: var(--muted-2); font-size: .67rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { color: white; font-size: .9rem; }
.contact-locations { margin-top: 40px; }
.contact-locations h3 { margin-bottom: 18px; font-size: 1.05rem; }
.contact-locations > div { display: grid; grid-template-columns: 35px 1fr; gap: 12px; padding: 15px 0; border-top: 1px solid var(--line); }
.contact-locations > div > span { color: var(--accent); font-size: .7rem; font-weight: 850; letter-spacing: .1em; }
.contact-locations p { margin: 0; font-size: .9rem; }
.contact-locations strong { color: white; }
.contact-form-wrap { padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--surface-2), #111319); }
.form-heading h2 { margin: 16px 0 18px; font-size: clamp(2rem, 4vw, 3.6rem); }
.form-heading p { max-width: 680px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 23px 18px; margin-top: 36px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span:first-child { color: #dfe2e8; font-size: .78rem; font-weight: 760; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(5,6,8,.45); color: white; padding: 14px 15px; outline: none; transition: border-color .2s, box-shadow .2s, background .2s; }
.contact-form input, .contact-form select { min-height: 54px; }
.contact-form textarea { resize: vertical; min-height: 155px; }
.contact-form select { color-scheme: dark; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #737b88; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(227,38,54,.14); background: rgba(5,6,8,.7); }
.form-full { grid-column: 1 / -1; }
.checkbox-label { grid-template-columns: 20px 1fr !important; align-items: start; gap: 11px !important; }
.checkbox-label input { width: 18px; height: 18px; min-height: 0; margin-top: 3px; accent-color: var(--accent); }
.checkbox-label span { color: var(--muted) !important; font-weight: 500 !important; line-height: 1.55; }
.checkbox-label a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.form-submit-row { display: flex; align-items: center; gap: 20px; margin-top: 28px; }
.form-status { margin: 0; font-size: .88rem; }
.noscript-note { margin-top: 15px; padding: 12px 15px; border-radius: 8px; background: rgba(255,255,255,.05); }

/* Final CTA */
.final-cta-section { padding-top: 35px; }
.final-cta { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: clamp(38px, 6vw, 75px); border-radius: var(--radius-lg); background: linear-gradient(130deg, #ed2839, #b70f1f); box-shadow: 0 30px 80px rgba(164,12,28,.3); }
.final-cta::after { content: ""; position: absolute; width: 430px; height: 430px; right: -190px; top: -220px; border: 75px solid rgba(255,255,255,.08); border-radius: 50%; }
.final-cta .eyebrow { color: rgba(255,255,255,.8); }
.final-cta h2 { max-width: 760px; margin-top: 15px; font-size: clamp(2.1rem, 4.7vw, 4.4rem); }
.final-cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 0 0 auto; gap: 12px; }

/* Legal */
.legal-hero { padding: calc(var(--header-h) + 90px) 0 70px; border-bottom: 1px solid var(--line); background: linear-gradient(150deg, rgba(227,38,54,.14), transparent 45%); }
.legal-hero h1 { margin-top: 14px; font-size: clamp(3rem, 7vw, 6rem); }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 820px); justify-content: space-between; gap: 80px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 35px); display: grid; gap: 5px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.02); }
.legal-nav strong { margin-bottom: 8px; color: white; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-nav a { padding: 7px 0; color: var(--muted); font-size: .88rem; }
.legal-nav a:hover { color: white; }
.legal-content section { scroll-margin-top: 120px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 17px; font-size: clamp(1.65rem, 3vw, 2.4rem); letter-spacing: -.025em; }
.legal-content h3 { margin: 26px 0 10px; font-size: 1.15rem; }
.legal-content p { max-width: 760px; }
.legal-content a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.legal-note { padding: 20px 22px; border: 1px solid rgba(246,186,73,.35); border-radius: var(--radius-sm); background: rgba(246,186,73,.08); }
.legal-note strong { color: #f7cf7e; }
.legal-note p { margin: 5px 0 0; color: #d9c9a8; font-size: .9rem; }
.legal-updated { margin-top: 30px; font-size: .82rem; }

/* Footer */
.site-footer { position: relative; padding: 95px 0 0; border-top: 1px solid var(--line); background: #08090c; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .6fr 1.05fr 1.15fr; gap: clamp(32px, 5vw, 70px); padding-bottom: 70px; }
.brand-footer img { width: 135px; }
.footer-brand > p { max-width: 320px; margin: 22px 0 25px; }
.footer-contact-inline { display: grid; gap: 8px; }
.footer-contact-inline a { display: flex; align-items: center; gap: 10px; color: #dfe2e8; font-size: .88rem; }
.footer-contact-inline svg { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 1.7; }
.footer-title { margin-bottom: 22px; font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-links, .footer-locations { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: var(--muted); font-size: .9rem; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-locations li { padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.footer-location-label { display: block; color: var(--accent); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-locations a { display: block; margin-top: 3px; color: var(--muted); font-size: .83rem; line-height: 1.5; }
.footer-locations a:hover { color: white; }
.footer-cta { padding: 28px; border-radius: var(--radius); background: var(--surface); }
.footer-cta h2 { margin: 13px 0 14px; font-size: 1.7rem; }
.footer-cta p { font-size: .88rem; }
.footer-cta .button { width: 100%; margin-top: 10px; }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; font-size: .78rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted); font-size: .78rem; }
.footer-legal a:hover { color: white; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(10,11,14,.8); color: white; opacity: 0; visibility: hidden; transform: translateY(12px); cursor: pointer; backdrop-filter: blur(12px); transition: opacity .25s, visibility .25s, transform .25s, background .2s; }
.back-to-top svg { transform: rotate(-90deg); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--accent); }

/* 404 */
.error-page { min-height: 100svh; display: grid; place-items: center; padding: calc(var(--header-h) + 60px) 0 80px; text-align: center; background: radial-gradient(circle at center, rgba(227,38,54,.16), transparent 32rem); }
.error-page .container { max-width: 800px; }
.error-code { display: block; color: rgba(255,255,255,.045); font-size: clamp(8rem, 28vw, 20rem); font-weight: 900; line-height: .75; letter-spacing: -.09em; }
.error-page h1 { margin: 18px 0; font-size: clamp(3rem, 7vw, 6rem); }
.error-page p { max-width: 600px; margin-inline: auto; font-size: 1.08rem; }
.error-page .hero-actions { justify-content: center; }

/* Reveal animation */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible, .js .reveal-now { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-nav { gap: 22px; }
  .nav-links { gap: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .7fr 1fr; }
  .footer-cta { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px 40px; }
  .footer-cta .eyebrow, .footer-cta h2, .footer-cta p { grid-column: 1; }
  .footer-cta .button { grid-column: 2; grid-row: 1 / 4; width: auto; }
}

@media (max-width: 920px) {
  :root { --header-h: 76px; }
  .container { width: min(100% - 30px, var(--container)); }
  .nav-toggle { display: block; }
  .js .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 28px; padding: calc(var(--header-h) + 35px) 28px 35px; background: rgba(8,9,12,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s, visibility .25s, transform .25s; }
  .js .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .nav-links { display: grid; gap: 0; }
  .nav-link { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.65rem, 7vw, 2.6rem); font-weight: 760; letter-spacing: -.03em; }
  .nav-link::after { display: none; }
  .nav-cta { width: 100%; }
  html:not(.js) .site-header { position: relative; height: auto; background: #090a0d; }
  html:not(.js) .header-inner { flex-wrap: wrap; padding-block: 12px; }
  html:not(.js) .site-nav { width: 100%; flex-direction: column; align-items: stretch; }
  html:not(.js) .nav-links { display: grid; }
  html:not(.js) .nav-toggle { display: none; }
  .hero-home { min-height: 850px; padding-bottom: 70px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-trust { width: 100%; grid-template-columns: repeat(3, 1fr); }
  .hero-trust > div { padding: 18px; }
  .hero-scroll { display: none; }
  .contact-ribbon-grid { grid-template-columns: 1fr; }
  .contact-ribbon-grid > a, .contact-ribbon-grid > a:first-child { min-height: 85px; border: 0; border-bottom: 1px solid var(--line); }
  .split-grid, .intro-grid, .faq-layout, .contact-layout, .location-info-grid { grid-template-columns: 1fr; gap: 55px; }
  .split-grid-reverse .split-content, .split-grid-reverse .split-media { order: initial; }
  .faq-intro { position: static; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 350px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .process-card { display: grid; grid-template-columns: 58px 1fr; column-gap: 20px; text-align: left; }
  .process-card > span { grid-row: span 2; margin: 0; }
  .process-card p { margin-inline: 0; }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-item, .gallery-item:nth-child(7n+1), .gallery-item:nth-child(7n+5) { grid-column: span 6; aspect-ratio: 3/2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px 18px; }
  .legal-nav strong { width: 100%; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .final-cta-actions { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta { display: block; grid-column: 1 / -1; }
  .footer-cta .button { width: 100%; }
}

@media (max-width: 680px) {
  body { line-height: 1.65; }
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
  .button { width: 100%; }
  .hero-home { min-height: 760px; padding-bottom: 48px; }
  .hero-home .hero-media img { object-position: 64% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,5,7,.92), rgba(4,5,7,.5)), linear-gradient(0deg, rgba(5,6,8,.92), transparent 55%); }
  .hero-copy h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 0; }
  .hero-trust > div { padding: 15px 10px; text-align: center; }
  .hero-trust strong { font-size: 1.35rem; }
  .hero-trust span { font-size: .6rem; }
  .page-hero { min-height: 500px; padding-bottom: 55px; }
  .page-hero-content p { font-size: 1.03rem; }
  .contact-ribbon-grid > a { padding-inline: 20px; }
  .service-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-detail { min-height: 0; }
  .split-media::after { inset: 10px -7px -10px 7px; }
  .image-badge { right: 12px; bottom: 12px; min-width: 145px; padding: 17px 20px; }
  .process-card { padding: 18px 5px; }
  .location-card, .location-grid-large .location-card { min-height: 380px; padding: 27px; }
  .location-card h3, .location-grid-large .location-card h3 { margin-top: 80px; }
  .location-actions { align-items: stretch; flex-direction: column; }
  .gallery-preview { grid-auto-rows: 175px; }
  .gallery-preview-wide { grid-column: span 2; grid-row: span 1; }
  .gallery-item, .gallery-item:nth-child(7n+1), .gallery-item:nth-child(7n+5) { grid-column: span 12; }
  .gallery-item-overlay { opacity: 1; transform: none; }
  .lightbox { width: 100vw; height: 100dvh; border-radius: 0; }
  .lightbox-stage { padding: 70px 12px 15px; }
  .lightbox-nav { top: auto; bottom: 18px; }
  .lightbox-prev { left: auto; right: 78px; }
  .lightbox-next { right: 18px; }
  .lightbox-toolbar { padding-right: 135px; }
  .stats-grid { grid-template-columns: 1fr 1fr; margin-top: 50px; }
  .stat-card { min-height: 135px; padding: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 240px; }
  .value-card h3 { margin-top: 45px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .final-cta { padding: 34px 25px; }
  .final-cta-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-cta { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 23px 0; }
  .back-to-top { right: 14px; bottom: 14px; }
}

@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 .reveal { opacity: 1; transform: none; }
}
