    /* ============ TOKENS — Logo palette: yellow · orange · magenta ============ */
    :root {
        --gold: #FFEB3B;
        --amber: #FF9800;
        --orange: #FF8C00;
        --magenta: #E91E63;
        --magenta-dark: #C2185B;
        --magenta-deep: #AD1457;
        --pink: #FF1493;

        --grad: linear-gradient(90deg, var(--gold) 0%, var(--amber) 48%, var(--magenta) 100%);
        --grad-diagonal: linear-gradient(135deg, var(--gold) 0%, var(--amber) 50%, var(--magenta) 100%);
        --grad-btn: linear-gradient(90deg, var(--gold) 0%, var(--orange) 45%, var(--magenta) 100%);
        --grad-soft: linear-gradient(160deg, #ffffff 0%, #fffef8 40%, #fff8f0 70%, #fff5f9 100%);
        --grad-section: linear-gradient(180deg, #ffffff 0%, #fffdf5 50%, #fff8fb 100%);

        --text: #1a1220;
        --text-muted: rgba(26, 18, 32, 0.68);
        --text-light: rgba(26, 18, 32, 0.42);
        --accent: #E91E63;
        --accent-dark: #C2185B;
        --accent-orange: #E65100;

        --bg: #ffffff;
        --bg-warm: #fffefa;
        --bg-card: #ffffff;
        --bg-magenta-soft: #fdf2f7;
        --bg-yellow-soft: #fffde7;
        --off-white: #ffffff;
        --charcoal: #1a1220;

        --line-amber: rgba(255, 152, 0, 0.35);
        --line-magenta: rgba(233, 30, 99, 0.25);
        --line-soft: rgba(255, 152, 0, 0.18);
        --shadow: 0 8px 32px rgba(233, 30, 99, 0.1), 0 4px 16px rgba(255, 152, 0, 0.12);
        --font-d: 'Bebas Neue', sans-serif;
        --font-b: 'Cormorant Garamond', serif;
        --font-m: 'IBM Plex Mono', monospace;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--bg);
        color: var(--text);
        font-family: var(--font-b);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    img {
        display: block;
        max-width: 100%;
    }

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

    button {
        font-family: inherit;
        cursor: pointer;
    }

    ::selection {
        background: rgba(233, 30, 99, 0.25);
        color: var(--text);
    }

    .eyebrow {
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: .32em;
        color: var(--accent);
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .eyebrow::before {
        content: '';
        width: 22px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--magenta));
        border-radius: 1px;
    }

    .btn-primary {
        background: var(--grad-btn);
        color: #ffffff;
        font-family: var(--font-m);
        font-weight: 700;
        font-size: 11px;
        letter-spacing: .2em;
        padding: 16px 34px;
        border-radius: 4px;
        border: none;
        box-shadow: 0 10px 28px rgba(255, 152, 0, 0.32), 0 4px 14px rgba(233, 30, 99, 0.18);
        transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
        display: inline-block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
        box-shadow: 0 16px 36px rgba(255, 152, 0, 0.38), 0 6px 18px rgba(233, 30, 99, 0.22);
    }

    .btn-secondary {
        background: var(--bg-card);
        border: 1px solid var(--line-magenta);
        color: var(--accent);
        font-family: var(--font-m);
        font-weight: 700;
        font-size: 11px;
        letter-spacing: .2em;
        padding: 15px 28px;
        border-radius: 2px;
        transition: all .3s ease;
        display: inline-block;
    }

    .btn-secondary:hover {
        background: var(--bg-magenta-soft);
        border-color: var(--magenta);
        color: var(--accent-dark);
    }

    .btn-ghost {
        background: var(--bg-card);
        border: 1px solid var(--line-amber);
        color: var(--text-muted);
        font-family: var(--font-m);
        font-weight: 700;
        font-size: 11px;
        letter-spacing: .2em;
        padding: 15px 28px;
        border-radius: 2px;
        transition: all .3s ease;
        display: inline-block;
    }

    .btn-ghost:hover {
        border-color: var(--magenta);
        color: var(--accent);
        background: var(--bg-magenta-soft);
    }

    /* ============ NAV ============ */
    #nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 18px 6vw;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        border-bottom: 2px solid transparent;
        border-image: var(--grad) 1;
        transition: padding .45s cubic-bezier(.4, 0, .2, 1), background .45s ease, box-shadow .45s ease;
    }

    #nav.compact {
        padding: 10px 6vw;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        box-shadow: var(--shadow);
    }

    .nav-brand {
        display: flex;
        align-items: center;
        justify-self: start;
        text-decoration: none;
        flex-shrink: 0;
    }

    .nav-logo {
        height: 72px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
        object-position: center;
        display: block;
        filter: drop-shadow(0 4px 12px rgba(233, 30, 99, 0.12));
        transition: height .4s ease, max-width .4s ease;
    }

    #nav.compact .nav-logo {
        height: 48px;
        max-width: 150px;
    }

    .nav-word {
        font-family: var(--font-m);
        font-weight: 700;
        font-size: 14px;
        color: var(--text);
        letter-spacing: .02em;
        transition: font-size .4s ease;
    }

    #nav.compact .nav-word {
        font-size: 12px;
    }

    .nav-sep {
        color: var(--text-light);
        font-size: 12px;
    }

    .nav-sub {
        font-family: var(--font-m);
        font-size: 10px;
        color: var(--text-light);
        letter-spacing: .3em;
    }

    #nav.compact .nav-sub {
        display: none;
    }

    .nav-links {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-self: center;
        gap: 28px;
    }

    .nav-links a.nav-link {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .14em;
        color: var(--text-muted);
        text-transform: uppercase;
        transition: color .3s;
    }

    .nav-links a.nav-link:hover {
        color: var(--accent);
    }

    .nav-dot {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: var(--magenta);
        opacity: 0;
        transform: scale(0);
        transition: all .4s ease;
    }

    #nav.compact .nav-dot {
        opacity: 1;
        transform: scale(1);
    }

    #nav.compact .nav-links {
        gap: 16px;
    }

    .nav-right {
        display: flex;
        align-items: center;
        justify-self: end;
        gap: 22px;
    }

    .nav-phone {
        font-family: var(--font-m);
        font-weight: 700;
        font-size: 13px;
        color: var(--accent);
        white-space: nowrap;
    }

    #nav.compact .nav-phone {
        font-size: 11px;
    }

    .nav-cta {
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: .18em;
        color: #ffffff;
        border: none;
        padding: 10px 18px;
        border-radius: 4px;
        transition: all .3s;
        background: var(--grad-btn);
        box-shadow: 0 4px 14px rgba(233, 30, 99, 0.2);
    }

    .nav-cta:hover {
        color: #ffffff;
        filter: brightness(1.06);
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(233, 30, 99, 0.28);
    }

    @media(max-width:820px) {
        #nav {
            grid-template-columns: 1fr auto;
        }

        .nav-links,
        .nav-sub {
            display: none;
        }

        .nav-phone {
            display: none;
        }

        .nav-logo {
            height: 52px;
            max-width: 160px;
        }

        #nav.compact .nav-logo {
            height: 44px;
            max-width: 140px;
        }
    }

    /* ============ HERO — TYPOGRAPHIC STAIRCASE ============ */
    .hero {
        height: 100vh;
        min-height: 760px;
        background: var(--bg);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 90px;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 55% 45% at 12% 18%, rgba(255, 235, 59, 0.22), transparent 68%),
            radial-gradient(ellipse 50% 45% at 88% 82%, rgba(233, 30, 99, 0.14), transparent 68%),
            radial-gradient(ellipse 40% 35% at 55% 55%, rgba(255, 152, 0, 0.1), transparent 70%);
        pointer-events: none;
    }

    .hero-reveal {
        opacity: 0;
        animation: heroFade 1s ease .1s forwards;
    }

    @keyframes heroFade {
        to {
            opacity: 1;
        }
    }

    .staircase {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0 150px 0 8vw;
    }

    .stair-step {
        position: relative;
        display: flex;
        align-items: flex-end;
        gap: 22px;
        opacity: 0;
        transform: translateY(24px);
        animation: stairIn .7s cubic-bezier(.4, 0, .2, 1) forwards;
    }

    @keyframes stairIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .stair-step .word {
        font-family: var(--font-d);
        font-weight: 900;
        line-height: .78;
        white-space: nowrap;
    }

    .stair-step .shelf {
        flex: 1;
        height: 1px;
        margin-bottom: .18em;
        background: linear-gradient(to left, transparent, rgba(252, 174, 74, 0.28));
        min-width: 20px;
    }

    .step1 {
        margin-left: 0;
        animation-delay: .1s;
    }

    .step1 .word {
        font-size: clamp(76px, 13.5vw, 196px);
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .step2 {
        margin-left: 4vw;
        animation-delay: .22s;
    }

    .step2 .word {
        font-size: clamp(60px, 10.5vw, 158px);
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        opacity: 0.92;
    }

    .step3 {
        margin-left: 8vw;
        animation-delay: .34s;
    }

    .step3 .word {
        font-size: clamp(48px, 8.6vw, 128px);
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        opacity: 0.85;
    }

    .step4 {
        margin-left: 12vw;
        animation-delay: .46s;
    }

    .step4 .word {
        font-size: clamp(38px, 6.6vw, 98px);
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        opacity: 0.78;
    }

    .step5 {
        margin-left: 15vw;
        animation-delay: .58s;
        align-items: flex-start;
        padding-top: 14px;
    }

    .step5 .word {
        font-family: var(--font-b);
        font-style: italic;
        font-weight: 400;
        font-size: clamp(17px, 1.9vw, 25px);
        line-height: 1.4;
        color: var(--text-muted);
        white-space: normal;
        max-width: 420px;
    }

    .step5 .shelf {
        display: none;
    }

    .stair-img {
        position: absolute;
        right: 8vw;
        bottom: 0;
        transform: translateY(40%);
        object-fit: cover;
        object-position: center;
        filter: brightness(1.05) contrast(1.05) saturate(1.1);
        border-radius: 6px;
        border: 2px solid var(--amber);
        box-shadow: 0 12px 36px rgba(252, 174, 74, 0.25);
        z-index: 2;
    }

    .step2 .stair-img {
        width: 280px;
        height: 310px;
        bottom: 54px;
    }

    .step4 .stair-img {
        width: 280px;
        height: 195px;
        right: 14vw;
    }

    .stair-rightcol {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 64px;
        width: 100px;
        background: rgba(255, 255, 255, 0.6);
        border-left: 1px solid var(--line-amber);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 22px;
        z-index: 3;
        padding: 20px 0;
    }

    .stair-rightcol img {
        width: 98px;
        height: 132px;
        object-fit: cover;
        object-position: center;
        filter: brightness(1.05) saturate(1.1);
        border-radius: 5px;
        border: 2px solid var(--line-amber);
        box-shadow: 0 6px 20px rgba(252, 174, 74, 0.22);
        transition: transform .35s ease, box-shadow .35s ease;
    }

    .stair-rightcol img:hover {
        transform: scale(1.04);
        box-shadow: 0 10px 28px rgba(252, 174, 74, 0.3);
    }

    .stair-address {
        writing-mode: vertical-rl;
        font-family: var(--font-m);
        font-size: 9px;
        color: var(--text-light);
        letter-spacing: .2em;
        margin-top: 16px;
    }

    .stair-ctabar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 64px;
        padding: 0 8vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-top: 2px solid transparent;
        border-image: var(--grad) 1;
        z-index: 4;
    }

    .stair-ctabar .sc-phone {
        font-family: var(--font-m);
        font-weight: 700;
        font-size: 18px;
        color: var(--accent);
    }

    .stair-ctabar .sc-sep {
        width: 1px;
        height: 20px;
        background: linear-gradient(to bottom, transparent, var(--amber), transparent);
    }

    .stair-ctabar .sc-mid {
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .3em;
        color: var(--text-light);
    }

    @media(max-width:900px) {
        .hero {
            min-height: auto;
            height: auto;
            padding-bottom: 70px;
        }

        .staircase {
            padding: 0 20px 0 6vw;
        }

        .step2,
        .step3,
        .step4,
        .step5 {
            margin-left: 6vw;
        }

        .stair-step {
            flex-wrap: wrap;
        }

        .stair-img {
            position: relative;
            right: auto;
            bottom: auto;
            transform: none;
            display: block;
            margin: 16px 0 8px;
        }

        .step2 .stair-img {
            width: min(100%, 340px);
            height: 220px;
        }

        .step4 .stair-img {
            width: min(100%, 360px);
            height: 230px;
            right: auto;
        }

        .stair-rightcol {
            position: relative;
            top: auto;
            right: auto;
            bottom: auto;
            width: auto;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            padding: 28px 6vw;
            margin-top: 10px;
            border-left: none;
            border-top: 1px solid var(--line-amber);
        }

        .stair-rightcol img {
            width: 110px;
            height: 140px;
        }

        .stair-address {
            writing-mode: horizontal-tb;
            width: 100%;
            text-align: center;
            margin-top: 8px;
            order: 4;
        }

        .stair-ctabar {
            padding: 0 6vw;
        }

        .stair-ctabar .sc-mid {
            display: none;
        }
    }

    .hero-bottombar {
        position: absolute;
        bottom: 64px;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad);
        box-shadow: 0 0 24px rgba(255, 152, 0, 0.45), 0 0 12px rgba(233, 30, 99, 0.25);
        z-index: 5;
    }

    .scroll-cue {
        position: absolute;
        bottom: 84px;
        left: 8vw;
        z-index: 6;
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .3em;
        color: var(--text-light);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .scroll-cue .bar {
        width: 1px;
        height: 26px;
        background: linear-gradient(to bottom, var(--amber), transparent);
        animation: cueMove 1.8s infinite ease-in-out;
    }

    @keyframes cueMove {

        0%,
        100% {
            transform: translateY(0);
            opacity: .3;
        }

        50% {
            transform: translateY(6px);
            opacity: 1;
        }
    }

    @media(max-width:900px) {
        .scroll-cue {
            bottom: 78px;
        }
    }

    /* ============ ABOUT — CHRONICLE SPLIT ============ */
    .about {
        background: var(--bg);
        padding: 120px 0 130px;
        position: relative;
        overflow: hidden;
        border-top: 2px solid transparent;
        border-image: var(--grad) 1;
    }

    .about::before {
        content: 'ABOUT';
        position: absolute;
        top: 8%;
        right: -2%;
        font-family: var(--font-d);
        font-size: clamp(100px, 18vw, 220px);
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 152, 0, 0.12);
        pointer-events: none;
        user-select: none;
    }

    .about-wrap {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 6vw;
        position: relative;
        z-index: 1;
    }

    .about-hero {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 70px;
        align-items: center;
        margin-bottom: 80px;
    }

    .about-title {
        font-family: var(--font-d);
        font-size: clamp(42px, 5.8vw, 72px);
        line-height: .92;
        color: var(--text);
        margin: 18px 0 24px;
        letter-spacing: .01em;
    }

    .about-title span {
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .about-lead {
        font-family: var(--font-b);
        font-size: clamp(18px, 1.8vw, 22px);
        font-style: italic;
        color: var(--text-muted);
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .about-text {
        font-family: var(--font-b);
        font-size: 16px;
        color: var(--text-muted);
        line-height: 1.75;
        margin-bottom: 14px;
        max-width: 480px;
    }

    .about-text strong {
        color: var(--accent);
        font-weight: 600;
    }

    .about-visual {
        position: relative;
        min-height: 460px;
    }

    .photo-stack {
        position: relative;
        width: 100%;
        height: 440px;
    }

    .photo-stack .stack-img {
        position: absolute;
        border-radius: 6px;
        overflow: hidden;
        border: 2px solid var(--line-amber);
        box-shadow: 0 12px 36px rgba(252, 174, 74, 0.2);
        transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .photo-stack .stack-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        filter: sepia(6%) saturate(1.12) brightness(1.02);
    }

    .photo-stack .stack-img:nth-child(1) {
        width: 62%;
        height: 78%;
        top: 0;
        right: 0;
        z-index: 3;
    }

    .photo-stack .stack-img:nth-child(2) {
        width: 55%;
        height: 62%;
        bottom: 0;
        left: 0;
        z-index: 2;
    }

    .photo-stack .stack-img:nth-child(3) {
        width: 42%;
        height: 46%;
        top: 16%;
        left: 10%;
        z-index: 1;
        opacity: .9;
    }

    .about-visual:hover .stack-img:nth-child(1) {
        transform: translate(-6px, -6px) rotate(-1deg);
    }

    .about-visual:hover .stack-img:nth-child(2) {
        transform: translate(6px, 6px) rotate(1deg);
    }

    .about-stamp {
        position: absolute;
        bottom: -10px;
        right: 20px;
        z-index: 4;
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .32em;
        background: var(--grad-btn);
        color: #ffffff;
        padding: 10px 16px;
        border-radius: 4px;
        box-shadow: 0 8px 24px rgba(233, 30, 99, 0.22);
        transform: rotate(-3deg);
    }

    .about-milestones {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border: 2px solid transparent;
        border-image: var(--grad) 1;
        border-radius: 6px;
        overflow: hidden;
        background: var(--bg-card);
        margin-bottom: 50px;
    }

    .milestone {
        padding: 36px 30px;
        position: relative;
        border-right: 1px solid var(--line-soft);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .milestone:last-child {
        border-right: none;
    }

    .milestone.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .milestone .m-year {
        font-family: var(--font-d);
        font-size: 36px;
        line-height: 1;
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 12px;
    }

    .milestone .m-label {
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .24em;
        color: var(--accent);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .milestone .m-desc {
        font-family: var(--font-b);
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .about-metrics {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        margin-bottom: 70px;
    }

    .metric {
        background: var(--bg-card);
        border: 1px solid var(--line-amber);
        border-radius: 4px;
        padding: 28px 22px;
        text-align: center;
        box-shadow: var(--shadow);
        opacity: 0;
        transform: scale(.94);
        transition: opacity .5s ease, transform .5s ease, box-shadow .3s ease;
    }

    .metric.in-view {
        opacity: 1;
        transform: scale(1);
    }

    .metric:hover {
        box-shadow: 0 12px 36px rgba(233, 30, 99, 0.12);
        transform: translateY(-3px);
        border-color: var(--magenta);
    }

    .metric b {
        font-family: var(--font-d);
        font-size: clamp(36px, 4vw, 48px);
        line-height: 1;
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: block;
        margin-bottom: 8px;
    }

    .metric span {
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .2em;
        color: var(--text-light);
        text-transform: uppercase;
    }

    .about-benefits-block {
        margin-top: 80px;
        padding-top: 70px;
        border-top: 1px solid var(--line-soft);
    }

    .benefits-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .benefits-head h3 {
        font-family: var(--font-d);
        font-size: clamp(32px, 4vw, 48px);
        color: var(--text);
        margin-top: 12px;
        line-height: 1.05;
    }

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

    .benefit-card {
        background: var(--bg-card);
        border: 1px solid var(--line-soft);
        border-radius: 4px;
        padding: 26px 22px;
        transition: all .3s ease;
    }

    .benefit-card:hover {
        border-color: var(--amber);
        background: #fffaf3;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        flex-shrink: 0;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

    .benefit-icon svg {
        width: 18px;
        height: 18px;
        color: #ffffff;
    }

    .benefit-card .b-title {
        font-family: var(--font-d);
        font-size: 22px;
        letter-spacing: .01em;
        color: var(--text);
        margin-bottom: 8px;
    }

    .benefit-card .b-desc {
        font-family: var(--font-b);
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    @media(max-width:900px) {
        .about-hero {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .about-visual {
            min-height: 340px;
        }

        .photo-stack {
            height: 360px;
        }

        .about-milestones {
            grid-template-columns: 1fr;
        }

        .milestone {
            border-right: none;
            border-bottom: 1px solid var(--line-soft);
        }

        .milestone:last-child {
            border-bottom: none;
        }

        .about-metrics {
            grid-template-columns: 1fr 1fr;
        }

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

        .benefits-head {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media(max-width:560px) {
        .about-metrics {
            grid-template-columns: 1fr;
        }

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

    /* ============ SERVICES INTRO — TYPEWRITER SPOTLIGHT ============ */
    .spotlight {
        background: var(--grad-section);
        min-height: 88vh;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 6vw;
        overflow: hidden;
        border-top: 1px solid var(--line-amber);
        border-bottom: 1px solid var(--line-amber);
    }

    .spotlight::before {
        content: '';
        position: absolute;
        top: 38%;
        left: 50%;
        width: 900px;
        height: 900px;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(255, 152, 0, 0.2), rgba(255, 235, 59, 0.08) 40%, rgba(233, 30, 99, 0.06) 60%, transparent 72%);
        pointer-events: none;
    }

    .spot-eyebrow {
        margin-bottom: 26px;
    }

    .spot-type {
        font-family: var(--font-d);
        font-size: clamp(44px, 7.6vw, 110px);
        letter-spacing: .01em;
        line-height: 1;
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        min-height: 1.1em;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .spot-type .cursor {
        display: inline-block;
        width: 4px;
        background: var(--accent);
        margin-left: 6px;
        animation: blink 1s steps(1) infinite;
    }

    @keyframes blink {
        50% {
            opacity: 0;
        }
    }

    .spot-desc {
        font-family: var(--font-b);
        font-style: italic;
        font-size: clamp(15px, 1.6vw, 19px);
        color: var(--text-muted);
        max-width: 540px;
        text-align: center;
        margin-top: 22px;
        min-height: 52px;
        opacity: 0;
        transition: opacity .5s ease;
        z-index: 2;
    }

    .spot-desc.show {
        opacity: 1;
    }

    .spot-dots {
        display: flex;
        gap: 10px;
        margin-top: 44px;
        z-index: 2;
    }

    .spot-dots button {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 152, 0, 0.25);
        border: none;
        transition: all .3s;
    }

    .spot-dots button.active {
        background: var(--grad);
        width: 22px;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(255, 152, 0, 0.35);
    }

    /* ============ SERVICES DETAIL — SHOWCASE GRID ============ */
    .services {
        background: var(--bg);
        padding: 150px 0 100px;
        position: relative;
        overflow: hidden;
    }

    .services::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: min(520px, 45vw);
        height: min(520px, 45vw);
        background: radial-gradient(circle, rgba(253, 201, 13, 0.14), transparent 68%);
        pointer-events: none;
    }

    .services-progress-wrap {
        position: sticky;
        top: 0;
        height: 3px;
        background: var(--line-soft);
        z-index: 20;
        margin: 0 6vw;
    }

    .services-progress {
        height: 100%;
        width: 0%;
        background: var(--grad);
        transition: width .1s linear;
        box-shadow: 0 0 12px rgba(253, 201, 13, 0.4);
    }

    .services-head {
        text-align: center;
        max-width: 720px;
        margin: 60px auto 70px;
        padding: 0 6vw;
        position: relative;
        z-index: 1;
    }

    .services-head h2 {
        font-family: var(--font-d);
        font-size: clamp(38px, 5.4vw, 64px);
        color: var(--text);
        line-height: 1.02;
    }

    .services-head p {
        font-family: var(--font-b);
        font-size: 17px;
        color: var(--text-muted);
        margin-top: 16px;
        line-height: 1.6;
    }

    .svc-showcase {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 6vw;
        display: flex;
        flex-direction: column;
        gap: 28px;
        position: relative;
        z-index: 1;
    }

    .svc-panel {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 0;
        background: var(--bg-card);
        border: 1px solid var(--line-amber);
        border-radius: 6px;
        overflow: hidden;
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(32px);
        transition: opacity .65s ease, transform .65s ease, box-shadow .35s ease;
    }

    .svc-panel.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .svc-panel:hover {
        box-shadow: 0 16px 48px rgba(252, 174, 74, 0.22);
    }

    .svc-panel.reverse {
        grid-template-columns: .95fr 1.05fr;
    }

    .svc-panel.reverse .svc-visual {
        order: 2;
    }

    .svc-panel.reverse .svc-body {
        order: 1;
    }

    .svc-visual {
        position: relative;
        min-height: 300px;
        overflow: hidden;
    }

    .svc-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 300px;
        filter: sepia(6%) saturate(1.12) brightness(1.03);
        transition: transform .6s ease;
    }

    .svc-panel:hover .svc-visual img {
        transform: scale(1.04);
    }

    .svc-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(252, 174, 74, 0.22), transparent 55%);
    }

    .svc-visual .svc-num {
        position: absolute;
        top: 18px;
        left: 18px;
        font-family: var(--font-d);
        font-size: clamp(52px, 7vw, 78px);
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
        z-index: 2;
        text-shadow: 0 2px 12px rgba(28, 26, 22, 0.2);
    }

    .svc-panel.reverse .svc-visual .svc-num {
        left: auto;
        right: 18px;
    }

    .svc-badge {
        position: absolute;
        bottom: 16px;
        left: 16px;
        z-index: 2;
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .22em;
        background: var(--grad);
        color: var(--text);
        padding: 7px 12px;
        border-radius: 2px;
        box-shadow: 0 4px 14px rgba(252, 174, 74, 0.3);
    }

    .svc-body {
        padding: 42px 38px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(160deg, #fff 0%, #fffaf3 100%);
    }

    .svc-body .svc-name {
        font-family: var(--font-d);
        font-size: clamp(28px, 3.2vw, 40px);
        color: var(--text);
        line-height: 1.05;
        letter-spacing: .01em;
    }

    .svc-body .svc-desc {
        font-family: var(--font-b);
        font-size: 16px;
        color: var(--text-muted);
        margin-top: 14px;
        line-height: 1.7;
        max-width: 420px;
    }

    .svc-tags {
        display: flex;
        gap: 8px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .svc-tags span {
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .14em;
        color: var(--accent);
        border: 1px solid var(--line-amber);
        background: rgba(252, 174, 74, 0.1);
        padding: 5px 10px;
        border-radius: 20px;
        text-transform: uppercase;
    }

    .svc-link {
        margin-top: 24px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: .18em;
        color: var(--accent);
        transition: gap .3s ease, color .3s ease;
    }

    .svc-link:hover {
        gap: 12px;
        color: var(--accent-dark);
    }

    .svc-link::after {
        content: '→';
    }

    /* ============ SERVICE AREA — 27 CITIES ============ */
    .service-area {
        max-width: 1240px;
        margin: 100px auto 0;
        padding: 70px 6vw 30px;
        border-top: 1px solid var(--line-amber);
        position: relative;
        z-index: 1;
    }

    .area-head {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 50px;
    }

    .area-head h3 {
        font-family: var(--font-d);
        font-size: clamp(32px, 4.2vw, 52px);
        color: var(--text);
        line-height: 1.05;
        margin-top: 14px;
    }

    .area-head p {
        font-family: var(--font-b);
        font-size: 16px;
        color: var(--text-muted);
        margin-top: 14px;
        line-height: 1.65;
    }

    .area-hub-wrap {
        display: flex;
        justify-content: center;
        margin-bottom: 36px;
    }

    .area-hub {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 720px;
        width: 100%;
        padding: 4px;
        background: var(--grad);
        border-radius: 10px;
        box-shadow: 0 10px 34px rgba(255, 152, 0, 0.22), 0 4px 16px rgba(233, 30, 99, 0.12);
        overflow: hidden;
    }

    .area-hub-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        display: block;
    }

    .area-hub svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .area-hub .hub-main {
        font-family: var(--font-d);
        font-size: clamp(22px, 2.8vw, 30px);
        letter-spacing: .02em;
        line-height: 1;
    }

    .area-hub .hub-sub {
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .28em;
        opacity: .75;
    }

    .area-cities {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
        gap: 10px;
    }

    .area-city {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .06em;
        color: var(--text-muted);
        background: var(--bg-card);
        border: 1px solid var(--line-soft);
        padding: 12px 14px;
        border-radius: 4px;
        text-align: center;
        transition: all .3s ease;
    }

    .area-city:hover {
        color: var(--text);
        border-color: var(--amber);
        background: rgba(252, 174, 74, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(252, 174, 74, 0.15);
    }

    .area-note {
        text-align: center;
        margin-top: 28px;
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: .2em;
        color: var(--text-light);
    }

    @media(max-width:900px) {

        .svc-panel,
        .svc-panel.reverse {
            grid-template-columns: 1fr;
        }

        .svc-panel.reverse .svc-visual,
        .svc-panel.reverse .svc-body {
            order: unset;
        }

        .svc-visual {
            min-height: 220px;
        }

        .svc-visual img {
            min-height: 220px;
        }

        .svc-body {
            padding: 30px 24px;
        }

        .area-cities {
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        }
    }

    /* ============ WHY CHOOSE US ============ */
    .why {
        background: var(--bg-warm);
        color: var(--charcoal);
        padding: 130px 6vw;
        border-top: 2px solid transparent;
        border-image: var(--grad) 1;
    }

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

    .why-head {
        max-width: 640px;
        margin: 0 auto 70px;
        text-align: center;
    }

    .why .eyebrow {
        color: var(--accent);
        justify-content: center;
    }

    .why .eyebrow::before {
        background: var(--grad);
    }

    .why-head h2 {
        font-family: var(--font-d);
        font-size: clamp(38px, 5vw, 58px);
        line-height: 1.05;
        margin-top: 16px;
        color: var(--text);
    }

    .why-head p {
        font-family: var(--font-b);
        font-size: 17px;
        color: var(--text-muted);
        margin-top: 16px;
        line-height: 1.7;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--grad);
        border: none;
        border-radius: 6px;
        overflow: hidden;
        padding: 2px;
    }

    .why-card {
        background: var(--bg-card);
        padding: 38px 28px;
        transition: background .3s ease, box-shadow .3s ease;
    }

    .why-card:hover {
        background: var(--bg-yellow-soft);
        box-shadow: 0 8px 24px rgba(255, 152, 0, 0.12);
    }

    .why-card .wnum {
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: .2em;
        color: var(--accent);
        margin-bottom: 22px;
    }

    .why-card svg {
        width: 26px;
        height: 26px;
        margin-bottom: 18px;
        color: var(--magenta);
    }

    .why-card h3 {
        font-family: var(--font-d);
        font-size: 24px;
        letter-spacing: .01em;
        color: var(--text);
        margin-bottom: 10px;
    }

    .why-card p {
        font-family: var(--font-b);
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    @media(max-width:900px) {
        .why-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media(max-width:560px) {
        .why-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ============ FAQ — INK LINE ============ */
    .faq {
        background: var(--bg);
        color: var(--charcoal);
        padding: 120px 6vw 140px;
        border-top: 1px solid var(--line-soft);
    }

    .faq-inner {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .faq .eyebrow {
        color: var(--accent);
        justify-content: center;
    }

    .faq .eyebrow::before {
        background: var(--grad);
    }

    .faq-inner h2 {
        font-family: var(--font-d);
        font-size: clamp(34px, 4.6vw, 52px);
        margin: 16px 0 60px;
        color: var(--text);
    }

    .faq-list {
        text-align: left;
    }

    .faq-item {
        display: flex;
        gap: 26px;
        padding: 34px 0;
        cursor: pointer;
    }

    .faq-item+.faq-item {
        border-top: 1px solid var(--line-soft);
    }

    .ink-line {
        width: 2px;
        flex-shrink: 0;
        background: var(--line-soft);
        position: relative;
    }

    .ink-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 22%;
        background: var(--amber);
        transition: height .5s cubic-bezier(.4, 0, .2, 1);
    }

    .faq-item.open .ink-fill {
        height: 100%;
        background: var(--grad);
    }

    .faq-content {
        flex: 1;
    }

    .faq-q {
        font-family: var(--font-d);
        font-size: clamp(19px, 2.4vw, 26px);
        color: var(--text);
        letter-spacing: .005em;
        transition: color .25s;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .faq-item:hover .faq-q {
        color: var(--accent);
    }

    .faq-plus {
        font-family: var(--font-m);
        font-size: 14px;
        color: var(--accent);
        transition: transform .3s ease;
        flex-shrink: 0;
    }

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

    .faq-a {
        font-family: var(--font-b);
        font-size: 16px;
        line-height: 1.75;
        color: var(--text-muted);
        max-height: 0;
        overflow: hidden;
        transition: max-height .5s ease, margin-top .5s ease;
        margin-top: 0;
    }

    .faq-item.open .faq-a {
        max-height: 220px;
        margin-top: 14px;
    }

    /* ============ CONTACT ============ */
    .contact {
        background: var(--bg);
        padding: 0 0 0;
        border-top: 2px solid transparent;
        border-image: var(--grad) 1;
    }

    .map-embed {
        width: 100%;
        height: 420px;
        filter: sepia(12%) saturate(0.85) brightness(1.05);
        border: none;
        display: block;
        border-bottom: 1px solid var(--line-amber);
    }

    .contact-inner {
        max-width: 1180px;
        margin: 0 auto;
        padding: 90px 6vw 130px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .contact-left h2 {
        font-family: var(--font-d);
        font-size: clamp(38px, 5vw, 58px);
        color: var(--text);
        line-height: 1.04;
        margin-top: 16px;
    }

    .contact-left p {
        font-family: var(--font-b);
        font-size: 17px;
        color: var(--text-muted);
        margin-top: 18px;
        max-width: 440px;
        line-height: 1.7;
    }

    .contact-ctas {
        display: flex;
        gap: 16px;
        margin-top: 32px;
        flex-wrap: wrap;
    }

    .contact-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .c-card {
        background: var(--bg-card);
        border: 1px solid var(--line-amber);
        padding: 26px 28px;
        border-radius: 4px;
        box-shadow: var(--shadow);
        transition: transform .3s ease, box-shadow .3s ease;
    }

    .c-card:hover {
        transform: translateY(-2px);
        border-color: var(--magenta);
        box-shadow: 0 12px 36px rgba(233, 30, 99, 0.15);
    }

    .c-card .clabel {
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .24em;
        color: var(--accent);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .c-card .cval {
        font-family: var(--font-d);
        font-size: 22px;
        color: var(--text);
        letter-spacing: .01em;
    }

    .c-card .cval.small {
        font-family: var(--font-b);
        font-size: 16px;
        color: var(--text-muted);
    }

    /* ============ FOOTER — HORIZONTAL TRACK ============ */
    footer {
        background: var(--bg);
        border-top: 2px solid transparent;
        border-image: var(--grad) 1;
        position: relative;
    }

    .foot-hint {
        position: absolute;
        top: 50%;
        right: 6vw;
        transform: translateY(-50%);
        z-index: 5;
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .24em;
        color: var(--text-light);
        display: flex;
        align-items: center;
        gap: 8px;
        pointer-events: none;
        transition: opacity .4s ease;
        background: linear-gradient(to left, var(--bg-warm) 40%, transparent);
        padding: 0 0 0 40px;
    }

    .foot-track-wrap {
        height: 180px;
        overflow-x: auto;
        overflow-y: hidden;
        position: relative;
        -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
        mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
        scrollbar-width: none;
    }

    .foot-track-wrap::-webkit-scrollbar {
        display: none;
    }

    .foot-track {
        display: flex;
        align-items: center;
        height: 180px;
        gap: 70px;
        padding: 0 90px;
        width: max-content;
    }

    .foot-block {
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-width: 180px;
    }

    .foot-block.brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        min-width: 200px;
    }

    .foot-logo {
        height: 80px;
        width: auto;
        max-width: 220px;
        object-fit: contain;
        object-position: left center;
        display: block;
    }

    .foot-block.brand .fname {
        font-family: var(--font-m);
        font-weight: 700;
        font-size: 15px;
        color: var(--text);
    }

    .foot-block p {
        font-family: var(--font-b);
        font-size: 14px;
        color: var(--text-muted);
        max-width: 260px;
        line-height: 1.6;
    }

    .foot-block .flabel {
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: .24em;
        color: var(--accent);
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .foot-block a.flink,
    .foot-block span.fitem {
        font-family: var(--font-m);
        font-size: 12px;
        color: var(--text-muted);
        letter-spacing: .02em;
    }

    .foot-block a.flink:hover {
        color: var(--accent);
    }

    .foot-social {
        display: flex;
        gap: 14px;
    }

    .foot-social a {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .1em;
        color: var(--text-muted);
        border: 1px solid var(--line-amber);
        background: var(--bg-card);
        padding: 7px 14px;
        border-radius: 20px;
        transition: all .3s ease;
    }

    .foot-social a:hover {
        color: var(--text);
        background: var(--grad);
        border-color: transparent;
    }

    .foot-newsletter input {
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--line-amber);
        color: var(--text);
        font-family: var(--font-m);
        font-size: 12px;
        padding: 8px 0;
        width: 190px;
        outline: none;
    }

    .foot-newsletter input::placeholder {
        color: var(--text-light);
    }

    .foot-newsletter button {
        background: none;
        border: none;
        color: var(--accent);
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .15em;
        margin-top: 8px;
        transition: color .3s;
    }

    .foot-newsletter button:hover {
        color: var(--accent-dark);
    }

    .foot-copy {
        font-family: var(--font-m);
        font-size: 11px;
        color: var(--text-light);
        white-space: nowrap;
    }

    @media(max-width:900px) {
        .contact-inner {
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 70px 6vw 100px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.001ms !important;
            transition-duration: 0.001ms !important;
        }
    }


    /* ============ SHARED LAYOUT ============ */
    .wrap {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 6vw;
    }

    .mono {
        font-family: var(--font-m);
    }

    .section-head {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 60px;
    }

    .section-head .eyebrow {
        justify-content: center;
    }

    .section-head .eyebrow::before {
        display: none;
    }

    .section-title {
        font-family: var(--font-d);
        font-size: clamp(36px, 5vw, 58px);
        color: var(--text);
        line-height: 1.05;
        margin-top: 14px;
    }

    .section-title em {
        font-style: normal;
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .section-desc {
        font-family: var(--font-b);
        font-size: 17px;
        color: var(--text-muted);
        line-height: 1.65;
        margin-top: 14px;
    }

    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* ============ SERVICES — HOLO CARDS (LIGHT) ============ */
    .services-holo {
        background: var(--grad-section);
        padding: 120px 0 100px;
        border-top: 1px solid var(--line-amber);
        border-bottom: 1px solid var(--line-amber);
        position: relative;
    }

    .services-holo::before {
        content: '';
        position: absolute;
        top: 10%;
        left: -5%;
        width: min(400px, 40vw);
        height: min(400px, 40vw);
        background: radial-gradient(circle, rgba(255, 235, 59, 0.16), rgba(255, 152, 0, 0.08) 42%, transparent 68%);
        pointer-events: none;
    }

    .services-holo::after {
        content: '';
        position: absolute;
        bottom: 5%;
        right: -3%;
        width: min(320px, 32vw);
        height: min(320px, 32vw);
        background: radial-gradient(circle, rgba(233, 30, 99, 0.1), transparent 68%);
        pointer-events: none;
    }

    .services-holo .eyebrow {
        color: var(--accent);
    }

    .holo-stage {
        perspective: 1400px;
        position: relative;
        z-index: 1;
    }

    .holo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        align-items: stretch;
    }

    .holo-card {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        background: var(--bg-card);
        border: 1px solid var(--line-amber);
        cursor: pointer;
        transform-style: preserve-3d;
        transition: transform .15s ease-out, box-shadow .3s ease, border-color .3s ease;
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .holo-card:hover,
    .holo-card.active {
        border-color: var(--magenta);
        box-shadow: 0 16px 40px rgba(233, 30, 99, 0.12), 0 8px 24px rgba(252, 174, 74, 0.18);
    }

    .holo-card::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        background: linear-gradient(115deg, transparent 20%, rgba(253, 201, 13, 0.2) 38%, rgba(233, 30, 99, 0.12) 52%, transparent 65%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .holo-card.active::before {
        opacity: 1;
    }

    .holo-img {
        height: 240px;
        width: 100%;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .holo-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        filter: sepia(6%) saturate(1.1) brightness(1.02);
        transition: transform .5s ease;
    }

    .holo-card:hover .holo-img img {
        transform: scale(1.04);
    }

    .holo-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(252, 174, 74, 0.15));
        pointer-events: none;
    }

    .holo-band {
        background: var(--grad-btn);
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        flex-shrink: 0;
    }

    .holo-band span:first-child {
        font-family: var(--font-m);
        font-weight: 700;
        font-size: 11px;
        color: #ffffff;
        letter-spacing: 0.06em;
    }

    .holo-band span:last-child {
        font-family: var(--font-m);
        font-size: 9px;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: 0.18em;
    }

    .holo-body {
        padding: 20px 22px 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .holo-body h3 {
        font-family: var(--font-d);
        font-size: 24px;
        color: var(--text);
        letter-spacing: 0.01em;
        line-height: 1.05;
    }

    .holo-body p {
        font-family: var(--font-b);
        font-style: italic;
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.55;
        margin-top: 10px;
        flex: 1;
    }

    .holo-cta {
        display: inline-block;
        margin-top: 14px;
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: 0.14em;
        color: var(--accent);
        border-bottom: 1px solid var(--line-amber);
        padding-bottom: 2px;
        align-self: flex-start;
    }

    .holo-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height .55s cubic-bezier(.4, 0, .2, 1), margin .55s ease;
        background: var(--bg-card);
        border: 1px solid var(--line-amber);
        border-radius: 8px;
        margin-top: 0;
        box-shadow: var(--shadow);
    }

    .holo-panel.open {
        max-height: 920px;
        margin-top: 36px;
    }

    .holo-panel-img {
        width: 100%;
        height: 320px;
        overflow: hidden;
        position: relative;
    }

    .holo-panel-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        filter: sepia(6%) saturate(1.08);
    }

    .holo-panel-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 45%, rgba(252, 174, 74, 0.18));
    }

    .holo-panel-inner {
        padding: 36px 40px 44px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        color: var(--text);
        align-items: start;
    }

    .hp-name {
        font-family: var(--font-d);
        font-size: 30px;
        color: var(--text);
        line-height: 1.05;
    }

    .hp-desc {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.75;
        margin-top: 14px;
    }

    .hp-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 18px;
    }

    .hp-tags span {
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: 0.12em;
        border: 1px solid var(--line-magenta);
        background: var(--bg-magenta-soft);
        border-radius: 50px;
        padding: 5px 12px;
        color: var(--accent);
        text-transform: uppercase;
    }

    .hp-steps {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .hp-step {
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .hp-step-num {
        font-family: var(--font-m);
        font-size: 11px;
        color: var(--accent);
        border: 1px solid var(--line-amber);
        background: rgba(252, 174, 74, 0.1);
        border-radius: 50%;
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .hp-step-text {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.55;
    }

    .hp-cta-row {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 6px;
    }

    .hp-link {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: 0.12em;
        color: var(--accent);
        border-bottom: 1px solid var(--line-amber);
        padding-bottom: 2px;
        align-self: center;
    }

    @media (max-width:1024px) {
        .holo-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:760px) {
        .holo-panel-inner {
            grid-template-columns: 1fr;
            padding: 28px 24px 32px;
        }

        .holo-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }

        .holo-img {
            height: 220px;
        }

        .holo-panel-img {
            height: 240px;
        }
    }

    /* ============ DETAILED SERVICES (LIGHT) ============ */
    .dsvc {
        background: var(--bg);
        position: relative;
        padding: 100px 0 40px;
        border-bottom: 1px solid var(--line-amber);
    }

    .dsvc::before {
        content: '';
        position: absolute;
        bottom: 20%;
        right: 0;
        width: min(360px, 35vw);
        height: min(360px, 35vw);
        background: radial-gradient(circle, rgba(233, 30, 99, 0.07), rgba(252, 174, 74, 0.08) 40%, transparent 68%);
        pointer-events: none;
    }

    .dsvc .section-head {
        color: var(--text);
    }

    .dsvc .section-desc {
        color: var(--text-muted);
    }

    .dsvc .eyebrow {
        color: var(--accent);
    }

    .dsvc .eyebrow::before {
        background: var(--amber);
    }

    .dsvc-tagnum {
        font-size: 11px;
        letter-spacing: 0.24em;
        color: var(--accent);
        margin-bottom: 14px;
    }

    .dsvc-feature-list {
        list-style: none;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .dsvc-feature-list li {
        font-size: 14px;
        color: var(--text-muted);
        padding-left: 18px;
        position: relative;
    }

    .dsvc-feature-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 8px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--magenta));
    }

    .dsvc-cta {
        margin-top: 28px;
        display: inline-block;
    }

    .dsvc-cta-alt {
        margin-top: 24px;
        display: inline-block;
    }

    .dsvc-media {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--line-amber);
        box-shadow: var(--shadow);
    }

    .dsvc-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        min-height: 340px;
        filter: sepia(6%) saturate(1.08) brightness(1.02);
    }

    article.dsvc-repair,
    article.dsvc-install,
    article.dsvc-spring,
    article.dsvc-opener,
    article.dsvc-panel-svc,
    article.dsvc-emergency {
        display: block;
        margin: 0 auto 28px;
        max-width: 1240px;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid var(--line-amber);
        box-shadow: var(--shadow);
    }

    /* 01 repair */
    .dsvc-repair {
        background: var(--bg-card);
        padding: 70px 0;
    }

    .dsvc-repair-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 56px;
    }

    .dsvc-repair-copy {
        max-width: 560px;
    }

    .dsvc-repair-title {
        font-family: var(--font-d);
        color: var(--text);
        font-size: clamp(28px, 3.2vw, 42px);
        line-height: 1.05;
    }

    .dsvc-repair-desc {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.8;
        margin-top: 16px;
    }

    .dsvc-repair-media {
        min-height: 360px;
    }

    .dsvc-repair-num {
        position: absolute;
        bottom: 14px;
        right: 18px;
        font-family: var(--font-d);
        font-size: clamp(48px, 8vw, 80px);
        line-height: 1;
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.8));
        pointer-events: none;
    }

    /* 02 install */
    .dsvc-install {
        background: var(--bg-warm);
    }

    .dsvc-install-banner {
        width: 100%;
        max-width: 1400px;
        margin: auto;
    }

    .dsvc-install-banner img {
        width: 100%;
        height: 389px;
        display: block;
    }

    .dsvc-install-inner {
        padding: 50px 0 70px;
    }

    .dsvc-install-copy {
        max-width: 720px;
    }

    .dsvc-install-title {
        font-family: var(--font-d);
        color: var(--text);
        font-size: clamp(28px, 3.2vw, 42px);
    }

    .dsvc-install-desc {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.8;
        margin-top: 16px;
    }

    /* 03 spring */
    .dsvc-spring {
        background: var(--bg-card);
        padding: 70px 0;
    }

    .dsvc-spring-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .dsvc-spring-media {
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--line-amber);
        box-shadow: var(--shadow);
    }

    .dsvc-spring-media img {
        width: 100%;
        height: 100%;
        min-height: 360px;
        object-fit: cover;
        object-position: center;
        display: block;
        filter: sepia(6%) saturate(1.08);
    }

    .dsvc-spring-copy {
        text-align: left;
    }

    .dsvc-spring-title {
        font-family: var(--font-d);
        color: var(--text);
        font-size: clamp(28px, 3.2vw, 42px);
    }

    .dsvc-spring-desc {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.8;
        margin-top: 16px;
    }

    .dsvc-spring-stats {
        display: flex;
        gap: 28px;
        margin-top: 28px;
        flex-wrap: wrap;
    }

    .dsvc-spring-stats span {
        display: block;
        font-family: var(--font-d);
        font-size: 22px;
        color: var(--accent);
    }

    .dsvc-spring-stats small {
        display: block;
        font-family: var(--font-m);
        font-size: 9px;
        letter-spacing: 0.14em;
        color: var(--text-light);
        margin-top: 4px;
        text-transform: uppercase;
    }

    /* 04 opener */
    .dsvc-opener {
        background: linear-gradient(135deg, rgba(253, 201, 13, 0.12) 0%, rgba(233, 30, 99, 0.06) 45%, var(--bg-warm) 70%);
        padding: 70px 0;
    }

    .dsvc-opener-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .dsvc-opener-title {
        font-family: var(--font-d);
        color: var(--text);
        font-size: clamp(28px, 3.2vw, 42px);
    }

    .dsvc-opener-desc {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.8;
        margin-top: 16px;
    }

    .dsvc-opener-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 22px;
    }

    .dsvc-opener-tags span {
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: 0.1em;
        background: var(--bg-card);
        border: 1px solid var(--line-amber);
        border-radius: 50px;
        padding: 7px 14px;
        color: var(--accent);
    }

    /* 05 panel */
    .dsvc-panel-svc {
        background: var(--bg-card);
        padding: 70px 0;
    }

    .dsvc-panel-inner {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: start;
    }

    .dsvc-panel-title {
        font-family: var(--font-d);
        color: var(--text);
        font-size: clamp(28px, 3.2vw, 42px);
    }

    .dsvc-panel-desc {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.8;
        margin-top: 16px;
    }

    .dsvc-panel-side {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .dsvc-specsheet {
        border: 1px solid var(--line-amber);
        border-radius: 6px;
        padding: 6px;
        background: var(--bg-warm);
    }

    .dsvc-specsheet-row {
        display: flex;
        justify-content: space-between;
        padding: 12px 14px;
        font-size: 11px;
        letter-spacing: 0.06em;
        color: var(--text-muted);
        border-bottom: 1px dashed var(--line-soft);
    }

    .dsvc-specsheet-row:last-child {
        border-bottom: none;
    }

    .dsvc-specsheet-row span:first-child {
        color: var(--accent);
        font-weight: 700;
    }

    /* 06 emergency */
    .dsvc-emergency {
        background: var(--bg-warm);
        padding: 0 0 70px;
        border: 1px solid var(--line-amber);
    }

    .dsvc-emergency-ticker {
        white-space: nowrap;
        overflow: hidden;
        font-size: 10px;
        letter-spacing: 0.2em;
        color: var(--accent);
        padding: 12px 0;
        border-bottom: 1px solid var(--line-magenta);
        margin-bottom: 50px;
        background: linear-gradient(90deg, rgba(255, 235, 59, 0.12), rgba(255, 152, 0, 0.08), rgba(233, 30, 99, 0.1));
    }

    .dsvc-emergency-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--magenta);
        position: absolute;
        left: 0;
        top: 8px;
        animation: emergency-pulse 1.8s ease-out infinite;
    }

    @keyframes emergency-pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.45);
        }

        100% {
            box-shadow: 0 0 0 12px rgba(233, 30, 99, 0);
        }
    }

    .dsvc-emergency-title {
        font-family: var(--font-d);
        color: var(--text);
        font-size: clamp(28px, 3.2vw, 42px);
    }

    .dsvc-emergency-desc {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.8;
        margin-top: 16px;
    }

    .dsvc .service-area {
        margin-top: 60px;
        padding-top: 60px;
        border-top: 1px solid var(--line-amber);
    }

    .dsvc-progress {
        position: fixed;
        right: 22px;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 220px;
        background: var(--line-soft);
        z-index: 20;
        opacity: 0;
        transition: opacity .3s ease;
        pointer-events: none;
        border-radius: 2px;
    }

    .dsvc-progress.show {
        opacity: 1;
    }

    .dsvc-progress-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: var(--grad);
        border-radius: 2px;
        transition: height .1s linear;
    }

    @media (max-width:900px) {

        .dsvc-repair-inner,
        .dsvc-spring-layout,
        .dsvc-opener-inner,
        .dsvc-panel-inner,
        .dsvc-emergency-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .dsvc-repair-media,
        .dsvc-media img {
            min-height: 240px;
        }

        .dsvc-progress {
            display: none;
        }
    }

    @media (max-width:820px) {
        .dsvc-panel-inner {
            grid-template-columns: 1fr;
        }
    }