/* ================================================================
   ROOT
================================================================ */
:root {
    /* Logo palette — charcoal on white (#4D4D4D / #555555) */
    --logo-charcoal: #4D4D4D;
    --logo-charcoal-light: #6B6B6B;
    --logo-charcoal-lighter: #8A8A8A;
    --logo-charcoal-dark: #3A3A3A;
    --logo-charcoal-darker: #2E2E2E;
    --logo-bg: #ffffff;
    --logo-bg-soft: #F5F5F5;
    --logo-bg-muted: #ECECEC;
    --slate: #4D4D4D;
    --slate-l: #6B6B6B;
    --slate-d: #3A3A3A;
    --slate-dd: #2E2E2E;
    --white: #ffffff;
    --off-white: #FAFAFA;
    --cream: #F5F5F5;
    --gold: #4D4D4D;
    --gold-l: #6B6B6B;
    --gold-d: #3A3A3A;
    --olive: #4D4D4D;
    --olive-l: #6B6B6B;
    --dark: #2E2E2E;
    --chalk-bg: #2E2E2E;
    --wood1: #3A3A3A;
    --wood2: #4D4D4D;
    --topo-dark: #1c2218;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--logo-bg);
    color: var(--logo-charcoal);
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* Scroll reveal */
.sr {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .75s cubic-bezier(.4, 0, .2, 1), transform .75s cubic-bezier(.4, 0, .2, 1)
}

.sr.in {
    opacity: 1;
    transform: none
}

.sr-l {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .7s .1s ease, transform .7s .1s ease
}

.sr-l.in {
    opacity: 1;
    transform: none
}

.sr-r {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .7s .15s ease, transform .7s .15s ease
}

.sr-r.in {
    opacity: 1;
    transform: none
}

/* ================================================================
   NAVBAR
================================================================ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(77, 77, 77, .12);
    transition: padding .4s ease, background .4s ease, box-shadow .4s ease;
}

#nav.scrolled {
    padding: 10px 40px;
    background: rgba(77, 77, 77, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, .25);
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--logo-charcoal);
    letter-spacing: .04em;
    transition: font-size .35s;
}

#nav.scrolled .nav-logo {
    color: #fff;
}

.nav-logo em {
    color: var(--gold);
    font-style: normal
}

.nav-logo-img {
    height: 72px;
    width: auto;
    vertical-align: middle;
    transition: height .35s ease;
}

#nav.scrolled .nav-logo-img {
    height: 52px;
}

#nav.scrolled .nav-logo {
    font-size: 20px
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    transition: gap .35s
}

#nav.scrolled .nav-menu {
    gap: 0
}

.nav-menu li {
    display: flex;
    align-items: center
}

#nav.scrolled .nav-menu li:not(.nav-cta-li):not(:first-child)::before {
    content: '•';
    color: var(--slate-l);
    font-size: 7px;
    margin: 0 14px;
    line-height: 1
}

.nav-menu a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--logo-charcoal-light);
    transition: color .25s
}

#nav.scrolled .nav-menu a {
    color: rgba(255, 255, 255, .78);
}

.nav-menu a:hover {
    color: var(--logo-charcoal-dark)
}

#nav.scrolled .nav-menu a:hover {
    color: #fff
}

.nav-cta-li {
    margin-left: 8px
}

.btn-nav {
    background: var(--logo-charcoal);
    color: #fff !important;
    font-weight: 700 !important;
    padding: 9px 22px;
    border-radius: 6px;
    transition: background .3s, transform .2s, padding .35s !important
}

.btn-nav:hover {
    background: var(--logo-charcoal-dark) !important;
    transform: translateY(-2px)
}

#nav.scrolled .btn-nav {
    background: #fff;
    color: var(--logo-charcoal) !important;
    padding: 7px 16px;
    font-size: 10px !important;
}

#nav.scrolled .btn-nav:hover {
    background: var(--logo-bg-soft) !important;
}

/* ================================================================
   HERO — LOGO CHARCOAL PALETTE
================================================================ */
.hero {
    min-height: 100vh;
    padding-top: 118px;
    position: relative;
    overflow: hidden;
    background: var(--logo-bg);
}

.hero-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.65fr) minmax(0, 0.55fr);
    min-height: calc(100vh - 118px);
    width: 100%;
    border-top: 1px solid rgba(77, 77, 77, .1);
}

.hero-col {
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.hero-col-inner {
    width: 100%;
    padding: clamp(28px, 4vw, 52px) clamp(24px, 3.5vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Left — white (logo background) */
.hero-col--dark {
    background: var(--logo-bg);
    color: var(--logo-charcoal);
    border-right: 1px solid rgba(77, 77, 77, .12);
}

.hero-brand-row {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
    margin-bottom: clamp(16px, 2vw, 24px);
}

.hero-logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(200px, 28vh, 320px);
    min-width: clamp(140px, 16vw, 220px);
    padding: 8px;
    background: var(--logo-bg-soft);
    border: 1px solid rgba(77, 77, 77, .12);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(77, 77, 77, .1);
    animation: heroFade .7s ease both;
}

.hero-logo {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: clamp(184px, 26vh, 304px);
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(77, 77, 77, .15));
}

.hero-eyebrow {
    font-family: 'Montserrat', 'Barlow Condensed', sans-serif;
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--logo-charcoal-light);
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Montserrat', 'Barlow Condensed', sans-serif;
    font-weight: 900;
    line-height: .95;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin: 0;
}

.hero-title-line {
    display: block;
    font-size: clamp(32px, 4.8vw, 64px);
    color: var(--logo-charcoal);
}

.hero-title-accent {
    display: block;
    font-size: clamp(32px, 4.8vw, 64px);
    color: var(--logo-charcoal-dark);
}

.hero-subtitle {
    font-family: 'DM Sans', 'Open Sans', sans-serif;
    font-size: clamp(13px, 1.35vw, 17px);
    font-weight: 500;
    color: var(--logo-charcoal);
    line-height: 1.45;
    max-width: 520px;
    margin-bottom: 14px;
    border-left: 3px solid var(--logo-charcoal);
    padding-left: 14px;
    animation: heroFade .85s .15s ease both;
}

.hero-services {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--logo-charcoal-lighter);
}

.hero-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(80px, 14vw, 200px);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(77, 77, 77, .05);
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
    user-select: none;
}

/* Center — soft gray */
.hero-col--gold {
    background: var(--logo-bg-muted);
    color: var(--logo-charcoal);
    border-right: 1px solid rgba(77, 77, 77, .1);
}

.hero-col-inner--center {
    align-items: center;
    text-align: center;
    justify-content: center;
}

.hero-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--logo-charcoal-light);
    margin-bottom: 8px;
}

.hero-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1;
    color: var(--logo-charcoal);
    margin-bottom: 12px;
}

.hero-stat-rating {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--logo-charcoal);
    margin-bottom: 16px;
}

.hero-stars {
    letter-spacing: .15em;
    margin-right: 4px;
    color: var(--logo-charcoal-dark);
}

.hero-stat-note {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 500;
    color: var(--logo-charcoal-light);
}

/* Right — logo charcoal */
.hero-col--red {
    background: var(--logo-charcoal);
    color: #fff;
}

.hero-col-inner--cta {
    align-items: flex-start;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .95);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-cta-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(12px, 1.2vw, 14px);
    color: rgba(255, 255, 255, .85);
    line-height: 1.45;
    margin-bottom: 24px;
    max-width: 220px;
}

.hero-btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--logo-charcoal);
    background: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
    margin-bottom: 12px;
    width: 100%;
    max-width: 260px;
    justify-content: center;
}

.hero-btn-schedule:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    background: var(--logo-bg-soft);
    color: var(--logo-charcoal-dark);
}

.hero-btn-arrow {
    font-size: 1.1em;
}

.hero-btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}

.hero-btn-secondary:hover {
    color: #fff;
    border-color: #fff;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Hero responsive */
@media (max-width: 1024px) {
    .hero-banner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .hero-col--dark {
        grid-column: 1 / -1;
    }

    .hero-col--gold,
    .hero-col--red {
        min-height: 220px;
    }

    .hero-logo-wrap {
        height: clamp(220px, 32vh, 300px);
        min-width: clamp(160px, 20vw, 240px);
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 100px;
    }

    .hero-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-brand-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .hero-logo-wrap {
        width: 100%;
        max-width: 280px;
        height: clamp(180px, 42vw, 260px);
        min-width: unset;
    }

    .hero-logo {
        max-height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .hero-col--gold,
    .hero-col--red {
        min-height: 180px;
    }

    .hero-btn-schedule {
        max-width: 100%;
    }
}

/* ================================================================
   ABOUT — STATS COUNTER
================================================================ */
.about {
    background: linear-gradient(155deg, var(--logo-charcoal-darker) 0%, var(--logo-charcoal-dark) 45%, var(--logo-charcoal) 100%);
    padding: 110px 64px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, .06) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, .04) 0%, transparent 55%);
    pointer-events: none
}

.about-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 70px
}

.about-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block
}

.about-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5.5vw, 72px);
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: .9
}

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

.stats-canvas {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: start
}

.stat-block {
    padding: 32px 28px
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(72px, 9vw, 108px);
    color: var(--gold);
    line-height: .85;
    display: block;
    letter-spacing: -.01em
}

.stat-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-top: 12px;
    display: block
}

.stat-phil {
    padding: 28px 28px 28px 32px;
    border-left: 2px solid rgba(77, 77, 77, .25);
    margin: 16px 0 16px 28px;
}

.stat-phil p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(16px, 1.6vw, 20px);
    color: rgba(255, 255, 255, .55);
    line-height: 1.65
}

.stat-divider-h {
    grid-column: 1/-1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(77, 77, 77, .18), transparent);
    margin: 6px 0
}

@keyframes countPulse {
    0% {
        text-shadow: 0 0 0 rgba(77, 77, 77, 0)
    }

    50% {
        text-shadow: 0 0 40px rgba(77, 77, 77, .25)
    }

    100% {
        text-shadow: 0 0 0 rgba(77, 77, 77, 0)
    }
}

.stat-num.done {
    animation: countPulse 1s ease forwards
}

/* ================================================================
   CAROUSEL SERVICES
================================================================ */
.services-wrap {
    background: #0c0c0c;
    position: relative
}

/* Stage */
.stage {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.stage-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s ease;
    display: flex;
    align-items: flex-end;
}

.stage-slide.active {
    opacity: 1
}

.stage-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 160px;
}

/* Each service bg color/style */
.stage-slide:nth-child(1) .stage-bg {
    background: linear-gradient(135deg, #1a1e10 0%, #2a3018 60%, #1a1e10 100%)
}

.stage-slide:nth-child(2) .stage-bg {
    background: linear-gradient(135deg, #101418 0%, #182028 60%, #101418 100%)
}

.stage-slide:nth-child(3) .stage-bg {
    background: linear-gradient(135deg, #18100e 0%, #281a14 60%, #18100e 100%)
}

.stage-slide:nth-child(4) .stage-bg {
    background: linear-gradient(135deg, #101810 0%, #18281c 60%, #101810 100%)
}

.stage-slide:nth-child(5) .stage-bg {
    background: linear-gradient(135deg, #181018 0%, #281428 60%, #181018 100%)
}

.stage-slide:nth-child(6) .stage-bg {
    background: linear-gradient(135deg, #181410 0%, #28201a 60%, #181410 100%)
}

/* Cinematic overlay */
.stage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .4) 40%, rgba(0, 0, 0, .1) 100%);
    z-index: 2
}

/* Big faded number */
.stage-number {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 3;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 200px;
    line-height: .8;
    letter-spacing: -.02em;
    color: var(--gold);
    opacity: .07;
    pointer-events: none;
    transition: opacity .4s;
    user-select: none;
}

/* Service name on stage */
.stage-name {
    position: absolute;
    bottom: 48px;
    left: 60px;
    z-index: 4;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 7vw, 88px);
    color: #fff;
    line-height: .88;
    letter-spacing: .02em;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity .5s ease;
    max-width: 55%;
}

.stage-slide.active .stage-name {
    transform: translateY(0);
    opacity: 1
}

/* Frosted glass panel */
.stage-panel {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: clamp(260px, 33%, 420px);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 4px;
    padding: 32px 28px;
    z-index: 5;
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
    transition: opacity .5s .15s ease, transform .5s .15s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.stage-slide.active .stage-panel {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.panel-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.panel-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 22px;
}

.panel-steps {
    margin-bottom: 24px
}

.panel-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.step-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    background: rgba(77, 77, 77, .12);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.step-txt {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6
}

.panel-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 2px;
    background: var(--gold);
    color: var(--dark);
    transition: background .3s, transform .2s;
    display: inline-block;
}

.panel-cta:hover {
    background: var(--gold-l);
    transform: translateY(-2px)
}

/* Progress bar */
.stage-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, .06);
    position: relative;
}

.stage-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width linear;
}

/* Selector row */
.selector-row {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.selector-row::-webkit-scrollbar {
    display: none
}

.sel-tab {
    flex: 1;
    min-width: 120px;
    padding: 18px 16px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all .3s;
    position: relative;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
}

.sel-tab:hover {
    background: rgba(255, 255, 255, .04)
}

.sel-tab.active {
    border-bottom-color: var(--gold);
    background: rgba(77, 77, 77, .05)
}

.sel-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .3);
    display: block;
    margin-bottom: 5px;
}

.sel-tab.active .sel-num {
    color: var(--gold)
}

.sel-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    transition: font-size .3s, color .3s;
}

.sel-tab.active .sel-name {
    color: #fff;
    font-size: 15px
}

/* ================================================================
   SERVICE AREA — 30 cities
================================================================ */
.service-area {
    background: var(--off-white);
    padding: 100px 64px;
}

.service-area-inner {
    max-width: 1200px;
    margin: 0 auto
}

.sa-header {
    margin-bottom: 60px
}

.section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 5vw, 68px);
    color: var(--slate-dd);
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: .9;
    margin-bottom: 0
}

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

.city-card {
    background: #fff;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all .3s;
    cursor: default;
    border-bottom: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.city-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.city-card:hover::after {
    transform: scaleX(1)
}

.city-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08)
}

.city-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--slate-dd);
}

.city-dist {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--gold);
}

.city-pin {
    font-size: 11px;
    color: var(--slate-l)
}

/* ================================================================
   ADDITIONAL SERVICES — Chalkboard
================================================================ */
.add-services {
    background: #0e0e0e;
    padding: 80px 0
}

.chalk-frame {
    max-width: 1240px;
    margin: 0 36px;
    background: linear-gradient(135deg, var(--wood1), var(--wood2), var(--logo-charcoal-light), var(--wood2), var(--wood1));
    padding: 24px;
    box-shadow: inset 0 0 18px rgba(0, 0, 0, .6), 0 20px 70px rgba(0, 0, 0, .7);
    border-radius: 3px;
}

@media(min-width:1300px) {
    .chalk-frame {
        margin: 0 auto
    }
}

.chalkboard {
    background: var(--chalk-bg);
    position: relative;
    padding: 52px 60px 60px;
    min-height: 600px;
    isolation: isolate;
}

.chalk-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px;
}

.chalk-inner-border {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    pointer-events: none;
    z-index: 1
}

.chalk-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(48px, 5.5vw, 68px);
    color: rgba(255, 255, 255, .9);
    filter: blur(.3px);
    text-align: center;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.chalk-rule {
    display: block;
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, .18);
    border-radius: 2px;
    margin: 0 auto 42px;
    position: relative;
    z-index: 2
}

.chalk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 56px;
    position: relative;
    z-index: 2
}

.chalk-item {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding-bottom: 24px
}

.chalk-svc-name {
    font-family: 'Caveat', cursive;
    font-size: clamp(24px, 3vw, 34px);
    color: rgba(255, 255, 255, .92);
    filter: blur(.2px);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 10px
}

.chalk-svc-desc {
    font-family: 'Dancing Script', cursive;
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.65;
    margin-bottom: 12px
}

.chalk-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--gold);
    opacity: .8;
    letter-spacing: .06em
}

.chalk-photos {
    display: flex;
    gap: 44px;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap
}

.chalk-pin-photo {
    position: relative
}

.chalk-pin-photo::before {
    content: '📌';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    z-index: 5
}

.chalk-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 6px solid #fff;
    box-shadow: 4px 8px 24px rgba(0, 0, 0, .6);
    background: linear-gradient(135deg, #2e2b28 0%, #4a4035 100%);
    font-size: 36px
}

.chalk-photo span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

.cp1 {
    width: clamp(160px, 20vw, 270px);
    height: clamp(200px, 26vh, 340px);
    transform: rotate(-2.8deg)
}

.cp2 {
    width: clamp(200px, 26vw, 330px);
    height: clamp(140px, 18vh, 230px);
    transform: rotate(2.1deg);
    align-self: flex-end
}

.chalk-deco {
    position: absolute;
    bottom: 24px;
    right: 48px;
    opacity: .17;
    pointer-events: none;
    z-index: 2
}

/* ================================================================
   WHY CHOOSE US
================================================================ */
.why {
    background: var(--off-white);
    padding: 110px 64px
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto
}

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

.why-card {
    background: #fff;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .35s
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.why-card:hover::after {
    transform: scaleX(1)
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .09)
}

.why-icon {
    font-size: 38px;
    margin-bottom: 22px;
    display: block;
    line-height: 1
}

.why-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--slate-dd);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 14px
}

.why-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate);
    font-family: 'Cormorant Garamond', serif
}

/* ================================================================
   FAQ
================================================================ */
.faq {
    background: linear-gradient(180deg, #141414 0%, #1c1a16 100%);
    padding: 110px 64px
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto
}

.faq .section-eyebrow {
    color: var(--gold)
}

.faq .section-title {
    color: #fff;
    margin-bottom: 40px
}

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

.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(19px, 2.2vw, 24px);
    color: rgba(255, 255, 255, .88);
    letter-spacing: .03em;
    text-align: left;
    transition: color .25s;
    gap: 16px;
}

.faq-q:hover {
    color: var(--gold)
}

.faq-icon {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    line-height: 1
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1), padding .3s;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.78;
    color: rgba(255, 255, 255, .52);
    padding-left: 2px
}

.faq-item.open .faq-a {
    max-height: 240px;
    padding-bottom: 22px
}

/* ================================================================
   CONTACT
================================================================ */
.contact {
    background: var(--off-white);
    padding: 110px 64px
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start
}

.map-container {
    position: relative;
    height: 460px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .13);
    border-radius: 2px;
    overflow: hidden
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(25%) contrast(1.06) saturate(.9)
}

.map-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent);
    padding: 30px 24px 20px;
    pointer-events: none
}

.map-label p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85)
}

.contact-info {
    padding-top: 8px
}

.contact-info .section-title {
    margin-bottom: 40px
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(90, 90, 90, .12)
}

.info-row:last-of-type {
    border-bottom: none
}

.info-ico {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 1px
}

.info-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px
}

.info-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--slate-dd);
    letter-spacing: .02em
}

.info-val a {
    color: inherit;
    transition: color .25s
}

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

.contact-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 38px
}

.c-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 2px;
    transition: all .3s;
    font-weight: 500
}

.c-btn-primary {
    background: var(--slate-dd);
    color: #fff
}

.c-btn-primary:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px)
}

.c-btn-ghost {
    border: 1.5px solid var(--slate);
    color: var(--slate);
    background: transparent
}

.c-btn-ghost:hover {
    background: var(--slate-dd);
    color: #fff;
    border-color: var(--slate-dd)
}

/* ================================================================
   FOOTER — FLOATING CARD
================================================================ */
footer {
    background: var(--dark);
    padding: 0 40px 36px;
    text-align: center
}

.footer-card-outer {
    display: flex;
    justify-content: center;
    transform: translateY(-72px)
}

.footer-card {
    background: #fff;
    width: 100%;
    max-width: 680px;
    border-radius: 4px;
    padding: 50px 54px 44px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .55), 0 8px 30px rgba(0, 0, 0, .35);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
    text-align: center;
}

.footer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 44px 120px rgba(0, 0, 0, .65), 0 12px 40px rgba(0, 0, 0, .45)
}

.fc-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--slate-dd);
    letter-spacing: .05em;
    margin-bottom: 4px
}

.fc-logo em {
    color: var(--gold);
    font-style: normal
}

.fc-tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--slate-l);
    margin-bottom: 6px
}

.fc-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 18px auto 22px;
    border-radius: 2px
}

.fc-address {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 30px
}

.fc-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.fc-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 2px;
    transition: all .3s
}

.fc-btn-call {
    background: var(--slate-dd);
    color: #fff
}

.fc-btn-call:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px)
}

.fc-btn-email {
    background: #f0ece5;
    color: var(--slate-dd)
}

.fc-btn-email:hover {
    background: var(--slate);
    color: #fff
}

.fc-btn-dir {
    border: 1.5px solid var(--slate);
    color: var(--slate)
}

.fc-btn-dir:hover {
    background: var(--slate-dd);
    color: #fff;
    border-color: var(--slate-dd)
}

.footer-bottom {
    margin-top: -40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.footer-bottom p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .18)
}

/* Floating call bar */
.call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--slate-dd);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 24px;
    border-top: 2px solid var(--gold);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .4);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.call-bar.visible {
    transform: translateY(0)
}

.call-bar-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6)
}

.call-bar-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--gold);
    letter-spacing: .04em
}

.call-bar-btn {
    background: var(--gold);
    color: var(--dark);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    padding: 9px 20px;
    border-radius: 1px;
    text-transform: uppercase;
    transition: background .25s
}

.call-bar-btn:hover {
    background: var(--gold-l)
}