:root {
    --black: #111111;
    --white: #FFFFFF;
    --off-white: #F5F3EE;
    --parchment: #EDE9E0;
    --gold: #c9804c;
    --gold-light: #c9804c;
    --gray-100: #F0EEE9;
    --gray-200: #D8D4CC;
    --gray-400: #8A8580;
    --gray-600: #4A4540;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Crimson Pro', Georgia, serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════
NAVBAR — Bottom Border Navigation
═══════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1.5px solid var(--black);
    transition: background 0.4s;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--black);
    text-transform: uppercase;
}

.nav-logo-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
}

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

.nav-menu a {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    border: 1.5px solid var(--black);
    padding: 10px 22px;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.3s;
}

/* ═══════════════════════════════════════
HERO — Diagonal Magazine Spread
═══════════════════════════════════════ */
:root {
    --olive: #8B8B00;
    --olive-dim: rgba(139, 139, 0, 0.35);
    --page-left: #0e0e08;
    --page-right: #141008;
}

#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    background: #060604;
    margin-top: 68px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Deep paper-tone vignette */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%,
            transparent 40%,
            rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 20;
}

/* Grain texture */
#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* ─── The Rotated Spread ─── */
.mag-spread {
    position: relative;
    z-index: 10;
    width: clamp(700px, 85vw, 1100px);
    height: clamp(400px, 65vh, 650px);
    transform: rotate(-5deg);
    display: flex;
    flex-direction: row;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(139, 139, 0, 0.12);
    flex-shrink: 0;
}

/* ─── Left Page ─── */
.mag-page-left {
    flex: 1;
    background: var(--page-left);
    position: relative;
    overflow: hidden;
    padding: 36px 40px 28px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Subtle horizontal rules for magazine column feel */
.mag-page-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
}

/* Section tag — top-left of left page */
.mag-section-tag {
    font-family: 'IBM Plex Mono', 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mag-section-tag::after {
    content: '';
    display: inline-block;
    flex: 1;
    height: 1px;
    background: var(--olive-dim);
    max-width: 80px;
}

/* Main headline with drop-cap */
.mag-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 8vw, 100px);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mag-headline .drop-cap {
    font-size: clamp(90px, 13vw, 160px);
    line-height: 0.78;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: -6px;
}

.mag-headline .sub-word {
    display: block;
    font-size: clamp(38px, 5.5vw, 70px);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-top: 6px;
}

.mag-headline .sub-word-2 {
    display: block;
    font-size: clamp(28px, 4vw, 56px);
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-top: 2px;
    font-style: italic;
}

/* Page number bottom-left */
.mag-page-num {
    font-family: 'IBM Plex Mono', 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mag-page-num::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ─── Binding line (center spine) ─── */
.mag-spine {
    width: 2px;
    background: var(--olive);
    flex-shrink: 0;
    position: relative;
    box-shadow:
        -4px 0 16px rgba(0, 0, 0, 0.6),
        4px 0 16px rgba(0, 0, 0, 0.6),
        -1px 0 8px rgba(139, 139, 0, 0.2),
        1px 0 8px rgba(139, 139, 0, 0.2);
}

/* Spine tick marks */
.mag-spine::before,
.mag-spine::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 1px;
    background: var(--gold);
}

.mag-spine::before {
    top: 20%;
}

.mag-spine::after {
    top: 80%;
}

/* ─── Right Page ─── */
.mag-page-right {
    flex: 1;
    background: var(--page-right);
    position: relative;
    overflow: hidden;
    padding: 28px 32px 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mag-page-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 30%, rgba(139, 139, 0, 0.4) 100%);
}

/* Image — contained, 20px inset from all edges of right page */
.mag-image-wrap {
    position: relative;
    margin: 0 0 16px 0;
    flex: 1;
    overflow: hidden;
}

.mag-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.82) contrast(1.06) saturate(0.85);
}

/* Subtle olive overlay on image */
.mag-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(139, 139, 0, 0.08) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

/* Caption stripe on image bottom */
.mag-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: rgba(14, 14, 8, 0.75);
    font-family: 'IBM Plex Mono', 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* Right page tagline — two columns */
.mag-tagline-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 4px;
}

.mag-tagline-col {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(11px, 1.1vw, 16px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.42);
    font-style: italic;
}

.mag-tagline-col strong {
    font-style: normal;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
    display: block;
    margin-bottom: 4px;
}

.mag-page-num-right {
    font-family: 'IBM Plex Mono', 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 12px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.mag-page-num-right::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ══════════════════════════════
VIEWPORT-CORNER FLOATS
Fixed-style — NOT inside spread
══════════════════════════════ */

/* Bottom-left: CTA cluster */
.hero-cta-float {
    position: absolute;
    bottom: 28px;
    left: 40px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.hero-cta-label {
    font-family: 'IBM Plex Mono', 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

.hero-cta-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Bottom-right: Trust badges */
.hero-trust-float {
    position: absolute;
    bottom: 28px;
    right: 40px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.hero-trust-label {
    font-family: 'IBM Plex Mono', 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.hero-trust-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* Top-left: issue info */
.hero-issue-float {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 30;
}

.hero-issue-text {
    font-family: 'IBM Plex Mono', 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.7;
}

/* Top-right: phone big */
.hero-phone-float {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 30;
    text-align: right;
}

.hero-phone-big {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 2.5vw, 32px);
    letter-spacing: 0.06em;
    color: var(--gold);
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.hero-phone-big:hover {
    color: var(--white);
}

.hero-phone-sub {
    font-family: 'IBM Plex Mono', 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    margin-top: 2px;
}

/* ─── Shared buttons ─── */
.btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: 2px solid var(--gold);
    padding: 13px 28px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

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

.btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 13px 28px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* ─── Trust badge ─── */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.trust-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--gold);
    line-height: 1;
}

.trust-badge-label {
    font-family: 'IBM Plex Mono', 'DM Mono', monospace;
    font-size: 7px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
}

/* ─── Mobile fallback ─── */
@media (max-width: 760px) {
    .mag-spread {
        transform: rotate(-2deg) scale(0.72);
        transform-origin: center center;
    }

    .hero-cta-float {
        bottom: 14px;
        left: 16px;
    }

    .hero-trust-float {
        bottom: 14px;
        right: 16px;
    }

    .hero-trust-row {
        gap: 12px;
    }

    .hero-issue-float,
    .hero-phone-float {
        display: none;
    }

    .mag-tagline-cols {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
STATS SECTION
═══════════════════════════════════════ */
#stats {
    background: var(--black);
    padding: 80px 6vw;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.stat-item {
    padding: 48px 40px;
    text-align: center;
    border-right: 1px solid rgba(201, 168, 76, 0.12);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 5vw, 80px);
    line-height: 1;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 8px;
    display: block;
}

.stat-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 6px;
    font-style: italic;
}

/* ═══════════════════════════════════════
WHY CHOOSE US
═══════════════════════════════════════ */
#why-us {
    background: var(--off-white);
    padding: 120px 6vw;
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: 'WHY';
    position: absolute;
    top: -30px;
    right: -20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 280px;
    color: rgba(17, 17, 17, 0.04);
    letter-spacing: -0.04em;
    line-height: 1;
    pointer-events: none;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--black);
    margin-bottom: 64px;
    max-width: 600px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    padding: 48px 52px;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    transition: background 0.4s;
}

.why-item:nth-child(2n) {
    border-right: none;
}

.why-item:nth-child(3),
.why-item:nth-child(4) {
    border-bottom: none;
}

.why-item:hover {
    background: var(--white);
}

.why-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 72px;
    color: rgba(17, 17, 17, 0.06);
    line-height: 1;
    position: absolute;
    top: 24px;
    right: 32px;
}

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

.why-text {
    font-family: 'Crimson Pro', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
}

.why-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 20px;
}

/* ═══════════════════════════════════════
SERVICES HORIZONTAL SCROLL
═══════════════════════════════════════ */
#services {
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.services-sticky-counter {
    position: absolute;
    top: 32px;
    right: 48px;
    z-index: 100;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--gold);
}

.services-header {
    padding: 80px 6vw 0;
}

.services-header .section-label {
    color: var(--gold);
}

.services-header .section-title {
    color: var(--white);
    margin-bottom: 0;
}

.services-scroll-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 60px 6vw 80px;
    cursor: grab;
    user-select: none;
}

.services-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.services-scroll-wrapper.grabbing {
    cursor: grabbing;
}

.services-track {
    display: flex;
    gap: 3px;
    width: max-content;
}

.service-card {
    width: clamp(380px, 28vw, 520px);
    height: 75vh;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 44px;
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card.dark {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card.light {
    background: var(--off-white);
}

.card-bg-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 200px;
    line-height: 1;
    opacity: 0.04;
    pointer-events: none;
}

.service-card.dark .card-bg-num {
    color: var(--white);
}

.service-card.light .card-bg-num {
    color: var(--black);
}

.card-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 32px;
}

.service-card.dark .card-num {
    color: var(--gold);
}

.service-card.light .card-num {
    color: var(--gray-400);
}

.card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 3vw, 48px);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 0.95;
    margin-bottom: 18px;
}

.service-card.dark .card-name {
    color: var(--white);
}

.service-card.light .card-name {
    color: var(--black);
}

.card-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.service-card.dark .card-desc {
    color: rgba(255, 255, 255, 0.5);
}

.service-card.light .card-desc {
    color: var(--gray-600);
}

.card-arrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid;
    padding-bottom: 4px;
    width: fit-content;
    transition: gap 0.3s;
}

.card-arrow:hover {
    gap: 16px;
}

.service-card.dark .card-arrow {
    color: var(--gold);
    border-color: var(--gold);
}

.service-card.light .card-arrow {
    color: var(--black);
    border-color: var(--black);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1;
}

/* ═══════════════════════════════════════
FAQ — Accordion with Ink Line
═══════════════════════════════════════ */
#faq {
    background: var(--white);
    padding: 120px 6vw;
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 28px;
}

.faq-ink {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 32px;
    background: var(--gray-200);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}

.faq-item.open .faq-ink {
    background: var(--gold);
}

.faq-question {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2.4vw, 30px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--black);
    padding: 28px 0;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-question:hover {
    color: var(--gray-600);
}

.faq-item.open .faq-question {
    color: var(--black);
}

.faq-answer {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-600);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 28px;
}

.faq-dash {
    font-size: 20px;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

/* ═══════════════════════════════════════
CTA SECTION
═══════════════════════════════════════ */
#cta {
    background: var(--black);
    padding: 100px 6vw;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-content {
    flex: 1;
}

.cta-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 6vw, 88px);
    text-transform: uppercase;
    line-height: 0.92;
    color: var(--white);
    letter-spacing: -0.01em;
}

.cta-title span {
    color: var(--gold);
}

.cta-sub {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 18px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 42px;
    letter-spacing: 0.02em;
    color: var(--gold);
    text-decoration: none;
    display: block;
    text-align: center;
    transition: color 0.2s;
}

.cta-phone:hover {
    color: var(--white);
}

.cta-phone-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    color: var(--gray-400);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════
SERVICE AREAS — 25 Cities
═══════════════════════════════════════ */
#service-areas {
    background: var(--parchment);
    padding: 100px 6vw;
}

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

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    border-left: 1px solid var(--gray-200);
}

.area-item {
    padding: 20px 24px;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.3s;
    cursor: default;
}

.area-item:hover {
    background: var(--white);
}

.area-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
}

.area-zip {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-top: 3px;
}

/* ═══════════════════════════════════════
HOW WE WORK — Vertical Parallax Columns
═══════════════════════════════════════ */
#how-we-work {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}

.hww-sticky-label {
    position: sticky;
    top: 68px;
    z-index: 50;
    padding: 18px 6vw;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}

.hww-sticky-label span {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    color: var(--gray-400);
    text-transform: uppercase;
}

.hww-cols-outer {
    padding: 60px 6vw 0;
}

.hww-header {
    max-width: 1200px;
    margin: 0 auto 72px;
}

.hww-cols {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 60px;
}

.hww-col-nums {
    position: relative;
}

.hww-col-nums::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--gold);
    opacity: 0.25;
}

.hww-step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(80px, 10vw, 140px);
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hww-col-content {}

.hww-step {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--gray-200);
}

.hww-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hww-step-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hww-step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 48px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--black);
    line-height: 1;
    margin-bottom: 20px;
}

.hww-step-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-600);
    max-width: 520px;
    margin-bottom: 20px;
}

.hww-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hww-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid var(--gray-200);
    padding: 5px 12px;
}

/* ═══════════════════════════════════════
FEATURED SERVICE
═══════════════════════════════════════ */
#featured-service {
    background: var(--black);
    padding: 120px 6vw;
    position: relative;
    overflow: hidden;
}

.fs-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fs-content .section-label {
    color: var(--gold);
}

.fs-content .section-title {
    color: var(--white);
    font-size: clamp(38px, 4.5vw, 64px);
}

.fs-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
}

.fs-list {
    list-style: none;
    margin-bottom: 40px;
}

.fs-list li {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.fs-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.fs-visual {
    position: relative;
}

.fs-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    background: url('../img/service.jpg') center/cover;
    position: relative;
}

.fs-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
}

.fs-number {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 180px;
    color: rgba(201, 168, 76, 0.08);
    line-height: 1;
    z-index: -1;
}

/* ═══════════════════════════════════════
CONTACT + MAP
═══════════════════════════════════════ */
#contact {
    background: var(--white);
    padding: 0;
}

.contact-map-wrapper {
    width: 100%;
    height: 420px;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(1.05);
}

.contact-info-bar {
    background: var(--black);
    padding: 60px 6vw;
}

.contact-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.contact-info-block {}

.ci-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.ci-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.02em;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

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

/* ═══════════════════════════════════════
FOOTER — Stacked Typographic Columns
═══════════════════════════════════════ */
#footer {
    background: var(--black);
    padding: 80px 6vw 48px;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 8vw, 120px);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 64px;
    opacity: 0.08;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 64px;
}

.footer-col-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 30px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.footer-col-tagline strong {
    color: var(--gold);
    font-style: normal;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.footer-nav-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-nav-list {
    list-style: none;
}

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

.footer-nav-list a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: var(--white);
}

.footer-contact-title {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-contact-line {
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-contact-line a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-belief-title {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-belief-text {
    font-family: 'Crimson Pro', serif;
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.28);
    text-align: justify;
}

.footer-rule {
    width: 100%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 28px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.footer-lic {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    color: rgba(201, 168, 76, 0.4);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════
SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════════════
MOBILE
═══════════════════════════════════════ */
@media (max-width: 900px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-item {
        border-right: none;
    }

    .why-item:nth-child(3) {
        border-bottom: 1px solid var(--gray-200);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hww-cols {
        grid-template-columns: 1fr;
    }

    .hww-col-nums {
        display: none;
    }

    .fs-inner {
        grid-template-columns: 1fr;
    }

    .fs-visual {
        order: -1;
    }

    .contact-info-inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-brand {
        font-size: clamp(52px, 12vw, 80px);
    }

    .cta-inner {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}