/* ============================================================
   DECORATION, BATHROOM & KITCHEN RENOVATIONS — SUBPAGE STYLESHEET (STANDALONE)
   This file is self-contained: the subpage loads ONLY this
   stylesheet. Nothing here depends on css/style.css.

   CONTENTS
     1. Variables & base reset
     2. Utilities & buttons
     3. Custom cursor
     4. Topbar · Header · Nav · Mobile menu (injected by subpage.js)
     5. Marquee
     6. Scroll animations
     7. Lightbox
     8. Page chrome (progress bar, sticky CTA, row markers)
     9. Hero — banner left, quote form right
    10. Quote form card
    11. About — row 1 split · row 2 full width · row 3 images
    12. Process
    13. FAQ
    14. Footer
    15. Responsive ladder
    16. Motion / input preferences
   ============================================================ */


/* ============================================================
   1. VARIABLES & BASE RESET
   ============================================================ */

:root {
    --gold:       #e1b261;
    --gold-light: #f0ca8a;
    --dark:       #222224;
    --dark-alt:   #1a1a1c;
    --dark-2:     #2e2e30;
    --dark-3:     #464646;
    --mid:        #5c5c5e;
    --text:       #a7a7a7;
    --white:      #ffffff;
    --black:      #000000;

    --font-disp: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-fast: cubic-bezier(0.4, 0, 0.2, 1);

    --section-pad: 130px 0;
    --section-pad-sm: 90px 0;
    --container: 1300px;
    --container-sm: 1100px;
    --gap: 24px;
    --radius: 2px;

    --header-h: 88px;
    --header-h-scroll: 68px;
    --topbar-h: 42px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

@media (hover: none) { body { cursor: auto; } }

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
em { font-style: normal; }


/* ============================================================
   2. UTILITIES & BUTTONS
   ============================================================ */

.gold { color: var(--gold); }

.eyebrow {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.sec-title {
    font-family: var(--font-disp);
    font-size: clamp(34px, 3.6vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
}

.sec-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 18px;
}

.section { padding: var(--section-pad); }

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}


.btn-gold:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-gold span, .btn-gold i { position: relative; z-index: 1; }
.btn-gold i { transition: transform 0.3s var(--ease); }
.btn-gold:hover i { transform: translateX(5px); }

.btn-full { width: 100%; justify-content: center; }


/* ============================================================
   3. CUSTOM CURSOR
   ============================================================ */

.cursor-dot,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(225,178,97,0.6);
    transition: width 0.3s var(--ease), height 0.3s var(--ease),
                border-color 0.3s, background 0.3s;
}

body.cursor-hover .cursor-ring {
    width: 54px;
    height: 54px;
    border-color: var(--gold);
    background: rgba(225,178,97,0.08);
}

@media (hover: none) {
    .cursor-dot, .cursor-ring { display: none; }
}


/* ============================================================
   4. TOPBAR · HEADER · NAV · MOBILE MENU
   Markup injected into #site-header by subpage.js
   ============================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    overflow: visible;
    transition: background 0.45s var(--ease), padding 0.45s var(--ease), border-color 0.45s;
    border-bottom: 1px solid transparent;
}

.header.transparent {
    background-image: url('../images/texture-dark-1.png');
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(34,34,36,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
    border-bottom-color: rgba(225,178,97,0.12);
}

/* ── Mobile top-bar (phone + email strip) ── */
.mobile-topbar {
    display: none;                          /* desktop: hidden */
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--topbar-h);
    background: var(--dark-alt);
    border-bottom: 1px solid rgba(225,178,97,0.18);
    z-index: 950;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--text);
    white-space: nowrap;
    transition: color 0.3s;
}

.topbar-item i {
    color: var(--gold);
    font-size: 11px;
    flex-shrink: 0;
}

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

.topbar-sep {
    width: 1px;
    height: 18px;
    background: rgba(225,178,97,0.25);
    flex-shrink: 0;
}

/* ── Floating desktop social icons (fixed right rail) ── */
.floating-socials {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--dark);
    font-size: 13px;
    border-left: 3px solid var(--gold-light);
    transition: background 0.3s var(--ease),
                color 0.3s var(--ease),
                border-color 0.3s var(--ease),
                transform 0.3s var(--ease),
                box-shadow 0.3s var(--ease);
    box-shadow: -3px 0 12px rgba(225,178,97,0.25);
}

.floating-socials a:hover {
    background: rgba(22,22,24,0.96);
    color: var(--gold);
    border-left-color: rgba(225,178,97,0.4);
    transform: translateX(-7px);
    box-shadow: -5px 0 18px rgba(225,178,97,0.15);
}

.floating-socials a:first-child { border-radius: 8px 0 0 0; }
.floating-socials a:last-child  { border-radius: 0 0 0 8px; }

/* ── Header layout ── */
.header-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: visible;
}

.logo { flex-shrink: 0; }

.logo img {
    height: 68px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    display: block;
}

#desktopNav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 0;
}

.nav-link .fa-chevron-down {
    font-size: 9px;
    transition: transform 0.3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}

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

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }

/* Dropdown */
.nav-has-dropdown {
    position: relative;
    overflow: visible;
}

/* Invisible bridge so the mouse crossing the gap keeps :hover active */
.nav-has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    height: 22px;
    background: transparent;
}

.nav-has-dropdown:hover .nav-link .fa-chevron-down { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    background: #1c1c1e;
    border: 1px solid rgba(225,178,97,0.15);
    min-width: 230px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(12px);
    transition: all 0.3s var(--ease);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.nav-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown li a {
    display: block;
    padding: 11px 22px;
    font-size: 13px;
    color: var(--text);
    border-left: 2px solid transparent;
    transition: all 0.25s;
}

.nav-dropdown li a:hover,
.nav-dropdown li a[aria-current="page"] {
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 28px;
    background: rgba(225,178,97,0.04);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
}

.header-phone i { color: var(--gold); font-size: 11px; }
.header-phone:hover { color: var(--white); }

.header-contact-text {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.header-contact-text:hover { color: var(--gold); }

.header-arrow-btn {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease), background 0.3s;
}

.header-arrow-btn:hover {
    background: var(--white);
    transform: scale(1.06) rotate(-45deg);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.ham-bar {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.35s var(--ease);
    transform-origin: center;
}

.hamburger.open .ham-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu drawer ── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 950;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s;
}

.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100dvh;
    background: #18181a;
    z-index: 960;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 1px solid rgba(225,178,97,0.1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-logo { height: 56px; max-width: 180px; width: auto; object-fit: contain; }

.mobile-close {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: border-color 0.3s, color 0.3s;
}

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

.mobile-nav {
    flex: 1;
    padding: 20px 0;
}

.mob-link {
    display: block;
    padding: 14px 28px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    border-left: 2px solid transparent;
    transition: all 0.25s;
    font-family: var(--font-body);
}

.mob-link:hover, .mob-link:focus {
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 36px;
}

.mob-sub-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    text-align: left;
    cursor: pointer;
    transition: color 0.25s;
}

.mob-sub-btn .fa-chevron-down { font-size: 10px; transition: transform 0.3s var(--ease); }
.mob-sub-btn.open .fa-chevron-down { transform: rotate(180deg); }
.mob-sub-btn:hover, .mob-sub-btn.open { color: var(--gold); }

.mob-sub-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    background: rgba(225,178,97,0.04);
}

.mob-sub-list.open { max-height: 300px; }

.mob-sub-link { padding-left: 44px; font-size: 14px; }

.mobile-menu-foot {
    padding: 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu-foot a, .mobile-menu-foot p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 12px;
}

.mobile-menu-foot i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.mobile-menu-foot a:hover { color: var(--gold); }


/* ============================================================
   5. MARQUEE
   ============================================================ */

.marquee-strip {
    background: var(--gold);
    overflow: hidden;
    padding: 13px 0;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    gap: 28px;
    animation: marqueeAnim 22s linear infinite;
}

.marquee-inner span {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 600;
}

.m-sep { opacity: 0.5; }

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


/* ============================================================
   6. SCROLL ANIMATIONS
   ============================================================ */

.reveal-up {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

.reveal-image { overflow: hidden; }

.reveal-image img {
    transform: scale(1.08);
    transition: transform 1.3s var(--ease);
}

.reveal-image.revealed img { transform: scale(1); }


/* ============================================================
   7. LIGHTBOX — markup injected by subpage.js
   ============================================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox[hidden] { display: none; }

.lb-bg {
    position: absolute;
    inset: 0;
    background: rgba(12,12,14,0.96);
    cursor: pointer;
}

.lb-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 90vw;
    max-height: 90vh;
    padding: 20px;
}

.lb-img-wrap {
    max-width: 80vw;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lbImg {
    max-width: 80vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.lb-close,
.lb-prev,
.lb-next {
    position: absolute;
    width: 50px; height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    z-index: 3;
    transition: all 0.3s;
    background: rgba(34,34,36,0.8);
}

.lb-close { top: -20px; right: -20px; }
.lb-prev  { left: -60px; }
.lb-next  { right: -60px; }

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lb-counter {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
}


/* ============================================================
   8. PAGE CHROME
   ============================================================ */

.br-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,0.05);
    z-index: 9998;
    pointer-events: none;
}

.br-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.1s linear;
}

/* Mobile sticky call-to-action bar */
.br-sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 940;
    display: none;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(20,20,22,0.96);
    border-top: 1px solid rgba(225,178,97,0.22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transform: translateY(110%);
    transition: transform 0.45s var(--ease);
}

.br-sticky-cta.show { transform: translateY(0); }

.br-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--gold);
    color: var(--dark);
}

.br-sticky-btn.alt {
    flex: 0 0 54px;
    background: transparent;
    border: 1px solid rgba(225,178,97,0.4);
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0;
}

/* Small numbered row marker used at the head of each block */
.br-rowmark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid);
}

.br-rowmark-rule {
    width: 38px;
    height: 1px;
    background: var(--gold);
}


/* ============================================================
   9. HERO — banner + form
   ============================================================ */

.br-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark-alt);
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 46px) 0 74px;
}

/* Layer 0 — photograph with a slow Ken Burns drift */
.br-hero-bg {
    position: absolute;
    inset: -4%;
    background-image: url("../images/bathroom-hero.jpg");
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    animation: brKen 24s ease-in-out infinite alternate;
}

/* ── Per-page hero imagery ──────────────────────────────────
   Pexels photos, chosen so each hero shows the actual service.
   Free for commercial use, no attribution required.           */

/* Modern minimalist bathroom */
.br-hero-bg-bathroom {
    background-image: url("../images/bathroom-hero.jpg");
}

/* Modern luxury kitchen with elegant lighting */
.br-hero-bg-kitchen {
    background-image: url("../images/kitchen-hero.jpg");
}

/* Spacious living room with brick fireplace */
.br-hero-bg-home {
    background-image: url("../images/home-living-fireplace.jpg");
}

/* Tiler laying tile on a renovation project */
.br-hero-bg-tiling {
    background-image: url("../images/tiling-hero-laying-tile.jpg");
}

/* Modern kitchen and living area — warm, welcoming */
.br-hero-bg-contact {
    background-image: url("../images/kitchen-open-plan-living.jpg");
}

/* Luxurious modern bathroom with marble finish */
.br-hero-bg-gallery {
    background-image: url("../images/bathroom-luxury-marble.jpg");
}

/* Our crew working on an interior fit-out */
.br-hero-bg-about {
    background-image: url("../images/about-team-interior-work.jpg");
}

/* Client-supplied banner artwork */
.br-hero-bg-banner1 { background-image: url("../images/banner/ban1.jpg"); }
.br-hero-bg-banner3 { background-image: url("../images/banner/ban3.jpg"); }

@keyframes brKen {
    from { transform: scale(1.04); }
    to   { transform: scale(1.16); }
}

/* Layer 1 — scrims: bottom lift, left wash, vignette */
.br-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to top,   rgba(14,14,16,0.96) 0%, rgba(14,14,16,0.6) 34%, rgba(14,14,16,0.3) 68%, rgba(14,14,16,0.6) 100%),
        linear-gradient(to right, rgba(14,14,16,0.94) 0%, rgba(14,14,16,0.72) 44%, rgba(14,14,16,0.55) 100%),
        radial-gradient(ellipse at 28% 46%, rgba(14,14,16,0) 0%, rgba(14,14,16,0.55) 100%);
}

/* Layer 1b — warm glow behind the form column */
.br-hero-glow {
    position: absolute;
    top: 50%; right: -6%;
    width: 62vw; height: 82vh;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(225,178,97,0.11) 0%, rgba(225,178,97,0.04) 42%, rgba(225,178,97,0) 70%);
}

/* Layer 2 — oversized outlined watermark */
.br-hero-ghost {
    position: absolute;
    left: -0.05em;
    bottom: -0.17em;
    z-index: 2;
    font-family: var(--font-disp);
    font-size: clamp(96px, 15vw, 230px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(225,178,97,0.11);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

/* Rotated label pinned to the left edge */
.br-hero-rail {
    position: absolute;
    left: 30px;
    top: 50%;
    z-index: 12;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 18px;
    pointer-events: none;
}

.br-rail-line {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, rgba(225,178,97,0), var(--gold));
}

.br-rail-txt {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}

/* Bottom dissolve into the marquee */
.br-hero-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 130px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(26,26,28,0) 0%, var(--dark-alt) 100%);
}

/* ── Two-column shell ── */
.br-hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px 0 clamp(40px, 5.4vw, 92px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ── Banner copy ── */
.br-crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
}

.br-crumb a { color: var(--text); transition: color 0.3s; }
.br-crumb a:hover { color: var(--gold); }
.br-crumb-sep { color: rgba(225,178,97,0.45); }
.br-crumb-now { color: var(--gold); }

.br-hero-title {
    font-family: var(--font-disp);
    font-size: clamp(34px, 4.4vw, 64px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -1.2px;
    color: var(--white);
    margin-bottom: 22px;
}

.br-hero-title em { color: var(--gold); font-style: normal; }

.br-line-wrap {
    display: block;
    overflow: hidden;
    padding-bottom: 0.05em;
}

.br-line-inner {
    display: block;
    transform: translateY(108%);
    transition: transform 1.05s var(--ease);
}

.br-line-wrap.revealed .br-line-inner { transform: translateY(0); }

.br-hero-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 30px;
}

/* Trust pills */
.br-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.br-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid rgba(225,178,97,0.28);
    background: rgba(225,178,97,0.05);
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.br-pill i { color: var(--gold); font-size: 11px; }
.br-pill:hover { border-color: var(--gold); background: rgba(225,178,97,0.1); }

/* Star rating line */
.br-hero-proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.br-stars { display: inline-flex; gap: 3px; color: var(--gold); font-size: 12px; }

.br-proof-txt { font-size: 13px; color: rgba(255,255,255,0.6); }
.br-proof-txt strong { color: var(--white); font-weight: 600; }

/* Secondary links */
.br-hero-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.br-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(225,178,97,0.5);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.35s var(--ease), border-color 0.35s var(--ease);
}

.br-link-arrow:hover { gap: 16px; border-color: var(--gold); }

.br-link-call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.br-link-call i { color: var(--gold); font-size: 12px; }
.br-link-call:hover { color: var(--gold); }

/* Staggered entrance — fires when JS adds .loaded */
.br-hero .br-crumb,
.br-hero .br-hero-eyebrow,
.br-hero .br-hero-sub,
.br-hero .br-hero-pills,
.br-hero .br-hero-proof,
.br-hero .br-hero-links,
.br-hero .br-hero-form,
.br-hero .ct-hero-tiles,
.br-hero .br-scroll-cue {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.br-hero.loaded .br-crumb,
.br-hero.loaded .br-hero-eyebrow,
.br-hero.loaded .br-hero-sub,
.br-hero.loaded .br-hero-pills,
.br-hero.loaded .br-hero-proof,
.br-hero.loaded .br-hero-links,
.br-hero.loaded .br-hero-form,
.br-hero.loaded .ct-hero-tiles,
.br-hero.loaded .br-scroll-cue {
    opacity: 1;
    transform: translateY(0);
}

.br-hero.loaded .br-line-inner { transform: translateY(0); }

.br-hero .br-crumb        { transition-delay: 0.05s; }
.br-hero .br-hero-eyebrow { transition-delay: 0.16s; }
.br-hero .br-hero-sub     { transition-delay: 0.62s; }
.br-hero .br-hero-pills   { transition-delay: 0.72s; }
.br-hero .br-hero-proof   { transition-delay: 0.80s; }
.br-hero .br-hero-links   { transition-delay: 0.88s; }
.br-hero .br-hero-form    { transition-delay: 0.42s; }
.br-hero .ct-hero-tiles   { transition-delay: 0.42s; }
.br-hero .br-scroll-cue   { transition-delay: 1.00s; }

.br-hero-title .br-line-wrap:nth-child(1) .br-line-inner { transition-delay: 0.28s; }
.br-hero-title .br-line-wrap:nth-child(2) .br-line-inner { transition-delay: 0.40s; }
.br-hero-title .br-line-wrap:nth-child(3) .br-line-inner { transition-delay: 0.52s; }

/* Vertical scroll cue */
.br-scroll-cue {
    position: absolute;
    left: clamp(40px, 5.4vw, 92px);
    bottom: 30px;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.br-scroll-track {
    position: relative;
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    overflow: hidden;
}

.br-scroll-track::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: brScrollLine 2.4s var(--ease) infinite;
}

@keyframes brScrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    45%  { transform: scaleY(1); transform-origin: top; }
    55%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   10. QUOTE FORM CARD — markup injected into #quote by subpage.js
   ============================================================ */

.br-form-card {
    position: relative;
    padding: 34px 34px 28px;
    background: rgb(199 150 9 / 28%);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
    backdrop-filter: blur(22px) saturate(125%);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 40px 90px rgba(0,0,0,0.55), inset 0 0 80px rgba(225,178,97,0.025);
}

/* Gold sheen travelling across the top edge */
.br-form-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 2px;
    z-index: 2;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 35%, var(--gold-light) 50%, var(--gold) 65%, transparent 100%);
    background-size: 220% 100%;
    animation: brSheen 5s linear infinite;
}

@keyframes brSheen {
    from { background-position: 220% 0; }
    to   { background-position: -220% 0; }
}

/* Gold corner brackets */
.br-corner {
    position: absolute;
    width: 26px; height: 26px;
    pointer-events: none;
    z-index: 2;
}

.br-corner-tl {
    top: 11px; left: 11px;
    border-top: 1px solid rgba(225,178,97,0.55);
    border-left: 1px solid rgba(225,178,97,0.55);
}

.br-corner-br {
    bottom: 11px; right: 11px;
    border-bottom: 1px solid rgba(225,178,97,0.55);
    border-right: 1px solid rgba(225,178,97,0.55);
}

.br-form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.br-form-title {
    display: block;
    font-family: var(--font-disp);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.br-form-sub {
    display: block;
    font-size: 12.5px;
    color: var(--text);
}

.br-form-note {
    flex-shrink: 0;
    padding: 5px 11px;
    border: 1px solid rgba(225,178,97,0.35);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Field layout */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.f-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-row-2 .f-group { margin-bottom: 0; }

.f-group label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.f-group.filled label { color: var(--gold); }

.f-group input,
.f-group select,
.f-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 11px 14px;
    font-size: 13.5px;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.f-group input::placeholder,
.f-group textarea::placeholder { color: #b7b7b7; }

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    border-color: var(--gold);
    background: rgba(225,178,97,0.04);
}

.f-group textarea { resize: vertical; min-height: 112px; }

.f-group select option { background: #222224; color: var(--white); }

.br-form-card .btn-gold { margin-top: 8px; }

.form-success {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(225,178,97,0.1);
    border: 1px solid rgba(225,178,97,0.3);
    color: var(--gold);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.br-form-legal {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.7;
    color: var(--mid);
    text-align: center;
}


/* ============================================================
   11. ABOUT
   Row 1 — copy left, media right · Row 2 — full width · Row 3 — images
   ============================================================ */

.br-about {
    background-color: var(--dark-alt);
    background-image: url('../images/texture-dark-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.br-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14,14,16,0.88);
    z-index: 0;
    pointer-events: none;
}

/* ── Row 1 grid ── */
.br-about-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.06fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Row 1 · left copy ── */
.br-about-copy .sec-title { margin-bottom: 26px; }

.br-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin: 34px 0 38px;
}

.br-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text);
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.br-feat.revealed { opacity: 1; transform: translateX(0); }

.br-feat i { color: var(--gold); font-size: 13px; flex-shrink: 0; }

/* ── Row 1 · right media, layered ── */
.br-about-media {
    position: relative;
    padding: 0 22px 70px 46px;
}

.br-img-main {
    position: relative;
    overflow: hidden;
}

.br-img-main img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    transform: scale(1.07);
    transition: transform 1.4s var(--ease);
}

.br-img-main.revealed img { transform: scale(1); }

/* Offset gold frame, top-right to mirror the layout */
.br-img-main::before {
    content: '';
    position: absolute;
    top: -18px; right: -18px;
    width: 120px; height: 120px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    z-index: 4;
    opacity: 0;
    transform: translate(-14px, 14px);
    transition: opacity 0.9s var(--ease) 0.3s, transform 0.9s var(--ease) 0.3s;
}

.br-img-main.revealed::before { opacity: 1; transform: translate(0, 0); }

/* Overlapping inset shot, bottom-left */
.br-img-inset {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56%;
    aspect-ratio: 1/1;
    border: 6px solid var(--dark);
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 18px 50px rgba(0,0,0,0.5);
}

.br-img-inset img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.08);
    transition: transform 1.4s var(--ease);
}

.br-img-inset.revealed img { transform: scale(1); }

/* Gold rule bleeding off the right edge */
.br-gold-bar {
    position: absolute;
    right: 0;
    top: 64px;
    width: 4px;
    height: 170px;
    background: var(--gold);
    z-index: 6;
}

/* Floating gold badge, top-left */
.br-badge {
    position: absolute;
    top: 34px;
    left: 0;
    z-index: 7;
    background: var(--gold);
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.badge-num {
    font-family: var(--font-disp);
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.badge-num sup { font-size: 20px; vertical-align: super; }

.badge-txt {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(34,34,36,0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Row 2 · full-width band ── */
.br-about-wide {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 96px auto 0;
    padding: 0 40px;
}

.br-wide-rule {
    height: 1px;
    background: linear-gradient(to right, rgba(225,178,97,0.35), rgba(255,255,255,0.07) 40%, rgba(255,255,255,0));
    margin-bottom: 54px;
}

.br-lead {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
    font-weight: 300;
    margin-bottom: 18px;
}

.br-lead em { color: var(--gold); font-style: normal; font-weight: 400; }

.br-lead-sub {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 64px;
}

/* Inclusion cards */
.br-inc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.br-inc {
    position: relative;
    padding: 34px 28px 32px;
    background: rgb(227 175 58 / 30%);
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}

.br-inc::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.br-inc:hover::before { transform: scaleX(1); transform-origin: left; }

.br-inc:hover {
    transform: translateY(-6px);
    border-color: rgba(225,178,97,0.28);
    background: rgba(225,178,97,0.035);
}

.br-inc-icon {
    width: 46px; height: 46px;
    color: var(--gold);
    margin-bottom: 22px;
    transition: transform 0.5s var(--ease);
}

.br-inc-icon svg { width: 100%; height: 100%; display: block; }

/* Cards may use a Font Awesome glyph instead of an inline SVG */
.br-inc-icon i {
    font-size: 32px;
    line-height: 46px;
    display: block;
}

.br-inc:hover .br-inc-icon { transform: translateY(-3px) scale(1.06); }

.br-inc-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--mid);
    margin-bottom: 10px;
}

.br-inc h3 {
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.br-inc:hover h3 { color: var(--gold); }

.br-inc p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
}

/* Counter strip */
.br-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.br-stat {
    text-align: center;
    position: relative;
}

.br-stat + .br-stat::before {
    content: '';
    position: absolute;
    left: -10px; top: 8px;
    width: 1px; height: 46px;
    background: rgba(225,178,97,0.22);
}

.br-stat-num {
    font-family: var(--font-disp);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.br-stat-lbl {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mid);
}

/* ── Row 3 · three images ── */
.br-shots-row {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 96px auto 0;
    padding: 0 40px;
}

.br-shots-head { margin-bottom: 44px; }

.br-shots-title {
    font-family: var(--font-disp);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    letter-spacing: -0.4px;
}

.br-shots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 22px;
    padding-bottom: 62px;
    perspective: 1200px;
}

/* Editorial offset rhythm — middle column drops */
.br-shots .br-shot-wrap:nth-child(2) { margin-top: 58px; }

.br-shot {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow 0.5s var(--ease);
}

.br-shot.tilt-active { box-shadow: 0 26px 60px rgba(0,0,0,0.55); }

.br-shot img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease);
}

.br-shot:hover img { transform: scale(1.08); }

/* Hover overlay — gold film + circled plus */
.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(14,14,16,0.88) 0%,
        rgba(225,178,97,0.18) 55%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 18px 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
    border: 1.5px solid rgba(225,178,97,0);
    border-radius: 4px;
    z-index: 6;
}

.br-shot:hover .gal-overlay {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(225,178,97,0.5);
}

.gal-overlay i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gold);
    transform: rotate(-90deg) scale(0.7);
    transition: transform 0.4s var(--ease);
    align-self: flex-end;
}

.br-shot:hover .gal-overlay i { transform: rotate(0deg) scale(1); }

/* Gold line drawing across the bottom on hover */
.br-shot::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--gold);
    transition: width 0.5s var(--ease);
    z-index: 8;
}

.br-shot:hover::after { width: 100%; }

/* Index numeral, top-left */
.br-shot-num {
    position: absolute;
    top: 16px; left: 18px;
    z-index: 7;
    font-family: var(--font-disp);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.55);
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.br-shot:hover .br-shot-num { opacity: 1; }

/* Always-visible caption that lifts on hover */
.br-shot-cap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 7;
    padding: 22px 20px 20px;
    background: linear-gradient(to top, rgba(14,14,16,0.94) 0%, rgba(14,14,16,0.58) 55%, rgba(14,14,16,0) 100%);
    pointer-events: none;
    transform: translateY(10px);
    transition: transform 0.45s var(--ease);
}

.br-shot:hover .br-shot-cap { transform: translateY(0); }

.br-shot-lbl {
    display: block;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.br-shot-title {
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}


/* ============================================================
   12. PROCESS
   ============================================================ */

.br-process {
    background-color: var(--dark-alt);
    background-image: url('../images/texture-dark-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: var(--section-pad);
}

.br-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14,14,16,0.2);
    z-index: 0;
    pointer-events: none;
}

.process-head,
.process-grid { position: relative; z-index: 1; }

.process-head {
    max-width: var(--container);
    margin: 0 auto 70px;
    padding: 0 40px;
    text-align: center;
}

.br-rowmark-c { justify-content: center; }

.process-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(25% - 50px);
    right: calc(25% - 50px);
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(225,178,97,0.3), transparent);
    pointer-events: none;
}

.proc-step {
    padding: 8px 30px 0;
    position: relative;
    text-align: center;
}

.proc-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 18px;
    transition: background 0.3s, border-color 0.3s;
    position: relative;
    z-index: 1;
	background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.proc-step:hover .proc-icon {
    background: transparent;
    border: 1px solid rgba(225,178,97,0.35);
    color: var(--gold);
	
}

.proc-conn {
    position: absolute;
    top: 28px;
    right: -15%;
    width: 30%;
    height: 1px;
    background: rgba(225,178,97,0.2);
}

.proc-step:last-child .proc-conn { display: none; }

.proc-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.proc-title {
    font-family: var(--font-disp);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.proc-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text);
    position: relative;
    z-index: 1;
}

/* Oversized outlined numeral behind each step */
.br-step-ghost {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: var(--font-disp);
    font-size: 86px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(225,178,97,0.18);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    transition: -webkit-text-stroke-color 0.4s var(--ease);
}

.proc-step:hover .br-step-ghost {
    -webkit-text-stroke-color: rgba(225,178,97,0.42);
}


/* ============================================================
   13. FAQ
   ============================================================ */

.br-faq {
    background-color: var(--dark-alt);
    background-image: url('../images/texture-dark-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: var(--section-pad);
}

.br-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14,14,16,0.2);
    z-index: 0;
    pointer-events: none;
}

.faq-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-head { position: sticky; top: 120px; }

.faq-head .sec-body {
    margin-top: 20px;
    max-width: 340px;
}

.br-faq-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 22px;
    border: 1px solid rgba(225,178,97,0.28);
    background: rgba(225,178,97,0.04);
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.br-faq-call:hover { border-color: var(--gold); background: rgba(225,178,97,0.09); }

.br-faq-call i { color: var(--gold); font-size: 15px; }

.br-faq-call-txt { display: block; }

.br-faq-call-txt > span {
    display: block;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 3px;
}

.br-faq-call-txt > strong {
    display: block;
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.faq-list { border-top: 1px solid rgba(255,255,255,0.08); }

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

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    text-align: left;
    cursor: pointer;
    gap: 20px;
    transition: color 0.3s;
}

.faq-q span:first-child {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    flex: 1;
}

.faq-q:hover span:first-child { color: var(--gold); }

.faq-icon {
    width: 30px; height: 30px;
    border: 1px solid rgba(225,178,97,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 11px;
    flex-shrink: 0;
    transition: all 0.35s var(--ease);
}

.faq-item.open .faq-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: rotate(45deg);
}

.faq-item.open .faq-q span:first-child { color: var(--gold); }

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s var(--ease), visibility 0.45s;
    visibility: hidden;
}

.faq-item.open .faq-a {
    max-height: 400px;
    visibility: visible;
}

.faq-a p {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
}


/* ============================================================
   14. FOOTER — markup injected into #site-footer by subpage.js
   ============================================================ */

.footer { background: var(--dark-alt); border-top: 1px solid rgba(255,255,255,0.06); }

.footer-main {
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo { height: 70px; max-width: 220px; width: auto; object-fit: contain; margin-bottom: 22px; }

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 26px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
    font-size: 13px;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(225,178,97,0.06);
}

.footer-h {
    font-family: var(--font-disp);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 13.5px;
    color: var(--text);
    transition: color 0.3s, padding-left 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover i { transform: translateX(3px); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 12px; }
.footer-contact a:hover { color: var(--gold); }

.footer-base {
    max-width: var(--container);
    margin: 0 auto;
    padding: 22px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-base p {
    font-size: 12.5px;
    color: var(--mid);
}


/* ============================================================
   14b. CONTACT PAGE
   Banner carries no form, so the right column holds quick-contact
   tiles and the hero runs shorter.
   ============================================================ */

.br-hero-compact { min-height: 76vh; }
.br-hero-compact .br-hero-inner { grid-template-columns: 1.12fr 0.88fr; }

/* ── Quick-contact tiles in the banner ── */
.ct-hero-tiles {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ct-tile {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(23,23,25,0.78);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255,255,255,0.09);
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}

.ct-tile:hover {
    border-color: rgba(225,178,97,0.45);
    background: rgba(225,178,97,0.06);
    transform: translateX(6px);
}

.ct-tile-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border: 1px solid rgba(225,178,97,0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 16px;
    transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.ct-tile:hover .ct-tile-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.ct-tile-lbl {
    display: block;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 6px;
}

.ct-tile-val {
    display: block;
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    word-break: break-word;
    transition: color 0.3s;
}

.ct-tile:hover .ct-tile-val { color: var(--gold); }

/* ── Contact section — details left, form right ── */
.ct-section {
    background-color: var(--dark-alt);
    background-image: url('../images/texture-dark-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: var(--section-pad);
}

.ct-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14,14,16,0.9);
    z-index: 0;
    pointer-events: none;
}

.ct-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.ct-info .sec-title { margin-bottom: 22px; }

.ct-details { margin-top: 40px; }

.ct-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
}

.ct-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border: 1px solid rgba(225,178,97,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 14px;
    transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.ct-detail:hover .ct-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.ct-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 5px;
}

.ct-val {
    display: block;
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
    transition: color 0.3s;
}

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

/* Opening hours */
.ct-hours {
    margin-top: 38px;
    padding: 26px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.ct-hours-h {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.ct-hours-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    font-size: 15px;
    color: var(--text);
}

.ct-hours-row:last-child { border-bottom: none; }
.ct-hours-row strong { color: var(--white); font-weight: 500; }
.ct-hours-row.closed span { color: var(--mid); }

/* Social row under the details */
.ct-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.ct-social a {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
    font-size: 14px;
    transition: all 0.3s var(--ease);
}

.ct-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(225,178,97,0.06);
    transform: translateY(-3px);
}

/* ── Map ── */
.ct-map {
    position: relative;
    background: var(--dark-alt);
}

.ct-map-frame {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.ct-map-frame iframe {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
    /* Recolour the light Google tiles to match the dark theme */
    filter: grayscale(1) invert(0.92) contrast(0.92) brightness(0.95);
}

/* Gold hairlines top and bottom */
.ct-map-frame::before,
.ct-map-frame::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(225,178,97,0.45), transparent);
    z-index: 2;
    pointer-events: none;
}

.ct-map-frame::before { top: 0; }
.ct-map-frame::after  { bottom: 0; }

/* Overlay layer, constrained to the container so the card lines up
   with the rest of the page rather than floating dead-centre */
.ct-map-inner {
    position: absolute;
    inset: 0;
    left: 0; right: 0;
    z-index: 3;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.ct-map-card {
    position: relative;
    width: min(430px, 100%);
    pointer-events: auto;
    line-height: 1.7;
    padding: 34px 34px 30px;
    background: rgba(23,23,25,0.9);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.ct-map-card .eyebrow { margin-bottom: 14px; }

.ct-map-title {
    font-family: var(--font-disp);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.ct-map-addr {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
}



/* ============================================================
   14c. GALLERY PAGE
   ============================================================ */

.gl-section {
    background-color: var(--dark-alt);
    background-image: url('../images/texture-dark-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: var(--section-pad);
}

.gl-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14,14,16,0.72);
    z-index: 0;
    pointer-events: none;
}

.gl-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.gl-head { margin-bottom: 40px; }

/* ── Filter bar ── */
.gl-filter-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 26px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gl-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gl-filter-btn {
    padding: 11px 22px;
    border: 1px solid rgba(255,255,255,0.14);
    background: transparent;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.gl-filter-btn:hover {
    color: var(--gold);
    border-color: rgba(225,178,97,0.5);
}

.gl-filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.gl-count {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mid);
    white-space: nowrap;
}

.gl-count-num { color: var(--gold); font-weight: 600; }

/* ── Mosaic grid ── */
.gl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
}

/* Tiles reuse .br-shot for the hover film, gold line and lightbox —
   only the sizing model changes here. The client's portrait photos are
   550x733 (exactly 3:4) and the landscape ones 800x533 (3:2), so each
   tile is given its source ratio and nothing gets awkwardly cropped.
   A 2-column wide tile at 3:2 lands within ~10px of a 1-column tile at
   3:4, so rows stay visually level at every breakpoint. */
.gl-grid .br-shot {
    aspect-ratio: 3/4;
    height: auto;
    width: 100%;
}

.gl-item.gl-wide .br-shot { aspect-ratio: 3/2; }

.gl-item { grid-column: span 1; grid-row: span 1; }
.gl-item.gl-wide { grid-column: span 2; }
.gl-item.gl-tall { grid-row: span 2; }

/* Filtered out */
.gl-item.gl-hidden { display: none; }

/* Larger tiles carry a bigger index numeral */
.gl-item.gl-tall .br-shot-num,
.gl-item.gl-wide .br-shot-num { font-size: 56px; }

/* ── Closing CTA band ── */
.gl-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.gl-cta-bg {
    position: absolute;
    inset: 0;
    /* Client banner artwork — sits under a ~0.85 dark overlay */
    background-image: url("../images/banner/ban2.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gl-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,20,22,0.9), rgba(20,20,22,0.84));
}

.gl-cta-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.gl-cta-title {
    font-family: var(--font-disp);
    font-size: clamp(32px, 4.4vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.gl-cta-title em { color: var(--gold); font-style: normal; }

.gl-cta-body {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.68);
    max-width: 620px;
    margin: 0 auto 38px;
}

.gl-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}


/* ============================================================
   14d. ABOUT PAGE — "Why Choose Us" band
   ============================================================ */

.ab-why {
    background-color: var(--dark-alt);
    background-image: url('../images/texture-dark-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: var(--section-pad);
}

.ab-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14,14,16,0.78);
    z-index: 0;
    pointer-events: none;
}

.ab-why-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.ab-why-head {
    max-width: 780px;
    margin-bottom: 56px;
}

/* Signature line — pulled out under the story copy */
.ab-quote {
    position: relative;
    margin: 46px 0 0;
    padding: 30px 0 0 34px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.ab-quote::before {
    content: '\201C';
    position: absolute;
    left: -6px; top: 14px;
    font-family: var(--font-disp);
    font-size: 72px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.35;
}

.ab-quote p {
    font-family: var(--font-disp);
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 14px;
}

.ab-quote cite {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-style: normal;
    color: var(--gold);
}


/* ============================================================
   14e. ABOUT PAGE — SERVICE CARDS (glass panel over image)
   The panel is frosted glass sitting inside the photo; the
   description + link fade upward into it on hover.
   ============================================================ */

.ab-services {
    background-color: var(--dark-alt);
    background-image: url('../images/texture-dark-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: var(--section-pad);
}

.ab-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14,14,16,0.8);
    z-index: 0;
    pointer-events: none;
}

.ab-services-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.ab-services-head {
    max-width: 780px;
    margin-bottom: 52px;
}

.ab-svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ── The card ── */
.ab-svc {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 6px;
    isolation: isolate;
    box-shadow: 0 18px 44px rgba(0,0,0,0.4);
    transition: box-shadow 0.5s var(--ease);
}

.ab-svc:hover { box-shadow: 0 28px 64px rgba(0,0,0,0.58); }

.ab-svc:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Photo layer */
.ab-svc-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 1s var(--ease);
    z-index: 0;
}

.ab-svc:hover .ab-svc-img { transform: scale(1.1); }

/* Darkening veil so the glass stays legible */
.ab-svc-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top,
        rgba(14,14,16,0.88) 0%,
        rgba(14,14,16,0.3) 48%,
        rgba(14,14,16,0.05) 100%);
    transition: background 0.55s var(--ease);
}

.ab-svc:hover .ab-svc-veil {
    background: linear-gradient(to top,
        rgba(14,14,16,0.94) 0%,
        rgba(14,14,16,0.55) 58%,
        rgba(225,178,97,0.14) 100%);
}

/* Corner index numeral */
.ab-svc-num {
    position: absolute;
    top: 16px; right: 20px;
    z-index: 3;
    font-family: var(--font-disp);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.55);
    opacity: 0.6;
    transition: opacity 0.4s var(--ease), -webkit-text-stroke-color 0.4s var(--ease);
    pointer-events: none;
}

.ab-svc:hover .ab-svc-num {
    opacity: 1;
    -webkit-text-stroke-color: var(--gold);
}

/* ── Frosted glass panel, inset inside the photo ── */
.ab-svc-body {
    position: absolute;
    left: 14px; right: 14px; bottom: 14px;
    z-index: 3;
    padding: 20px 20px 18px;
    border-radius: 4px;
    background: rgba(255,255,255,0.07);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 12px 34px rgba(0,0,0,0.32);
    transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
}

.ab-svc:hover .ab-svc-body {
    background: rgba(255,255,255,0.1);
    border-color: rgba(225,178,97,0.45);
    transform: translateY(-4px);
}

/* Gold hairline that draws across the glass on hover */
.ab-svc-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s var(--ease);
}

.ab-svc:hover .ab-svc-body::before { transform: scaleX(1); }

.ab-svc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    margin-bottom: 14px;
    border: 1px solid rgba(225,178,97,0.45);
    border-radius: 3px;
    color: var(--gold);
    font-size: 15px;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.ab-svc:hover .ab-svc-icon {
    background: var(--gold);
    color: var(--dark);
}

.ab-svc-title {
    font-family: var(--font-disp);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    transition: color 0.35s var(--ease);
}

.ab-svc:hover .ab-svc-title { color: var(--gold-light); }

/* ── The bit that fades UP on hover ── */
.ab-svc-reveal {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(16px);
    transition: max-height 0.6s var(--ease),
                margin-top 0.6s var(--ease),
                opacity 0.45s var(--ease),
                transform 0.6s var(--ease);
}

.ab-svc:hover .ab-svc-reveal,
.ab-svc:focus-visible .ab-svc-reveal {
    max-height: 220px;
    margin-top: 13px;
    opacity: 1;
    transform: translateY(0);
}

.ab-svc-reveal p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
    margin-bottom: 14px;
}

.ab-svc-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
}

.ab-svc-more i { transition: transform 0.35s var(--ease); }
.ab-svc:hover .ab-svc-more i { transform: translateX(5px); }


/* ============================================================
   15. RESPONSIVE LADDER
   ============================================================ */

/* Large desktop */
@media (max-width: 1300px) {
    :root { --container: 1160px; }
    .header-wrap { padding: 0 30px; justify-content:space-between }
}

/* Laptop */
@media (max-width: 1200px) {
    .footer-main { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
    .footer-main .footer-col:last-child { grid-column: 1; }

    .faq-inner { grid-template-columns: 1fr; gap: 50px; }
    .faq-head { position: static; }

    .br-inc-grid { grid-template-columns: 1fr 1fr; }
    .br-hero-rail { display: none; }
    .br-hero-inner { gap: 44px; }
}

/* Tablet landscape */
@media (max-width: 1024px) {
    :root { --section-pad: 100px 0; }

    /* Show mobile top bar, push header down */
    .mobile-topbar { display: flex; }
    .header { top: var(--topbar-h); }
    .floating-socials { display: none; }

    .header-cta { display: none; }
    .hamburger { display: flex; }
    #desktopNav { display: none; }

    /* ── Mobile requirement: the form sits directly after the banner ──
       The hero grid collapses to one column, so copy stacks above the
       form in document order. */
    .br-hero {
        min-height: 0;
        padding: calc(var(--topbar-h) + var(--header-h) + 50px) 0 92px;
        display: block;
    }

    .br-hero-inner,
    .br-hero-compact .br-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
        align-items: stretch;
    }

    /* Centre both blocks in the single column */
    .br-hero-copy,
    .br-hero-form,
    .ct-hero-tiles { max-width: 660px; margin-left: auto; margin-right: auto; width: 100%; }

    .br-hero-compact { min-height: 0; }
    .ct-inner { grid-template-columns: 1fr; gap: 60px; }

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

    /* Card drops below the map rather than floating over it */
    .ct-map-frame iframe { height: 400px; }
    .ct-map-inner {
        position: static;
        display: block;
        pointer-events: auto;
        padding: 0 24px;
    }
    .ct-map-card { width: auto; margin: -60px auto 0; }
    .ct-map-frame { padding-bottom: 44px; }

    .br-scroll-cue { display: none; }
    .br-hero-glow { width: 100%; right: -20%; }

    .br-about-inner { grid-template-columns: 1fr; gap: 60px; }
    .br-about-media { padding: 0 18px 60px 40px; max-width: 620px; }

    .br-shots { gap: 14px; padding-bottom: 0; }
    .br-shots .br-shot-wrap:nth-child(2) { margin-top: 0; }
    .br-shot { transform: none !important; }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .proc-conn { display: none; }

    .br-sticky-cta { display: flex; }
    body { padding-bottom: 72px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    :root { --section-pad: 80px 0; }

    .mobile-topbar { gap: 16px; padding: 0 16px; }
    .topbar-item { font-size: 11.5px; }

    /* iOS renders fixed attachment incorrectly */
    .br-about,
    .br-process,
    .br-faq { background-attachment: scroll; }

    .br-hero { padding: calc(var(--topbar-h) + var(--header-h) + 36px) 0 76px; }
    .br-hero-ghost { font-size: clamp(80px, 22vw, 150px); }
    .br-hero-title { font-size: clamp(32px, 7.4vw, 46px); }

    .br-form-card { padding: 26px 22px 24px; }
    .br-form-head { flex-direction: column; }

    .br-about-inner { padding: 0 24px; }
    .br-about-wide,
    .br-shots-row { padding-left: 24px; padding-right: 24px; margin-top: 70px; }

    /* iOS fixed-attachment fix for the contact section too */
    .ct-section,
    .gl-section,
    .ab-why,
    .ab-services { background-attachment: scroll; }
    .gl-cta-bg { background-attachment: scroll; }
    .ct-inner { padding: 0 24px; }

    .gl-inner, .gl-cta-inner, .ab-why-inner, .ab-services-inner { padding: 0 24px; }
    .ab-svc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .gl-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gl-item.gl-wide { grid-column: span 2; }
    .gl-filter-wrap { padding-bottom: 20px; margin-bottom: 30px; }
    .gl-filter-btn { padding: 10px 16px; font-size: 9.5px; letter-spacing: 1.5px; }
    .gl-cta { padding: 90px 0; }
    .ct-map-card { padding: 28px 24px 26px; }
    .ct-map-frame iframe { height: 340px; }
    .ct-tile { padding: 18px 20px; gap: 14px; }

    .br-shots { grid-template-columns: 1fr; gap: 18px; }
    .br-shot { aspect-ratio: 4/3; }

    .br-inc-grid { grid-template-columns: 1fr; }
    .br-feats { grid-template-columns: 1fr; }

    .br-stats { grid-template-columns: 1fr; gap: 34px; margin-top: 48px; padding-top: 38px; }
    .br-stat + .br-stat::before { display: none; }

    .process-head,
    .process-grid { padding: 0 24px; }
    .process-grid { grid-template-columns: 1fr; }
    .proc-step { text-align: left; display: flex; gap: 20px; align-items: flex-start; padding: 20px 0 0; }
    .proc-icon { flex-shrink: 0; margin: 0; }
    .proc-step > div:last-child { flex: 1; }
    .br-step-ghost { left: 0; transform: none; top: -6px; font-size: 62px; }

    .faq-inner { padding: 0 24px; }
    .form-row-2 { grid-template-columns: 1fr 1fr; }

    .footer-main { grid-template-columns: 1fr 1fr; padding: 60px 24px 40px; gap: 40px; }
    .footer-brand { grid-column: span 2; }
    .footer-base { padding: 20px 24px; }

    .marquee-strip { padding: 10px 0; }

    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
    .lb-close { top: 10px; right: 10px; }
}

/* Mobile */
@media (max-width: 576px) {
    :root {
        --section-pad: 70px 0;
        --topbar-h: 64px;   /* taller to fit two rows */
    }

    .mobile-topbar {
        flex-direction: column;
        gap: 3px;
        padding: 6px 16px;
        justify-content: center;
    }
    .topbar-sep { display: none; }
    .topbar-item { font-size: 11px; }

    .header-wrap { padding: 0 20px; }
    .logo img { height: 44px; }

    .br-hero-inner,
    .br-about-inner,
    .br-about-wide,
    .br-shots-row,
    .process-head,
    .process-grid,
    .ct-inner,
    .faq-inner { padding-left: 20px; padding-right: 20px; }

    .ct-tile-val { font-size: 15px; }
    .ct-hours { padding: 22px 20px; }
    .ct-map-frame iframe { height: 300px; }

    .gl-inner, .gl-cta-inner, .ab-why-inner, .ab-services-inner { padding-left: 20px; padding-right: 20px; }
    .ab-svc-grid { grid-template-columns: 1fr; }
    .ab-svc { aspect-ratio: 4/3; }
    .gl-grid { grid-template-columns: 1fr; }
    .gl-item.gl-wide, .gl-item.gl-tall { grid-column: span 1; grid-row: span 1; }
    .gl-item.gl-tall .br-shot-num,
    .gl-item.gl-wide .br-shot-num { font-size: 42px; }
    .gl-filter-wrap { flex-direction: column; align-items: flex-start; }

    .sec-title { font-size: clamp(28px, 7vw, 38px); }

    .br-pill { font-size: 9px; padding: 8px 13px; }
    .br-hero-links { gap: 18px; }

    .br-form-card { padding: 22px 18px 20px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .br-form-title { font-size: 19px; }
    .br-corner { display: none; }

    .br-about-media { padding: 0 14px 46px 26px; }
    .br-badge { padding: 15px 18px; top: 20px; }
    .br-badge .badge-num { font-size: 30px; }
    .br-gold-bar { height: 110px; top: 40px; }

    .br-inc { padding: 28px 22px; }

    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-base { flex-direction: column; text-align: center; }

    .mobile-menu { width: 290px; }
}

/* Very small screens */
@media (max-width: 360px) {
    .br-hero-ghost { display: none; }
    .br-sticky-btn { font-size: 10px; letter-spacing: 1.5px; }
}


/* ============================================================
   16. MOTION / INPUT PREFERENCES
   ============================================================ */

@media (hover: none) {
    /* No hover on touch — reveal the service card copy permanently */
    .ab-svc-reveal { max-height: 220px; margin-top: 13px; opacity: 1; transform: none; }
    .ab-svc-body::before { transform: scaleX(1); }

    /* No hover on touch — show the caption and kill the tilt */
    .br-shot { transform: none !important; }
    .br-shot-cap { transform: translateY(0); }
    .br-shot-num { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-up, .reveal-image { opacity: 1 !important; transform: none !important; }
    .reveal-image img { transform: none !important; }
    .marquee-inner { animation: none !important; }

    .br-hero-bg { animation: none; transform: none !important; }
    .br-scroll-track::after { animation: none; transform: scaleY(1); }
    .br-form-card::before { animation: none; background-position: 0 0; }

    .br-line-inner { transform: translateY(0) !important; transition: none; }

    .br-hero .br-crumb,
    .br-hero .br-hero-eyebrow,
    .br-hero .br-hero-sub,
    .br-hero .br-hero-pills,
    .br-hero .br-hero-proof,
    .br-hero .br-hero-links,
    .br-hero .br-hero-form,
    .br-hero .ct-hero-tiles,
    .br-hero .br-scroll-cue,
    .br-feat {
        opacity: 1 !important;
        transform: none !important;
        transition: none;
    }

    .br-img-main::before { opacity: 1; transform: none; }
    .br-shot { transform: none !important; }
    .ab-svc-img { transform: none !important; }
    .ab-svc-reveal { transition: none; }
}
