/* ══════════════════════════════════════════
   Pro House & Office Fit Out — Luxury Design
   ══════════════════════════════════════════ */

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

:root {
    --black: #0a0a0a;
    --dark: #141414;
    --charcoal: #1c1c1c;
    --graphite: #2a2a2a;
    --steel: #3d3d3d;
    --ash: #6b6b6b;
    --stone: #8a8a8a;
    --silver: #b0b0b0;
    --pearl: #d4d4d4;
    --cream: #e8e5e0;
    --ivory: #f4f2ed;
    --white: #fafaf8;
    --pure-white: #ffffff;
    --gold: #b8945f;
    --gold-light: #d4b88a;
    --gold-dark: #96764a;
    --gold-muted: rgba(184, 148, 95, 0.12);
    --transition: 0.4s cubic-bezier(0.25, 0, 0.15, 1);
    --transition-slow: 0.7s cubic-bezier(0.25, 0, 0.15, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.15;
    color: var(--black);
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    animation: fadeUp 1s cubic-bezier(0.25, 0, 0.15, 1) forwards;
}

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

/* ── Top Bar ── */
.top-bar {
    background: var(--black);
    color: var(--stone);
    font-size: 0.72rem;
    padding: 0.6rem 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 2rem;
}

.top-bar a {
    color: var(--stone);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* ── Header ── */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all var(--transition);
}

header.scrolled {
    background: rgba(250, 250, 248, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 110px;
    width: auto;
    margin: -22px 0 -38px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-links a {
    color: var(--steel);
    font-weight: 400;
    font-size: 0.78rem;
    padding: 0.5rem 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition);
}

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

.nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 0.7rem 1.8rem !important;
    margin-left: 0.5rem;
    letter-spacing: 0.12em !important;
    transition: background var(--transition) !important;
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 18px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--black);
    transition: all var(--transition);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 3rem 6rem;
    background: var(--black);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(184, 148, 95, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(184, 148, 95, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.5rem 0;
    margin-bottom: 2rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.hero-badge::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1rem auto 0;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.hero p {
    font-size: 1rem;
    color: var(--stone);
    margin-bottom: 3rem;
    line-height: 1.9;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.hero p strong {
    color: var(--silver);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-family: 'Inter', sans-serif;
}

.trust-item {
    color: var(--ash);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
}

.trust-item strong {
    color: var(--gold);
    font-weight: 600;
    display: block;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
    font-family: 'Playfair Display', serif;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.08);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    border: none;
    border-radius: 0;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.btn:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 0.75rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--pure-white);
}

.btn-outline:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

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

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

/* ── Area/Project page hero (compact) ── */
.hero-area {
    min-height: auto;
    padding: 8rem 3rem 4rem;
}

/* ── Lightbox ── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--pure-white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    border: 1px solid rgba(255,255,255,0.2);
    transition: border-color var(--transition);
}

.lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pure-white);
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    transition: color var(--transition);
}

.lightbox-nav:hover {
    color: var(--gold);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ── Sections ── */
section {
    padding: 5rem 3rem;
}

.section-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label.center { text-align: center; }

section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--black);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--ash);
    font-size: 0.95rem;
    margin-bottom: 4rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Thin decorative line under section titles */
section h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.2rem auto 0;
}

/* ── Services ── */
.services {
    background: var(--ivory);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.06);
}

.service-card {
    position: relative;
    background: transparent;
    padding: 2.5rem 2rem;
    border: none;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
}

.service-card:nth-child(3n) {
    border-right: none;
}

.service-card:nth-last-child(-n+3) {
    border-bottom: none;
}

.service-card:hover {
    background: var(--pure-white);
}

.service-card.featured {
    background: var(--pure-white);
    border-color: rgba(0,0,0,0.06);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 0.25rem 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--gold);
    background: transparent;
    border-radius: 0;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.7rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.service-card p {
    color: var(--ash);
    font-size: 0.88rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ── Areas ── */
.areas {
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.06);
}

.area-card {
    display: block;
    padding: 2.5rem 2.5rem;
    text-decoration: none;
    color: var(--charcoal);
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
    position: relative;
}

.area-card:nth-child(2n) { border-right: none; }
.area-card:nth-last-child(-n+2) { border-bottom: none; }

.area-card:hover {
    background: var(--ivory);
}

.area-card h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', serif;
}

.area-card p {
    font-size: 0.85rem;
    color: var(--ash);
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-weight: 300;
}

.area-postcodes {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.08em;
}

.area-link {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--black);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.area-card:hover .area-link {
    color: var(--gold);
}

.area-detail + .area-detail {
    margin-top: 2.5rem;
}

.area-detail h3 {
    margin-bottom: 1.1rem;
}

/* On area pages, the "Our Services" section follows the boroughs section
   (both .services) — tighten the gap so they don't feel disconnected. */
.services + .services {
    padding-top: 1.5rem;
}

.area-card summary { list-style: none; cursor: default; }
.area-card summary::-webkit-details-marker { display: none; }
.area-card summary::marker { display: none; }
.area-link { display: inline-block; text-decoration: none; }

@media (min-width: 769px) {
    .area-card summary { pointer-events: none; }
}

/* Floating mobile CTA */
.mobile-cta { display: none; }
@media (max-width: 768px) {
    .mobile-cta {
        display: flex;
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 0.95rem 1.5rem;
        background: var(--gold);
        color: var(--black);
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-decoration: none;
        z-index: 900;
        box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    }
    body { padding-bottom: 4.5rem; }
}

/* ── Projects ── */
.projects {
    background: var(--black);
    color: var(--pearl);
}

.projects h2 {
    color: var(--pure-white);
}

.projects h2::after {
    background: var(--gold);
}

.projects .section-subtitle {
    color: var(--stone);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    display: block;
    overflow: hidden;
    transition: all var(--transition);
    background: var(--charcoal);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-3px);
}

.project-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-placeholder {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

.project-info p {
    color: var(--stone);
    font-size: 0.85rem;
    line-height: 1.65;
    font-weight: 300;
}

/* ── About ── */
.about {
    background: var(--white);
    padding-top: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.2rem;
}

.about-text h2::after {
    margin: 1.2rem 0 0 0;
}

.about-text > p {
    color: var(--ash);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.85;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.06);
}

.stat-card {
    padding: 2.2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background var(--transition);
}

.stat-card:nth-child(2n) { border-right: none; }
.stat-card:nth-last-child(-n+2) { border-bottom: none; }

.stat-card:hover {
    background: var(--ivory);
}

.stat-card strong {
    display: block;
    font-size: 2.6rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.stat-card span {
    color: var(--ash);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.features-list li {
    color: var(--charcoal);
    padding: 0.8rem 0 0.8rem 0;
    font-size: 0.88rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold);
    flex-shrink: 0;
    position: static;
}

.features-list li::after {
    display: none;
}

/* ── Testimonials ── */
.testimonials {
    background: var(--ivory);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.06);
}

.testimonial-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.06);
    transition: background var(--transition);
    background: transparent;
}

.testimonial-card:last-child { border-right: none; }

.testimonial-card:hover {
    background: var(--pure-white);
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: var(--ash);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: normal;
    font-weight: 300;
}

.testimonial-project-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    color: var(--stone);
}

.testimonial-card cite strong {
    color: var(--black);
}

/* ── FAQ ── */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-item summary {
    padding: 1.3rem 0;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--black);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    transition: color var(--transition);
}

.faq-item summary:hover {
    color: var(--gold);
}

.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
    font-family: 'Inter', sans-serif;
}

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

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

.faq-item p {
    padding: 0 0 1.3rem;
    color: var(--ash);
    font-size: 0.88rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ── Contact ── */
.contact {
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    border-radius: 0;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--black);
    transition: border-color var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--stone);
    font-weight: 300;
}

.contact-form select {
    color: var(--stone);
    font-weight: 300;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238a8a8a' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

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

.contact-form .btn {
    margin-top: 2rem;
    align-self: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    border-left: 1px solid rgba(0,0,0,0.08);
    padding-left: 4rem;
}

.info-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-item:last-child { border-bottom: none; }

.info-item h3 {
    color: var(--gold);
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.info-item p {
    color: var(--charcoal);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
}

.info-item a {
    color: var(--charcoal);
}

.info-item a:hover { color: var(--gold); }

/* ── Footer ── */
footer {
    background: var(--black);
    color: var(--steel);
    padding: 2.5rem 3rem 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col { text-align: center; }

.footer-logo-img {
    height: 80px;
    margin: -15px 0 -15px -22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: var(--pure-white);
    margin-bottom: 1.2rem;
    font-size: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    font-weight: 300;
}

.footer-col a {
    color: var(--silver);
    transition: color var(--transition);
}

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

.footer-copy {
    font-size: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    text-align: center;
    color: var(--steel);
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* ── Borough grid (area pages) ── */
.borough-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.06);
}

.borough-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background var(--transition);
}

.borough-card:hover {
    background: var(--ivory);
}

.borough-card h3 {
    color: var(--black);
    margin-bottom: 0.3rem;
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.borough-postcodes {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.08em;
}

.borough-card p {
    color: var(--ash);
    font-size: 0.88rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ── Content sections (area pages) ── */
.content-section {
    background: var(--white);
}

.content-section h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.content-section h2::after {
    margin: 1.2rem 0 0 0;
}

.content-section > .container > p {
    color: var(--ash);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.85;
    font-weight: 300;
}

.services-list-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    list-style: none;
    max-width: 1200px;
    margin: 2rem auto 0;
    border: 1px solid rgba(0,0,0,0.06);
}

.services-list-compact li {
    padding: 1rem 1.2rem 1rem 2.5rem;
    font-weight: 400;
    color: var(--charcoal);
    position: relative;
    font-size: 0.88rem;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background var(--transition);
}

.services-list-compact li:hover {
    background: var(--ivory);
}

.services-list-compact li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: translateY(-50%);
}

/* ── Breadcrumb ── */
.breadcrumb {
    padding: 0;
    margin-bottom: 0;
    font-size: 0.72rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb li + li::before {
    content: '/';
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.25);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

/* ── CTA Banner ── */
.cta-banner {
    background: var(--black);
    text-align: center;
    padding: 5rem 3rem;
    position: relative;
}

.cta-banner h2 {
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.cta-banner h2::after {
    background: var(--gold);
}

.cta-banner p {
    color: var(--stone);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* CTA section (project pages) */
.cta-section {
    background: var(--black);
    text-align: center;
    padding: 5rem 3rem;
}

.cta-section h2 {
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.cta-section h2::after {
    background: var(--gold);
}

.cta-section p {
    color: var(--stone);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ── Project Detail Pages ── */
.project-detail {
    background: var(--white);
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.project-detail-grid h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.project-detail-grid h2::after {
    margin: 1rem 0 0 0;
}

.project-detail-grid p {
    color: var(--ash);
    font-size: 0.92rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1rem;
}

.project-detail-grid ul {
    list-style: none;
    margin: 1rem 0 2rem;
}

.project-detail-grid ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--charcoal);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.project-detail-grid ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: translateY(-50%);
}

.project-facts {
    border-left: 1px solid rgba(0,0,0,0.06);
    padding-left: 3rem;
}

.project-facts h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.project-facts h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin-top: 0.8rem;
}

.project-facts dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.project-facts dt {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    padding-top: 1.2rem;
}

.project-facts dd {
    color: var(--charcoal);
    font-size: 0.9rem;
    font-weight: 400;
    padding-bottom: 1.2rem;
    margin-left: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    line-height: 1.6;
}

.project-facts .btn {
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
}

.project-fact {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.project-fact:first-child {
    padding-top: 0;
}

.project-fact label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.3rem;
    font-family: 'Inter', sans-serif;
}

.project-fact span {
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
}

.project-hero-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.project-gallery {
    background: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-detail-content h2 {
    margin-top: 3rem;
}

.project-detail-content h2:first-child {
    margin-top: 0;
}

.project-gallery {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.project-collage {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.project-collage img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    height: 250px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

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

    .service-card:nth-child(2n) { border-right: none; }
    .service-card:nth-child(3n) { border-right: 1px solid rgba(0,0,0,0.06); }

    .container { padding: 0 2rem; }
    nav { padding: 1rem 2rem; }
    section { padding: 3.5rem 2rem; }
}

@media (max-width: 768px) {
    .top-bar-inner { justify-content: center; }
    .top-bar-inner > span { display: none; }
    .top-bar-right { gap: 1rem; }
    .top-bar a { white-space: nowrap; font-size: 0.68rem; }

    html { scroll-padding-top: 80px; }
    nav { padding: 1rem 1.5rem; }
    .logo-img {
        height: 70px;
        margin: -10px 0 -18px;
    }

    .menu-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem 2rem;
        gap: 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        width: 100%;
    }

    .nav-links li:last-child {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .nav-links .nav-cta {
        margin-left: 0 !important;
        text-align: center;
        border-bottom: none !important;
        display: block;
    }

    .hero {
        min-height: 85vh;
        padding: 5rem 2rem 4rem;
    }

    .hero-buttons .btn:not(.btn-outline) { display: none; }

    .hero h1 { font-size: 2.6rem; }
    .hero p { font-size: 0.9rem; }

    .hero-trust {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .trust-divider { display: none; }

    section { padding: 2rem 1.5rem; }
    section h2 { font-size: 2rem; }
    .section-subtitle { margin-bottom: 1.5rem; }
    .project-image { height: auto; aspect-ratio: 4 / 3; }

    .services-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .service-card {
        border: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
        padding: 1.4rem 0.5rem;
    }

    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        border: none;
        gap: 1rem;
    }

    .testimonial-card {
        border: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .areas-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .area-card {
        border: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
        padding: 0 !important;
    }

    .area-card summary {
        padding: 1rem 0.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        list-style: none;
    }
    .area-card summary::-webkit-details-marker { display: none; }
    .area-card summary::marker { display: none; }
    .area-card summary h3 { margin-bottom: 0; }
    .area-card summary::after {
        content: '+';
        font-size: 1.6rem;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
        margin-left: 1rem;
    }
    .area-card[open] summary::after { content: '−'; }
    .area-card[open] {
        padding: 0 0 1rem !important;
    }
    .area-card > p,
    .area-card > .area-postcodes,
    .area-card > .area-link {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0,0,0,0.08);
        padding-top: 2rem;
    }

    .footer-links { grid-template-columns: 1fr; }
    footer { padding: 3rem 2rem 2rem; }

    .project-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-facts {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0,0,0,0.06);
        padding-top: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .project-facts h3,
    .project-facts .btn {
        grid-column: 1 / -1;
    }

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

    .borough-grid {
        grid-template-columns: 1fr;
        border: none;
    }

    .borough-card {
        border: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .hero-area {
        min-height: 40vh;
        padding-top: 5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lg {
        justify-content: center;
        text-align: center;
    }

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