:root {
    --ink: #14232d;
    --navy: #153c55;
    --deep: #0d2838;
    --blue: #2f718c;
    --steel: #eaf1f3;
    --mist: #f7f9f8;
    --line: #d8e2e5;
    --accent: #c64f37;
    --accent-dark: #9f3927;
    --whatsapp: #147a42;
    --muted: #52616b;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(13, 40, 56, 0.14);
    --content: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

body.lightbox-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #e39a39;
    outline-offset: 3px;
}

.skip-link {
    background: var(--accent);
    border-radius: 4px;
    color: var(--white);
    font-weight: 700;
    left: 12px;
    padding: 9px 14px;
    position: fixed;
    text-decoration: none;
    top: -60px;
    transition: top 0.18s ease;
    z-index: 3000;
}

.skip-link:focus {
    top: 12px;
}

.announcement {
    align-items: center;
    background: var(--accent);
    color: var(--white);
    display: flex;
    font-size: 0.9rem;
    gap: 12px;
    justify-content: center;
    min-height: 42px;
    padding: 8px 18px;
    text-align: center;
}

.announcement a {
    font-weight: 750;
    text-underline-offset: 3px;
}

.hero {
    align-items: stretch;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: min(680px, calc(100svh - 100px));
    isolation: isolate;
    overflow: hidden;
    padding: 22px 24px 48px;
    position: relative;
}

.hero-media,
.hero-media::after,
.hero-media img {
    inset: 0;
    position: absolute;
}

.hero-media {
    z-index: -2;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    width: 100%;
}

.hero-media::after {
    background: rgba(7, 25, 36, 0.7);
    content: "";
    z-index: 1;
}

.hero-nav {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    width: min(var(--content), 100%);
    z-index: 3;
}

.brand-lockup {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand-lockup img {
    flex: 0 0 auto;
    height: 50px;
    width: 50px;
}

.brand-name {
    display: block;
    font-size: 1rem;
    font-weight: 760;
    line-height: 1.2;
}

.brand-region {
    color: rgba(255, 255, 255, 0.75);
    display: block;
    font-size: 0.77rem;
    font-weight: 500;
    margin-top: 3px;
}

.nav-links {
    align-items: center;
    display: flex;
    font-size: 0.92rem;
    gap: 22px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-quote {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    font-weight: 750;
    padding: 9px 16px;
}

.hero-content {
    margin: auto auto 0;
    padding-top: 74px;
    position: relative;
    width: min(var(--content), 100%);
    z-index: 2;
}

.hero-copy {
    max-width: 820px;
}

.hero-eyebrow,
.section-eyebrow {
    color: #f0b35d;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.1vw, 4.65rem);
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1;
    max-width: 900px;
}

.hero .tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    margin-top: 22px;
    max-width: 700px;
}

.hero-ctas,
.section-actions,
.quote-actions,
.area-links,
.review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-ctas {
    margin-top: 30px;
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 750;
    justify-content: center;
    min-height: 48px;
    padding: 11px 22px;
    text-align: center;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--whatsapp);
    color: var(--white);
}

.button-primary:hover {
    background: #0e6033;
}

.button-secondary {
    background: var(--white);
    border-color: var(--line);
    color: var(--navy);
}

.hero .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.button-text {
    color: var(--navy);
    font-weight: 760;
    text-underline-offset: 4px;
}

.top-gap {
    margin-top: 22px;
}

.top-gap-lg {
    margin-top: 28px;
}

.gallery-gap {
    margin-top: 30px;
}

.hero-location {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    margin-top: 24px;
    max-width: 760px;
}

.contact-strip {
    background: var(--deep);
    color: var(--white);
}

.contact-strip-inner {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    max-width: var(--content);
}

.contact-strip a,
.contact-strip span {
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    font-size: 0.9rem;
    justify-content: center;
    min-height: 62px;
    padding: 12px 18px;
    text-align: center;
    text-decoration: none;
}

.contact-strip > .contact-strip-inner > :last-child {
    border-right: 0;
}

main {
    display: block;
}

.section,
.band-inner {
    margin: 0 auto;
    max-width: var(--content);
    padding: 88px 24px;
}

.band {
    background: var(--mist);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

.band-blue {
    background: var(--steel);
}

.section-heading {
    align-items: end;
    display: flex;
    gap: 34px;
    justify-content: space-between;
    margin-bottom: 34px;
}

.section-heading > div {
    max-width: 760px;
}

.section-eyebrow {
    color: var(--accent-dark);
    margin-bottom: 7px;
}

h2 {
    color: var(--deep);
    font-size: clamp(2rem, 3.3vw, 3rem);
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.1;
}

.section-lead {
    color: var(--muted);
    font-size: 1.08rem;
    margin-top: 13px;
    max-width: 760px;
}

.services-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    min-height: 276px;
    padding: 24px;
}

.service-card h3 {
    color: var(--navy);
    font-size: 1.28rem;
    line-height: 1.25;
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 10px;
}

.service-meta {
    color: var(--ink) !important;
    font-size: 0.86rem !important;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-card a {
    align-self: flex-start;
    color: var(--navy);
    font-weight: 760;
    margin-top: auto;
    text-underline-offset: 4px;
}

.gallery-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.gallery-filter {
    background: var(--white);
    border: 1px solid #c6d4d9;
    border-radius: 999px;
    color: var(--navy);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 750;
    min-height: 42px;
    padding: 8px 16px;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.gallery-note {
    color: var(--muted);
    margin-bottom: 22px;
}

.gallery-grid {
    display: grid;
    gap: 14px;
    grid-auto-flow: dense;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
    aspect-ratio: 4 / 3;
    background: var(--deep);
    border: 0;
    border-radius: 5px;
    color: var(--white);
    cursor: zoom-in;
    display: block;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: left;
}

.gallery-item.feature {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
    width: 100%;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.035);
}

.gallery-item-caption {
    background: rgba(8, 29, 41, 0.86);
    bottom: 0;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 650;
    left: 0;
    line-height: 1.35;
    padding: 10px 12px;
    position: absolute;
    right: 0;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-status {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 17px;
}

.lightbox {
    align-items: center;
    background: rgba(3, 12, 18, 0.94);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 62px 76px 92px;
    position: fixed;
    z-index: 2600;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-height: calc(100vh - 155px);
    max-width: min(1180px, 100%);
    object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    height: 46px;
    justify-content: center;
    line-height: 1;
    position: fixed;
    width: 46px;
}

.lightbox-close {
    font-size: 2rem;
    right: 20px;
    top: 18px;
}

.lightbox-nav {
    font-size: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

.lightbox-caption {
    bottom: 24px;
    color: var(--white);
    font-size: 0.96rem;
    left: 68px;
    position: fixed;
    right: 68px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.review-card {
    background: var(--white);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    padding: 24px 26px;
}

.review-stars {
    color: #9b5b00;
    font-size: 0.92rem;
    font-weight: 800;
}

.review-card blockquote {
    color: var(--ink);
    font-size: 1.08rem;
    margin-top: 11px;
}

.review-card cite {
    color: var(--muted);
    display: block;
    font-size: 0.9rem;
    font-style: normal;
    margin-top: 14px;
}

.review-actions {
    align-items: center;
    margin-top: 24px;
}

.review-note {
    color: var(--muted);
    font-size: 0.86rem;
}

.process-layout {
    display: grid;
    gap: 64px;
    grid-template-columns: 1.35fr 0.85fr;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.process-step {
    border-top: 1px solid var(--line);
    padding: 22px 26px 26px 0;
}

.step-number {
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.process-step h3,
.quote-list h3,
.area-copy h3,
.pricing-copy h3 {
    color: var(--navy);
    font-size: 1.16rem;
    line-height: 1.3;
    margin-top: 6px;
}

.process-step p {
    color: var(--muted);
    font-size: 0.94rem;
    margin-top: 8px;
}

.quote-list {
    background: var(--deep);
    border-radius: 6px;
    color: var(--white);
    padding: 28px;
}

.quote-list h3 {
    color: var(--white);
    font-size: 1.34rem;
    margin-top: 0;
}

.quote-list p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    margin-top: 8px;
}

.quote-list ul,
.plain-list {
    list-style: none;
    margin-top: 18px;
}

.quote-list li,
.plain-list li {
    padding: 7px 0 7px 23px;
    position: relative;
}

.quote-list li::before,
.plain-list li::before {
    color: #f0b35d;
    content: "\2713";
    font-weight: 800;
    left: 0;
    position: absolute;
}

.quote-actions {
    margin-top: 20px;
}

.quote-list .button-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.46);
    color: var(--white);
}

.about-layout {
    align-items: center;
    display: grid;
    gap: 58px;
    grid-template-columns: 1.05fr 0.95fr;
}

.about-photo {
    aspect-ratio: 16 / 10;
    border-radius: 5px;
    overflow: hidden;
}

.about-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-copy p {
    color: var(--muted);
    margin-top: 16px;
}

.about-facts {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
}

.about-fact {
    padding: 16px 14px 16px 0;
}

.about-fact strong,
.about-fact span {
    display: block;
}

.about-fact strong {
    color: var(--navy);
    font-size: 0.95rem;
}

.about-fact span {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 2px;
}

.supplier-line {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-top: 34px;
    padding-top: 22px;
}

.supplier-line strong {
    color: var(--navy);
}

.supplier-line span {
    color: var(--muted);
    font-size: 0.92rem;
}

.area-layout,
.pricing-layout {
    display: grid;
    gap: 56px;
    grid-template-columns: 1fr 1fr;
}

.town-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.town-chips span {
    background: var(--white);
    border: 1px solid #c6d4d9;
    border-radius: 999px;
    color: var(--navy);
    font-size: 0.87rem;
    padding: 7px 12px;
}

.area-copy p,
.pricing-copy p {
    color: var(--muted);
    margin-top: 12px;
}

.area-links {
    margin-top: 22px;
}

.map-address {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 26px;
}

.map-address address {
    font-style: normal;
    margin-top: 10px;
}

.map-address p {
    color: var(--muted);
    margin-top: 10px;
}

.map-address a {
    color: var(--navy);
    display: inline-block;
    font-weight: 760;
    margin-top: 16px;
    text-underline-offset: 4px;
}

.pricing-points {
    display: grid;
    gap: 12px;
}

.pricing-point {
    border-top: 1px solid var(--line);
    padding-top: 15px;
}

.pricing-point strong {
    color: var(--navy);
    display: block;
}

.pricing-point span {
    color: var(--muted);
    display: block;
    font-size: 0.91rem;
    margin-top: 3px;
}

.faq-list {
    border-top: 1px solid var(--line);
    margin-top: 34px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    color: var(--navy);
    cursor: pointer;
    font-size: 1.03rem;
    font-weight: 720;
    list-style: none;
    padding: 19px 42px 19px 0;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    position: absolute;
    right: 6px;
    top: 12px;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-body {
    color: var(--muted);
    max-width: 880px;
    padding: 0 40px 20px 0;
}

.final-cta {
    background: var(--navy);
    color: var(--white);
}

.final-cta-inner {
    align-items: center;
    display: flex;
    gap: 42px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--content);
    padding: 58px 24px;
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 8px;
    max-width: 680px;
}

.site-footer {
    background: var(--deep);
    color: rgba(255, 255, 255, 0.76);
    padding: 52px 24px 96px;
}

.footer-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    margin: 0 auto;
    max-width: var(--content);
}

.footer-brand {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 760;
}

.footer-block h2 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-block p,
.footer-block li {
    font-size: 0.88rem;
}

.footer-block ul {
    list-style: none;
}

.footer-block a {
    align-items: center;
    display: inline-flex;
    min-height: 28px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    margin: 34px auto 0;
    max-width: var(--content);
    padding-top: 22px;
}

.mobile-actions {
    background: var(--white);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: none;
    gap: 8px;
    left: 0;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    transform: translateY(110%);
    transition: transform 0.2s ease;
    z-index: 1600;
}

.mobile-actions.is-visible {
    transform: translateY(0);
}

.mobile-actions a {
    align-items: center;
    border: 1px solid var(--navy);
    border-radius: 999px;
    color: var(--navy);
    display: flex;
    flex: 1;
    font-size: 0.9rem;
    font-weight: 760;
    justify-content: center;
    min-height: 44px;
    text-decoration: none;
}

.mobile-actions a:first-child {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: var(--white);
}

/* Service and area pages */
.subpage-header {
    background: var(--deep);
    color: var(--white);
    padding: 18px 24px;
}

.subpage-header .hero-nav {
    max-width: var(--content);
}

.subpage-hero {
    color: var(--white);
    min-height: 520px;
    isolation: isolate;
    overflow: hidden;
    padding: 86px 24px 56px;
    position: relative;
}

.subpage-hero::after {
    background: rgba(6, 25, 36, 0.72);
    content: "";
    inset: 0;
    position: absolute;
}

.subpage-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.subpage-hero-content {
    margin: 0 auto;
    max-width: var(--content);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    margin-bottom: 52px;
}

.breadcrumb a {
    text-underline-offset: 3px;
}

.subpage-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    letter-spacing: 0;
    line-height: 1;
    max-width: 900px;
}

.subpage-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    margin-top: 20px;
    max-width: 700px;
}

.subpage-hero .section-actions {
    margin-top: 28px;
}

.detail-layout {
    display: grid;
    gap: 64px;
    grid-template-columns: 1.15fr 0.85fr;
}

.detail-copy h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.detail-copy h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-top: 30px;
}

.detail-copy p {
    color: var(--muted);
    margin-top: 14px;
}

.detail-aside {
    border-left: 1px solid var(--line);
    padding-left: 34px;
}

.detail-aside h2 {
    font-size: 1.45rem;
}

.detail-aside .plain-list {
    color: var(--muted);
}

.detail-gallery {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.4fr 1fr 1fr;
}

.detail-gallery figure {
    margin: 0;
}

.detail-gallery img {
    aspect-ratio: 4 / 3;
    border-radius: 5px;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.detail-gallery figcaption {
    color: var(--muted);
    font-size: 0.84rem;
    margin-top: 8px;
}

@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-layout,
    .about-layout,
    .detail-layout {
        gap: 42px;
        grid-template-columns: 1fr;
    }

    .detail-aside {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0;
        padding-top: 28px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .announcement {
        align-items: center;
        display: block;
        font-size: 0.82rem;
        min-height: 38px;
    }

    .announcement a {
        display: inline;
        margin-left: 4px;
    }

    .hero {
        min-height: min(630px, calc(100svh - 80px));
        padding: 16px 18px 36px;
    }

    .brand-lockup img {
        height: 43px;
        width: 43px;
    }

    .brand-name {
        font-size: 0.84rem;
        max-width: 205px;
    }

    .brand-region {
        font-size: 0.69rem;
    }

    .nav-links > a:not(.nav-quote) {
        display: none;
    }

    .nav-quote {
        font-size: 0.78rem;
        padding: 8px 11px;
        white-space: nowrap;
    }

    .hero-content {
        padding-top: 52px;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 12vw, 3.35rem);
        overflow-wrap: break-word;
    }

    .hero .tagline {
        font-size: 1.02rem;
        line-height: 1.5;
    }

    .hero-ctas .button {
        width: 100%;
    }

    .hero-location {
        font-size: 0.84rem;
    }

    .contact-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .contact-strip a,
    .contact-strip span {
        font-size: 0.8rem;
        min-height: 52px;
        padding: 9px 8px;
    }

    .contact-strip span {
        display: none;
    }

    .section,
    .band-inner {
        padding: 64px 18px;
    }

    .section-heading {
        align-items: start;
        display: block;
        margin-bottom: 26px;
    }

    .section-heading .button-text {
        display: inline-block;
        margin-top: 15px;
    }

    h2 {
        font-size: clamp(1.85rem, 9vw, 2.55rem);
    }

    .section-lead {
        font-size: 1rem;
    }

    .services-grid,
    .reviews-grid,
    .process-steps,
    .area-layout,
    .pricing-layout,
    .footer-grid,
    .detail-gallery {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
    }

    .service-card a {
        margin-top: 18px;
    }

    .gallery-controls {
        flex-wrap: nowrap;
        margin-left: -18px;
        margin-right: -18px;
        overflow-x: auto;
        padding: 0 18px 7px;
        scrollbar-width: thin;
    }

    .gallery-filter {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .gallery-grid {
        gap: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item.feature {
        grid-column: span 2;
        grid-row: auto;
    }

    .gallery-item-caption {
        font-size: 0.72rem;
        padding: 8px 9px;
    }

    .lightbox {
        padding: 58px 12px 86px;
    }

    .lightbox img {
        max-height: calc(100vh - 145px);
    }

    .lightbox-nav {
        height: 42px;
        top: auto;
        transform: none;
        width: 42px;
    }

    .lightbox-prev {
        bottom: 18px;
        left: 16px;
    }

    .lightbox-next {
        bottom: 18px;
        right: 16px;
    }

    .lightbox-caption {
        bottom: 24px;
        font-size: 0.8rem;
        left: 62px;
        right: 62px;
    }

    .process-step {
        padding-right: 0;
    }

    .quote-list {
        padding: 24px 20px;
    }

    .about-facts {
        grid-template-columns: 1fr;
    }

    .about-fact {
        border-bottom: 1px solid var(--line);
    }

    .about-fact:last-child {
        border-bottom: 0;
    }

    .final-cta-inner {
        align-items: stretch;
        display: block;
        padding: 46px 18px;
    }

    .final-cta .button {
        margin-top: 22px;
        width: 100%;
    }

    .site-footer {
        padding: 46px 18px 105px;
    }

    .mobile-actions {
        display: flex;
    }

    .subpage-header {
        padding: 14px 18px;
    }

    .subpage-hero {
        min-height: 480px;
        padding: 58px 18px 42px;
    }

    .breadcrumb {
        margin-bottom: 46px;
    }

    .subpage-hero h1 {
        font-size: clamp(2.3rem, 12vw, 3.45rem);
        overflow-wrap: break-word;
    }

    .subpage-hero p {
        font-size: 1.02rem;
    }
}

@media (max-width: 390px) {
    .brand-name {
        max-width: 164px;
    }

    .brand-region {
        display: none;
    }

    .nav-quote {
        font-size: 0.73rem;
        padding: 7px 9px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-location {
        display: none;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
