:root {
  --ink: #0a1719;
  --ink-soft: #173034;
  --teal: #18d1c4;
  --teal-deep: #008f8a;
  --cream: #f3f4ef;
  --white: #fff;
  --line: rgba(255,255,255,.17);
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "Segoe UI", Inter, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 12px 18px; background: var(--teal); color: var(--ink); transition: top .2s; }
.skip-link:focus { top: 16px; }

.topline { position: relative; z-index: 40; background: #061113; color: rgba(255,255,255,.65); border-bottom: 1px solid rgba(255,255,255,.09); font-size: 12px; letter-spacing: .05em; }
.topline-inner { height: 34px; display: flex; align-items: center; justify-content: space-between; }
.topline-links { display: flex; gap: 24px; color: rgba(255,255,255,.86); }
.topline a:hover { color: var(--teal); }

.site-header { position: absolute; top: 34px; z-index: 30; width: 100%; color: white; border-bottom: 1px solid var(--line); transition: background .3s, box-shadow .3s; }
.site-header.is-scrolled { position: fixed; top: 0; background: rgba(7,22,24,.94); box-shadow: 0 12px 35px rgba(0,0,0,.22); backdrop-filter: blur(14px); }
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 230px; }
.brand img { width: 57px; height: 57px; object-fit: contain; mix-blend-mode: screen; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 20px; letter-spacing: -.02em; }
.brand small { margin-top: 7px; color: rgba(255,255,255,.58); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 34px 0; color: rgba(255,255,255,.78); }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--teal); transition: right .25s; }
.main-nav > a:hover, .main-nav > a.is-active { color: white; }
.main-nav > a:hover::after, .main-nav > a.is-active::after { right: 0; }
.nav-cta { display: inline-flex; gap: 20px; align-items: center; padding: 13px 17px; border: 1px solid rgba(255,255,255,.4); }
.nav-cta:hover { color: var(--ink); background: var(--teal); border-color: var(--teal); }
.menu-toggle { display: none; background: none; border: 0; color: white; }

.hero-slider { position: relative; min-height: 700px; height: min(850px, 90vh); background: #071719; color: white; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.035); transition: opacity .8s ease, visibility .8s, transform 7s ease; background-image: var(--hero-image); background-position: center; background-size: cover; }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,18,20,.93) 0%, rgba(4,18,20,.76) 37%, rgba(4,18,20,.28) 72%, rgba(4,18,20,.15) 100%), linear-gradient(0deg, rgba(4,18,20,.55), transparent 45%); }
.hero-content { position: relative; z-index: 3; height: 100%; padding-top: 190px; padding-bottom: 120px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 650; text-transform: uppercase; letter-spacing: .17em; }
.eyebrow span { width: 32px; height: 2px; background: var(--teal); }
.hero-content h1, .hero-content h2 { max-width: 790px; margin: 0; font-size: clamp(48px, 5.6vw, 80px); line-height: .99; letter-spacing: -.055em; font-weight: 580; }
.hero-content h1 em, .hero-content h2 em { display: block; color: var(--teal); font-style: normal; }
.hero-content > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-width: 225px; padding: 17px 20px; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: #062224; }
.text-link { display: inline-flex; gap: 18px; padding: 14px 0; color: rgba(255,255,255,.86); border-bottom: 1px solid rgba(255,255,255,.38); font-size: 14px; }
.text-link:hover { color: var(--teal); border-color: var(--teal); }

.slider-ui { position: absolute; z-index: 9; left: 50%; bottom: 38px; transform: translateX(-50%); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; }
.slider-dots { display: flex; gap: 9px; }
.slider-dots button { width: 38px; height: 24px; padding: 0; border: 0; background: none; cursor: pointer; }
.slider-dots span { display: block; width: 100%; height: 2px; background: rgba(255,255,255,.28); overflow: hidden; }
.slider-dots button.is-active span { background: var(--teal); }
.slider-count { display: flex; align-items: center; gap: 12px; font-variant-numeric: tabular-nums; }
.slider-count b { font-size: 15px; }
.slider-count span { width: 50px; height: 1px; background: rgba(255,255,255,.34); }
.slider-count small { color: rgba(255,255,255,.5); }
.slider-arrows { display: flex; }
.slider-arrows button { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); background: rgba(8,25,27,.25); color: white; cursor: pointer; }
.slider-arrows button + button { border-left: 0; }
.slider-arrows button:hover { background: var(--teal); color: var(--ink); }

.trust-strip { background: #071719; color: white; border-top: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { min-height: 132px; padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid div:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.trust-grid strong { color: var(--teal); font-size: 27px; letter-spacing: -.03em; }
.trust-grid span { margin-top: 8px; color: rgba(255,255,255,.58); font-size: 13px; }

/* Shared content */
.section { padding: 120px 0; }
.kicker { margin: 0 0 20px; color: var(--teal-deep); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .18em; }
.kicker::before { content: ""; display: inline-block; width: 25px; height: 2px; margin: 0 10px 3px 0; background: currentColor; }
.kicker-light { color: var(--teal); }
.section-heading h2 { max-width: 720px; margin: 0; font-size: clamp(38px, 4.2vw, 62px); line-height: 1.07; font-weight: 590; letter-spacing: -.045em; }
.section-heading h2 em, .cta-content h2 em { color: var(--teal-deep); font-style: normal; }
.arrow-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; padding-bottom: 10px; border-bottom: 1px solid rgba(10,23,25,.3); font-size: 14px; font-weight: 650; }
.arrow-link:hover { color: var(--teal-deep); border-color: var(--teal-deep); }
.lead { font-size: 23px !important; line-height: 1.45 !important; color: var(--ink) !important; letter-spacing: -.02em; }

.intro-section { background: var(--cream); }
.split-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }
.intro-copy > p { margin: 0 0 20px; color: #526164; font-size: 16px; line-height: 1.75; }
.intro-copy .arrow-link { margin-top: 18px; }
.intro-visual-grid { margin-top: 72px; display: grid; grid-template-columns: 2fr 1fr; min-height: 470px; }
.image-card { margin: 0; overflow: hidden; background: #dfe5e2; }
.image-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.teal-note { padding: 55px 48px; display: flex; flex-direction: column; justify-content: flex-end; background: var(--teal); }
.teal-note > span { margin-bottom: auto; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.teal-note strong { font-size: 30px; line-height: 1.13; letter-spacing: -.035em; }
.teal-note p { margin: 22px 0 0; color: rgba(7,33,35,.68); line-height: 1.65; font-size: 14px; }

.services-showcase { background: #fff; }
.row-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.row-heading .arrow-link { margin-bottom: 8px; white-space: nowrap; }
.service-preview-grid { margin-top: 65px; display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 280px); gap: 16px; }
.service-preview { position: relative; display: block; color: white; overflow: hidden; background: #102527; }
.service-preview-large { grid-row: span 2; }
.service-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,18,20,.92), rgba(3,18,20,.07) 70%); }
.service-preview img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.service-preview:hover img { transform: scale(1.035); }
.service-number { position: absolute; z-index: 2; top: 24px; left: 25px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--teal); border: 1px solid rgba(255,255,255,.4); font-size: 11px; }
.service-preview > div { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; }
.service-preview small { color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.service-preview h3 { margin: 8px 0 0; font-size: 26px; letter-spacing: -.035em; }
.service-preview-large h3 { font-size: 36px; }
.card-arrow { position: absolute; right: 0; bottom: 4px; width: 39px; height: 39px; display: grid; place-items: center; background: var(--teal); color: var(--ink); }

.process-section { background: #071719; color: white; }
.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.process-heading { position: sticky; top: 125px; }
.process-heading h2 em { color: var(--teal); font-style: normal; }
.process-heading > p:not(.kicker) { max-width: 460px; margin: 27px 0 34px; color: rgba(255,255,255,.58); line-height: 1.7; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li { padding: 35px 0; display: grid; grid-template-columns: 65px 1fr; border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list > li > span { color: var(--teal); font-size: 12px; }
.process-list h3 { margin: 0; font-size: 26px; font-weight: 580; letter-spacing: -.025em; }
.process-list p { margin: 9px 0 0; color: rgba(255,255,255,.55); line-height: 1.65; }

.sectors-section { background: #e8eae5; }
.sectors-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.sector-list { border-top: 1px solid rgba(10,23,25,.18); }
.sector-list > div { display: grid; grid-template-columns: 55px 1fr 1fr; gap: 20px; padding: 28px 0; align-items: center; border-bottom: 1px solid rgba(10,23,25,.18); }
.sector-list span { color: var(--teal-deep); font-size: 11px; }
.sector-list strong { font-size: 19px; letter-spacing: -.02em; }
.sector-list small { color: #617073; line-height: 1.5; }

.cta-panel { position: relative; height: 610px; display: flex; align-items: center; color: white; overflow: hidden; background: #071719; }
.cta-panel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,21,23,.97) 0%, rgba(5,21,23,.8) 48%, rgba(5,21,23,.2) 85%); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { max-width: 720px; margin: 0; font-size: clamp(43px, 5vw, 67px); line-height: 1.03; letter-spacing: -.05em; font-weight: 570; }
.cta-content h2 em { color: var(--teal); display: block; }
.cta-content > p:not(.kicker) { max-width: 600px; margin: 26px 0 34px; color: rgba(255,255,255,.67); font-size: 18px; line-height: 1.6; }
.cta-content > div { display: flex; align-items: center; gap: 30px; }
.phone-link { padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.4); }

.site-footer { padding-top: 75px; background: #050f11; color: white; }
.footer-main { display: grid; grid-template-columns: 1.7fr .55fr .85fr; gap: 80px; padding-bottom: 60px; }
.site-footer .brand { width: max-content; }
.footer-brand > p { max-width: 370px; margin: 25px 0 0; color: rgba(255,255,255,.48); line-height: 1.65; }
.footer-main > div:not(.footer-brand) { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
.footer-main h3 { margin: 4px 0 10px; color: rgba(255,255,255,.42); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.footer-main a { color: rgba(255,255,255,.82); font-size: 14px; }
.footer-main a:hover { color: var(--teal); }
.footer-main p { margin: 2px 0 0; color: rgba(255,255,255,.48); font-size: 14px; line-height: 1.7; }
.footer-bottom { min-height: 73px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.38); border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-bottom a:hover { color: var(--teal); }

/* Interior pages */
.page-shell .site-header { position: relative; top: 0; background: #071719; }
.page-shell .site-header.is-scrolled { position: fixed; }
.page-shell .topline { background: #050f11; }
.page-hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; color: white; overflow: hidden; background: #0a2023; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: var(--page-image); background-size: cover; background-position: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,18,20,.94), rgba(4,18,20,.48)), linear-gradient(0deg, rgba(4,18,20,.6), transparent 60%); }
.page-hero-content { position: relative; z-index: 2; padding: 120px 0 74px; }
.breadcrumbs { margin: 0 0 28px; color: rgba(255,255,255,.55); font-size: 12px; }
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs span { padding: 0 10px; }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(49px, 6vw, 78px); line-height: 1; letter-spacing: -.055em; font-weight: 580; }
.page-hero h1 em { display: block; color: var(--teal); font-style: normal; }
.page-hero-content > p:last-child { max-width: 650px; margin: 25px 0 0; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.65; }

.content-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.content-copy h2 { margin: 0; font-size: clamp(37px, 4vw, 56px); line-height: 1.08; letter-spacing: -.045em; font-weight: 590; }
.content-copy h2 em { color: var(--teal-deep); font-style: normal; }
.rich-text { color: #536266; font-size: 17px; line-height: 1.8; }
.rich-text p:first-child { margin-top: 0; color: var(--ink); font-size: 23px; line-height: 1.52; letter-spacing: -.02em; }
.rich-text ul { padding: 0; list-style: none; }
.rich-text li { position: relative; padding: 12px 0 12px 25px; border-bottom: 1px solid rgba(10,23,25,.12); }
.rich-text li::before { content: ""; position: absolute; top: 23px; left: 0; width: 8px; height: 8px; background: var(--teal-deep); }

.values-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(10,23,25,.16); border-left: 1px solid rgba(10,23,25,.16); }
.value-card { min-height: 260px; padding: 33px 28px; border-right: 1px solid rgba(10,23,25,.16); border-bottom: 1px solid rgba(10,23,25,.16); }
.value-card > span { color: var(--teal-deep); font-size: 11px; }
.value-card h3 { margin: 70px 0 13px; font-size: 21px; letter-spacing: -.025em; }
.value-card p { margin: 0; color: #617073; font-size: 14px; line-height: 1.65; }

.quote-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: #071719; color: white; }
.quote-section figure { margin: 0; min-height: 500px; }
.quote-section img { width: 100%; height: 100%; object-fit: cover; }
.quote-panel { padding: 80px max(45px, 8vw); display: flex; flex-direction: column; justify-content: center; }
.quote-mark { color: var(--teal); font-size: 76px; line-height: .6; }
.quote-panel blockquote { margin: 35px 0; font-size: clamp(25px, 2.5vw, 39px); line-height: 1.32; letter-spacing: -.035em; }
.quote-panel strong { font-size: 15px; }
.quote-panel small { margin-top: 7px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .13em; }

.service-index { background: #fff; }
.service-detail { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 520px; border-top: 1px solid rgba(10,23,25,.15); }
.service-detail:last-child { border-bottom: 1px solid rgba(10,23,25,.15); }
.service-detail:nth-child(even) .service-photo { order: 2; }
.service-photo { min-height: 470px; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s; }
.service-detail:hover .service-photo img { transform: scale(1.025); }
.service-info { padding: 66px 65px; display: flex; flex-direction: column; justify-content: center; }
.service-info > span { color: var(--teal-deep); font-size: 12px; }
.service-info h2 { margin: 20px 0; font-size: clamp(34px, 3.2vw, 49px); line-height: 1.08; letter-spacing: -.045em; font-weight: 590; }
.service-info > p { margin: 0; color: #5b696c; line-height: 1.75; }
.service-info ul { margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 25px; list-style: none; }
.service-info li { padding: 10px 0; border-bottom: 1px solid rgba(10,23,25,.11); font-size: 13px; }
.service-info li::before { content: "·"; margin-right: 9px; color: var(--teal-deep); font-size: 20px; vertical-align: -2px; }

.method-intro { background: #fff; }
.method-steps { background: #071719; color: white; }
.method-step-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 65px; border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.method-step { min-height: 350px; padding: 35px 28px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.method-step > span { color: var(--teal); font-size: 12px; }
.method-step h3 { margin: 100px 0 18px; font-size: 25px; letter-spacing: -.03em; }
.method-step p { margin: 0; color: rgba(255,255,255,.52); line-height: 1.7; font-size: 14px; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.quality-image { position: relative; height: 590px; }
.quality-image img { width: 100%; height: 100%; object-fit: cover; }
.quality-badge { position: absolute; right: -25px; bottom: 32px; width: 190px; padding: 27px; background: var(--teal); }
.quality-badge strong { display: block; font-size: 27px; }
.quality-badge span { display: block; margin-top: 7px; color: rgba(7,33,35,.65); font-size: 12px; }
.quality-list { margin-top: 40px; }
.quality-list div { padding: 23px 0; display: grid; grid-template-columns: 48px 1fr; border-top: 1px solid rgba(10,23,25,.15); }
.quality-list div:last-child { border-bottom: 1px solid rgba(10,23,25,.15); }
.quality-list span { color: var(--teal-deep); font-size: 11px; }
.quality-list h3 { margin: 0 0 7px; font-size: 19px; }
.quality-list p { margin: 0; color: #617073; line-height: 1.55; font-size: 14px; }

.contact-section { background: #fff; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.contact-cards { margin-top: 45px; border-top: 1px solid rgba(10,23,25,.14); }
.contact-card { padding: 25px 0; display: grid; grid-template-columns: 95px 1fr; border-bottom: 1px solid rgba(10,23,25,.14); }
.contact-card > span { color: #718083; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.contact-card a, .contact-card p { margin: 0; font-size: 18px; line-height: 1.55; }
.contact-card a:hover { color: var(--teal-deep); }
.contact-side { padding: 55px; background: #071719; color: white; }
.contact-side h2 { margin: 0; font-size: 38px; line-height: 1.12; letter-spacing: -.04em; }
.contact-side > p { color: rgba(255,255,255,.58); line-height: 1.7; }
.contact-side ol { margin: 35px 0; padding: 0; list-style: none; }
.contact-side li { padding: 17px 0; display: grid; grid-template-columns: 38px 1fr; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.75); }
.contact-side li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-side li span { color: var(--teal); font-size: 11px; }
.map-frame { height: 430px; background: #d8ddda; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.92); }

@media (max-width: 900px) {
  :root { --container: min(100% - 34px, 720px); }
  .topline > .container > span { display: none; }
  .topline-inner { justify-content: flex-end; }
  .site-header { top: 34px; }
  .header-inner { height: 76px; }
  .brand img { width: 49px; height: 49px; }
  .brand strong { font-size: 18px; }
  .menu-toggle { display: grid; gap: 5px; padding: 10px; cursor: pointer; }
  .menu-toggle span { display: block; width: 25px; height: 2px; background: currentColor; }
  .main-nav { position: absolute; display: none; top: 76px; left: 0; right: 0; padding: 20px 24px 28px; background: #071719; border-top: 1px solid rgba(255,255,255,.1); flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.nav-cta) { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 16px; }
  .hero-slider { height: 760px; min-height: 0; }
  .hero-content { padding-top: 160px; padding-bottom: 135px; }
  .hero-content h1, .hero-content h2 { max-width: 650px; font-size: clamp(44px, 8vw, 66px); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.1); }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .section { padding: 85px 0; }
  .split-intro, .content-split, .sectors-grid { grid-template-columns: 1fr; gap: 45px; }
  .intro-visual-grid { grid-template-columns: 1.4fr .6fr; min-height: 400px; }
  .process-layout { grid-template-columns: 1fr; gap: 55px; }
  .process-heading { position: static; }
  .service-preview-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 280px; }
  .service-preview-large { grid-column: 1 / -1; grid-row: auto; }
  .sector-list > div { grid-template-columns: 45px 1fr; }
  .sector-list small { grid-column: 2; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .values-grid, .method-step-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-section { grid-template-columns: 1fr; }
  .quote-section figure { height: 440px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-photo { order: 0; }
  .service-photo { min-height: 420px; }
  .quality-grid, .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .quality-image { height: 500px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 30px); }
  .topline-links { width: 100%; justify-content: space-between; gap: 10px; font-size: 10px; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .hero-slider { height: 720px; }
  .hero-slide { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,18,20,.94), rgba(4,18,20,.51)), linear-gradient(0deg, rgba(4,18,20,.77), transparent 55%); }
  .hero-content { justify-content: flex-end; padding-top: 130px; padding-bottom: 155px; }
  .eyebrow { font-size: 10px; letter-spacing: .12em; }
  .hero-content h1, .hero-content h2 { font-size: clamp(39px, 11.2vw, 54px); line-height: 1.02; }
  .hero-content > p:not(.eyebrow) { margin-top: 20px; font-size: 16px; line-height: 1.48; }
  .hero-actions { width: 100%; margin-top: 27px; align-items: stretch; flex-direction: column; gap: 4px; }
  .button { min-width: 0; }
  .text-link { align-self: flex-start; }
  .slider-ui { bottom: 26px; grid-template-columns: 1fr auto; }
  .slider-count { display: none; }
  .slider-dots button { width: 29px; }
  .slider-arrows button { width: 42px; height: 42px; }
  .trust-grid div { min-height: 110px; padding: 22px 16px; }
  .trust-grid strong { font-size: 23px; }
  .trust-grid span { font-size: 12px; }
  .section { padding: 70px 0; }
  .section-heading h2 { font-size: 38px; }
  .split-intro { gap: 35px; }
  .intro-visual-grid { margin-top: 45px; grid-template-columns: 1fr; }
  .image-card-wide { height: 270px; }
  .teal-note { min-height: 330px; padding: 35px 28px; }
  .row-heading { align-items: flex-start; flex-direction: column; }
  .service-preview-grid { margin-top: 45px; grid-template-columns: 1fr; grid-template-rows: repeat(3, 330px); }
  .service-preview-large { grid-column: auto; }
  .service-preview-large h3 { font-size: 28px; }
  .process-list li { grid-template-columns: 45px 1fr; }
  .sector-list > div { padding: 22px 0; }
  .cta-panel { height: 650px; align-items: flex-end; }
  .cta-shade { background: linear-gradient(0deg, rgba(5,21,23,.98) 5%, rgba(5,21,23,.68) 72%, rgba(5,21,23,.25)); }
  .cta-content { padding-bottom: 65px; }
  .cta-content h2 { font-size: 41px; }
  .cta-content > div { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding: 20px 0; align-items: flex-start; flex-direction: column; gap: 9px; }
  .page-hero { min-height: 470px; }
  .page-hero-content { padding: 85px 0 55px; }
  .page-hero h1 { font-size: 46px; }
  .values-grid, .method-step-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 220px; }
  .value-card h3 { margin-top: 50px; }
  .quote-section figure { height: 330px; min-height: 0; }
  .quote-panel { padding: 65px 28px; }
  .service-photo { min-height: 290px; }
  .service-info { padding: 45px 25px; }
  .service-info ul { grid-template-columns: 1fr; }
  .method-step { min-height: 260px; }
  .method-step h3 { margin-top: 60px; }
  .quality-image { height: 390px; }
  .quality-badge { right: -8px; bottom: 20px; }
  .contact-side { padding: 38px 27px; }
  .contact-card { grid-template-columns: 1fr; gap: 9px; }
}

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