@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand palette — derived from logo */
    --color-black:           #0a0a0a;
    --color-black-soft:      #161310;
    --color-black-card:      #1c1814;
    --color-gold:            #c9a155;
    --color-gold-bright:     #e8c97a;
    --color-gold-pale:       #f3e2b6;
    --color-gold-dark:       #8a6a30;
    --color-wood:            #6e4a2e;
    --color-wood-light:      #8a5e3c;
    --color-wood-deep:       #4a3120;
    --color-silver:          #bfbfbf;
    --color-cream:           #f5f1e8;

    /* Semantic */
    --color-bg:              #ffffff;
    --color-surface:         #faf6ee;
    --color-surface-2:       #f3ecdc;
    --color-text:            #1a1714;
    --color-text-soft:       #44403b;
    --color-text-inv:        #f0ead9;
    --color-muted:           #6b665e;
    --color-muted-inv:       #a8a194;
    --color-border:          #e6dfd0;
    --color-border-dark:     rgba(201, 161, 85, 0.2);

    /* Type */
    --font-display:          "Playfair Display", "Georgia", serif;
    --font-body:             "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Layout */
    --max-width:             1200px;
    --max-width-wide:        1320px;
    --content-pad:           clamp(1rem, 3vw, 1.5rem);
    --radius:                4px;
    --radius-lg:             10px;
    --shadow-sm:             0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow:                0 8px 28px rgba(0, 0, 0, 0.10);
    --shadow-lg:             0 18px 50px rgba(0, 0, 0, 0.18);
    --shadow-gold:           0 10px 30px rgba(201, 161, 85, 0.28);
    --transition:            0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE / old Edge */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;               /* Chrome, Safari, modern Edge */
    width: 0;
    height: 0;
}
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-dark); }
button { font: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--color-text);
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--content-pad); }
.container-wide { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 var(--content-pad); }

/* === Top bar === */
.topbar {
    background: var(--color-black);
    color: var(--color-muted-inv);
    font-size: 0.825rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 161, 85, 0.12);
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar .tb-left, .topbar .tb-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.topbar a {
    color: var(--color-cream);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color var(--transition);
}
.topbar a:hover { color: var(--color-gold-bright); }
.topbar .tb-badge {
    color: var(--color-gold-bright);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.72rem;
}
.topbar svg { width: 14px; height: 14px; }

/* === Header === */
header.site-header {
    background: var(--color-black-soft);
    border-bottom: 1px solid var(--color-border-dark);
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}
.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 64px; width: auto; transition: transform var(--transition); }
.logo:hover .logo-img { transform: scale(1.03); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    margin-left: auto;
}
.nav-links a {
    text-decoration: none;
    color: var(--color-cream);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--color-gold-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 0.82rem; padding: 0.7rem 1.4rem; }

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-cream);
    cursor: pointer;
    padding: 0.4rem;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-gold);
    margin: 6px 0;
    transition: 0.25s ease;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.9rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 35%, var(--color-gold-bright) 60%, var(--color-gold) 100%);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
    background-size: 200% 200%;
    background-position: 0% 50%;
}
.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201, 161, 85, 0.4);
}
.btn-ghost {
    background: transparent;
    color: var(--color-gold-bright);
    border-color: var(--color-gold);
}
.btn-ghost:hover { background: var(--color-gold); color: var(--color-black); }
.btn-dark {
    background: var(--color-black);
    color: var(--color-gold-bright);
    border-color: var(--color-black);
}
.btn-dark:hover { background: var(--color-gold-dark); color: var(--color-black); border-color: var(--color-gold-dark); }

/* === Hero === */
.hero {
    padding: 6.5rem 0 7rem;
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: var(--color-black);
    color: var(--color-text-inv);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(13, 13, 13, 0.55) 0%,
            rgba(13, 13, 13, 0.25) 35%,
            rgba(13, 13, 13, 0.35) 65%,
            rgba(13, 13, 13, 0.80) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent 0px, transparent 22px,
            rgba(201, 161, 85, 0.04) 22px, rgba(201, 161, 85, 0.04) 24px);
    pointer-events: none;
    z-index: 2;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    z-index: 3;
}
.hero .container {
    position: relative;
    z-index: 4;
    width: 100%;
}

.hero-tagline {
    display: inline-block;
    color: var(--color-gold-bright);
    font-size: 0.78rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    font-weight: 600;
    padding: 0.45rem 1.2rem;
    border: 1px solid rgba(201, 161, 85, 0.55);
    border-radius: 999px;
    background: rgba(13, 13, 13, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    color: var(--color-cream);
    max-width: 920px;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero h1 .accent {
    background: linear-gradient(120deg, var(--color-gold) 0%, var(--color-gold-bright) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}
.hero-sub {
    color: var(--color-cream);
    font-size: clamp(1rem, 2vw, 1.18rem);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.6);
    padding: 0 0.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Stats bar === */
.stats {
    background: var(--color-black);
    padding: 2.5rem 0;
    border-bottom: 3px solid var(--color-gold);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-gold-bright);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat-label {
    color: var(--color-muted-inv);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

/* === Sections === */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--color-surface); }
.section-dark { background: var(--color-black); color: var(--color-text-inv); }
.section-dark h2 { color: var(--color-gold-bright); }
.section-dark .section-lead { color: var(--color-muted-inv); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-eyebrow {
    display: inline-block;
    color: var(--color-gold-dark);
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}
.section-dark .section-eyebrow { color: var(--color-gold); }
.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.section h2 .accent {
    color: var(--color-gold-dark);
    font-style: italic;
}
.section-dark h2 .accent { color: var(--color-gold-bright); }
.section-lead {
    color: var(--color-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 161, 85, 0.5) 30%,
        rgba(201, 161, 85, 0.5) 70%,
        transparent 100%);
    margin: 5rem auto;
    max-width: 600px;
    position: relative;
}
.section-divider::after {
    content: "◆";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-bg);
    color: var(--color-gold);
    padding: 0 0.85rem;
    font-size: 0.8rem;
}
.section-alt .section-divider::after { background: var(--color-surface); }
.section-dark .section-divider::after { background: var(--color-black); }

/* === Services === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.85rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-2);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.service-icon svg { width: 30px; height: 30px; stroke: currentColor; }
.service-card:hover .service-icon { background: var(--color-gold); color: var(--color-black); }

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}
.service-card p { color: var(--color-muted); font-size: 0.95rem; }

/* === Process === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: step;
    position: relative;
}
.process-grid::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    opacity: 0.4;
    z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
    width: clamp(60px, 7vw, 76px);
    height: clamp(60px, 7vw, 76px);
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-bright) 100%);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    border: 4px solid var(--color-surface);
}
.section-dark .process-num { border-color: var(--color-black); }
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--color-muted); font-size: 0.92rem; }
.section-dark .process-step h3 { color: var(--color-cream); }
.section-dark .process-step p { color: var(--color-muted-inv); }

/* === Gallery filters === */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}
.gallery-filter {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.gallery-filter:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}
.gallery-filter.is-active {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    border-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 4px 14px rgba(201, 161, 85, 0.3);
}
.gallery-filter .filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 0.45rem;
    background: rgba(13, 13, 13, 0.08);
    color: var(--color-text-soft);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
}
.gallery-filter.is-active .filter-count {
    background: rgba(13, 13, 13, 0.2);
    color: var(--color-black);
}

/* === Gallery grid === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 1rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-wood-deep);
    cursor: zoom-in;
    text-decoration: none;
    display: block;
}
.gallery-item.is-hidden { display: none !important; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 10, 0.88) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    color: var(--color-cream);
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }
.gallery-caption strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}
.gallery-caption span {
    color: var(--color-gold-bright);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox-img {
    max-width: 92vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 161, 85, 0.3);
}
.lightbox button {
    position: absolute;
    background: rgba(13, 13, 13, 0.6);
    color: var(--color-gold-bright);
    border: 1px solid rgba(201, 161, 85, 0.4);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 2;
}
.lightbox button:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}
.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.6rem;
}
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold-bright);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-top: 1px solid rgba(201, 161, 85, 0.3);
}

/* === About === */
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-grid .lead {
    font-size: 1.18rem;
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}
.about-grid p { margin-bottom: 1.1rem; color: var(--color-text-soft); }
.about-quote {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--color-gold);
    background: var(--color-surface-2);
    font-style: italic;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.cert-card {
    background: var(--color-black);
    color: var(--color-cream);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gold-dark);
    box-shadow: var(--shadow);
}
.cert-card h3 {
    color: var(--color-gold-bright);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.cert-list { list-style: none; }
.cert-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201, 161, 85, 0.15);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.98rem;
}
.cert-list li:last-child { border-bottom: none; }
.cert-list li::after {
    content: "✓";
    color: var(--color-gold);
    font-weight: 700;
}

/* === Google rating badge (above reviews carousel) === */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem auto 0;
    padding: 0.85rem 1.4rem;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.96) 0%, rgba(28, 24, 20, 0.96) 100%);
    border: 1px solid rgba(201, 161, 85, 0.4);
    border-radius: 999px;
    text-decoration: none;
    color: var(--color-cream);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.google-rating:hover {
    transform: translateY(-2px);
    border-color: var(--color-gold);
    box-shadow: 0 12px 32px rgba(201, 161, 85, 0.25);
}
.google-rating-score {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold-bright);
    line-height: 1;
    padding-right: 1rem;
    border-right: 1px solid rgba(201, 161, 85, 0.25);
}
.google-rating-detail {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
}
.google-rating-stars {
    color: var(--color-gold);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    line-height: 1;
}
.google-rating-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-muted-inv);
    font-size: 0.78rem;
    font-weight: 500;
}
.google-rating-meta strong { color: var(--color-cream); font-weight: 700; }
.google-rating-meta svg { color: #4285F4; }

@media (max-width: 480px) {
    .google-rating { padding: 0.7rem 1.1rem; gap: 0.75rem; }
    .google-rating-score { font-size: 1.7rem; padding-right: 0.75rem; }
    .google-rating-meta { font-size: 0.72rem; }
}

/* === Contact map with overlay card === */
.contact-map {
    margin-top: 3rem;
    grid-column: 1 / -1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 161, 85, 0.35);
    box-shadow: var(--shadow-lg);
    background: var(--color-black);
}
.contact-map-frame {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    filter: contrast(1.05) saturate(0.85);
}
.contact-map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.55) 0%, rgba(13, 13, 13, 0.0) 35%, rgba(13, 13, 13, 0.0) 100%);
    pointer-events: none;
}
.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-map-overlay {
    position: absolute;
    bottom: 3.5rem;
    left: 1.25rem;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.92) 100%);
    border: 1px solid rgba(201, 161, 85, 0.4);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.25rem;
    max-width: 260px;
    color: var(--color-cream);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.contact-map-eyebrow {
    color: var(--color-gold-bright);
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    font-weight: 600;
}
.contact-map-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: 0.35rem;
    line-height: 1.15;
}
.contact-map-addr {
    color: var(--color-muted-inv);
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
}
.contact-map-cta {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.74rem;
}

@media (max-width: 768px) {
    .contact-map-frame { height: 360px; }
    .contact-map-overlay {
        position: static;
        transform: none;
        max-width: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
}

/* === Reviews carousel === */
.reviews-carousel {
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.reviews-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    /* roughly 6s per card — slows automatically when more reviews are added */
    animation: scroll-reviews calc(var(--review-count, 14) * 6s) linear infinite;
    will-change: transform;
}
.reviews-carousel:hover .reviews-track {
    animation-play-state: paused;
}
@keyframes scroll-reviews {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.review-card {
    flex: 0 0 360px;
    background: #fff;
    padding: 1.85rem 1.65rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}
.review-card::before {
    content: "\201C";
    position: absolute;
    top: -6px;
    left: 1.2rem;
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--color-gold);
    line-height: 1;
    opacity: 0.35;
    pointer-events: none;
}

.review-stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
}

.review-text {
    font-family: var(--font-display);
    font-size: 0.98rem;
    color: var(--color-text);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1 1 auto;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}
.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(201, 161, 85, 0.35);
}
.review-meta {
    min-width: 0;
}
.review-meta strong {
    display: block;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}
.review-meta .review-source {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-muted);
    font-size: 0.78rem;
    margin-top: 0.2rem;
}
.review-meta .review-source svg { color: #4285F4; }

@media (max-width: 768px) {
    .review-card { flex: 0 0 300px; padding: 1.5rem 1.3rem 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
    .reviews-track { animation: none; }
    .reviews-carousel { overflow: auto; -webkit-overflow-scrolling: touch; }
}

/* === Service areas === */
.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.4rem 1.5rem;
    list-style: none;
    max-width: 880px;
    margin: 0 auto;
}
.areas-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 500;
    transition: color var(--transition), padding-left var(--transition);
}
.areas-list li::before {
    content: "◆ ";
    color: var(--color-gold);
    font-size: 0.7em;
    margin-right: 0.5rem;
}
.areas-list li:hover { color: var(--color-gold-dark); padding-left: 0.4rem; }

/* === FAQ === */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--color-gold); }
.faq-item summary {
    padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1.1rem, 3vw, 1.6rem);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(0.98rem, 2vw, 1.1rem);
    color: var(--color-text);
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    color: var(--color-gold-dark);
    font-size: 1.6rem;
    font-weight: 400;
    transition: transform var(--transition);
    line-height: 1;
}
.faq-item[open] summary { color: var(--color-gold-dark); }
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-body {
    padding: 0 1.6rem 1.4rem;
    color: var(--color-text-soft);
    line-height: 1.7;
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-card {
    background: var(--color-black);
    color: var(--color-cream);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--color-gold);
}
.contact-info-card h3 {
    color: var(--color-gold-bright);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.contact-info {
    list-style: none;
    margin-bottom: 2rem;
}
.contact-info li {
    padding: 0.85rem 0;
    color: var(--color-cream);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    border-bottom: 1px solid rgba(201, 161, 85, 0.15);
}
.contact-info li:last-child { border-bottom: none; }
.contact-info svg {
    color: var(--color-gold-bright);
    flex-shrink: 0;
    width: 22px; height: 22px;
    margin-top: 0.15rem;
}
.contact-info a { color: var(--color-cream); text-decoration: none; transition: color var(--transition); }
.contact-info a:hover { color: var(--color-gold-bright); }
.contact-info strong {
    display: block;
    color: var(--color-gold-bright);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.contact-form,
.estimate-form {
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-gold);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* === Multi-step estimate wizard === */
.estimate-progress {
    margin-bottom: 0.5rem;
}
.estimate-progress-track {
    height: 4px;
    background: var(--color-border);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}
.estimate-progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: calc(var(--current-step, 1) / var(--total-steps, 5) * 100%);
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-bright));
    border-radius: 999px;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.estimate-progress-dots {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0.65rem 0 0;
    padding: 0;
    counter-reset: step;
}
.estimate-progress-dots li {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-surface-2);
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}
.estimate-progress-dots li.is-active {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-bright));
    color: var(--color-black);
    box-shadow: 0 2px 8px rgba(201, 161, 85, 0.35);
}
.estimate-progress-dots li.is-done {
    background: var(--color-gold-dark);
    color: #fff;
}

.estimate-step {
    border: none;
    padding: 0;
    margin: 0;
    display: none;
    animation: estimate-step-in 0.35s ease;
}
.estimate-step.is-active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@keyframes estimate-step-in {
    from { opacity: 0; transform: translateX(8px); }
    to   { opacity: 1; transform: translateX(0); }
}

.estimate-step-num {
    color: var(--color-gold-dark);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
}
.estimate-step-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-text);
    margin: 0;
}
.estimate-step-hint {
    color: var(--color-muted);
    font-size: 0.92rem;
    margin: -0.35rem 0 0.4rem;
}

.estimate-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.estimate-form .estimate-optional {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--color-muted);
    font-size: 0.78rem;
}
.estimate-form input[type="text"],
.estimate-form input[type="email"],
.estimate-form input[type="tel"],
.estimate-form input[type="file"],
.estimate-form select,
.estimate-form textarea {
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.98rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
    background: #fff;
    color: var(--color-text);
    transition: all var(--transition);
}
.estimate-form select { cursor: pointer; }
.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 161, 85, 0.15);
}

.estimate-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
.estimate-row > label { flex: 1; }
.estimate-zip { max-width: 130px; }

.estimate-radios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.estimate-radios-stack {
    grid-template-columns: 1fr;
}
.estimate-radio {
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-weight: normal;
    font-size: 0.95rem;
}
.estimate-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.estimate-radio-card {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.95rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    transition: all var(--transition);
    text-align: left;
}
.estimate-radio-card strong {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.98rem;
}
.estimate-radio-card small {
    color: var(--color-muted);
    font-size: 0.82rem;
}
.estimate-radio:hover .estimate-radio-card { border-color: var(--color-gold); }
.estimate-radio input:checked + .estimate-radio-card {
    border-color: var(--color-gold);
    background: rgba(201, 161, 85, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 161, 85, 0.12);
}
.estimate-radio input:checked + .estimate-radio-card strong { color: var(--color-gold-dark); }

.estimate-file {
    border: 1.5px dashed var(--color-border);
    border-radius: var(--radius);
    padding: 0.95rem 1rem;
    background: var(--color-surface);
    transition: border-color var(--transition);
}
.estimate-file:hover { border-color: var(--color-gold); }
.estimate-file small {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--color-muted);
    font-size: 0.78rem;
    margin-top: 0.3rem;
    display: block;
}
.estimate-file input[type="file"] {
    border: none;
    padding: 0.4rem 0;
    background: transparent;
    font-size: 0.85rem;
}

.estimate-consent {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.6rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    font-size: 0.85rem !important;
    color: var(--color-text-soft);
    padding-top: 0.25rem;
}
.estimate-consent input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--color-gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.estimate-consent a { color: var(--color-gold-dark); text-decoration: underline; }

.estimate-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.estimate-nav .btn { font-size: 0.82rem; padding: 0.7rem 1.4rem; }

@media (max-width: 540px) {
    .estimate-row,
    .estimate-radios { grid-template-columns: 1fr; }
    .estimate-zip { max-width: none; }
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-form input,
.contact-form textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.98rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
    background: #fff;
    color: var(--color-text);
    transition: all var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 161, 85, 0.15);
}

.form-msg {
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
}
.form-msg-success {
    background: #e8f5ec;
    color: #1f5e2c;
    border: 1px solid #b9d8c1;
}
.form-msg-error {
    background: #fcecec;
    color: #8a1a1a;
    border: 1px solid #e0bcbc;
}

/* === Footer === */
footer.site-footer {
    background: var(--color-black);
    color: var(--color-muted-inv);
    padding: 4.5rem 0 1.5rem;
    border-top: 3px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201, 161, 85, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(201, 161, 85, 0.15);
    position: relative;
    z-index: 1;
}
.footer-logo-img { height: 70px; width: auto; margin-bottom: 1rem; }
.footer-tagline {
    color: var(--color-gold);
    letter-spacing: 0.25em;
    font-size: 0.72rem;
    text-transform: uppercase;
    margin: 0.5rem 0 1rem;
    font-weight: 600;
}
.footer-about { font-size: 0.93rem; line-height: 1.7; color: var(--color-muted-inv); }

.site-footer h4 {
    color: var(--color-gold-bright);
    margin-bottom: 1.1rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--font-body);
    font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.55rem; font-size: 0.93rem; }
.site-footer ul a {
    color: var(--color-muted-inv);
    text-decoration: none;
    transition: color var(--transition);
}
.site-footer ul a:hover { color: var(--color-gold-bright); }

.footer-contact-line {
    font-size: 0.93rem;
    margin-bottom: 0.55rem;
    color: var(--color-muted-inv);
}
.footer-contact-line a { color: inherit; text-decoration: none; }
.footer-contact-line a:hover { color: var(--color-gold-bright); }

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    list-style: none;
}
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(201, 161, 85, 0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-cream);
    text-decoration: none;
    transition: all var(--transition);
}
.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-black);
    background: var(--color-gold);
    transform: translateY(-3px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(168, 161, 148, 0.65);
    position: relative;
    z-index: 1;
}

/* === Legal pages (privacy, terms) === */
.legal-page { padding-top: clamp(2.5rem, 5vw, 4rem); }
.legal-container { max-width: 820px; }
.legal-head {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}
.legal-head h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0.5rem 0 0.75rem;
    color: var(--color-text);
}
.legal-updated {
    color: var(--color-muted);
    font-size: 0.88rem;
    font-style: italic;
}
.legal-body {
    color: var(--color-text-soft);
    line-height: 1.75;
}
.legal-body h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--color-black);
    margin: 2.25rem 0 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
}
.legal-body p { margin-bottom: 1rem; }
.legal-body ul { margin: 0 0 1.25rem 1.5rem; }
.legal-body li { margin-bottom: 0.45rem; }
.legal-body a { color: var(--color-gold-dark); text-decoration: underline; }
.legal-body a:hover { color: var(--color-gold); }
.legal-contact-block {
    background: var(--color-surface);
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.25rem 0;
}

/* === Thank-you check icon === */
.thank-you-check {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-bright));
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 2;
}
.thank-you-check svg { width: 40px; height: 40px; }

.thank-you-hero, .error-hero { min-height: 520px; }
.thank-you-hero .hero-video, .error-hero .hero-video { display: none; }
.thank-you-hero .hero-overlay,
.error-hero .hero-overlay {
    background: linear-gradient(180deg,
        rgba(13, 13, 13, 0.85) 0%,
        rgba(13, 13, 13, 0.95) 100%);
}

/* === Floating contact buttons (FAB) === */
.fab-stack {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    z-index: 60;
}
.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fab svg { width: 28px; height: 28px; }
.fab:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.fab-whatsapp {
    background: #25D366;
    border: 2px solid #1eb558;
}
.fab-whatsapp:hover { background: #1eb558; }
.fab-phone {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-bright) 100%);
    border: 2px solid var(--color-gold-dark);
    color: var(--color-black);
}
.fab-phone:hover {
    background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 100%);
}

/* Pulse rings to draw attention */
.fab-whatsapp, .fab-phone { position: relative; }
.fab-whatsapp::before,
.fab-phone::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: fab-pulse 2.6s ease-out infinite;
    pointer-events: none;
}
.fab-phone::before {
    border-color: var(--color-gold-bright);
    animation-delay: 1.3s;       /* off-beat from WhatsApp pulse */
}
@keyframes fab-pulse {
    0%   { transform: scale(0.95); opacity: 0.6; }
    70%  { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}

/* === Sticky mobile CTA === */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-black);
    border-top: 2px solid var(--color-gold);
    padding: 0.65rem;
    z-index: 50;
    gap: 0.5rem;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.3);
}
.mobile-cta .btn { flex: 1; padding: 0.85rem 0.6rem; font-size: 0.82rem; }

/* === Scroll reveal (progressive enhancement) ===
   Only hide elements when JS is confirmed active. Without JS the
   page renders fully visible — no content is ever truly invisible
   if the IntersectionObserver fails to fire. */
.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Safety net — anything that hasn't been revealed within 4s of
   page load becomes visible anyway (covers IO failure edge cases) */
@media (prefers-reduced-motion: no-preference) {
    .js .reveal {
        animation: reveal-safety-net 0s ease 4s forwards;
    }
    .js .reveal.is-visible {
        animation: none;
    }
}
@keyframes reveal-safety-net {
    to { opacity: 1; transform: translateY(0); }
}

/* === Responsive === */

/* Ultra-wide (>1600px): cap the container so content doesn't stretch */
@media (min-width: 1600px) {
    :root { --max-width: 1280px; --max-width-wide: 1440px; }
    .hero h1 { max-width: 980px; }
    .review-card { flex-basis: 380px; }
}

/* Tablet landscape (1024px and below) */
@media (max-width: 1024px) {
    .nav-links { gap: 1.5rem; }
    .nav-links a { font-size: 0.85rem; }
    .nav-cta { font-size: 0.78rem; padding: 0.6rem 1.1rem; }
    .topbar .tb-left { gap: 1rem; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-grid > div:nth-child(4) { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .process-grid::before { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gallery-item.tall { grid-row: auto; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .topbar .tb-left { display: none; }
    .topbar .container { justify-content: center; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-black);
        flex-direction: column;
        gap: 0;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(201, 161, 85, 0.2);
        display: none;
    }
    .nav-links.is-open { display: flex; }
    .nav-links li {
        border-bottom: 1px solid rgba(201, 161, 85, 0.1);
        width: 100%;
    }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: 0.9rem 0; }
    .nav-links a::after { display: none; }

    .nav-toggle { display: block; order: 3; }
    .nav-cta { display: none; }

    .logo-img { height: 48px; }

    .hero { padding: 4rem 0 5rem; }
    .section { padding: 4rem 0; }
    .section-head { margin-bottom: 2.5rem; }

    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }

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

    /* lift FAB above the mobile CTA bar so they don't collide */
    .fab-stack {
        bottom: 5.5rem;
        right: 1rem;
        gap: 0.7rem;
    }
    .fab { width: 52px; height: 52px; }
    .fab svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .process-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-tagline { font-size: 0.7rem; letter-spacing: 0.3em; }
    .section-head { margin-bottom: 2rem; }
    .footer-grid { gap: 1.5rem; }
    .fab-stack { right: 0.75rem; bottom: 5rem; }
    .fab { width: 48px; height: 48px; }
    .fab svg { width: 22px; height: 22px; }
    .section h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .stat-value { font-size: 1.85rem; }
    .stat-label { font-size: 0.7rem; letter-spacing: 0.15em; }
}
