/* ============================================================
   AERO HOME™ — PREMIUM STYLESHEET
   Design Direction: Premium Blue-Collar
   Fonts: Oswald (headlines) · Inter (body)
   Palette: Charcoal / Amber-Orange / Off-White / Steel
   ============================================================ */

/* ─────────────────────────────────────────
   1. TOKENS & RESET
───────────────────────────────────────── */
:root {
    /* Core palette */
    --ink:          #181512;   /* warm charcoal for dark sections */
    --ink-2:        #1e1a16;   /* card bg in dark contexts */
    --ink-3:        #251f1a;   /* slightly lighter warm charcoal */
    --amber:        #e07828;   /* warm orange accent */
    --amber-bright: #f08c38;   /* lighter orange — hover / use on dark backgrounds */
    --amber-dim:    #b85e18;   /* deeper orange — pressed state */
    --amber-glow:   rgba(224,120,40,.18);
    --paper:        #f5f4ef;   /* warm off-white — light bg */
    --paper-2:      #ece9e1;   /* slightly darker paper */
    --white:        #ffffff;
    --text:         #16202e;   /* body text */
    --text-mid:     #4b5563;   /* secondary text */
    --text-faint:   #9aa0ab;   /* placeholder / muted */
    --border:       #e2ddd6;

    /* Typography */
    --ff-head: 'Oswald', sans-serif;
    --ff-body: 'Inter', sans-serif;

    /* Radii */
    --r-sm:  3px;
    --r:     6px;
    --r-lg:  12px;
    --r-xl:  20px;

    /* Shadows */
    --shadow-xs: 0 1px 4px rgba(0,0,0,.08);
    --shadow-sm: 0 2px 12px rgba(0,0,0,.10);
    --shadow:    0 6px 28px rgba(0,0,0,.12);
    --shadow-lg: 0 16px 56px rgba(0,0,0,.18);
    --shadow-xl: 0 24px 80px rgba(0,0,0,.25);

    /* Transitions */
    --ease: cubic-bezier(.4,0,.2,1);
    --t:    .28s;
    --t-lg: .5s;

    /* Layout */
    --max-w: 1200px;
    --nav-h: 76px;
}

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

html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
ul[role="list"] { list-style: none; }
::selection { background: var(--amber); color: var(--white); }
/* Palette: Warm Charcoal (#181512) + Warm Orange (#e07828) */

/* ─────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────── */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.93);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}
#lightbox.active {
    opacity: 1;
    pointer-events: all;
}
#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--r);
    display: block;
    user-select: none;
}
#lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t) var(--ease);
}
#lightbox-close:hover { background: rgba(255,255,255,.22); }

#lightbox-prev,
#lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t) var(--ease);
}
#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }
#lightbox-prev:hover,
#lightbox-next:hover { background: rgba(255,255,255,.22); }


/* ─────────────────────────────────────────
   2. PHOTO PLACEHOLDERS
   (Replace .img-placeholder divs with <img>
    or CSS background-image when ready)
───────────────────────────────────────── */
.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: linear-gradient(140deg, #dde3ec 0%, #c8cfdb 100%);
    border: 2px dashed #a0aab8;
    color: #5a6678;
    font-family: var(--ff-body);
    font-size: .78rem;
    font-style: italic;
    text-align: center;
    padding: 1.25rem;
    line-height: 1.5;
    width: 100%;
    height: 100%;
}
.img-placeholder small {
    font-size: .7rem;
    opacity: .7;
    font-style: normal;
    margin-top: .25rem;
}
.placeholder-label {
    font-family: var(--ff-body);
    font-size: .78rem;
    font-style: italic;
    color: rgba(255,255,255,.45);
    text-align: center;
    line-height: 1.6;
    pointer-events: none;
    user-select: none;
}


/* ─────────────────────────────────────────
   3. LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

section { position: relative; }

/* Section header pattern */
.eyebrow {
    display: block;
    font-family: var(--ff-head);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: .85rem;
}

.section-title {
    font-family: var(--ff-head);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: .025em;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.72;
    max-width: 580px;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }


/* ─────────────────────────────────────────
   4. BUTTONS
───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .875rem 2rem;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--t) var(--ease),
                color var(--t) var(--ease),
                border-color var(--t) var(--ease),
                transform var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
    white-space: nowrap;
    line-height: 1;
}

.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

.btn-accent {
    background: var(--amber);
    color: var(--white);
    border-color: var(--amber);
}
.btn-accent:hover, .btn-accent:focus-visible {
    background: var(--amber-dim);
    border-color: var(--amber-dim);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(224,120,40,.38);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-ghost-light:hover, .btn-ghost-light:focus-visible {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.btn-dark:hover, .btn-dark:focus-visible {
    background: var(--ink-2);
    border-color: var(--ink-2);
    transform: translateY(-2px);
}

.btn-lg  { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-xl  { padding: 1.15rem 2.8rem; font-size: 1.05rem; }


/* ─────────────────────────────────────────
   5. SCROLL-IN ANIMATIONS
───────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-animate].in-view { opacity: 1; transform: none; }

/* Stagger siblings */
[data-animate]:nth-child(2) { transition-delay: .1s; }
[data-animate]:nth-child(3) { transition-delay: .2s; }
[data-animate]:nth-child(4) { transition-delay: .3s; }


/* ─────────────────────────────────────────
   6. NAVIGATION
───────────────────────────────────────── */
#navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    height: var(--nav-h);
    transition: background var(--t) var(--ease),
                box-shadow var(--t) var(--ease),
                height var(--t) var(--ease);
}

#navbar.scrolled {
    background: var(--ink);
    box-shadow: 0 4px 32px rgba(0,0,0,.35);
    height: 64px;
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.nav-logo { text-decoration: none; flex-shrink: 0; }

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity var(--t) var(--ease);
}
.nav-logo:hover .nav-logo-img { opacity: .85; }

/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.25rem;
    margin-left: auto;
}
.nav-links a {
    text-decoration: none;
    font-family: var(--ff-head);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    transition: color var(--t) var(--ease);
    position: relative;
    padding-bottom: 2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--amber);
    transition: width var(--t) var(--ease);
}
.nav-links a:hover  { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Nav CTA */
.nav-cta {
    flex-shrink: 0;
    padding: .6rem 1.3rem;
    font-size: .8rem;
    margin-left: .25rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    margin-left: auto;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
    transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 850;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t) var(--ease);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* Mobile menu drawer */
.mobile-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: var(--ink);
    z-index: 860;
    padding: calc(var(--nav-h) + 1.5rem) 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
}
.mobile-menu.open { transform: none; }

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-link {
    display: block;
    padding: 1rem 0;
    font-family: var(--ff-head);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    transition: color var(--t) var(--ease), padding-left var(--t) var(--ease);
}
.mobile-link:hover { color: var(--amber); padding-left: .5rem; }

.mobile-cta { width: 100%; justify-content: center; }

.mobile-contact-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-contact-footer p {
    font-size: .82rem;
    color: rgba(255,255,255,.35);
    line-height: 1.8;
}


/* ─────────────────────────────────────────
   7. HERO
───────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}

/* Background placeholder — swap with a real image */
.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-bg .placeholder-label { max-width: 540px; font-size: .82rem; }

/* Dark gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right,  rgba(24,21,18,.96) 0%, rgba(24,21,18,.78) 60%, rgba(24,21,18,.6) 100%),
        linear-gradient(to bottom, rgba(24,21,18,.4) 0%, rgba(24,21,18,.15) 40%, rgba(24,21,18,.75) 100%);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
}

/* Lethbridge badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(224,120,40,.14);
    border: 1px solid rgba(224,120,40,.38);
    color: var(--amber-bright);
    font-family: var(--ff-head);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .42rem 1rem;
    border-radius: var(--r-sm);
    margin-bottom: 2rem;
    animation: pulseBox 2.4s ease-in-out infinite;
}
@keyframes pulseBox {
    0%, 100% { transform: scale(1);    background: rgba(224,120,40,.14); border-color: rgba(224,120,40,.35); }
    50%       { transform: scale(1.05); background: rgba(224,120,40,.28); border-color: rgba(224,120,40,.72); }
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    animation: pulseDot 2.2s ease infinite;
}
@keyframes pulseDot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(.7); }
}

/* Headline */
.hero-title {
    font-family: var(--ff-head);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: .96;
    letter-spacing: .015em;
    color: var(--white);
    text-shadow: 0 4px 32px rgba(0,0,0,.45);
    margin-bottom: 1.75rem;
}
.hero-accent {
    display: block;
    font-style: normal;
    color: var(--amber);
    -webkit-text-stroke: 0;
}
.hero-alk {
    color: var(--amber);
    font-family: 'Rubik Marker Hatch', 'Oswald', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.15em;
    letter-spacing: .08em;
}

/* Subheading */
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.72);
    max-width: 510px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.hero-sub-highlight {
    color: var(--amber-bright);
    font-weight: 700;
    text-shadow: 0 0 18px rgba(224,120,40,.55);
}

/* CTAs */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Phone row */
.hero-phone-row {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.hero-phone-label {
    font-family: var(--ff-head);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.42);
}
.hero-phone-number {
    font-family: var(--ff-head);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--white);
    text-decoration: none;
    transition: color var(--t) var(--ease);
}
.hero-phone-number:hover { color: var(--amber); }

/* Scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 2.75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.35);
    font-family: var(--ff-head);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, rgba(255,255,255,.38), transparent);
    animation: scrollDown 2.4s ease infinite;
}
@keyframes scrollDown {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}


/* ─────────────────────────────────────────
   8. TRUST STRIP
───────────────────────────────────────── */
#trust-strip {
    background: var(--amber);
    padding: .9rem 2rem;
    position: relative;
    z-index: 10;
}
.trust-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--ff-head);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--white);
}
.trust-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: rgba(255,255,255,.22);
    border-radius: 50%;
    padding: 2px;
}
.trust-divider {
    display: block;
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,.3);
    flex-shrink: 0;
}


/* ─────────────────────────────────────────
   9. SERVICES
───────────────────────────────────────── */
#services {
    padding: 6.5rem 0;
    background: var(--paper);
}

.services-category {
    margin-top: 3rem;
}
.services-cat-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-head);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.25rem;
}
.services-cat-label svg { width: 14px; height: 14px; flex-shrink: 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.services-grid--quick {
    grid-template-columns: repeat(3, 1fr);
}

/* Quick job card (no image) */
.service-card-quick {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.service-card-quick:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.service-card-quick .service-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    background: var(--amber-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-card-quick .service-icon-wrap svg { width: 20px; height: 20px; stroke: var(--amber); }
.service-card-quick .service-title { font-size: 1.05rem; margin-bottom: 0; }
.service-card-quick .service-desc { font-size: .88rem; color: var(--text-mid); }
.service-card-quick .service-list { font-size: .85rem; margin-top: .25rem; }

/* Card */
.service-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card.featured {
    border: 2px solid var(--amber);
}

/* Popular badge */
.service-popular-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 2;
    background: var(--amber);
    color: var(--white);
    font-family: var(--ff-head);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: var(--r-sm);
    box-shadow: 0 2px 8px rgba(224,120,40,.4);
}

/* Image slot */
.service-img-wrap { width: 100%; height: 220px; min-height: 220px; max-height: 220px; flex-shrink: 0; position: relative; overflow: hidden; }
.service-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform var(--t-lg) var(--ease); }
.service-card:hover .service-img-wrap img { transform: scale(1.04); }

/* Card body */
.service-body {
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Service icon circle */
.service-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: var(--r);
    background: var(--amber-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.service-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: var(--amber);
    stroke: var(--amber);
}

.service-title {
    font-family: var(--ff-head);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--text);
    margin-bottom: .65rem;
}

.service-desc {
    font-size: .93rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .48rem;
    margin-bottom: 1.6rem;
    flex: 1;
}
.service-list li {
    font-size: .88rem;
    color: var(--text-mid);
    padding-left: 1.3rem;
    position: relative;
    line-height: 1.5;
}
.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-size: .78rem;
    top: .05em;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--ff-head);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    transition: color var(--t) var(--ease), gap var(--t) var(--ease);
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.service-link:hover { color: var(--amber-dim); gap: .6rem; }


/* ─────────────────────────────────────────
   10. ABOUT
───────────────────────────────────────── */
#about {
    padding: 7rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

/* Image cluster */
.about-visuals { position: relative; padding-bottom: 2rem; }

.about-img-main {
    width: 100%;
    height: 520px;
    border-radius: var(--r-lg);
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-img-secondary {
    width: 192px;
    height: 192px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    border: 5px solid var(--white);
    border-bottom: none;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Desktop: portrait block is just a positioning passthrough */
.about-portrait-block { position: absolute; bottom: 0; right: -1.75rem; }

.about-owner-label {
    position: relative;
    width: 192px;
    background: var(--ink);
    padding: .45rem .75rem;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    text-align: center;
}
.about-owner-label strong {
    display: block;
    font-family: var(--ff-head);
    font-size: .95rem;
    letter-spacing: .04em;
    color: var(--white);
}
.about-owner-label span {
    display: block;
    font-family: var(--ff-head);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
}

.about-location-badge {
    position: absolute;
    bottom: 2.5rem;
    left: -1.5rem;
    background: var(--amber);
    color: var(--white);
    padding: .9rem 1.2rem;
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 210px;
    z-index: 2;
}
.about-location-badge svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.badge-text strong { display: block; font-size: .9rem; font-weight: 700; }
.badge-text span   { display: block; font-size: .78rem; opacity: .88; margin-top: .1rem; }

/* Copy side */
.about-copy .section-title { margin-bottom: 1.2rem; }

.about-copy > p {
    font-size: .98rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Pillars */
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    margin: 2.25rem 0 2.5rem;
}
.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.pillar-icon {
    width: 44px;
    height: 44px;
    background: var(--amber-glow);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pillar-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--amber);
    color: var(--amber);
}
.pillar-item h4 {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text);
    margin-bottom: .28rem;
}
.pillar-item p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.55;
}


/* ─────────────────────────────────────────
   11. STATS BAR
───────────────────────────────────────── */
#stats {
    padding: 5rem 0;
    background: var(--ink);
    overflow: hidden;
    position: relative;
}
.stats-glow {
    position: absolute;
    top: -80px; left: -80px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(224,120,40,.12) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-cell {
    text-align: center;
    padding: 2.25rem 1rem;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--r-lg);
    background: rgba(255,255,255,.03);
    position: relative;
    overflow: hidden;
}
.stat-cell::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 38%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.stat-top {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .15rem;
    margin-bottom: .6rem;
}
.stat-number {
    font-family: var(--ff-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--ff-head);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}
.stat-label {
    font-family: var(--ff-head);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
}


/* ─────────────────────────────────────────
   12. GALLERY
───────────────────────────────────────── */
#gallery {
    padding-top: 6.5rem;
    background: var(--paper);
}
#gallery .container { padding-bottom: 0; }

/* Uniform 3×4 gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-top: 2.5rem;
    padding: 0 1.25rem;
}
.gallery-cell {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: var(--r);
    aspect-ratio: 16 / 9;
}

.gallery-empty {
    background: var(--paper-2);
    border: 2px dashed var(--border);
    cursor: default;
}
.gallery-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--t-lg) var(--ease);
}
.gallery-cell:hover .gallery-img { transform: scale(1.04); }

.gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24,21,18,.78) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.1rem 1.25rem;
    opacity: 0;
    transition: opacity var(--t) var(--ease);
}
.gallery-cell:hover .gallery-caption { opacity: 1; }
.gallery-caption span {
    font-family: var(--ff-head);
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
}


/* ─────────────────────────────────────────
   13. SERVICE AREAS
───────────────────────────────────────── */
#areas {
    padding: 7rem 0;
    background: var(--white);
}

.areas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

/* Map */
.areas-map-wrap { position: relative; }
.areas-map {
    width: 100%;
    height: 440px;
    border-radius: var(--r-lg);
    object-fit: cover;
    object-position: center;
    display: block;
}

/* List side */
.area-home-city {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--ink);
    padding: 1.4rem 1.5rem;
    border-radius: var(--r-lg);
    margin-bottom: 1.75rem;
}
.area-pin-icon {
    width: 42px; height: 42px;
    background: var(--amber-glow);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.area-pin-icon svg { width: 22px; height: 22px; fill: var(--amber); }
.area-home-city h3 {
    font-family: var(--ff-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .04em;
}
.home-city-tag {
    display: inline-block;
    background: var(--amber);
    color: var(--white);
    font-family: var(--ff-head);
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: var(--r-sm);
    margin-top: .3rem;
}

.areas-also-label {
    font-family: var(--ff-head);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: .9rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-bottom: 1.6rem;
}
.city-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1rem;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: .9rem;
    color: var(--text-mid);
    font-weight: 500;
    transition: border-color var(--t) var(--ease), color var(--t) var(--ease), background var(--t) var(--ease);
    cursor: default;
}
.city-chip::before { content: '→'; color: var(--amber); font-size: .8rem; }
.city-chip:hover { border-color: var(--amber); color: var(--text); background: var(--white); }

.areas-note {
    font-size: .88rem;
    color: var(--text-faint);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.55;
}


/* ─────────────────────────────────────────
   14. TESTIMONIALS
───────────────────────────────────────── */
#testimonials {
    padding: 6.5rem 0;
    background: var(--paper);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.1rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
    border-bottom: 3px solid transparent;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--amber);
}

.stars {
    font-size: 1rem;
    letter-spacing: .12em;
    color: var(--amber);
}

.testimonial-quote {
    font-size: .96rem;
    color: var(--text-mid);
    line-height: 1.72;
    font-style: italic;
    flex: 1;
    border: none;
    padding: 0;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: .62rem;
    overflow: hidden;
}
.author-info strong { display: block; font-family: var(--ff-head); font-size: 1rem; letter-spacing: .03em; color: var(--text); }
.author-info span   { display: block; font-size: .8rem; color: var(--text-faint); margin-top: .08rem; }


/* ─────────────────────────────────────────
   15. CONTACT
───────────────────────────────────────── */
#contact {
    position: relative;
    overflow: hidden;
    background: var(--amber);
    padding: 5rem 0;
}
#contact .eyebrow       { color: rgba(0,0,0,.5); }
#contact .section-title { color: var(--ink); margin-bottom: .75rem; }
#contact .section-sub   { color: rgba(0,0,0,.58); max-width: 420px; }
.contact-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}
.contact-cta-left { display: flex; flex-direction: column; gap: .25rem; }
.contact-cta-right {
    background: var(--ink);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-cta-btn { width: 100%; justify-content: center; }
.contact-cta-right .contact-divider { color: rgba(255,255,255,.4); }
.contact-cta-right .contact-divider::before,
.contact-cta-right .contact-divider::after { background: rgba(255,255,255,.12); }
.contact-cta-right .contact-direct { flex-direction: column; }
.contact-cta-right .contact-direct-link {
    color: var(--white);
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
}
.contact-cta-right .contact-direct-link:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.35);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
    color: rgba(0,0,0,.5);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,.2);
}

.contact-direct {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}
.contact-direct-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.25rem;
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    background: rgba(0,0,0,.1);
    transition: background var(--t) var(--ease),
                border-color var(--t) var(--ease);
}
.contact-direct-link:hover {
    background: rgba(0,0,0,.2);
    border-color: rgba(0,0,0,.4);
}
.contact-direct-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Social pills */
.social-row { display: flex; flex-direction: column; gap: .5rem; width: 100%; }

.social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .55rem 1rem;
    border-radius: var(--r);
    font-family: var(--ff-head);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--t) var(--ease), filter var(--t) var(--ease);
}
.social-pill svg { width: 16px; height: 16px; }
.social-pill:hover { transform: translateY(-2px); filter: brightness(1.1); }
.social-pill.fb { background: #1877f2; color: var(--white); }
.social-pill.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: var(--white); }


/* ─────────────────────────────────────────
   16. CTA BAND (bottom)
───────────────────────────────────────── */
#cta-band {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
}
.cta-band-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('Resources/cta_bg.webp') center/cover no-repeat;
    border: none;
    overflow: hidden;
}
.cta-band-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(24,21,18,.82);
}
.cta-band-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.cta-band-copy h2 {
    font-family: var(--ff-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: .03em;
    margin-bottom: .6rem;
}
.cta-band-copy p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.6);
}
.cta-band-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
}


/* ─────────────────────────────────────────
   17. FOOTER
───────────────────────────────────────── */
#footer {
    background: var(--ink);
    padding: 4.5rem 0 0;
    border-top: 1px solid rgba(255,255,255,.055);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,.055);
}

/* Brand column */
.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 1.35rem;
    opacity: .9;
}
.footer-brand > p {
    font-size: .86rem;
    color: rgba(255,255,255,.38);
    line-height: 1.72;
    max-width: 270px;
    margin-bottom: .4rem;
}
.footer-tagline {
    font-family: var(--ff-head) !important;
    font-size: .68rem !important;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber) !important;
    margin-top: .9rem !important;
}

/* Other columns */
.footer-col h4 {
    font-family: var(--ff-head);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col li { font-size: .86rem; color: rgba(255,255,255,.38); }
.footer-col a {
    text-decoration: none;
    color: rgba(255,255,255,.38);
    transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: var(--amber); }

/* Social row in footer */
.footer-social {
    display: flex;
    gap: .65rem;
    margin-top: 1.25rem;
}
.footer-social-link {
    width: 36px; height: 36px;
    border-radius: var(--r);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.footer-social-link svg {
    width: 16px; height: 16px;
    stroke: rgba(255,255,255,.55);
    fill: rgba(255,255,255,.55);
}
.footer-social-link:hover {
    background: var(--amber-glow);
    border-color: var(--amber);
}
.footer-social-link:hover svg { stroke: var(--amber); fill: var(--amber); }

/* Bottom bar */
.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }


/* ─────────────────────────────────────────
   18. RESPONSIVE — TABLET (≤ 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {

    .services-grid      { grid-template-columns: 1fr 1fr; }
    .contact-grid       { grid-template-columns: 1fr 1fr; }
    .stats-grid         { grid-template-columns: repeat(2, 1fr); }
    .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .about-grid         { gap: 3.5rem; }
    .about-portrait-block { right: 0; }
    .areas-layout       { gap: 3rem; }
    .cta-band-inner     { flex-direction: column; text-align: center; }
    .cta-band-actions   { justify-content: center; }
    .cta-band-copy h2   { text-align: center; }

}


/* ─────────────────────────────────────────
   19. RESPONSIVE — MOBILE (≤ 768px)
───────────────────────────────────────── */
@media (max-width: 768px) {

    /* Hide desktop nav, show hamburger */
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* Hero adjustments */
    .hero-title { font-size: clamp(2.6rem, 12vw, 4.5rem); }
    .hero-sub   { font-size: 1rem; }
    .hero-ctas  { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-scroll-hint { display: none; }

    /* Trust strip scrollable */
    .trust-inner { justify-content: center; flex-wrap: wrap; gap: .5rem .75rem; overflow-x: unset; }
    .trust-divider { display: none; }
    .trust-item { font-size: .72rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }
    .services-grid--quick { grid-template-columns: 1fr; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visuals { padding-bottom: 2.5rem; }

    /* Keep portrait-over-banner on mobile, just resize + reposition */
    .about-portrait-block { right: 0; }
    .about-img-secondary  { width: 140px; height: 140px; }
    .about-owner-label    { width: 140px; }
    .about-location-badge { bottom: auto; top: 1rem; left: 1rem; min-width: 180px; font-size: .82rem; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; }

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

    /* Areas */
    .areas-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .areas-map  { height: 300px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr 1fr; }
    #contact { padding: 3.5rem 0; }
    .contact-cta-inner { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.5rem; }
    .contact-cta-btn { width: 100%; justify-content: center; }
    .contact-cta-right { padding: 2rem 1.5rem; }
    .contact-direct { flex-direction: column; align-items: stretch; }
    .contact-direct-link { justify-content: center; }

    /* CTA band */
    #cta-band { padding: 4rem 0; }

    /* Footer */
    .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom  { flex-direction: column; text-align: center; }

}


/* ─────────────────────────────────────────
   20. RESPONSIVE — SMALL MOBILE (≤ 480px)
───────────────────────────────────────── */
@media (max-width: 480px) {

    .container { padding: 0 1.2rem; }
    #trust-strip { padding: .75rem 1rem; }
    .trust-desktop { display: none; }

    .hero-title    { font-size: clamp(2.2rem, 14vw, 3.5rem); }
    .hero-eyebrow  { font-size: .65rem; }

    .contact-grid   { grid-template-columns: 1fr; }
    .contact-direct-link { justify-content: center; }
    .stats-grid     { grid-template-columns: 1fr 1fr; }
    .cities-grid    { grid-template-columns: 1fr; }

    .gallery-grid   { grid-template-columns: 1fr; }
    .gallery-cell   { aspect-ratio: 16 / 9; }

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

    .cta-band-actions { flex-direction: column; width: 100%; }
    .cta-band-actions .btn { width: 100%; justify-content: center; }

    .about-location-badge { position: absolute; bottom: auto; top: 1rem; left: 1rem; }

    .section-title { font-size: 1.75rem; }
}


/* ─────────────────────────────────────────
   SERVICE PAGES
───────────────────────────────────────── */

/* Page hero */
.page-hero {
    position: relative;
    padding: 9rem 0 4.5rem;
    background: var(--ink);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(148deg, #181512 0%, #100e0b 100%);
    border: 2px dashed rgba(255,255,255,.12);
    color: rgba(255,255,255,.3);
    font-style: italic;
    font-size: .85rem;
    text-align: center;
    padding: 2rem;
}
.page-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(24,21,18,.92) 0%, rgba(24,21,18,.5) 60%, rgba(24,21,18,.2) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-head);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amber-bright);
    margin-bottom: 1rem;
    text-decoration: none;
    transition: color var(--t) var(--ease);
}
.page-hero-eyebrow:hover { color: var(--white); }
.page-hero-eyebrow svg { width: 14px; height: 14px; }
.page-hero-title {
    font-family: var(--ff-head);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
    line-height: 1.05;
    margin-bottom: 1rem;
    border-left: 4px solid var(--amber);
    padding-left: 1.25rem;
}
.page-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ─────────────────────────────────────────
   LEGAL PAGES (Privacy Policy, Terms)
───────────────────────────────────────── */
.legal-hero {
    padding: 7rem 0 3.5rem;
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.legal-hero .page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--ff-head);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    margin-bottom: 1.25rem;
}
.legal-hero .page-hero-eyebrow svg { width: 14px; height: 14px; }
.legal-hero h1 {
    font-family: var(--ff-head);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: .5rem;
}
.legal-hero p {
    color: rgba(255,255,255,.5);
    font-size: .9rem;
}
.legal-body {
    padding: 4rem 0 6rem;
    background: var(--paper);
}
.legal-container {
    max-width: 760px;
}
.legal-container p,
.legal-container li,
.legal-container address {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.legal-container h2 {
    font-family: var(--ff-head);
    font-size: 1.2rem;
    color: var(--ink);
    margin: 2.5rem 0 .75rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--border);
}
.legal-container ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-container ul li { margin-bottom: .4rem; }
.legal-container a { color: var(--amber-dark, #9a7a2e); }
.legal-container address { font-style: normal; }

/* Intro section */
.sp-intro {
    padding: 5rem 0;
    background: var(--white);
}
.sp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.sp-intro-img {
    width: 100%;
    height: 420px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border: 2px dashed #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-size: .8rem;
    color: #64748b;
    text-align: center;
    padding: 1.5rem;
}
.sp-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sp-intro-copy > p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.sp-service-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-top: 1.75rem;
}
.sp-service-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
}
.sp-service-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Why Calgary section */
.sp-why {
    padding: 5rem 0;
    background: var(--ink);
}
.sp-why .section-title { color: var(--white); }
.sp-why .eyebrow { color: var(--amber-bright); }
.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.sp-why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    border-top: 3px solid var(--amber);
}
.sp-why-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--amber);
}
.sp-why-card h4 {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: var(--white);
    margin-bottom: .6rem;
}
.sp-why-card p {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
}

/* Process section */
.sp-process {
    padding: 5rem 0;
    background: var(--paper);
}
.sp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.sp-step {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}
.sp-step-num {
    font-family: var(--ff-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--amber-glow);
    line-height: 1;
    margin-bottom: .75rem;
    color: rgba(224,120,40,.2);
}
.sp-step h4 {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text);
    margin-bottom: .5rem;
}
.sp-step p {
    font-size: .875rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* Service page gallery */
.sp-gallery-section {
    padding: 5rem 0;
    background: var(--white);
}
.sp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-top: 2.5rem;
}
.sp-gallery-cell {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--r);
    cursor: zoom-in;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border: 2px dashed #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-size: .75rem;
    color: #64748b;
    text-align: center;
    padding: 1rem;
}
.sp-gallery-cell img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-lg) var(--ease);
}
.sp-gallery-cell:hover img { transform: scale(1.04); }

/* FAQ section */
.sp-faq {
    padding: 5rem 0;
    background: var(--paper);
}
.sp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 780px;
}
.sp-faq-item {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.sp-faq-q {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--text);
    transition: color var(--t) var(--ease);
}
.sp-faq-q:hover { color: var(--amber); }
.sp-faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform var(--t) var(--ease);
}
.sp-faq-item.open .sp-faq-chevron { transform: rotate(180deg); }
.sp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 1.5rem;
}
.sp-faq-item.open .sp-faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}
.sp-faq-a p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.72;
}

/* Responsive — service pages */
@media (max-width: 768px) {
    .sp-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .sp-intro-img  { height: 280px; }
    .sp-why-grid   { grid-template-columns: 1fr; }
    .sp-service-list { grid-template-columns: 1fr; }
    .sp-gallery-grid { grid-template-columns: 1fr 1fr; }
    .page-hero     { padding: 7rem 0 3.5rem; }
}
@media (max-width: 480px) {
    .sp-gallery-grid { grid-template-columns: 1fr; }
    .sp-steps { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   21. FOCUS / ACCESSIBILITY
───────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    [data-animate] { opacity: 1; transform: none; }
}


/* ─────────────────────────────────────────
   22. NON-DESKTOP — disable all hovers
   below 1025px (tablets, phones)
───────────────────────────────────────── */
@media (max-width: 1024px) {

    /* Buttons */
    .btn-accent:hover     { transform: none; box-shadow: none; }
    .btn-ghost:hover      { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
    .btn-ghost-light:hover { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
    .btn-dark:hover       { transform: none; }

    /* Nav */
    .nav-logo:hover .nav-logo-img   { opacity: 1; }
    .nav-links a:hover              { color: rgba(255,255,255,.8); }
    .nav-links a:hover::after       { width: 0; }
    .mobile-link:hover              { color: rgba(255,255,255,.82); padding-left: 0; }

    /* Hero phone */
    .hero-phone-number:hover { color: var(--white); }

    /* Service cards */
    .service-card:hover                       { transform: none; box-shadow: var(--shadow-sm); }
    .service-card:hover .service-img-wrap img { transform: none; }
    .service-link:hover                       { color: var(--amber); gap: .3rem; }

    /* Gallery */
    .gallery-cell:hover .gallery-img     { transform: none; }
    .gallery-cell:hover .gallery-caption { opacity: 0; }

    /* City chips */
    .city-chip:hover { border-color: var(--border); color: var(--text-mid); background: var(--paper); }

    /* Testimonials */
    .testimonial-card:hover { transform: none; box-shadow: var(--shadow-sm); border-bottom-color: transparent; }

    /* Contact cards */
    .contact-card:hover   { background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.08); transform: none; }
    .contact-value:hover  { color: var(--amber-bright); }

    /* Social */
    .social-pill:hover         { transform: none; filter: none; }
    .footer-social-link:hover  { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); }
    .footer-social-link:hover svg { stroke: rgba(255,255,255,.55); fill: rgba(255,255,255,.55); }

    /* Footer links */
    .footer-col a:hover { color: rgba(255,255,255,.38); }
}
