@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("../fonts/inter-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("../fonts/inter-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: Outfit;
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("../fonts/outfit-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Outfit;
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("../fonts/outfit-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --navy: #0C2340;
    --navy-mid: #163A5F;
    --accent: #1F4E79;
    --bg: #F5F7FA;
    --white: #FFFFFF;
    --text: #1A2332;
    --muted: #5C6B7A;
    --border: #E2E8F0;
    --radius: 10px;
    --shadow: 0 10px 28px rgba(12, 35, 64, 0.08);
    --header-h: 4.25rem;
    --font-sans: Inter, system-ui, sans-serif;
    --font-display: Outfit, Inter, system-ui, sans-serif;
    --wrap: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

body.is-nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.muted {
    color: var(--muted);
}

.wrap {
    width: min(var(--wrap), calc(100% - 1.5rem));
    margin-left: auto;
    margin-right: auto;
}

.skip-link {
    position: absolute;
    left: 0.75rem;
    top: -3.5rem;
    z-index: 200;
    background: var(--white);
    color: var(--navy);
    padding: 0.6rem 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 0.75rem;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 1.15rem;
    height: 1.15rem;
    display: inline-block;
    vertical-align: -0.2em;
    flex-shrink: 0;
}

.icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    background: #e8eef4;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrap .icon {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
    vertical-align: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    border: 0;
    cursor: pointer;
}

.btn-cta {
    background: var(--accent);
    color: var(--white);
}

.btn-cta:hover {
    background: var(--navy-mid);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    color: var(--white);
    min-height: var(--header-h);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header-bar {
    width: min(var(--wrap), calc(100% - 1.5rem));
    margin: 0 auto;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 1.05rem;
    line-height: 1.2;
    margin-right: auto;
    padding: 0.7rem 0;
    max-width: 72%;
}

.header-phone-slot {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.88rem;
    min-height: 44px;
    padding: 0 0.35rem;
    white-space: nowrap;
}

.header-phone-slot span {
    max-width: 9.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
}

.nav-toggle .icon-close {
    display: none;
}

.is-nav-open .nav-toggle .icon-menu {
    display: none;
}

.is-nav-open .nav-toggle .icon-close {
    display: block;
}

.nav-backdrop {
    position: fixed;
    inset: var(--header-h) 0 0;
    background: rgba(12, 35, 64, 0.45);
    z-index: 90;
}

.site-nav {
    display: block;
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: min(22rem, 88vw);
    background: var(--navy-mid);
    z-index: 95;
    transform: translateX(100%);
    transition: transform 0.22s ease;
    overflow: auto;
}

.is-nav-open .site-nav {
    transform: translateX(0);
}

.site-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1.1rem 1.25rem 2rem;
}

.site-nav-panel a {
    color: #d7e0ea;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.site-nav-panel a[aria-current="page"] {
    color: var(--white);
    font-weight: 600;
}

.header-phone-panel {
    margin-top: 0.5rem;
    gap: 0.45rem;
}

.site-nav-panel .btn-cta {
    margin-top: 0.75rem;
    align-self: flex-start;
    color: var(--white);
}

.nav-drop {
    display: flex;
    flex-direction: column;
}

.nav-drop-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d7e0ea;
    font: inherit;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: left;
}

.nav-drop.is-current .nav-drop-trigger,
.nav-drop-trigger[aria-current="page"] {
    color: var(--white);
    font-weight: 600;
}

.nav-drop-trigger .icon-chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.18s ease;
}

.nav-drop.is-open .nav-drop-trigger .icon-chevron {
    transform: rotate(180deg);
}

.nav-drop-panel {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    margin: 0.15rem 0 0.45rem 0.35rem;
    padding: 0.15rem 0 0.15rem 0.85rem;
    border-left: 2px solid rgba(255, 255, 255, 0.18);
}

.nav-drop-panel[hidden] {
    display: none;
}

.nav-drop-panel a {
    font-size: 0.95rem;
    color: #c5d0dc;
}

.nav-drop-all {
    font-weight: 600;
    color: var(--white);
}

/* Main */
.site-main {
    padding: 1.5rem 0 3rem;
    background: var(--bg);
}

.site-main--flush {
    padding: 0 0 0;
}

.page-hero {
    padding: 0.25rem 0 1.5rem;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(1.85rem, 5vw, 2.6rem);
}

.breadcrumb {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0 0 0.85rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.page-article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem 2rem;
}

.page-article h1 {
    margin: 0 0 1.1rem;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.page-title-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 0 0 1.1rem;
}

.page-title-row h1 {
    margin: 0;
    flex: 1;
}

.page-cover {
    width: 100%;
    max-height: 300px;
    height: 300px;
    margin: 0 0 1.5rem;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    background: var(--bg);
    border: 1px solid var(--border);
}

.page-body > *:first-child {
    margin-top: 0;
}

.page-body h2 {
    margin: 1.75rem 0 0.5rem;
    font-size: 1.3rem;
}

.page-body ul,
.page-body ol {
    padding-left: 1.2rem;
}

.page-body img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.page-article .about-split-media img {
    max-height: 300px;
    height: 300px;
    object-fit: cover;
}

.detail-layout {
    display: grid;
    gap: 1.5rem;
}

.detail-aside {
    display: grid;
    gap: 1rem;
}

.aside-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.15rem 1.1rem 1.2rem;
    box-shadow: var(--shadow);
}

.aside-card h2 {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}

.aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aside-list a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.aside-list li:last-child a {
    border-bottom: 0;
}

.aside-list a:hover,
.aside-list a:focus-visible {
    color: var(--accent);
}

.aside-all {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.65rem;
    min-height: 44px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
}

.aside-contact {
    background: var(--navy);
    color: var(--white);
    border-color: transparent;
}

.aside-contact h2 {
    color: var(--white);
}

.aside-contact p {
    margin: 0 0 0.85rem;
    color: #d7e0ea;
    font-size: 0.95rem;
}

.aside-contact-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.aside-contact-link .icon {
    flex-shrink: 0;
}

.aside-contact-btn {
    width: 100%;
    margin-top: 0.85rem;
    background: var(--white);
    color: var(--navy);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 1.35rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card h2,
.card h3,
.card p {
    margin: 0;
    padding: 0 1.15rem;
}

.card h2,
.card h3 {
    font-size: 1.15rem;
    padding-top: 1rem;
}

.card h2 a,
.card h3 a {
    color: var(--navy);
    text-decoration: none;
}

.card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.15rem 0;
}

.card-head h2,
.card-head h3 {
    padding: 0;
}

.card p {
    color: var(--muted);
    padding: 0.5rem 1.15rem 1.15rem;
    font-size: 0.98rem;
}

.card .card-meta {
    padding-bottom: 0;
    font-size: 0.88rem;
}

.card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0 1.15rem 1.15rem;
    font-weight: 600;
    text-decoration: none;
}

.related-block {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.related-block > h2 {
    margin: 0;
    font-size: 1.3rem;
}

.related-kicker {
    display: block;
    padding: 1rem 1.15rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
}

.related-block .card .related-kicker + h3 {
    padding-top: 0.4rem;
}

/* Hero slider */
.hero-slider {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    height: 16.5rem;
}

.home-ticker {
    background: var(--navy-mid);
    color: var(--white);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    padding: 0.75rem 0;
    animation: ticker-shift 48s linear infinite;
}

.home-ticker-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.home-ticker:hover .home-ticker-track {
    animation-play-state: paused;
}

.home-ticker-item {
    flex-shrink: 0;
    position: relative;
    white-space: nowrap;
    padding: 0 3.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
}

.home-ticker-item::after {
    content: "·";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -52%);
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.45;
    pointer-events: none;
}

.home-ticker-item:hover,
.home-ticker-item:focus-visible {
    color: #d7e0ea;
}

@keyframes ticker-shift {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.hero-slides,
.hero-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
}

.hero-slide[hidden] {
    display: none;
}

.hero-slide picture,
.hero-slide > img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 40%;
}

.hero-copy-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(12, 35, 64, 0.08) 10%, rgba(12, 35, 64, 0.72) 100%);
    pointer-events: none;
}

.hero-copy {
    width: min(var(--wrap), calc(100% - 1.5rem));
    margin: 0 auto;
    padding: 0 0 3.15rem;
    color: var(--white);
}

.hero-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c5d4e4;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3.4vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 0.35rem;
    line-height: 1.15;
}

.hero-subtitle {
    margin: 0 0 1.1rem;
    color: #d7e0ea;
    font-size: 1.05rem;
    max-width: 36rem;
}

.hero-btn {
    pointer-events: auto;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-nav,
.hero-dot {
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.hero-nav {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    line-height: 1;
    border-radius: 50%;
}

.hero-dots {
    display: flex;
    gap: 0.4rem;
}

.hero-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    padding: 0;
}

.hero-dot.is-active {
    background: var(--white);
}

.home-hero-fallback {
    background: var(--navy);
    color: var(--white);
    padding: 3.5rem 0 3.75rem;
}

.home-hero-fallback h1 {
    color: var(--white);
    margin: 0 0 0.6rem;
    font-size: clamp(1.9rem, 5vw, 3rem);
}

.home-hero-fallback p {
    color: #d7e0ea;
    max-width: 36rem;
    margin: 0 0 1.25rem;
}

/* Home sections — light bands only; navy is accent (header/hero/cta/footer) */
.home-section {
    padding: 3rem 0;
    background: var(--bg);
}

.home-section--white {
    background: var(--white);
}

.home-section h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.section-lead {
    color: var(--muted);
    margin: 0.45rem 0 0;
    max-width: 36rem;
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.75rem;
}

.section-more {
    margin: 1.15rem 0 0;
}

.section-more a,
a.section-more {
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    min-height: 44px;
    color: var(--accent);
}

.hero-nav[data-hero-prev] .icon {
    transform: scaleX(-1);
}

.home-intro .page-body {
    max-width: none;
}

.about-split {
    display: grid;
    gap: 1.5rem;
}

.about-split-media {
    margin: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.about-split-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.about-split-copy .page-body > *:last-child {
    margin-bottom: 0;
}

.about-split-copy .section-more {
    margin-top: 1.15rem;
}

.intro-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
}

.intro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.15rem;
}

.intro-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    text-align: center;
}

.intro-logo-text strong {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.35rem, 7.5vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--navy);
}

.intro-logo-text span {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 3.2vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
}

.intro-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 56px;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.25;
    text-align: center;
}

.intro-cta-btn .icon {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
}

.intro-cta-call {
    background: var(--navy);
    color: var(--white);
}

.intro-cta-call:hover,
.intro-cta-call:focus-visible {
    background: var(--navy-mid);
    color: var(--white);
}

.intro-cta-wa {
    background: #128C7E;
    color: var(--white);
}

.intro-cta-wa:hover,
.intro-cta-wa:focus-visible {
    background: #0e7a6e;
    color: var(--white);
}

.about-rest {
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

.about-rest .page-body > h2:first-child {
    margin-top: 0;
    margin-bottom: 0.9rem;
    width: 100%;
    font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.15rem 1.15rem;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: var(--shadow);
}

.service-card .icon-wrap {
    margin: 0 0 0.85rem;
}

.service-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.12rem;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.service-card .service-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.92rem;
}

.project-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.project-feature {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 16rem;
    color: var(--white);
    text-decoration: none;
}

.project-feature img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    display: block;
}

.project-feature-copy {
    position: absolute;
    inset: auto 0 0;
    padding: 1.25rem 1.15rem;
    background: linear-gradient(180deg, transparent, rgba(12, 35, 64, 0.88));
}

.project-feature h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.2rem;
}

.project-feature p {
    margin: 0.25rem 0 0;
    color: #d7e0ea;
    font-size: 0.9rem;
}

.home-why {
    background: var(--bg);
    color: var(--text);
}

.home-why h2 {
    color: var(--navy);
}

.home-why .section-lead {
    color: var(--muted);
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.75rem;
}

.stat {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.2rem 1.1rem;
    box-shadow: var(--shadow);
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: -0.03em;
    color: var(--white);
}

.stat span {
    color: #d7e0ea;
    font-size: 0.95rem;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 1.5rem;
}

.quote {
    margin: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.2rem;
    box-shadow: var(--shadow);
}

.quote-photo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin-bottom: 0.7rem;
}

.quote-stars {
    margin: 0 0 0.45rem;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.quote-body {
    margin: 0 0 0.85rem;
}

.quote footer {
    color: var(--muted);
    font-size: 0.92rem;
}

.quote footer strong {
    display: block;
    color: var(--navy);
}

.home-cta {
    background: var(--accent);
    color: var(--white);
    padding: 2.5rem 0;
}

.home-cta h2 {
    color: var(--white);
    margin: 0 0 0.4rem;
}

.home-cta p {
    margin: 0 0 1.1rem;
    color: #dbe7f3;
}

.home-cta .btn {
    background: var(--white);
    color: var(--navy);
}

.home-cta .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.home-cta a.cta-phone {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: #d7e0ea;
    padding: 2.5rem 0 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
}

.footer-logo,
.footer-heading {
    font-family: var(--font-display);
    color: var(--white);
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
}

.footer-brand p:last-child {
    margin: 0;
    max-width: 22rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a,
.footer-contact a {
    color: #d7e0ea;
    text-decoration: none;
}

.footer-links li,
.footer-contact li {
    margin: 0 0 0.4rem;
}

.footer-contact li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.85rem 0 0;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.footer-map {
    margin-top: 0.9rem;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 140px;
    border: 0;
    display: block;
}

.footer-map-link {
    color: #d7e0ea;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 44px;
}

.footer-empty a {
    color: #d7e0ea;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0 1.15rem;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-credit {
    font-size: 0.82rem;
}

.footer-credit a {
    color: rgba(215, 224, 234, 0.72);
    text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
    color: var(--white);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-legal a {
    color: #d7e0ea;
    text-decoration: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* Cookie */
.cookie-bar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 120;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-bar p {
    margin: 0;
    font-size: 0.92rem;
}

.cookie-bar[hidden] {
    display: none;
}

/* Floating contact */
.float-actions {
    position: fixed;
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    z-index: 110;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.has-cookie-bar .float-actions {
    bottom: calc(8.75rem + env(safe-area-inset-bottom, 0px));
}

.float-btn {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(12, 35, 64, 0.22);
}

.float-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: 0;
}

.float-btn-wa {
    background: #25d366;
}

.float-btn-tel {
    background: var(--accent);
}

.float-btn:hover {
    color: var(--white);
    filter: brightness(1.07);
}

.float-btn:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 3px;
}

.is-nav-open .float-actions {
    visibility: hidden;
    pointer-events: none;
}

/* Existing modules restyle */
.filter-label {
    margin: 1.1rem 0 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.filter-bar button {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    font: inherit;
    font-size: 0.9rem;
    min-height: 44px;
    padding: 0.4rem 0.85rem;
    cursor: pointer;
    border-radius: 8px;
}

.filter-bar button.is-active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.filter-empty {
    margin-top: 1rem;
}

.project-meta {
    margin: -0.5rem 0 1.1rem;
    color: var(--muted);
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.project-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
}

.project-services a {
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 0.4rem 0.75rem;
    font-size: 0.88rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
}

.ba-list {
    display: grid;
    gap: 1.25rem;
    margin-top: 1rem;
}

.ba-pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.ba-label {
    margin: 0 0 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.ba-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.gallery img {
    width: 100%;
    height: 180px;
    max-height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.contact-form,
.contact-thanks,
.contact-aside {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
}

.contact-form .field {
    margin: 0 0 0.9rem;
}

.contact-form label {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.3rem;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font: inherit;
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    border-radius: 8px;
}

.contact-form button[type="submit"] {
    background: var(--accent);
    color: var(--white);
    border: 0;
    font-family: var(--font-display);
    font-weight: 600;
    min-height: 44px;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    border-radius: var(--radius);
}

.form-alert {
    background: #FDECEC;
    color: #8A1C1C;
    border: 1px solid #F5C2C2;
    padding: 0.75rem 1rem;
    margin: 0 0 1rem;
    border-radius: 8px;
}

.contact-map iframe {
    width: 100%;
    height: 240px;
    border: 0;
    display: block;
    border-radius: 8px;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.faq-list details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.35rem 1.1rem;
    margin: 0.55rem 0 0;
}

.faq-list summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.faq-list details[open] summary {
    margin-bottom: 0.35rem;
}

.faq-list details p,
.faq-list .faq-answer {
    margin: 0 0 0.9rem;
    color: var(--muted);
}

.faq-list .faq-answer p {
    margin: 0 0 0.65rem;
}

.faq-list .faq-answer a {
    color: var(--accent);
    font-weight: 600;
}

.error-page {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem 1.5rem;
    max-width: 36rem;
}

.error-page .kicker {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.error-page h1 {
    margin: 0 0 0.75rem;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.error-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
}

.error-actions a:first-child {
    background: var(--navy);
    color: var(--white);
}

.error-actions a:last-child {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
}

@media (min-width: 480px) {
    .header-phone-slot span {
        max-width: none;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .wrap {
        width: min(var(--wrap), calc(100% - 2.5rem));
    }

    .card-grid,
    .quote-grid,
    .service-grid,
    .project-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ba-pair {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .footer-bottom-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem 1.25rem;
    }

    .hero-slider {
        height: 400px;
    }

    .hero-copy {
        padding-bottom: 2.5rem;
    }

    .cookie-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        left: 1.25rem;
        right: auto;
        max-width: 42rem;
    }

    .has-cookie-bar .float-actions {
        bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    }

    .page-article {
        padding: 2rem 1.75rem 2.25rem;
    }

    .about-split--has-media {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
        gap: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .nav-toggle,
    .nav-backdrop,
    .site-nav-panel .header-phone-panel {
        display: none;
    }

    .header-phone-slot {
        order: 2;
        margin-left: 0.5rem;
    }

    .site-header-bar {
        gap: 2.75rem;
    }

    .site-nav {
        position: static;
        width: auto;
        background: transparent;
        transform: none;
        overflow: visible;
        display: block;
        order: 1;
        margin-left: auto;
    }

    .is-nav-open .site-nav {
        transform: none;
    }

    .site-nav-panel {
        flex-direction: row;
        align-items: center;
        gap: 0.15rem 0.8rem;
        padding: 0;
    }

    .site-nav-panel a {
        font-size: 0.92rem;
        min-height: 44px;
        color: #d7e0ea;
    }

    .nav-drop {
        position: relative;
        flex-direction: row;
        align-items: center;
    }

    .nav-drop-trigger {
        font-size: 0.92rem;
        min-height: 44px;
        color: #d7e0ea;
    }

    .nav-drop-trigger:hover,
    .nav-drop-trigger:focus-visible {
        color: var(--white);
    }

    .nav-drop-panel {
        position: absolute;
        top: calc(100% - 0.15rem);
        left: 0;
        min-width: 16.75rem;
        margin: 0;
        padding: 0.4rem 0;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
        z-index: 120;
    }

    .nav-drop-panel a {
        color: var(--text);
        font-size: 0.9rem;
        min-height: 2.5rem;
        padding: 0 1rem;
    }

    .nav-drop-panel a:hover,
    .nav-drop-panel a:focus-visible {
        background: var(--bg);
        color: var(--navy);
    }

    .nav-drop-panel a[aria-current="page"] {
        color: var(--navy);
        font-weight: 600;
    }

    .nav-drop-all {
        color: var(--navy);
        border-bottom: 1px solid var(--border);
        margin-bottom: 0.2rem;
        padding-bottom: 0.15rem;
    }

    .site-nav-panel .btn-cta {
        margin-top: 0;
        margin-left: 0.35rem;
    }

    .logo {
        max-width: none;
        margin-right: 0;
        font-size: 1.15rem;
    }

    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .project-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quote-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    }

    .contact-grid {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: start;
    }

    .home-section {
        padding: 4rem 0;
    }

    .detail-layout {
        grid-template-columns: minmax(0, 1fr) 17.25rem;
        align-items: start;
        gap: 1.75rem;
    }

    .detail-aside {
        position: sticky;
        top: calc(var(--header-h) + 0.85rem);
    }
}

@media (min-width: 1280px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-feature img,
    .project-feature {
        min-height: 20rem;
        height: 20rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .site-nav {
        transition: none;
    }

    .nav-drop-trigger .icon-chevron {
        transition: none;
    }

    .home-ticker-track {
        animation: none;
    }
}
