:root {
    --black: #1c1c1c;
    --gray-900: #2a2a2a;
    --gray-700: #4d4d4d;
    --gray-500: #737373;
    --gray-300: #c4c4c4;
    --gray-100: #f3f3f1;
    --white: #fafaf9;
    --yellow: #d4a017;
    --yellow-soft: #e8bc3a;
    --yellow-muted: rgba(212, 160, 23, 0.12);
    --gold-deep: #8f6a08;
    --header-gray: #6b6b6b;
    --warm-cream: #e8dcc4;
    --warm-sand: #f3ede3;
    --stone: #ddd8cf;
    --border: #e0e0dc;
    --shadow: 0 12px 40px rgba(28, 28, 28, 0.08);
    --radius: 6px;
    --transition: 0.35s ease;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    --dur-fast: 180ms;
    --dur-med: 320ms;
    --dur-slow: 550ms;
    --focus-ring: 0 0 0 2px var(--white), 0 0 0 4px var(--yellow);
    --max: 1140px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.65;
    font-size: 1rem;
}

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

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

.top-bar {
    background: var(--gray-900);
    color: var(--gray-300);
    font-size: 0.8125rem;
}

.top-bar-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.55rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.top-bar a {
    color: var(--yellow-soft);
    font-weight: 600;
}

.top-bar a:hover {
    color: var(--white);
}

.site-header {
    background: linear-gradient(45deg, var(--gold-deep) 0%, var(--header-gray) 52%, var(--black) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--dur-med) var(--ease-out);
}

.site-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.logo img {
    height: 58px;
    width: auto;
    max-width: min(160px, 34vw);
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.logo-title {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.35;
}

.logo-license {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 188, 58, 0.9);
    line-height: 1.2;
}

.logo-license[hidden] {
    display: none;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.site-nav a {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    transition: color var(--dur-med) var(--ease-out);
    position: relative;
}

.site-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--yellow-soft);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--dur-med) var(--ease-out);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta).active::after {
    transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
}

.nav-cta {
    background: var(--yellow-soft) !important;
    color: var(--black) !important;
    padding: 0.55rem 1.1rem !important;
    border-radius: var(--radius);
    transition: background var(--dur-med) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-med) var(--ease-out) !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.nav-cta:active {
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero — full-viewport video intro */
.hero-video-intro {
    position: relative;
    min-height: calc(100vh - 7.5rem);
    min-height: calc(100svh - 7.5rem);
    background: var(--black);
    overflow: hidden;
    isolation: isolate;
}

.hero-video-intro__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-intro__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.45) 0%, transparent 24%, transparent 100%);
    pointer-events: none;
}

.hero-entrance__scroll {
    z-index: 3;
}

.hero-video-intro--static {
    background: var(--black) url('assets/slide-1.jpg') center / cover no-repeat;
}

.hero-video-intro--static .hero-video-intro__media {
    display: none;
}

/* Hero — entrance with tri-photo backdrop */
.hero-entrance {
    position: relative;
    min-height: clamp(520px, 72vh, 680px);
    background: var(--black);
    overflow: hidden;
    isolation: isolate;
}

.hero-entrance-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-entrance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
}

.hero-entrance-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-entrance-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #1c1c1c 0%, rgba(28, 28, 28, 0.94) 34%, rgba(28, 28, 28, 0.52) 62%, rgba(28, 28, 28, 0.28) 100%),
        linear-gradient(180deg, rgba(28, 28, 28, 0.2) 0%, transparent 42%, rgba(28, 28, 28, 0.62) 100%);
}

.hero-entrance .hero-shell {
    min-height: clamp(520px, 72vh, 680px);
    padding-bottom: 5rem;
}

/* Legacy hero media (carousel sections) */
.hero-editorial {
    position: relative;
    min-height: calc(100vh - 7.5rem);
    min-height: calc(100svh - 7.5rem);
    background: var(--black);
    overflow: hidden;
    isolation: isolate;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 42%, rgba(212, 160, 23, 0.14) 0%, transparent 34%),
        linear-gradient(120deg, #141414 0%, #1c1c1c 42%, #242424 100%);
    z-index: 0;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-media-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-media-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 2.2s ease;
}

.hero-media-slide.is-active {
    opacity: 1;
}

.hero-media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    opacity: 0.34;
}

.hero-media-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #1c1c1c 0%, rgba(28, 28, 28, 0.92) 34%, rgba(28, 28, 28, 0.35) 62%, rgba(28, 28, 28, 0.08) 100%),
        linear-gradient(180deg, rgba(28, 28, 28, 0.15) 0%, transparent 38%, rgba(28, 28, 28, 0.55) 100%);
}

.hero-media-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.52;
}

.hero-editorial--video .hero-media-track {
    display: none;
}

.hero-editorial--video .hero-media-vignette {
    background:
        linear-gradient(90deg, #1c1c1c 0%, rgba(28, 28, 28, 0.96) 36%, rgba(28, 28, 28, 0.62) 56%, rgba(28, 28, 28, 0.28) 76%, rgba(28, 28, 28, 0.1) 100%),
        linear-gradient(180deg, rgba(28, 28, 28, 0.4) 0%, transparent 32%, rgba(28, 28, 28, 0.7) 100%);
}

.hero-shell {
    position: relative;
    z-index: 2;
    max-width: calc(var(--max) + 3rem);
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem 6.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}

.hero-copy {
    position: relative;
    max-width: 42rem;
    padding-right: 0;
}

.hero-company-name {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: clamp(2.75rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--yellow-soft);
    margin: 0 0 0.85rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0s backwards;
}

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow-soft);
    margin-bottom: 1.35rem;
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s backwards;
}

.hero-display {
    margin: 0;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.04em;
}

.hero-display-line {
    display: block;
    font-size: clamp(4.5rem, 11vw, 9.5rem);
    color: var(--white);
    animation: heroLineIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero-display-line:first-child {
    animation-delay: 0.12s;
}

.hero-display-accent {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--yellow-soft);
    text-stroke: 1.5px var(--yellow-soft);
    margin-top: -0.06em;
    animation-delay: 0.24s;
}

.hero-kicker {
    margin: 1.35rem 0 0;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.58);
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s backwards;
}

.hero-scope {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 2rem 0 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.48s backwards;
}

.hero-scope li {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    margin-top: 2.35rem;
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.58s backwards;
}

.hero-cta-primary {
    padding: 0.95rem 1.65rem;
}

.hero-cta-secondary {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    transition: color var(--transition), transform var(--transition);
}

.hero-cta-secondary span {
    display: inline-block;
    transition: transform var(--transition);
}

.hero-cta-secondary:hover {
    color: var(--white);
}

.hero-cta-secondary:hover span {
    transform: translateX(4px);
}

.hero-cta-secondary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--black), 0 0 0 4px var(--yellow-soft);
    border-radius: 2px;
}

.hero-visual {
    position: relative;
    min-height: clamp(420px, 52vh, 580px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-vertical-carousel {
    position: relative;
    width: min(100%, 420px);
    margin-left: auto;
}

.hero-vertical-viewport {
    --hero-roll-height: clamp(480px, 58vh, 660px);
    --hero-slide-height: calc((var(--hero-roll-height) - 0.65rem) / 2);
    height: var(--hero-roll-height);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    border-radius: var(--radius);
    background: #242424;
}

.hero-vertical-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.hero-scroll-roll {
    animation: heroScrollRoll 48s linear infinite;
}

.hero-vertical-slide {
    flex: 0 0 calc(var(--hero-slide-height) + 0.65rem);
    height: calc(var(--hero-slide-height) + 0.65rem);
    margin: 0;
    padding-bottom: 0.65rem;
    box-sizing: border-box;
}

.hero-slide-stage {
    width: 100%;
    height: var(--hero-slide-height);
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) - 2px);
    background: linear-gradient(135deg, #3a3a3a 0%, #6b6b6b 45%, #8f6a08 100%);
}

.hero-slide-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-roll-fade {
    position: absolute;
    left: 0;
    right: 0;
    height: 18%;
    pointer-events: none;
    z-index: 2;
}

.hero-roll-fade-top {
    top: 0;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.55) 0%, transparent 100%);
}

.hero-roll-fade-bottom {
    bottom: 0;
    background: linear-gradient(0deg, rgba(28, 28, 28, 0.55) 0%, transparent 100%);
}

@keyframes heroScrollRoll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.hero-float-card {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 4;
    min-width: 180px;
    padding: 1rem 1.35rem;
    background: rgba(28, 28, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    text-align: center;
    animation: heroFloatEntrance 0.9s var(--ease-out) 0.85s backwards;
    transform: translate(-50%, -50%);
}

.hero-float-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow-soft);
    margin-bottom: 0.35rem;
}

.hero-float-card strong {
    display: block;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.65rem;
    color: var(--white);
    line-height: 1.05;
}

.hero-float-meta {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

.hero-rail {
    position: absolute;
    left: 1.5rem;
    bottom: 2rem;
    z-index: 4;
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.hero-rail-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.hero-scroll {
    position: absolute;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s backwards;
    transition: color var(--dur-med) var(--ease-out);
}

.hero-scroll:hover {
    color: rgba(255, 255, 255, 0.78);
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
    animation: heroScrollPulse 2.2s ease-in-out infinite;
    transition: height var(--dur-med) var(--ease-out);
}

.hero-scroll:hover .hero-scroll-line {
    height: 56px;
}

@keyframes heroLineIn {
    from {
        opacity: 0;
        transform: translateY(115%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes heroFloatEntrance {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 12px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes heroScrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.55; }
    50% { transform: scaleY(0.72); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-display-line,
    .hero-company-name,
    .hero-eyebrow,
    .hero-kicker,
    .hero-scope,
    .hero-actions,
    .hero-scroll,
    .hero-float-card,
    .hero-scroll-line,
    .hero-scroll-roll {
        animation: none;
    }

    .hero-float-card {
        transform: translate(-50%, -50%);
        opacity: 1;
    }

    .hero-media-slide {
        transition: opacity 0.4s ease;
    }

    .hero-media-video {
        display: none;
    }

    .hero-video-intro__media {
        display: none;
    }

    .hero-video-intro--static {
        background: var(--black) url('assets/slide-1.jpg') center / cover no-repeat;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .site-nav ul.open li {
        animation: none;
    }

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

.btn {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius);
    transition: background var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out), transform var(--dur-fast) var(--ease-out), border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.btn-spaced {
    margin-top: 1.5rem;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--yellow-soft);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    margin-left: 0.75rem;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gray-900);
}

/* Sections */
.section {
    padding: 5rem 1.5rem;
}

.section-alt {
    background: var(--gray-100);
}

.welcome-section {
    background: linear-gradient(45deg, var(--black) 0%, var(--header-gray) 52%, var(--gold-deep) 100%);
}

.welcome-section .section-label {
    color: var(--yellow-soft);
}

.welcome-section .section-title {
    color: var(--white);
}

.welcome-section .section-desc {
    color: rgba(255, 255, 255, 0.82);
}

.welcome-section .stats-row {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.welcome-section .stat-item strong {
    color: var(--white);
}

.welcome-section .stat-item span {
    color: rgba(255, 255, 255, 0.68);
}

.construction-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 45%, var(--warm-cream) 100%);
}

.section-project-carousel {
    position: relative;
    width: min(100%, 420px);
    margin: 0 auto;
}

.construction-section .section-project-carousel .hero-vertical-viewport {
    --hero-roll-height: clamp(380px, 42vw, 520px);
    border: 1px solid rgba(28, 28, 28, 0.1);
    box-shadow: 0 18px 45px rgba(28, 28, 28, 0.14);
}

.construction-section .section-project-carousel .hero-roll-fade-top {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, transparent 100%);
}

.construction-section .section-project-carousel .hero-roll-fade-bottom {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.72) 0%, transparent 100%);
}

.construction-section .section-project-carousel .hero-vertical-carousel {
    width: 100%;
    margin: 0;
}

.renovation-section {
    background: linear-gradient(45deg, var(--warm-sand) 0%, var(--stone) 52%, var(--gray-300) 100%);
}

.services-section {
    background: linear-gradient(225deg, var(--black) 0%, var(--header-gray) 50%, #4a4035 100%);
}

.services-section .section-label,
.emergency-section .section-label {
    color: var(--yellow-soft);
}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-desc {
    color: rgba(255, 255, 255, 0.82);
}

.services-section .info-card {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(255, 255, 255, 0.18);
}

.emergency-section {
    background: var(--black);
    padding: clamp(1rem, 2.5svh, 1.75rem) 1.5rem;
    min-height: calc(100svh - 7.5rem);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.emergency-section .section-inner {
    width: 100%;
}

.emergency-section .split-grid {
    align-items: stretch;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr);
    height: clamp(300px, 56svh, 460px);
    max-height: clamp(300px, 56svh, 460px);
}

.emergency-section .emergency-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    height: 100%;
    padding: clamp(1.15rem, 2vw, 1.5rem);
    background: linear-gradient(315deg, var(--gold-deep) 0%, var(--header-gray) 48%, var(--black) 100%);
    border-radius: var(--radius);
}

.emergency-section .section-label {
    margin-bottom: 0.35rem;
}

.emergency-copy-main p {
    margin-bottom: 0.65rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.emergency-copy-footer {
    margin-top: 0;
}

.emergency-copy-note {
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.75rem;
}

.emergency-section .split-grid h3 {
    color: var(--white);
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.emergency-section .split-grid p,
.emergency-section .feature-list li {
    color: rgba(255, 255, 255, 0.84);
}

.emergency-section .feature-list {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.1rem 0.75rem;
}

.emergency-section .feature-list li {
    padding: 0.2rem 0 0.2rem 1rem;
    font-size: 0.8125rem;
}

.emergency-section .feature-list li::before {
    top: 0.62rem;
    width: 5px;
    height: 5px;
    background: var(--yellow-soft);
}

.emergency-section .btn-dark {
    background: var(--yellow-soft);
    color: var(--black);
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
}

.emergency-section .btn-dark:hover {
    background: var(--white);
}

.emergency-section .btn-spaced {
    margin-top: 0;
}

.emergency-media-stack {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    height: 100%;
    min-height: 0;
}

.emergency-media-item {
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.emergency-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.construction-section .split-media,
.renovation-section .split-media,
.emergency-section .split-media,
.construction-section .split-grid > img,
.renovation-section .split-grid > img,
.emergency-section .split-grid > img {
    border: 2px solid rgba(28, 28, 28, 0.08);
    box-shadow: 0 18px 45px rgba(28, 28, 28, 0.14);
}

.section-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--gray-500);
    max-width: 620px;
    font-size: 1.02rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-top: 0;
}

.split-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split-media {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: transform var(--dur-slow) var(--ease-out);
}

@media (hover: hover) {
    .split-media:hover img {
        transform: scale(1.03);
    }
}

.split-grid h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.split-grid p {
    margin-bottom: 1rem;
    color: var(--gray-500);
}

.feature-list {
    list-style: none;
    margin-top: 1.25rem;
}

.feature-list li {
    padding: 0.45rem 0 0.45rem 1.25rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    transition: transform var(--dur-fast) var(--ease-out);
}

.feature-list li:hover::before {
    transform: scale(1.35);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.stat-item strong {
    display: block;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.35rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

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

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), border-left-color var(--dur-med) var(--ease-out);
}

.section-alt .info-card {
    background: var(--white);
}

.info-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-left-color: var(--yellow);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    background: var(--yellow-muted);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--yellow);
    font-weight: 800;
    font-size: 1.1rem;
    transition: background var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out);
}

.info-card:hover .info-card-icon {
    background: var(--yellow);
    color: var(--black);
}

.info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.cta-band {
    background: linear-gradient(45deg, var(--gold-deep) 0%, var(--header-gray) 52%, var(--black) 100%);
    color: var(--white);
    text-align: center;
    padding: 4.5rem 1.5rem;
}

.cta-band h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: var(--gray-300);
    max-width: 520px;
    margin: 0 auto 1.75rem;
}

.cta-band .btn-primary {
    margin-right: 0.5rem;
}

/* Page header (inner pages) */
.page-header {
    background: var(--gray-100);
    padding: 4rem 1.5rem 3rem;
    border-bottom: 1px solid var(--border);
}

.page-header-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.page-header h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--black);
    margin-bottom: 0.75rem;
}

.page-header p {
    color: var(--gray-500);
    max-width: 560px;
    font-size: 1.05rem;
}

/* About page */
.about-page-header {
    background: linear-gradient(135deg, var(--warm-sand) 0%, var(--stone) 48%, rgba(232, 188, 58, 0.45) 100%);
    border-bottom: none;
}

.about-story-section {
    background: linear-gradient(45deg, #faf6ef 0%, #e8e2d6 52%, #c8c2b6 100%);
}

.about-approach-section {
    background: linear-gradient(225deg, #f3ede3 0%, #d9d4ca 50%, rgba(212, 160, 23, 0.22) 100%);
}

.about-values-section {
    background: linear-gradient(45deg, #ebe5d8 0%, var(--header-gray) 55%, rgba(232, 188, 58, 0.55) 100%);
}

.about-values-section .section-label {
    color: var(--yellow-soft);
}

.about-values-section .section-title {
    color: var(--white);
}

.about-values-section .section-desc {
    color: rgba(255, 255, 255, 0.84);
}

.about-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.about-copy {
    color: var(--gray-700);
    max-width: 560px;
    margin-bottom: 1rem;
}

.about-copy-wide {
    max-width: 720px;
    margin-bottom: 2rem;
}

.about-highlight-card {
    background: rgba(255, 255, 255, 0.72);
    border: 2px solid var(--black);
    box-shadow: inset 0 0 0 3px var(--yellow-soft);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.about-highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 3px var(--yellow), 0 12px 32px rgba(28, 28, 28, 0.1);
}

.about-highlight-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.65rem;
}

.about-highlight-card h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.35rem;
    color: var(--black);
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.about-highlight-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.about-pillar {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(28, 28, 28, 0.08);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.about-pillar:hover {
    border-color: rgba(212, 160, 23, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 28, 28, 0.06);
}

.about-pillar h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.65rem;
}

.about-pillar p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.about-value-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.about-value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(28, 28, 28, 0.1);
}

.about-value-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gold-deep);
    margin-bottom: 1rem;
}

.about-value-card h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: 0.65rem;
}

.about-value-card p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.about-contact-band {
    background: linear-gradient(135deg, var(--warm-sand) 0%, var(--warm-cream) 55%, rgba(232, 188, 58, 0.28) 100%);
    padding: 4.5rem 1.5rem;
}

.about-contact-band .section-label {
    color: var(--gold-deep);
}

.about-contact-copy h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--black);
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.about-contact-copy p {
    color: var(--black);
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.7;
}

.about-contact-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.about-contact-details {
    background: var(--white);
    border: 2px solid var(--black);
    box-shadow: inset 0 0 0 3px var(--yellow);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: box-shadow var(--dur-med) var(--ease-out);
}

.about-contact-details:hover {
    box-shadow: inset 0 0 0 3px var(--yellow-soft), 0 8px 24px rgba(28, 28, 28, 0.08);
}

.about-contact-item {
    margin-bottom: 1.35rem;
}

.about-contact-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 0.35rem;
}

.about-contact-item a,
.about-contact-item address {
    font-style: normal;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.45;
}

.about-contact-item a:hover {
    color: var(--gold-deep);
}

.about-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.about-call-btn {
    border-color: var(--black) !important;
    color: var(--black) !important;
    background: transparent !important;
}

.about-call-btn:hover {
    background: var(--black) !important;
    color: var(--white) !important;
    border-color: var(--black) !important;
}

/* Services page */
.services-page-header {
    background: linear-gradient(45deg, var(--black) 0%, var(--header-gray) 48%, var(--gold-deep) 100%);
    border-bottom: none;
}

.services-page-header .section-label {
    color: var(--yellow-soft);
}

.services-page-header h1 {
    color: var(--white);
}

.services-page-header p {
    color: rgba(255, 255, 255, 0.84);
}

.services-core-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 45%, var(--warm-cream) 100%);
}

.services-core-section .service-item {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(28, 28, 28, 0.06);
}

.service-categories {
    margin-top: 2.75rem;
    padding-top: 2.25rem;
    border-top: 1px solid rgba(28, 28, 28, 0.1);
}

.service-categories-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1rem;
}

.service-categories-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-approach-section {
    background: linear-gradient(225deg, var(--black) 0%, var(--header-gray) 50%, #4a4035 100%);
}

.services-approach-section .section-label {
    color: var(--yellow-soft);
}

.services-approach-section .section-title {
    color: var(--white);
}

.services-approach-section .section-desc {
    color: rgba(255, 255, 255, 0.82);
}

.services-approach-section .info-card {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Gallery page */
.gallery-page-header {
    background: linear-gradient(135deg, var(--stone) 0%, var(--warm-cream) 55%, rgba(232, 188, 58, 0.38) 100%);
    border-bottom: none;
}

.gallery-page-header .section-label {
    color: var(--gold-deep);
}

.gallery-page-header h1 {
    color: var(--black);
}

.gallery-page-header p {
    color: var(--gray-700);
}

.gallery-featured-video {
    background: linear-gradient(180deg, var(--black) 0%, #2a241c 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.gallery-featured-video .section-label {
    color: var(--yellow-soft);
}

.gallery-featured-video__title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.gallery-featured-video__desc {
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin-bottom: 1.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

.gallery-featured-video__frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    background: var(--black);
}

.gallery-featured-video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-grid-section {
    background: linear-gradient(45deg, #faf6ef 0%, #e8e2d6 52%, #d9d4ca 100%);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.gallery-filter {
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(28, 28, 28, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--gray-700);
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.gallery-filter.active,
.gallery-filter:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--yellow-soft);
}

.gallery-before-section {
    background: linear-gradient(45deg, var(--warm-sand) 0%, var(--stone) 52%, var(--gray-300) 100%);
}

.gallery-before-grid figure {
    background: var(--white);
    padding: 0.75rem;
    border: 2px solid var(--black);
    box-shadow: inset 0 0 0 3px var(--yellow);
    border-radius: var(--radius);
}

.gallery-before-grid figcaption {
    color: var(--black);
}

/* Services page — shared components */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.service-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--yellow);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform var(--dur-med) var(--ease-out);
}

.service-item:hover {
    border-color: var(--yellow);
    box-shadow: 0 8px 24px rgba(28, 28, 28, 0.06);
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-num {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
    min-width: 2rem;
    opacity: 0.65;
    transition: opacity var(--dur-fast) var(--ease-out);
}

.service-item:hover .service-num {
    opacity: 1;
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.35rem;
}

.service-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.75rem;
    background: var(--yellow-muted);
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.service-tag:hover {
    background: rgba(212, 160, 23, 0.22);
    color: var(--black);
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.gallery-item {
    background: var(--white);
    border: 1px solid rgba(28, 28, 28, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.gallery-item:hover {
    box-shadow: 0 12px 32px rgba(28, 28, 28, 0.1);
    transform: translateY(-2px);
}

.gallery-item-media {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-100);
}

.gallery-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease-out);
}

.gallery-item-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--black);
    filter: brightness(0.56) contrast(1.16) saturate(0.84);
}

.gallery-item--video .gallery-item-media {
    position: relative;
    background: var(--black);
}

.gallery-item--video .gallery-item-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.22) 0%,
        rgba(0, 0, 0, 0.1) 45%,
        rgba(0, 0, 0, 0.24) 100%
    );
    pointer-events: none;
}

@media (hover: hover) {
    .gallery-item:hover .gallery-item-media img {
        transform: scale(1.04);
    }
}

.gallery-item-body {
    padding: 1rem 1.1rem 1.15rem;
}

.gallery-item-category {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.35rem;
}

.gallery-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.35;
}

/* Gallery placeholder (legacy) */
.gallery-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.gallery-slot {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 243, 241, 0.95) 100%);
    border: 1px solid rgba(28, 28, 28, 0.1);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    gap: 0.65rem;
    transition: border-color var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.gallery-slot:hover {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 32px rgba(28, 28, 28, 0.1);
    transform: translateY(-2px);
}

.gallery-slot-num {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--gold-deep);
}

.gallery-slot span:last-child {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color var(--dur-med) var(--ease-out);
}

.gallery-slot:hover span:last-child {
    color: var(--black);
}

.gallery-note {
    margin-top: 2rem;
    padding: 1.35rem 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    border: 2px solid var(--black);
    box-shadow: inset 0 0 0 3px var(--yellow-soft);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--black);
    line-height: 1.65;
}

.gallery-note strong {
    color: var(--gold-deep);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    margin-top: 2.5rem;
    align-items: start;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-details li:first-child {
    padding-top: 0;
}

.contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details address {
    font-style: normal;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
}

.contact-details a:hover {
    color: var(--yellow);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: block;
    margin-bottom: 1rem;
}

.contact-form label span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    font: inherit;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--black);
    transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px var(--yellow-muted);
}

.contact-form label:focus-within span {
    color: var(--gold-deep);
}

.contact-form.is-submitting {
    opacity: 0.72;
    pointer-events: none;
}

.contact-form.is-success {
    animation: formSuccess 0.5s var(--ease-out);
}

@keyframes formSuccess {
    from { transform: translateY(4px); opacity: 0.85; }
    to { transform: translateY(0); opacity: 1; }
}

.contact-form .btn-dark.is-loading {
    position: relative;
    color: transparent;
}

.contact-form .btn-dark.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: formSpin 0.7s linear infinite;
}

@keyframes formSpin {
    to { transform: rotate(360deg); }
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-status {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    display: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.form-status.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-status.success {
    color: #2d6a4f;
}

/* Map links and location */
.map-link {
    font-style: normal;
    text-decoration: none;
    transition: color var(--dur-med) var(--ease-out);
    cursor: pointer;
}

.map-link:hover {
    color: var(--gold-deep);
}

.site-footer .map-link {
    display: inline-block;
}

.site-footer .map-link:hover {
    color: var(--yellow-soft);
}

.contact-details .map-link {
    display: inline-block;
}

.contact-details .map-link:hover {
    color: var(--yellow);
}

.about-contact-item .map-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.45;
}

.about-contact-item .map-link:hover {
    color: var(--gold-deep);
}

.contact-map-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 45%, var(--warm-cream) 100%);
}

.contact-map-card {
    display: grid;
    grid-template-columns: 1.45fr 0.55fr;
    gap: 0;
    margin-top: 2.5rem;
    background: var(--white);
    border: 2px solid var(--black);
    box-shadow: inset 0 0 0 3px var(--yellow);
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-map-frame {
    height: 420px;
    min-height: 420px;
    background: var(--gray-100);
}

.contact-map-frame iframe {
    width: 100%;
    height: 420px;
    min-height: 420px;
    border: 0;
    display: block;
}

.contact-map-details {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}

.contact-map-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.map-link-featured {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.45;
    margin-bottom: 1.5rem;
}

.map-link-featured:hover {
    color: var(--gold-deep);
}

.contact-map-btn {
    align-self: flex-start;
}

/* Footer */
.site-footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 3.5rem 1.5rem 2rem;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand img {
    height: 88px;
    width: auto;
    max-width: 200px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yellow-soft);
    margin-bottom: 1rem;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--gray-300);
    transition: color var(--dur-med) var(--ease-out);
    position: relative;
    display: inline-block;
}

.footer-col a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--yellow-soft);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--dur-med) var(--ease-out);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    max-width: var(--max);
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: center;
}

.reviews-section {
    background: linear-gradient(135deg, #f0ebe3 0%, var(--gray-100) 50%, #e2d9c8 100%);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.reviews-summary {
    text-align: right;
    flex-shrink: 0;
}

.reviews-score {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
}

.reviews-score strong {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2rem;
    color: var(--black);
    line-height: 1;
}

.reviews-stars,
.review-stars {
    color: var(--yellow);
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.reviews-summary > span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews-viewport {
    flex: 1;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.65s ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    min-width: 0;
    background: var(--white);
    padding: 1.75rem 1.5rem 1.5rem;
    border: 2px solid var(--black);
    box-shadow: inset 0 0 0 3px var(--yellow);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transition: box-shadow var(--dur-med) var(--ease-out);
}

.review-card:hover {
    box-shadow: inset 0 0 0 3px var(--yellow-soft), 0 8px 24px rgba(28, 28, 28, 0.08);
}

.review-card blockquote {
    flex: 1;
    margin: 0.85rem 0 1.25rem;
}

.review-card blockquote p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.review-meta cite {
    font-style: normal;
    font-weight: 700;
    color: var(--black);
    font-size: 0.9375rem;
}

.review-meta span {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.reviews-nav {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.reviews-nav:hover {
    background: var(--black);
    color: var(--yellow-soft);
    border-color: var(--black);
    transform: scale(1.05);
}

.reviews-nav:active {
    transform: scale(0.96);
}

.reviews-nav:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.reviews-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}

.reviews-dot.active {
    background: var(--yellow);
    transform: scale(1.15);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.before-after figure {
    text-align: center;
    overflow: hidden;
    border-radius: var(--radius);
}

.before-after img {
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    transition: transform var(--dur-slow) var(--ease-out);
}

@media (hover: hover) {
    .before-after figure:hover img {
        transform: scale(1.04);
    }
}

.before-after figcaption {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}

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

/* Back to top */
.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--black);
    border-radius: 50%;
    background: var(--yellow-soft);
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), visibility var(--dur-med), background var(--dur-fast) var(--ease-out);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--white);
}

.back-to-top:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.site-nav a:focus-visible,
.nav-toggle:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 2px;
}

.reviews-dot:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--black), 0 0 0 4px var(--yellow);
}

.contact-details li {
    transition: padding-left var(--dur-fast) var(--ease-out);
}

.contact-details li:hover {
    padding-left: 0.35rem;
}

.contact-details a {
    transition: color var(--dur-med) var(--ease-out);
}

.top-bar a {
    position: relative;
    transition: color var(--dur-med) var(--ease-out);
}

@media (max-width: 900px) {
    .logo {
        gap: 0.65rem;
    }

    .logo img {
        height: 48px;
        max-width: 120px;
    }

    .logo-title {
        font-size: 0.6875rem;
        letter-spacing: 0.07em;
    }

    .logo-tagline {
        display: none;
    }

    .logo-license {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }

    .site-nav ul {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(180deg, var(--header-gray) 0%, var(--black) 100%);
        padding: 1.25rem 1.5rem 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), visibility var(--dur-med);
    }

    .site-nav ul.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-nav ul.open li {
        animation: navLinkIn var(--dur-med) var(--ease-out) backwards;
    }

    .site-nav ul.open li:nth-child(1) { animation-delay: 0ms; }
    .site-nav ul.open li:nth-child(2) { animation-delay: 40ms; }
    .site-nav ul.open li:nth-child(3) { animation-delay: 80ms; }
    .site-nav ul.open li:nth-child(4) { animation-delay: 120ms; }
    .site-nav ul.open li:nth-child(5) { animation-delay: 160ms; }

    @keyframes navLinkIn {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-toggle {
        display: block;
    }

    .site-header {
        position: relative;
    }

    .split-grid,
    .cards-grid,
    .stats-row,
    .services-grid,
    .gallery-placeholder,
    .gallery-grid,
    .contact-grid,
    .contact-map-card,
    .footer-inner,
    .form-row,
    .before-after,
    .about-split,
    .about-pillars,
    .about-values-grid,
    .about-contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-map-details {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 0.75rem;
    }

    .hero-shell {
        padding: 2rem 1.25rem 4.5rem;
    }

    .hero-entrance {
        min-height: clamp(480px, 85vh, 620px);
    }

    .hero-entrance .hero-shell {
        min-height: clamp(480px, 85vh, 620px);
        padding-bottom: 5.5rem;
    }

    .hero-copy {
        padding-right: 0;
        order: 1;
    }

    .hero-display-line {
        font-size: clamp(3.4rem, 16vw, 5.2rem);
    }

    .hero-scope {
        margin-top: 1.35rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1.75rem;
    }

    .section-project-carousel {
        width: min(100%, 360px);
        margin-top: 2rem;
    }

    .section-project-carousel .hero-float-card {
        min-width: 150px;
        padding: 0.85rem 1.1rem;
    }

    .section-project-carousel .hero-float-card strong {
        font-size: 1.35rem;
    }

    .hero-rail {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
    }

    .hero-scroll {
        display: none;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-summary {
        text-align: left;
    }

    .reviews-score {
        justify-content: flex-start;
    }

    .review-card {
        flex: 0 0 100%;
        min-height: 260px;
    }

    .emergency-section {
        min-height: calc(100svh - 7.5rem);
        padding: clamp(1rem, 2.5svh, 1.5rem) 1.25rem;
    }

    .emergency-section .split-grid {
        height: auto;
        max-height: calc(100svh - 10rem);
        grid-template-columns: 1fr;
    }

    .emergency-section .emergency-copy {
        padding: clamp(1rem, 3vw, 1.35rem);
    }

    .emergency-media-stack {
        flex-direction: row;
        height: clamp(68px, 12svh, 96px);
    }

    .reviews-nav {
        display: none;
    }
}
