:root {
    --service-ink: #06243a;
    --service-ink-deep: #031727;
    --service-blue: #0c5e79;
    --service-cyan: #36a9c6;
    --service-orange: #e69745;
    --service-paper: #f4f1e9;
    --service-white: #fffefa;
    --service-muted: #62717a;
    --service-line: rgba(6, 36, 58, 0.14);
    --service-display: "Cormorant Garamond", Georgia, serif;
    --service-sans: "Manrope", "Avenir Next", sans-serif;
    --service-mono: "DM Mono", "Courier New", monospace;
    --service-container: min(1180px, calc(100% - 80px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    min-width: 320px;
    margin: 0;
    color: var(--service-ink);
    background: var(--service-paper);
    font-family: var(--service-sans);
    font-size: 16px;
    line-height: 1.65;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image: linear-gradient(rgba(6, 36, 58, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 36, 58, 0.026) 1px, transparent 1px);
    background-size: 28px 28px;
    content: "";
    pointer-events: none;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

button { font: inherit; }

img { display: block; max-width: 100%; }

.service-container { width: var(--service-container); margin: 0 auto; }

.reading-progress {
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
}

.reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--service-cyan), var(--service-orange));
    transform: scaleX(0);
    transform-origin: left;
}

.service-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 92px;
    padding: 0 48px;
    color: var(--service-white);
    transition: height 260ms ease, color 260ms ease, background-color 260ms ease, box-shadow 260ms ease;
}

.service-header::after {
    position: absolute;
    right: 48px;
    bottom: 0;
    left: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.27);
    content: "";
    transition: background-color 260ms ease, right 260ms ease, left 260ms ease;
}

.service-header.is-scrolled {
    height: 74px;
    color: var(--service-ink);
    background: rgba(244, 241, 233, 0.95);
    box-shadow: 0 7px 28px rgba(3, 23, 39, 0.11);
    backdrop-filter: blur(18px);
}

.service-header.is-scrolled::after {
    right: 0;
    left: 0;
    background: var(--service-line);
}

.service-brand {
    position: relative;
    z-index: 1;
    display: block;
    width: 142px;
    padding: 7px 8px;
}

.service-brand img { width: 100%; }

.service-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 29px;
}

.service-main-nav > a,
.service-dropdown-toggle {
    position: relative;
    padding: 15px 0;
    border: 0;
    color: inherit;
    background: transparent;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}

.service-main-nav > a::after,
.service-dropdown-toggle::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms ease;
}

.service-main-nav > a:hover::after,
.service-dropdown:hover .service-dropdown-toggle::after,
.service-dropdown.is-open .service-dropdown-toggle::after { transform: scaleX(1); transform-origin: left; }

.service-dropdown { position: relative; }

.service-dropdown-toggle span {
    display: inline-block;
    margin-left: 7px;
    font-size: 0.82rem;
    transition: transform 220ms ease;
}

.service-dropdown:hover .service-dropdown-toggle span,
.service-dropdown.is-open .service-dropdown-toggle span { transform: rotate(45deg); }

.service-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    display: grid;
    width: 310px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--service-white);
    background: rgba(3, 23, 39, 0.97);
    box-shadow: 0 20px 46px rgba(3, 23, 39, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 200ms ease, transform 200ms ease;
}

.service-dropdown:hover .service-dropdown-panel,
.service-dropdown.is-open .service-dropdown-panel { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }

.service-dropdown-panel a {
    padding: 10px 12px;
    border-left: 2px solid transparent;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.25;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-dropdown-panel a:hover,
.service-dropdown-panel a[aria-current="page"] { border-left-color: var(--service-orange); color: var(--service-white); background: rgba(255, 255, 255, 0.08); }

.service-contact-link {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-contact-link i {
    display: grid;
    width: 29px;
    height: 29px;
    border: 1px solid currentColor;
    border-radius: 50%;
    place-items: center;
    font-family: Arial, sans-serif;
    font-style: normal;
    font-size: 1rem;
    transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.service-contact-link:hover i { color: var(--service-ink); background: var(--service-white); transform: translateX(3px); }
.service-header.is-scrolled .service-contact-link:hover i { color: var(--service-white); background: var(--service-ink); }

.service-menu-button { display: none; }

.service-hero {
    position: relative;
    display: flex;
    min-height: 720px;
    height: min(900px, 100svh);
    align-items: end;
    overflow: hidden;
    color: var(--service-white);
    background: var(--service-ink-deep);
}

.service-hero-image,
.service-hero-shade,
.service-hero-grid { position: absolute; inset: 0; }

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.045);
    transition: transform 1.8s cubic-bezier(.2,.8,.2,1);
}

.is-ready .service-hero-image { transform: scale(1); }

.service-hero-shade { background: linear-gradient(90deg, rgba(3, 23, 39, 0.89) 0%, rgba(3, 23, 39, 0.68) 34%, rgba(3, 23, 39, 0.15) 77%, rgba(3, 23, 39, 0.36) 100%), linear-gradient(0deg, rgba(3, 23, 39, 0.71) 0%, transparent 47%); }

.service-hero-grid {
    background-image: linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,0.14) 50%, transparent calc(50% + 1px)), linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 100% 100%, 100% 33.333%;
    opacity: 0.46;
    mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.35) 57%, transparent 100%);
}

.service-hero-content { position: relative; width: var(--service-container); margin: 0 auto; padding-bottom: clamp(76px, 11vh, 124px); }

.service-breadcrumb {
    display: flex;
    gap: 11px;
    align-items: center;
    margin: 0 0 25px;
    color: rgba(255,255,255,0.74);
    font-family: var(--service-mono);
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.service-breadcrumb span { width: 21px; height: 1px; background: var(--service-orange); }

.service-hero h1 {
    max-width: 780px;
    margin: 0;
    font-family: var(--service-display);
    font-size: clamp(3.8rem, 8.1vw, 8rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.86;
}

.service-hero h1 em { color: var(--service-cyan); font-weight: 400; }

.service-hero-copy { max-width: 490px; margin: 28px 0 0; color: rgba(255,255,255,0.84); font-size: 0.96rem; }

.service-hero-foot {
    position: absolute;
    right: 48px;
    bottom: 36px;
    left: 48px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.65);
    font-family: var(--service-mono);
    font-size: 0.61rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-hero-foot span:last-child { display: flex; gap: 9px; align-items: center; }
.service-hero-foot span:last-child::before { width: 44px; height: 1px; background: var(--service-orange); content: ""; }

.service-section { padding: clamp(78px, 10vw, 142px) 0; }

.service-intro { background: var(--service-paper); }

.intro-layout { display: grid; grid-template-columns: minmax(212px, 0.72fr) minmax(0, 1.5fr); gap: clamp(42px, 8vw, 135px); }

.service-side { align-self: start; }

.section-mark {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 18px;
    color: var(--service-blue);
    font-family: var(--service-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-mark::before { width: 32px; height: 1px; background: var(--service-orange); content: ""; }

.service-side h2 { max-width: 300px; margin: 0; font-family: var(--service-display); font-size: clamp(2.2rem, 3.4vw, 3.55rem); font-weight: 500; letter-spacing: -0.045em; line-height: 0.98; }

.division-index { position: sticky; top: 106px; margin-top: 56px; padding-top: 18px; border-top: 1px solid var(--service-line); }
.division-index > span { display: block; margin-bottom: 10px; color: var(--service-muted); font-family: var(--service-mono); font-size: 0.6rem; letter-spacing: 0.13em; text-transform: uppercase; }
.division-index a { display: block; padding: 8px 0 8px 14px; border-left: 1px solid var(--service-line); color: var(--service-muted); font-size: 0.72rem; font-weight: 700; line-height: 1.25; transition: border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.division-index a:hover { color: var(--service-blue); transform: translateX(4px); }
.division-index a[aria-current="page"] { border-left: 2px solid var(--service-orange); color: var(--service-ink); }

.service-prose { max-width: 745px; }
.service-prose > p:first-child { margin-top: 0; font-family: var(--service-display); font-size: clamp(2rem, 3.2vw, 3.18rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1.1; }
.service-prose > p:not(:first-child) { max-width: 635px; color: #445861; font-size: 0.96rem; }

.service-note { display: grid; grid-template-columns: 52px 1fr; gap: 19px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--service-line); }
.service-note strong { color: var(--service-orange); font-family: var(--service-mono); font-size: 0.75rem; font-weight: 400; }
.service-note p { margin: 0; color: var(--service-blue); font-size: 0.88rem; font-weight: 700; line-height: 1.48; }

.capabilities-section { position: relative; overflow: hidden; color: var(--service-white); background: var(--service-ink-deep); }
.capabilities-section::before { position: absolute; top: -35%; right: -14%; width: min(680px, 60vw); aspect-ratio: 1; border: 1px solid rgba(54,169,198,0.24); border-radius: 50%; box-shadow: 0 0 0 70px rgba(54,169,198,0.045), 0 0 0 140px rgba(54,169,198,0.025); content: ""; }
.capabilities-heading { position: relative; display: flex; justify-content: space-between; gap: 36px; align-items: end; margin-bottom: 58px; }
.capabilities-heading .section-mark { color: var(--service-cyan); }
.capabilities-heading h2 { max-width: 550px; margin: 0; font-family: var(--service-display); font-size: clamp(2.6rem, 4.5vw, 4.6rem); font-weight: 500; letter-spacing: -0.05em; line-height: 0.92; }
.capabilities-heading p { max-width: 282px; margin: 0; color: rgba(255,255,255,0.66); font-size: 0.84rem; }

.capability-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,0.19); border-left: 1px solid rgba(255,255,255,0.19); }
.capability { min-height: 220px; padding: 28px 30px 30px; border-right: 1px solid rgba(255,255,255,0.19); border-bottom: 1px solid rgba(255,255,255,0.19); background: rgba(255,255,255,0.01); transition: background-color 260ms ease, transform 260ms ease; }
.capability:hover { background: rgba(54,169,198,0.13); transform: translateY(-4px); }
.capability-number { color: var(--service-orange); font-family: var(--service-mono); font-size: 0.65rem; letter-spacing: 0.12em; }
.capability h3 { margin: 46px 0 9px; font-family: var(--service-display); font-size: 1.7rem; font-weight: 500; letter-spacing: -0.035em; line-height: 1; }
.capability p { max-width: 335px; margin: 0; color: rgba(255,255,255,0.62); font-size: 0.81rem; line-height: 1.55; }

.feature-section { background: var(--service-white); }
.feature-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.68fr); gap: clamp(38px, 7vw, 105px); align-items: center; }
.feature-photo { position: relative; overflow: hidden; min-height: 480px; background: var(--service-ink); }
.feature-photo::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.26); content: ""; transform: scale(0.94); pointer-events: none; }
.feature-photo img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; filter: saturate(0.82); transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 500ms ease; }
.feature-photo:hover img { filter: saturate(1); transform: scale(1.055); }
.feature-photo figcaption { position: absolute; z-index: 1; right: 30px; bottom: 27px; left: 30px; color: rgba(255,255,255,0.82); font-family: var(--service-mono); font-size: 0.6rem; letter-spacing: 0.13em; text-transform: uppercase; }
.feature-copy h2 { margin: 0 0 25px; font-family: var(--service-display); font-size: clamp(2.35rem, 3.6vw, 3.7rem); font-weight: 500; letter-spacing: -0.05em; line-height: 0.96; }
.feature-copy p { color: #465a63; font-size: 0.92rem; }
.principles { margin: 36px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--service-line); }
.principles li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--service-line); font-size: 0.79rem; font-weight: 700; line-height: 1.35; }
.principles b { color: var(--service-orange); font-family: var(--service-mono); font-size: 0.66rem; font-weight: 400; }

.commitment-section { position: relative; overflow: hidden; background: #dde9e7; }
.commitment-section::after { position: absolute; right: -7%; bottom: -35%; width: 53vw; aspect-ratio: 1; border: 1px solid rgba(12,94,121,0.16); border-radius: 50%; box-shadow: 0 0 0 45px rgba(12,94,121,0.05), 0 0 0 90px rgba(12,94,121,0.035); content: ""; }
.commitment-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 0.8fr 1.25fr; gap: clamp(38px, 8vw, 120px); }
.commitment-title { margin: 0; font-family: var(--service-display); font-size: clamp(2.45rem, 4vw, 4rem); font-weight: 500; letter-spacing: -0.055em; line-height: 0.94; }
.commitment-copy { max-width: 660px; }
.commitment-copy > p { margin-top: 0; color: var(--service-blue); font-family: var(--service-display); font-size: clamp(1.65rem, 2.55vw, 2.45rem); font-weight: 500; letter-spacing: -0.035em; line-height: 1.14; }
.operating-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 42px 0 0; padding: 0; list-style: none; }
.operating-list li { padding-top: 15px; border-top: 1px solid rgba(6,36,58,0.24); }
.operating-list strong { display: block; font-family: var(--service-display); font-size: 1.45rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.operating-list span { display: block; margin-top: 8px; color: #52666b; font-size: 0.75rem; line-height: 1.46; }

.service-cta { position: relative; overflow: hidden; padding: clamp(78px, 10vw, 132px) 0; color: var(--service-white); background: var(--service-ink); }
.service-cta::before { position: absolute; top: 0; left: 0; width: 38%; height: 100%; background: linear-gradient(135deg, rgba(54,169,198,0.16), transparent 72%); content: ""; }
.service-cta-content { position: relative; display: flex; justify-content: space-between; gap: 48px; align-items: end; }
.service-cta h2 { max-width: 650px; margin: 0; font-family: var(--service-display); font-size: clamp(2.8rem, 5vw, 5.25rem); font-weight: 500; letter-spacing: -0.055em; line-height: 0.9; }
.service-cta h2 em { color: var(--service-cyan); font-style: italic; }
.service-button { display: inline-flex; gap: 18px; align-items: center; min-width: 180px; justify-content: space-between; padding: 15px 17px 15px 21px; border: 1px solid rgba(255,255,255,0.62); color: var(--service-white); font-family: var(--service-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 230ms ease, background-color 230ms ease, transform 230ms ease; }
.service-button span { display: grid; width: 27px; height: 27px; border-radius: 50%; place-items: center; color: var(--service-ink); background: var(--service-orange); font-family: Arial, sans-serif; font-size: 1rem; transition: transform 230ms ease; }
.service-button:hover { color: var(--service-ink); background: var(--service-white); transform: translateY(-3px); }
.service-button:hover span { transform: translateX(3px); }

.service-footer { color: var(--service-white); background: var(--service-ink-deep); }
.footer-top { display: grid; grid-template-columns: 1fr 1.45fr auto; gap: 42px; align-items: start; padding: 54px 0 46px; }
.footer-logo { width: 128px; }
.footer-top p { max-width: 270px; margin: 18px 0 0; color: rgba(255,255,255,0.54); font-size: 0.75rem; line-height: 1.55; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 25px; }
.footer-nav a { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.68); font-size: 0.72rem; font-weight: 700; line-height: 1.3; transition: color 180ms ease, padding-left 180ms ease; }
.footer-nav a:hover { padding-left: 4px; color: var(--service-white); }
.footer-contact { color: var(--service-cyan); font-family: var(--service-mono); font-size: 0.72rem; letter-spacing: 0.08em; line-height: 1.6; text-align: right; }
.footer-contact a { color: var(--service-white); font-family: var(--service-sans); font-size: 0.84rem; font-weight: 700; letter-spacing: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.4); font-family: var(--service-mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.capability[data-reveal]:nth-child(2), .operating-list li[data-reveal]:nth-child(2) { transition-delay: 90ms; }
.capability[data-reveal]:nth-child(3), .operating-list li[data-reveal]:nth-child(3) { transition-delay: 180ms; }
.capability[data-reveal]:nth-child(4) { transition-delay: 270ms; }

@media (max-width: 1100px) {
    :root { --service-container: min(calc(100% - 56px), 960px); }
    .service-header { grid-template-columns: 1fr auto; padding: 0 28px; }
    .service-header::after { right: 28px; left: 28px; }
    .service-main-nav, .service-contact-link { display: none; }
    .service-menu-button { position: relative; z-index: 2; display: grid; width: 45px; height: 45px; border: 1px solid currentColor; border-radius: 50%; place-items: center; color: inherit; background: transparent; cursor: pointer; }
    .service-menu-button span, .service-menu-button::before, .service-menu-button::after { position: absolute; width: 18px; height: 1px; background: currentColor; content: ""; transition: transform 260ms ease; }
    .service-menu-button::before { transform: translateY(-5px); }
    .service-menu-button::after { transform: translateY(5px); }
    .menu-open .service-menu-button span { transform: scaleX(0); }
    .menu-open .service-menu-button::before { transform: rotate(45deg); }
    .menu-open .service-menu-button::after { transform: rotate(-45deg); }
    .service-mobile-nav { position: fixed; z-index: 1; inset: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: center; padding: 105px 11vw 46px; color: var(--service-white); background: var(--service-ink-deep); opacity: 0; overflow-y: auto; transition: opacity 260ms ease, visibility 260ms ease; }
    .menu-open .service-mobile-nav { visibility: visible; opacity: 1; }
    .service-mobile-nav > a { padding: 8px 0; font-family: var(--service-display); font-size: clamp(2.1rem, 8vw, 3.7rem); line-height: 1; }
    .service-mobile-nav > span { display: block; margin: 23px 0 8px; color: var(--service-cyan); font-family: var(--service-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }
    .service-mobile-nav .mobile-service-link { padding: 6px 0; color: rgba(255,255,255,0.7); font-size: 0.86rem; font-weight: 700; line-height: 1.3; }
    .service-mobile-nav .mobile-service-link[aria-current="page"] { color: var(--service-orange); }
    .service-hero-foot { right: 28px; left: 28px; }
    .service-hero { min-height: 650px; }
    .division-index { display: none; }
    .intro-layout { grid-template-columns: 0.7fr 1.4fr; gap: 54px; }
}

@media (min-width: 1101px) { .service-mobile-nav { display: none; } }

@media (max-width: 760px) {
    :root { --service-container: min(calc(100% - 42px), 600px); }
    .service-header { height: 76px; padding: 0 21px; }
    .service-header::after { right: 21px; left: 21px; }
    .service-header.is-scrolled { height: 68px; }
    .service-brand { width: 119px; }
    .service-hero { min-height: 620px; height: 88svh; }
    .service-hero-image { object-position: 63% center; }
    .service-hero-shade { background: linear-gradient(90deg, rgba(3, 23, 39, 0.9), rgba(3, 23, 39, 0.43)), linear-gradient(0deg, rgba(3, 23, 39, 0.72), transparent 56%); }
    .service-hero-content { padding-bottom: 72px; }
    .service-breadcrumb { margin-bottom: 19px; font-size: 0.58rem; }
    .service-hero h1 {
        max-width: 100%;
        font-size: clamp(2.25rem, 9.8vw, 3.9rem);
        overflow-wrap: anywhere;
    }
    .service-hero-copy { width: min(100%, 490px); margin-top: 22px; font-size: 0.84rem; line-height: 1.55; overflow-wrap: anywhere; }
    .service-hero-foot { right: 21px; bottom: 22px; left: 21px; font-size: 0.5rem; }
    .service-hero-foot span:last-child { display: none; }
    .service-section { padding: 76px 0; }
    .intro-layout, .feature-layout, .commitment-layout { grid-template-columns: 1fr; gap: 34px; }
    .service-side h2 { max-width: 420px; }
    .service-prose > p:first-child { font-size: 2.05rem; }
    .service-note { grid-template-columns: 37px 1fr; gap: 12px; margin-top: 30px; }
    .capabilities-heading, .service-cta-content { display: block; }
    .capabilities-heading { margin-bottom: 40px; }
    .capabilities-heading p { margin-top: 22px; }
    .capability-grid { grid-template-columns: 1fr; }
    .capability { min-height: 184px; padding: 23px 22px 25px; }
    .capability h3 { margin-top: 34px; }
    .feature-photo, .feature-photo img { min-height: 340px; }
    .feature-copy h2 { margin-bottom: 20px; }
    .operating-list { grid-template-columns: 1fr; gap: 13px; margin-top: 32px; }
    .service-cta h2 { max-width: 490px; }
    .service-button { margin-top: 35px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 38px; }
    .footer-nav { grid-template-columns: 1fr; }
    .footer-contact { text-align: left; }
    .footer-bottom { display: block; line-height: 1.7; }
}

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