@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
    --bg-top: #f4f9fd;
    --bg-bottom: #eaf4fc;
    --surface: #ffffff;
    --surface-soft: #f4f9ff;
    --line: #c8def0;
    --line-strong: #9ec3e0;
    --text: #0f2f49;
    --muted: #4a6a81;
    --brand: #0c74be;
    --brand-dark: #0a588f;
    --accent: #108f89;
    --header-height: 84px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --shadow-sm: 0 10px 24px rgba(8, 55, 89, 0.1);
    --shadow-md: 0 18px 36px rgba(8, 55, 89, 0.14);
    --container: min(1140px, 92vw);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    touch-action: manipulation;
}

body {
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.65;
    background:
        radial-gradient(circle at 10% 4%, rgba(12, 116, 190, 0.13), transparent 32%),
        radial-gradient(circle at 96% 5%, rgba(16, 143, 137, 0.11), transparent 28%),
        linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
    overflow-x: hidden;
    padding-top: var(--header-height);
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
}

html.nav-open,
body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

a,
button,
img,
[role="button"],
.gallery-slide,
.gallery-control,
.gallery-dot {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Sora", "Manrope", sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

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

.skip-link {
    position: absolute;
    top: -44px;
    left: 0.8rem;
    z-index: 3000;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #9dc4e1;
    background: #ffffff;
    color: #0d5e97;
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus-visible {
    top: 0.8rem;
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 116, 190, 0.2);
}

.section-anchor {
    scroll-margin-top: calc(var(--header-height) + 14px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1200;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(151, 191, 221, 0.56);
    background: rgba(247, 252, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease), background-color 220ms var(--ease);
}

.site-header.is-scrolled {
    border-bottom-color: rgba(138, 181, 212, 0.78);
    background: rgba(247, 252, 255, 0.99);
    box-shadow: 0 10px 24px rgba(8, 55, 89, 0.14);
}

.header-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    text-decoration: none;
    min-width: 0;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(8, 66, 107, 0.22);
}

.brand-copy {
    display: grid;
    min-width: 0;
}

.brand-copy strong {
    font-size: clamp(0.96rem, 1.5vw, 1.1rem);
    white-space: nowrap;
}

.brand-copy small {
    font-size: 0.73rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: var(--muted);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #a9cce6;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 116, 190, 0.22);
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #1d567e;
    transform: translateX(-50%);
    transition: transform 230ms var(--ease), opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
    top: 16px;
}

.menu-toggle span:nth-child(2) {
    top: 22px;
}

.menu-toggle span:nth-child(3) {
    top: 28px;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

.site-nav {
    margin-left: auto;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.34rem;
    border: 1px solid rgba(161, 199, 227, 0.84);
    border-radius: 15px;
    background: linear-gradient(180deg, #ffffff, #edf7ff);
    box-shadow: var(--shadow-sm);
}

.site-nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.55rem 0.88rem;
    text-decoration: none;
    color: #1d547b;
    font-weight: 700;
    white-space: nowrap;
    transition: color 170ms var(--ease), background-color 170ms var(--ease), border-color 170ms var(--ease), box-shadow 170ms var(--ease);
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible,
.site-nav-links a.is-active {
    outline: none;
    color: #0d5f9a;
    background: #ffffff;
    border-color: #b8d5ea;
    box-shadow: 0 6px 14px rgba(8, 58, 94, 0.08);
}

.site-nav-links .btn-nav-call {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, #0b76c1, #0a578e);
    box-shadow: 0 10px 20px rgba(8, 76, 122, 0.28);
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    min-width: 160px;
}

.site-nav-links .btn-nav-call:hover,
.site-nav-links .btn-nav-call:focus-visible,
.site-nav-links .btn-nav-call.is-active {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, #0b76c1, #0a578e);
    box-shadow: 0 10px 20px rgba(8, 76, 122, 0.28);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 0.72rem 1.1rem;
    text-decoration: none;
    font-weight: 800;
    line-height: 1;
    transition: background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 116, 190, 0.24);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0b76c1, #0a568c);
    box-shadow: 0 12px 24px rgba(8, 76, 122, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 14px 28px rgba(8, 76, 122, 0.3);
}

.btn-secondary {
    color: #1b5278;
    background: #ffffff;
    border-color: #b7d4e9;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: #99c0de;
    box-shadow: 0 10px 18px rgba(8, 76, 122, 0.14);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1140;
    background: rgba(8, 38, 61, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.section {
    padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #bed9ec;
    background: #edf7ff;
    color: #0d619d;
    padding: 0.3rem 0.68rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero {
    padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.8vw, 1.8rem);
}

.hero-copy,
.hero-visual,
.section-head,
.service-card,
.gallery-copy,
.gallery-slider,
.standard-card,
.stat-card,
.contact-panel,
.legal-card,
.policy-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(154, 191, 218, 0.6);
    background: linear-gradient(170deg, #ffffff, #f3f9ff);
    box-shadow: var(--shadow-sm);
}

.hero-copy {
    grid-column: 1 / -1;
    padding: clamp(1.2rem, 3vw, 1.9rem);
}

.hero-copy h1 {
    margin-top: 0.8rem;
    max-width: 19ch;
    font-size: clamp(1.9rem, 4.8vw, 3rem);
    line-height: 1.1;
}

.hero-copy > p {
    margin-top: 0.95rem;
    max-width: 62ch;
    color: var(--muted);
}

.hero-actions {
    margin-top: 1.15rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-list {
    margin-top: 1.05rem;
    list-style: none;
    display: grid;
    gap: 0.42rem;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 0.56rem;
    font-weight: 700;
    color: #275474;
}

.hero-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.hero-visual {
    overflow: hidden;
    padding: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(147, 187, 216, 0.62);
}

.hero-image-large {
    grid-column: 1 / -1;
    min-height: 230px;
}

.stat-grid {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.86rem;
}

.stat-card {
    padding: 0.95rem;
}

.stat-card p {
    margin-top: 0.52rem;
    color: var(--muted);
}

.section-head {
    max-width: 72ch;
    padding: 1rem;
}

.section-head h2 {
    margin-top: 0.72rem;
    font-size: clamp(1.4rem, 3.4vw, 2.1rem);
    text-wrap: balance;
}

.service-grid,
.standard-grid,
.policy-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.9rem;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    overflow: hidden;
    transition: transform 190ms var(--ease), box-shadow 190ms var(--ease), border-color 190ms var(--ease);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-body {
    padding: 0.95rem;
}

.service-body p {
    margin-top: 0.56rem;
    color: var(--muted);
}

.service-link {
    margin-top: 0.84rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: #0d649f;
    font-weight: 800;
}

.service-link::after {
    content: "->";
}

.gallery-section {
    padding-top: 0.95rem;
}

.gallery-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.95rem;
    align-items: stretch;
}

.gallery-copy {
    padding: clamp(1.08rem, 3vw, 1.7rem);
}

.gallery-copy h2 {
    margin-top: 0.72rem;
    font-size: clamp(1.45rem, 3.5vw, 2.2rem);
    text-wrap: balance;
}

.gallery-copy > p {
    margin-top: 0.85rem;
    color: var(--muted);
    max-width: 58ch;
}

.gallery-points {
    margin-top: 1rem;
    list-style: none;
    display: grid;
    gap: 0.68rem;
}

.gallery-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.64rem;
    font-weight: 700;
    color: #275474;
}

.gallery-points li::before {
    content: "";
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 0 0 5px rgba(12, 116, 190, 0.08);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    padding: 0.82rem;
    display: grid;
    gap: 0.82rem;
}

.gallery-slider::before {
    content: "";
    position: absolute;
    inset: auto -18% -28% 48%;
    height: 220px;
    background: radial-gradient(circle, rgba(16, 143, 137, 0.14), transparent 66%);
    pointer-events: none;
}

.gallery-slides {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(147, 187, 216, 0.62);
    background: #dcebf7;
    min-height: clamp(360px, 48vw, 540px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.gallery-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 420ms var(--ease), transform 420ms var(--ease), visibility 0ms linear 420ms;
}

.gallery-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition-delay: 0ms;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 30, 49, 0.04), rgba(6, 30, 49, 0.24) 52%, rgba(6, 30, 49, 0.82));
}

.gallery-slide figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 1.15rem;
    display: grid;
    gap: 0.34rem;
    color: #ffffff;
}

.gallery-slide strong {
    font-size: 1.08rem;
}

.gallery-slide span {
    max-width: 38ch;
    color: rgba(236, 245, 251, 0.92);
}

.gallery-controls {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.gallery-control {
    min-width: 84px;
    min-height: 42px;
    border: 1px solid #b7d4e9;
    border-radius: 999px;
    background: #ffffff;
    color: #1d547b;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease);
}

.gallery-control:hover,
.gallery-control:focus-visible {
    outline: none;
    border-color: #99c0de;
    background: #fafdff;
    box-shadow: 0 10px 18px rgba(8, 76, 122, 0.14);
    transform: translateY(-1px);
}

.gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 999px;
    background: #bfd8ea;
    cursor: pointer;
    transition: width 220ms var(--ease), background-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.gallery-dot:hover,
.gallery-dot:focus-visible {
    outline: none;
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(12, 116, 190, 0.16);
}

.gallery-dot.is-active {
    width: 34px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 8px 16px rgba(8, 76, 122, 0.2);
}

.standard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.standard-card {
    padding: 1rem;
    transition: transform 190ms var(--ease), box-shadow 190ms var(--ease), border-color 190ms var(--ease);
}

.standard-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.standard-card span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.standard-card h3 {
    margin-top: 0.66rem;
}

.standard-card p {
    margin-top: 0.45rem;
    color: var(--muted);
}

.contact-section {
    padding-top: 0.55rem;
}

.contact-panel {
    padding: clamp(1.12rem, 3vw, 1.8rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact-panel h2 {
    margin-top: 0.68rem;
    font-size: clamp(1.36rem, 3.4vw, 2rem);
}

.contact-panel p:last-child {
    margin-top: 0.72rem;
    max-width: 62ch;
    color: #2f5d7c;
}

.contact-actions {
    min-width: min(330px, 100%);
    display: grid;
    gap: 0.58rem;
}

.site-footer {
    margin-top: 1.4rem;
    border-top: 1px solid var(--line);
    background: #f2f9ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 0.9rem;
    padding: 1.12rem 0;
}

.site-footer h3 {
    font-size: 1rem;
}

.site-footer ul {
    list-style: none;
    margin-top: 0.46rem;
    display: grid;
    gap: 0.32rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: #3e617c;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    text-decoration: underline;
}

.site-footer a:focus-visible {
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 0 3px rgba(12, 116, 190, 0.25);
}

.footer-base {
    border-top: 1px solid #d4e7f4;
    padding: 0.78rem 0 1rem;
}

.footer-base p {
    font-size: 0.9rem;
    color: #4e6c84;
}

.legal-main {
    padding-top: clamp(1.7rem, 4vw, 2.8rem);
}

.legal-shell {
    width: min(920px, 92vw);
    margin: 0 auto;
}

.legal-card {
    padding: clamp(1rem, 3vw, 1.6rem);
    box-shadow: var(--shadow-md);
}

.legal-intro {
    margin-top: 0.8rem;
    color: var(--muted);
}

.legal-meta {
    margin-top: 0.66rem;
    font-size: 0.9rem;
    color: #4f7088;
}

.legal-card h2 {
    margin-top: 1.1rem;
    font-size: 1.16rem;
}

.legal-card h3 {
    margin-top: 0.9rem;
    font-size: 1.02rem;
}

.legal-card p,
.legal-card li {
    margin-top: 0.44rem;
    color: var(--muted);
}

.legal-card ul {
    margin-top: 0.25rem;
    padding-left: 1.2rem;
}

.policy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-card {
    padding: 0.95rem;
}

.policy-card p {
    margin-top: 0.52rem;
    color: var(--muted);
}

.policy-card a {
    margin-top: 0.66rem;
    display: inline-flex;
    font-weight: 800;
    color: #0d639d;
    text-decoration: none;
}

.legal-card a,
.policy-card a {
    text-underline-offset: 2px;
}

.legal-card a:hover,
.legal-card a:focus-visible,
.policy-card a:hover,
.policy-card a:focus-visible {
    text-decoration: underline;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 380ms ease, transform 380ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .stat-grid,
    .service-grid,
    .standard-grid,
    .policy-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 76px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 1260;
    }

    .brand-copy small {
        display: block;
        font-size: 0.68rem;
        letter-spacing: 0.035em;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        width: min(88vw, 370px);
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        padding: 0.9rem;
        transform: translateX(104%);
        opacity: 0;
        pointer-events: none;
        will-change: transform;
        transition: transform 250ms var(--ease), opacity 200ms ease;
        z-index: 1240;
    }

    .site-nav.is-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav-links {
        width: 100%;
        height: 100%;
        display: grid;
        align-content: start;
        gap: 0.52rem;
        padding: 0.75rem;
        border-radius: 16px;
        border: 1px solid rgba(162, 199, 227, 0.88);
        background: linear-gradient(180deg, #ffffff, #eef7ff);
        box-shadow: 0 20px 36px rgba(7, 40, 66, 0.22);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .site-nav-links a,
    .site-nav-links .btn-nav-call {
        width: 100%;
        justify-content: flex-start;
        min-height: 49px;
        padding: 0.72rem 0.86rem;
        font-size: 1rem;
        white-space: normal;
    }

    .site-nav-links .btn-nav-call {
        justify-content: center;
        margin-top: 0.3rem;
    }

    .site-nav-links .btn-nav-call {
        min-width: 0;
        width: 100%;
        padding: 0.95rem 1rem;
    }

    .site-nav-links .btn-nav-call:hover,
    .site-nav-links .btn-nav-call:focus-visible,
    .site-nav-links .btn-nav-call.is-active {
        box-shadow: 0 12px 24px rgba(8, 76, 122, 0.33);
    }

    .hero-actions,
    .contact-actions {
        width: 100%;
        min-width: 0;
    }

    .hero-actions .btn,
    .contact-actions .btn {
        width: 100%;
    }

    .stat-grid,
    .service-grid,
    .standard-grid,
    .policy-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        backdrop-filter: none;
    }
}

@media (max-width: 640px) {
    .header-shell {
        gap: 0.58rem;
    }

    .brand {
        gap: 0.56rem;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 0.86rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.7rem, 8vw, 2.3rem);
    }

    .hero-image-large {
        min-height: 200px;
    }

    .section-head,
    .hero-copy,
    .service-body,
    .gallery-copy,
    .standard-card,
    .stat-card,
    .contact-panel,
    .legal-card,
    .policy-card {
        padding: 0.9rem;
    }

    .gallery-slider {
        padding: 0.7rem;
    }

    .gallery-slides {
        min-height: 330px;
    }

    .gallery-slide figcaption {
        padding: 0.95rem;
    }

    .gallery-controls {
        gap: 0.55rem;
    }

    .gallery-control {
        min-width: 72px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
        animation: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
