/* ===== RESET & TOKENS ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0E2A3A;
    --navy-deep: #081D2A;
    --navy-soft: #16394E;
    --copper: #D11820;      /* accent = logo red (was copper #C0662C) */
    --copper-dark: #A81017;
    --red: #D11820;      /* sampled from the logo mark */
    --red-dark: #A81017;
    --copper-light: #F28C90;
    --copper-tint: rgba(209, 24, 32, 0.08);
    --cream: #FAF7F2;
    --white: #FFFFFF;
    --ink: #1B2A33;
    --slate: #4A5C68;
    --slate-light: #7A8B96;
    --line: #E8E2D8;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(14, 42, 58, 0.08);
    --shadow: 0 6px 20px rgba(14, 42, 58, 0.1);
    --shadow-lg: 0 20px 50px rgba(14, 42, 58, 0.16);
    --font-display: 'Bricolage Grotesque', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 104px 0; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(209, 24, 32, 0.3);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(209, 24, 32, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 22px;
    font-size: 0.95rem;
}
.btn-nav:hover { background: var(--red-dark); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-img { height: 46px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--ink);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--copper); }

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700 !important;
    color: var(--navy) !important;
}
.nav-phone:hover { color: var(--copper) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("images/hero-bathroom.jpg") center right / cover no-repeat;
}

/* Left-to-right scrim: eased stops so the fade into the photo is seamless */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(8, 29, 42, 0.97) 0%,
            rgba(8, 29, 42, 0.95) 16%,
            rgba(8, 29, 42, 0.89) 28%,
            rgba(8, 29, 42, 0.78) 40%,
            rgba(8, 29, 42, 0.6) 52%,
            rgba(8, 29, 42, 0.4) 64%,
            rgba(8, 29, 42, 0.22) 76%,
            rgba(8, 29, 42, 0.08) 88%,
            rgba(8, 29, 42, 0) 100%),
        linear-gradient(0deg, rgba(8, 29, 42, 0.45) 0%, transparent 28%);
}

/* Hero copy hugs the left edge of the screen, not the centered container */
.hero .container {
    max-width: none;
    width: 100%;
    padding: 0 clamp(24px, 4.5vw, 64px);
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(209, 24, 32, 0.14) 0%, transparent 65%);
    filter: blur(20px);
    z-index: 1;
}

.hero-pattern { display: none; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero h1 { color: var(--white); margin-bottom: 24px; }
.text-accent { color: var(--copper-light); }

.hero-subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    max-width: 620px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 2px; }

.stat-number {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
}
.stat-number svg { color: #F5B942; }

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
}

/* ===== PAGE HERO (landing pages) ===== */
.page-hero {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%, var(--navy-soft) 100%);
    padding: 170px 0 84px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(209, 24, 32, 0.18) 0%, transparent 65%);
    filter: blur(20px);
    pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .crumb {
    display: inline-block;
    color: var(--copper-light);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 18px;
    max-width: 720px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    max-width: 620px;
    margin-bottom: 32px;
}

.page-hero .hero-cta { margin-bottom: 0; }

/* ===== TRUST MARQUEE ===== */
.trust-strip {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.marquee { overflow: hidden; }

.marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.trust-item {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.trust-item::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper);
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    max-width: 640px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header p { color: var(--slate); font-size: 1.08rem; margin-top: 16px; }

.section-tag {
    display: inline-block;
    color: var(--copper);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-tag.light { color: var(--copper-light); }

/* ===== SERVICES INDEX ===== */
.section-intro {
    max-width: 680px;
    margin-bottom: 24px;
    padding-bottom: 40px;
}

.section-intro p { color: var(--slate); font-size: 1.08rem; margin-top: 16px; max-width: 520px; }

.service-index {
    border-top: 1px solid var(--ink);
}

.service-row {
    display: grid;
    grid-template-columns: 72px 1.2fr 1fr 48px;
    align-items: center;
    gap: 32px;
    padding: 34px 8px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: padding var(--transition);
}

.service-row::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-row:hover::after { transform: scaleY(1); }

.service-row > * { position: relative; z-index: 1; }

.service-row:hover { padding-left: 20px; }

.service-num {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--copper);
    letter-spacing: 0.05em;
}

.service-row-main h3 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
    transition: color var(--transition);
}

.service-row:hover .service-row-main h3 { color: var(--copper); }

.service-row-main p {
    color: var(--slate);
    font-size: 0.98rem;
    margin-top: 6px;
}

.service-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.service-row-meta span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--slate-light);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 12px;
    background: var(--white);
    white-space: nowrap;
}

.service-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.service-row:hover .service-arrow {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--white);
    transform: rotate(-45deg);
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(120deg, var(--navy-deep), var(--navy-soft));
    padding: 64px 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.7); font-size: 1.05rem; }

.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-band .btn-outline-dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}
.cta-band .btn-outline-dark:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Copper variant (landing pages): strong CTA, keeps navy footer distinct */
.cta-band-copper {
    background: linear-gradient(120deg, #8E0F15 0%, var(--copper) 60%, #E14E54 100%);
}

.cta-band-copper p { color: rgba(255, 248, 242, 0.85); }

.cta-band-copper .btn-primary {
    background: var(--navy-deep);
    box-shadow: 0 6px 18px rgba(8, 29, 42, 0.35);
}
.cta-band-copper .btn-primary:hover {
    background: var(--navy);
    box-shadow: 0 10px 26px rgba(8, 29, 42, 0.45);
}

.cta-band-copper .btn-outline-dark { border-color: rgba(255, 255, 255, 0.65); }
.cta-band-copper .btn-outline-dark:hover { color: var(--copper-dark); }

/* ===== SPLIT LAYOUTS ===== */
.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-copy h2 { margin-bottom: 20px; }
.split-copy > p { color: var(--slate); font-size: 1.08rem; margin-bottom: 28px; }

.check-list {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.check-list.two-col { grid-template-columns: 1fr 1fr; }

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--ink);
}

.check-list li::before {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--copper-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D11820' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.check-list.light li { color: rgba(255, 255, 255, 0.85); }

.check-list .inline-link { transition: color var(--transition); }
.check-list .inline-link:hover { color: var(--copper); }

.trust-line {
    color: var(--slate-light);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.info-callout {
    display: flex;
    gap: 14px;
    background: var(--copper-tint);
    border: 1px solid rgba(209, 24, 32, 0.25);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 32px;
}

.info-callout svg { flex-shrink: 0; color: var(--copper); margin-top: 2px; }
.info-callout p { color: var(--ink); font-size: 0.95rem; }

.photo-stack {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.5deg);
}
.photo-stack img { width: 100%; height: 100%; object-fit: cover; }

/* ===== GALLERY ===== */
.gallery { margin-top: 96px; }

.gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-header h3 { font-size: 1.7rem; margin-bottom: 8px; }
.gallery-header p { color: var(--slate); }

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

.gallery-grid figure {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-sm);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-grid figure:hover img { transform: scale(1.05); }

/* ===== BEFORE / AFTER ===== */
.transform { background: var(--white); }

.transform-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.transform-copy h2 { margin-bottom: 18px; }
.transform-copy > p { color: var(--slate); font-size: 1.08rem; margin-bottom: 28px; }

.ba-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.ba-toggle-btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--slate);
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.ba-toggle-btn:hover { border-color: var(--copper); color: var(--copper); }

.ba-toggle-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.ba-slider { width: 100%; }

.ba-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 640px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    user-select: none;
    -webkit-user-select: none;
}

.ba-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-before-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.ba-label {
    position: absolute;
    top: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    pointer-events: none;
}

.ba-label-before { left: 14px; background: rgba(8, 29, 42, 0.75); }
.ba-label-after { right: 14px; background: var(--copper); }

.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    margin: 0;
}

.ba-caption {
    margin-top: 14px;
    text-align: center;
    color: var(--slate-light);
    font-size: 0.9rem;
}

/* ===== HEATING ===== */
.heating {
    position: relative;
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-deep) 100%);
    overflow: hidden;
}

/* Warm image in the top-right, dissolving into the navy before the cards */
.heating::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 52%;
    background: url("images/heating-glow.jpg") top right / cover no-repeat;
}

.heating::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(14, 42, 58, 1) 34%,
            rgba(14, 42, 58, 0.9) 48%,
            rgba(14, 42, 58, 0.6) 64%,
            rgba(14, 42, 58, 0.3) 80%,
            rgba(14, 42, 58, 0.12) 100%),
        linear-gradient(180deg,
            rgba(14, 42, 58, 0.08) 0%,
            rgba(14, 42, 58, 0.35) 24%,
            rgba(14, 42, 58, 0.8) 40%,
            rgba(13, 38, 53, 1) 52%),
        radial-gradient(ellipse at 82% 8%, rgba(209, 24, 32, 0.16) 0%, transparent 50%);
}

.heating .container { position: relative; z-index: 1; }

.heating .section-intro { max-width: 560px; }
.heating .section-intro h2 { color: var(--white); }
.heating .section-intro p { color: rgba(255, 255, 255, 0.75); }

.heating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.heating-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 28px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.heating-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(209, 24, 32, 0.5);
    transform: translateY(-4px);
}

.heating-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.12rem; }
.heating-card p { color: rgba(255, 255, 255, 0.68); font-size: 0.95rem; }

.grant-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, rgba(209, 24, 32, 0.2), rgba(209, 24, 32, 0.08));
    border: 1px solid rgba(209, 24, 32, 0.4);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
}

.grant-callout h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.grant-callout p { color: rgba(255, 255, 255, 0.75); max-width: 560px; }

.grant-link {
    color: var(--copper-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.grant-link:hover { color: var(--white); }

/* ===== REPAIRS ===== */
.repairs-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: var(--shadow);
}

.repairs-panel-item { display: flex; gap: 18px; }

.repairs-panel-number {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.repairs-panel-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.repairs-panel-item p { color: var(--slate); font-size: 0.94rem; }

/* ===== COMMERCIAL ===== */
.commercial {
    background: var(--white);
}

.commercial-inner { max-width: 720px; }
.commercial h2 { margin-bottom: 20px; }
.commercial p { color: var(--slate); font-size: 1.08rem; margin-bottom: 28px; }

/* ===== MEET THE TEAM ===== */
.team-role {
    color: var(--copper);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: -12px 0 18px !important;
}

.team-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(209, 24, 32, 0.12) 0%, transparent 55%),
        linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.split-media .team-photo-placeholder { aspect-ratio: 4 / 5; }

.team-crew-section { padding-top: 0; }

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

.team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px 20px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-card-photo {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 18px;
}

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

.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card p { color: var(--slate-light); font-size: 0.92rem; }

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

/* ===== PROJECT FEATURE (commercial page) ===== */
.project-feature-section { padding-top: 0; }

.project-feature {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius-lg);
    padding: 56px 60px;
    box-shadow: var(--shadow-lg);
}

.project-feature { position: relative; overflow: hidden; }

.project-feature-bg {
    position: absolute;
    inset: 0;
    background: url("images/site-cork-harbour.jpg") center right / cover no-repeat;
}

.project-feature-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(14, 42, 58, 0.97) 0%,
        rgba(14, 42, 58, 0.92) 45%,
        rgba(14, 42, 58, 0.72) 70%,
        rgba(14, 42, 58, 0.45) 100%);
}

.project-feature > div:not(.project-feature-bg) { position: relative; z-index: 1; }

.project-feature h2 { color: var(--white); margin: 4px 0 16px; }
.project-feature p { color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; }

.photo-caption {
    margin-top: 12px;
    text-align: center;
    color: var(--slate-light);
    font-size: 0.9rem;
}

.project-feature-stats {
    display: flex;
    flex-direction: column;
    gap: 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 48px;
}

.project-feature .stat-number { color: var(--copper-light); font-size: 2rem; }
.project-feature .stat-label { color: rgba(255, 255, 255, 0.6); }

@media (max-width: 768px) {
    .project-feature {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 32px;
    }
    .project-feature-stats {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 26px;
    }
}

/* ===== REVIEWS ===== */
.reviews { background: var(--white); border-top: 1px solid var(--line); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-stars {
    color: #F5B942;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.review-card p { color: var(--ink); font-size: 1.02rem; flex: 1; }

.review-card footer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-light);
    font-size: 0.9rem;
}

.review-card footer strong { color: var(--navy); font-weight: 700; }

.google-g { flex-shrink: 0; }

.reviews-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 44px;
}

.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--slate);
    border-bottom: 1.5px solid var(--line);
    padding-bottom: 3px;
    transition: color var(--transition), border-color var(--transition);
}

.reviews-google-link:hover {
    color: var(--navy);
    border-color: var(--navy);
}

/* ===== AREA ===== */
.area { padding-top: 88px; padding-bottom: 88px; }

.area-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.area-inner h2 { margin-bottom: 14px; }
.area-inner p { color: var(--slate); max-width: 480px; }

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 420px;
}

.area-tags span,
.area-tags a {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.area-tags a:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

/* ===== CONTACT ===== */
/* Fades down into the footer's navy-deep so the two read as one closing block */
.contact {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 45%, var(--navy-deep) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info > p { color: rgba(255, 255, 255, 0.72); font-size: 1.06rem; margin-bottom: 36px; }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--copper-light);
}

.contact-method div { display: flex; flex-direction: column; }
.contact-method span { color: rgba(255, 255, 255, 0.55); font-size: 0.83rem; }
.contact-method strong { color: var(--white); font-size: 1.08rem; }
a.contact-method:hover strong { color: var(--copper-light); }

.contact-socials { display: flex; gap: 12px; margin-bottom: 24px; }

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}
.contact-socials a:hover { background: var(--copper); border-color: var(--copper); }

.contact-van {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    max-width: 420px;
}

.contact-note { color: rgba(255, 255, 255, 0.55); font-size: 0.92rem; }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
}

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

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(209, 24, 32, 0.15);
}

.form-group textarea { resize: vertical; }

.form-privacy {
    margin-top: 14px;
    text-align: center;
    color: var(--slate-light);
    font-size: 0.85rem;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    color: var(--ink);
}
.form-success svg { color: #2E9E5B; margin: 0 auto 18px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.form-success a { color: var(--copper); font-weight: 600; }

/* ===== FOOTER ===== */
/* White so the real logo shows (Mick's request) rather than an inverted silhouette */
.footer {
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.9fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-col ul.footer-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 18px;
}

.footer-brand p { color: var(--slate); font-size: 0.95rem; max-width: 320px; }

.footer-col h4 {
    color: var(--navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { color: var(--slate); font-size: 0.95rem; }
.footer-col a:hover { color: var(--copper); }

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    padding-bottom: 22px;
}
.footer-bottom p { color: var(--slate-light); font-size: 0.85rem; }

/* ===== MOBILE CTA BAR ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(8, 29, 42, 0.2);
}

.mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-weight: 700;
    font-size: 1rem;
}

.mobile-cta-call { background: var(--red); color: var(--white); }
.mobile-cta-quote { background: var(--navy); color: var(--white); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .split, .contact-grid, .transform-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ba-slider { max-width: 520px; margin: 0 auto; }

    .service-row {
        grid-template-columns: 48px 1fr 48px;
        gap: 18px;
    }
    .service-row-meta { display: none; }

    .split-media { order: -1; }
    .split-reverse .split-media { order: 0; }
    .photo-stack { transform: none; }

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

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

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 24px 24px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-130%);
        transition: transform var(--transition);
        z-index: -1;
    }

    .nav-links.open { transform: translateY(0); }

    .nav-links li { padding: 10px 0; }
    .nav-links .btn-nav { display: flex; margin-top: 8px; }

    .hero { min-height: auto; padding: 130px 0 70px; }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }

    .cta-band-inner { flex-direction: column; align-items: flex-start; }

    .service-row { padding: 24px 4px; }
    .service-row:hover { padding-left: 4px; }
    .service-arrow { width: 40px; height: 40px; }
    .service-num { font-size: 0.9rem; }

    .check-list.two-col { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .grant-callout { padding: 28px; }

    .contact-form-wrap { padding: 30px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    .mobile-cta { display: flex; }
    body { padding-bottom: 56px; }

    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
