:root {
    --bg: #f3f5f7;
    --surface: #ffffff;
    --ink: #101828;
    --ink-soft: #54606f;
    --ink-faint: #8892a0;
    --line: #e1e5eb;
    --navy: #0e2438;
    --navy-soft: #173a54;
    --orange: #e8590c;
    --orange-dark: #c2410c;
    --orange-soft: #fdece0;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06);
    --shadow-md: 0 8px 24px rgba(16, 24, 40, .08);
    --shadow-lg: 0 20px 48px rgba(16, 24, 40, .14);
    --container: 1180px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    max-width: 100vw;
    overflow-x: hidden;
    line-height: 1.55;
    padding-bottom: 64px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
    border-radius: 4px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4.5rem 0;
}

.section-tight {
    padding: 2.5rem 0;
}

.section-alt {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-navy {
    background: var(--navy);
    color: #fff;
}

.section-head {
    max-width: 680px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--orange-dark);
    background: var(--orange-soft);
    padding: .4rem .85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.section-head h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    margin-bottom: .75rem;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.4rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: .98rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}

.btn:active {
    transform: scale(.97);
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 18px rgba(232, 89, 12, .35);
}

.btn-primary:hover {
    background: var(--orange-dark);
}

.btn-dark {
    background: var(--navy);
    color: #fff;
}

.btn-dark:hover {
    background: var(--navy-soft);
}

.btn-outline {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-outline-light:hover {
    border-color: #fff;
}

.btn-block {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    font-size: 1.05rem;
}

.brand-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.05;
}

.brand-tagline {
    margin-top: .18rem;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
    color: var(--orange-dark);
    white-space: nowrap;
}

@media (max-width: 520px) {
    .brand-tagline {
        font-size: .5rem;
        letter-spacing: .035em;
    }
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: .94rem;
    color: var(--ink-soft);
    padding: .3rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--ink);
    border-color: var(--orange);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .5rem;
    color: var(--ink);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: .2rem;
    padding: .5rem 0 1rem;
    border-top: 1px solid var(--line);
}

.mobile-menu a {
    padding: .7rem .25rem;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
}

.mobile-menu.open {
    display: flex;
}

.mobile-hidden {
    display: inline-flex;
}

@media (max-width:900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .mobile-hidden {
        display: none;
    }
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(232, 89, 12, .14) 0 8%, transparent 28%),
        radial-gradient(circle at 12% 85%, rgba(14, 36, 56, .10) 0 10%, transparent 32%),
        linear-gradient(135deg, #f8fafc 0%, #eef3f7 48%, #e7edf2 100%);
    padding: 3.25rem 0 3.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: .5rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
}

.eyebrow-pill svg {
    color: var(--orange);
    flex-shrink: 0;
}

.hero h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.1rem);
    color: var(--navy);
}

.hero h1 .accent {
    color: var(--orange);
}

.hero .lead {
    margin-top: 1.1rem;
    font-size: 1.12rem;
    color: var(--ink-soft);
    max-width: 52ch;
}

.hero .lead strong {
    color: var(--ink);
}

.hero-ctas {
    display: flex;
    gap: .85rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.hero-ctas .btn {
    padding: 1rem 1.6rem;
    font-size: 1.02rem;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    margin-left: -12px;
    background: #fff;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.trust-copy {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.stars {
    color: var(--orange);
    letter-spacing: .1em;
    font-size: .9rem;
}

.trust-copy strong {
    font-size: .95rem;
}

.trust-copy span {
    font-size: .85rem;
    color: var(--ink-faint);
}

.hero-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: #dfe3e8;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 36, 56, 0) 40%, rgba(14, 36, 56, .75) 100%);
}

.hero-slide-caption {
    position: absolute;
    left: 1.25rem;
    bottom: 1.1rem;
    color: #fff;
}

.hero-slide-caption p {
    margin: 0;
}

.hero-slide-caption p:first-child {
    font-weight: 800;
    font-size: 1.15rem;
}

.hero-slide-caption p:last-child {
    font-size: .85rem;
    opacity: .85;
}

.hero-dots {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: .4rem;
    z-index: 2;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: none;
    padding: 0;
    cursor: pointer;
}

.hero-dot.active {
    background: #fff;
}

@media (max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.stats {
    background: var(--navy);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 0;
    text-align: center;
}

.stat-num {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--orange);
}

.stat-label {
    font-size: .85rem;
    color: #c7d0da;
    margin-top: .25rem;
}

@media (max-width:700px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.feature-card svg {
    color: var(--orange);
    margin-bottom: .85rem;
}

.feature-card h4 {
    font-size: 1.02rem;
    margin-bottom: .4rem;
}

.feature-card p {
    color: var(--ink-soft);
    font-size: .92rem;
}

@media (max-width:900px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:520px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease, transform .2s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-media {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-tags {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: flex;
    gap: .4rem;
}

.service-tag {
    background: rgba(14, 36, 56, .85);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .3rem .6rem;
    border-radius: 999px;
}

.service-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--orange-soft);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .7rem;
}

.service-body h4 {
    font-size: 1.1rem;
    margin-bottom: .4rem;
}

.service-body p {
    color: var(--ink-soft);
    font-size: .93rem;
}

.service-actions {
    display: flex;
    gap: .6rem;
    margin-top: auto;
}

@media (max-width:960px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:620px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-actions {
        flex-direction: column;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: step;
}

.step-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.4rem;
}

.step-num {
    font-size: .78rem;
    font-weight: 800;
    color: var(--orange-dark);
    background: var(--orange-soft);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
}

.step-card h4 {
    font-size: 1rem;
    margin-bottom: .4rem;
}

.step-card p {
    color: var(--ink-soft);
    font-size: .9rem;
}

@media (max-width:900px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:520px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.owner-card {
    display: block;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(232, 89, 12, .07), rgba(14, 36, 56, .035)),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.owner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--navy));
}

.owner-body {
    padding-left: .5rem;
}

.owner-title {
    color: var(--orange-dark);
    font-weight: 700;
    margin: .3rem 0 1rem;
}

.owner-bio {
    color: var(--ink-soft);
}

.owner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin: 1.25rem 0;
}

.owner-badges li {
    background: var(--bg);
    border: 1px solid var(--line);
    padding: .4rem .8rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
}

.owner-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

@media (max-width:800px) {
    .owner-card {
        padding: 2rem 1.5rem;
    }
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.spec-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.spec-card h4 {
    font-size: 1rem;
    margin-bottom: .5rem;
}

.spec-quote {
    font-style: italic;
    color: var(--ink-faint);
    font-size: .85rem;
    margin-bottom: .9rem;
    padding-left: .7rem;
    border-left: 2px solid var(--orange);
}

.spec-card ul li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: var(--ink-soft);
    padding: .3rem 0;
}

.spec-card ul li svg {
    color: var(--orange);
    flex-shrink: 0;
}

@media (max-width:900px) {
    .spec-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.dual-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.dual-card:not(.blue) {
    background: var(--surface);
    border: 1px solid var(--line);
}

.dual-card h4 {
    margin-bottom: .7rem;
}

.dual-card p {
    color: var(--ink-soft);
}

.dual-card.blue {
    background: var(--navy);
    color: #fff;
}

.dual-card.blue p {
    color: #c7d0da;
}

@media (max-width:800px) {
    .dual-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-section {
    padding: 3.5rem 0;
    background: var(--navy);
    color: #fff;
}

.gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.gallery-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--orange);
    font-weight: 800;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .6rem;
}

.gallery-head h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.marquee-viewport {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marquee 42s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    width: 190px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.location-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.location-card h4 {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    margin-bottom: .9rem;
    color: var(--navy);
}

.location-card h4 svg {
    color: var(--orange);
    flex-shrink: 0;
}

.location-list li {
    font-size: .9rem;
    color: var(--ink-soft);
    padding: .28rem 0;
    border-bottom: 1px dashed var(--line);
}

.location-list li:last-child {
    border-bottom: none;
}

@media (max-width:900px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

.locations-cta {
    margin-top: 2.5rem;
    background: var(--orange-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.locations-cta h4 {
    color: var(--orange-dark);
    margin-bottom: .5rem;
}

.locations-cta p {
    color: #7c4a20;
    margin-bottom: 1rem;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.pill {
    background: #fff;
    border: 1px solid rgba(194, 65, 12, .25);
    color: var(--orange-dark);
    font-size: .8rem;
    font-weight: 700;
    padding: .35rem .8rem;
    border-radius: 999px;
}

.seo-content {
    max-width: 820px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 1.5rem;
}

.seo-content h3 {
    font-size: 1.15rem;
    margin: 1.75rem 0 .75rem;
    color: var(--navy);
}

.seo-content p {
    color: var(--ink-soft);
    margin-bottom: 1.1rem;
}

.seo-content a {
    color: var(--orange-dark);
    font-weight: 700;
    text-decoration: underline;
}

.seo-locality-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.5rem;
}

.seo-locality-tags span {
    background: var(--bg);
    border: 1px solid var(--line);
    font-size: .82rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    color: var(--ink-soft);
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(120deg, var(--navy), var(--navy-soft));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 0 auto;
    max-width: var(--container);
}

.cta-band h4 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
}

.cta-band p {
    color: #c7d0da;
    max-width: 46ch;
}

.cta-band .pill-row {
    margin-top: 1rem;
}

.cta-band .pill {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
}

@media (max-width:800px) {
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: .25rem 1.4rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    padding: 1.1rem 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform .2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    color: var(--ink-soft);
    padding-bottom: 1.2rem;
    font-size: .95rem;
}

.contact-shell {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 2.5rem;
}

.contact-info h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.contact-info h3 {
    font-size: 1.05rem;
    color: var(--ink-soft);
    font-weight: 600;
    margin-top: .4rem;
    margin-bottom: 1.75rem;
}

.contact-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-row.primary {
    background: var(--orange-soft);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.2rem;
    border-bottom: none;
    margin-bottom: .75rem;
}

.contact-row-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--bg);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row.primary .contact-row-icon {
    background: #fff;
}

.contact-row-label {
    font-size: .8rem;
    color: var(--ink-faint);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.contact-row-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.form-grid.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.field label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .75rem .9rem;
    font: inherit;
    background: var(--bg);
    color: var(--ink);
}

.field textarea {
    min-height: 100px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 2px solid var(--orange);
    border-color: var(--orange);
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
}

.form-submit:hover {
    background: var(--orange-dark);
}

.form-note {
    margin-top: .85rem;
    font-size: .85rem;
    color: var(--ink-soft);
    text-align: center;
    min-height: 1.2em;
}

@media (max-width:900px) {
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .form-grid.two {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    background: var(--navy);
    color: #c7d0da;
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.footer-about {
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer h5 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: .6rem;
    font-size: .9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-row {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: .85rem;
}

.footer-contact-label {
    color: #8a97a6;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .15rem;
}

.footer-contact-value {
    color: #fff;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .85rem;
}

.footer-legal {
    display: flex;
    gap: 1.25rem;
}

@media (max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.fab-stack {
    position: fixed;
    right: 1.1rem;
    bottom: 5.2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    z-index: 60;
}

.fab {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.fab.whatsapp {
    background: #25d366;
}

.fab.call {
    background: var(--orange);
}

@media (min-width:901px) {
    .fab-stack {
        bottom: 1.5rem;
    }
}

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: flex;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(16, 24, 40, .08);
}

.sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .95rem;
    font-weight: 800;
    font-size: .95rem;
}

.sticky-cta a.call {
    background: var(--navy);
    color: #fff;
}

.sticky-cta a.wa {
    background: #25d366;
    color: #fff;
}

@media (min-width:901px) {
    .sticky-cta {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* Performance: pause off-screen marquee animation without changing its visual design. */
.marquee-track {
    animation-play-state: running;
}

.marquee-track.is-paused {
    animation-play-state: paused;
}

/* Keep the moving gallery contained to its own paint area. */
.marquee-viewport {
    contain: layout paint;
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none !important;
        transform: none !important;
    }
}


/* =========================================================
   PERFORMANCE + ACCESSIBILITY OPTIMIZATIONS
   Visual design intentionally preserved.
   ========================================================= */

/* Give the small visual carousel dots a large keyboard/touch target. */
.hero-dot {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    border: 0;
}

.hero-dot::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
}

.hero-dot.active::before {
    background: #fff;
}

.hero-dot:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Prevent off-screen sections from consuming paint/layout work on first load. */
@supports (content-visibility: auto) {

    .stats,
    .section,
    .gallery-section,
    .site-footer {
        content-visibility: auto;
        contain-intrinsic-size: 1px 700px;
    }

    .hero,
    .stats,
    .gallery-section {
        contain: layout paint;
    }
}

/* The gallery is an isolated paint area and uses compositor-friendly transforms. */
.marquee-viewport {
    contain: layout paint;
    overflow: hidden;
}

.marquee-track {
    will-change: transform;
    backface-visibility: hidden;
}

/* Avoid expensive blur work on devices that do not need it. */
@media (max-width: 900px) {
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, .98);
    }
}

/* Keep focus indicators visible and preserve the existing visual language. */
.nav-toggle:focus-visible,
.btn:focus-visible,
.form-submit:focus-visible,
.fab:focus-visible,
.sticky-cta a:focus-visible,
.hero-dot:focus-visible,
.faq-item summary:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

/* Comfortable touch target for the mobile menu button without changing its look. */
.nav-toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}\n\n/* =========================================================\n   DEPLOYMENT-SAFE LAYOUT FIXES — 2026-08-27\n   Prevent stale/partial layout rules from breaking first paint.\n   ========================================================= */\nhtml, body {\n    width: 100%;\n    max-width: 100%;\n    overflow-x: hidden;\n}\n\n.site-header {\n    width: 100%;\n}\n\n.site-header > .container {\n    width: 100%;\n}\n\n.nav-row {\n    display: grid;\n    grid-template-columns: minmax(260px, 1fr) auto auto;\n    align-items: center;\n    gap: 1.25rem;\n    min-height: 72px;\n}\n\n.brand {\n    min-width: 0;\n}\n\n.nav-links {\n    min-width: 0;\n    justify-content: center;\n    gap: clamp(.75rem, 1.5vw, 1.6rem);\n    white-space: nowrap;\n}\n\n.nav-toggle {\n    display: none;\n    align-items: center;\n    justify-content: center;\n}\n\n.mobile-menu {\n    display: none !important;\n}\n\n.mobile-menu.open {\n    display: flex !important;\n}\n\n.hero {\n    contain: none !important;\n    content-visibility: visible !important;\n}\n\n.hero-grid {\n    position: relative;\n    display: grid;\n    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);\n    align-items: center;\n    gap: clamp(1.5rem, 4vw, 3rem);\n    width: 100%;\n}\n\n.hero-grid > div:first-child {\n    position: relative;\n    z-index: 3;\n    min-width: 0;\n    visibility: visible;\n    opacity: 1;\n}\n\n.hero-visual {\n    position: relative;\n    z-index: 2;\n    min-width: 0;\n    width: 100%;\n}\n\n.hero-frame {\n    position: relative;\n    width: 100%;\n    min-height: 320px;\n}\n\n.hero-slide {\n    position: absolute;\n    inset: 0;\n}\n\n.hero-slide.active {\n    z-index: 1;\n    opacity: 1;\n    visibility: visible;\n}\n\n.hero-slide:not(.active) {\n    z-index: 0;\n    visibility: hidden;\n}\n\n.hero-dots {\n    z-index: 5;\n}\n\n@media (max-width: 1100px) and (min-width: 901px) {\n    .nav-row {\n        grid-template-columns: minmax(240px, 1fr) auto auto;\n        gap: .8rem;\n    }\n\n    .nav-links {\n        gap: .85rem;\n    }\n\n    .nav-links a {\n        font-size: .88rem;\n    }\n}\n\n@media (max-width: 900px) {\n    .nav-row {\n        display: flex;\n        justify-content: space-between;\n        gap: .75rem;\n        min-height: 64px;\n    }\n\n    .nav-links {\n        display: none !important;\n    }\n\n    .nav-toggle {\n        display: inline-flex !important;\n    }\n\n    .mobile-hidden {\n        display: none !important;\n    }\n\n    .hero-grid {\n        grid-template-columns: 1fr;\n        gap: 2rem;\n    }\n}\n\n@media (max-width: 520px) {\n    .container, .wide-container {\n        padding-left: 1rem;\n        padding-right: 1rem;\n    }\n\n    .hero-frame {\n        min-height: 250px;\n    }\n}\n