/* ============================================================
   AVATAR ELECTRICAL — main.css
   Orange (#ea5b0b) + white · industrial editorial
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
    --orange:     #ea5b0b;       /* exact brand orange from original logo */
    --orange-2:   #f57321;       /* hover/lighter */
    --orange-3:   #c44d09;       /* darker / pressed */
    --orange-tint:#fff1e6;
    --orange-glow:rgba(234,91,11,0.25);

    --paper:      #ffffff;
    --paper-2:    #faf7f2;       /* warm off-white for alt sections */
    --paper-3:    #f1ece4;
    --paper-line: #e3ddd1;

    --ink:        #14161b;       /* near-black for text + dark sections */
    --ink-2:      #1d2028;
    --ink-3:      #2b2f39;
    --line-dark:  rgba(255,255,255,0.08);

    --text:       #14161b;
    --text-mute:  #5e6571;
    --text-light: rgba(255,255,255,0.78);
    --text-light-strong: rgba(255,255,255,0.94);

    --ff-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --ff-mono:    'JetBrains Mono', ui-monospace, 'Courier New', monospace;
    --ff-body:    'Sora', system-ui, sans-serif;

    --container: 1440px;
    --container-narrow: 820px;

    --t-fast: 160ms cubic-bezier(.4,0,.2,1);
    --t-base: 280ms cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
hr { border: 0; border-top: 1px solid var(--paper-line); margin: 2rem 0; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--ink); color: var(--orange); padding: .75rem 1rem;
    z-index: 999; font-family: var(--ff-mono); font-size: .8rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- TYPOGRAPHY ---------- */
.ts-mono { font-family: var(--ff-mono); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; font-size: .72rem; }

.eyebrow {
    display: inline-block;
    color: var(--orange);
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem .55rem;
    border: 1px solid var(--orange);
    background: var(--paper);
    margin-bottom: 1.5rem;
}
.eyebrow-light {
    color: var(--orange);
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1, h2, h3, h4 { margin: 0; font-family: var(--ff-display); font-weight: 800; line-height: .95; letter-spacing: -.005em; text-transform: uppercase; }

.accent { color: var(--paper); position: relative; display: inline; padding: 0 .15em; background: var(--orange); box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 2.5rem); }
.container-narrow { max-width: var(--container-narrow); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); max-width: 880px; }
.section-head-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: end; max-width: none; }
.section-sub-right { margin: 0; max-width: 460px; justify-self: end; color: var(--text-mute); }
@media (max-width: 800px) { .section-head-split { grid-template-columns: 1fr; } .section-sub-right { justify-self: start; } }

.section-label { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1.25rem; }
.section-label .num { font-family: var(--ff-mono); font-weight: 700; font-size: .8rem; color: var(--orange); }
.section-label .bar { display: inline-block; width: 32px; height: 2px; background: var(--orange); }
.section-label .lbl { font-family: var(--ff-mono); font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }

.section-h { font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: .92; max-width: 14ch; }
.section-sub { margin-top: 1.25rem; font-size: 1.06rem; max-width: 60ch; color: var(--text-mute); }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .95rem 1.35rem;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
    line-height: 1;
}
.btn .ts-mono { font-size: .65rem; opacity: .7; }
.btn-lg { padding: 1.15rem 1.6rem; font-size: 1.2rem; }
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--orange); color: var(--paper); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-3); border-color: var(--orange-3); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-ghost.btn-light { color: var(--text-light-strong); border-color: rgba(255,255,255,0.45); }
.btn-ghost.btn-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn-block { width: 100%; justify-content: center; }

.link-arrow {
    display: inline-flex; align-items: center; gap: .45rem;
    font-family: var(--ff-display); font-weight: 700;
    text-transform: uppercase; letter-spacing: .02em;
    font-size: 1.05rem;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 2px;
    color: var(--ink);
    transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow:hover { gap: .75rem; color: var(--orange); }

/* ---------- TOP STRIP ---------- */
.topstrip {
    background: var(--ink);
    color: var(--text-light);
    border-bottom: 3px solid var(--orange);
    font-size: .78rem;
}
.topstrip-inner {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    padding-top: .65rem; padding-bottom: .65rem;
}
.ts-item { display: inline-flex; align-items: center; gap: .4rem; }
.ts-sep { color: var(--ink-3); }
.ts-spacer { flex: 1; }
.ts-cta { color: var(--orange); font-weight: 600; transition: opacity var(--t-fast); }
.ts-cta:hover { opacity: .85; }
.ts-cta .ts-mono { color: var(--text-light); margin-right: .15rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px var(--orange-glow); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px var(--orange-glow); } 50% { box-shadow: 0 0 0 7px rgba(234,91,11,0.10); } }

@media (max-width: 720px) {
    .topstrip { font-size: .7rem; }
    .topstrip .ts-sep, .topstrip .ts-spacer { display: none; }
    .topstrip-inner { gap: .65rem; }
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: var(--paper);
    color: var(--ink);
    border-top: 3px solid var(--orange);
    border-bottom: 1px solid var(--paper-line);
    box-shadow: 0 1px 0 0 var(--paper-line), 0 8px 24px -16px rgba(0,0,0,0.08);
}
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}
.site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: clamp(.75rem, 2vw, 1.75rem);
    align-items: center;
    padding-top: 1rem; padding-bottom: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--ink); }
.brand-logo { display: block; height: 110px; width: auto; max-width: none; aspect-ratio: 763 / 288; }
.brand-logo-footer { height: 96px; }

.primary-nav { justify-self: end; padding-right: clamp(.25rem, 1vw, 1rem); }
.nav-menu { display: flex; gap: clamp(1rem, 1.6vw, 1.5rem); align-items: center; }
.nav-menu li { font-family: var(--ff-display); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; }
.nav-menu li > a { padding: .35rem 0; position: relative; transition: color var(--t-fast); color: var(--ink); }
.nav-menu li > a::after {
    content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
    background: var(--orange); transition: width var(--t-fast);
}
.nav-menu li > a:hover { color: var(--orange); }
.nav-menu li > a:hover::after { width: 100%; }

.header-cta {
    display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.1;
    padding: .55rem .9rem;
    background: var(--orange);
    color: var(--paper);
    transition: background var(--t-fast);
    flex: 0 0 auto; white-space: nowrap;
}
.header-cta:hover { background: var(--orange-3); }
.header-cta-label { font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; opacity: .9; white-space: nowrap; }
.header-cta-num { font-family: var(--ff-display); font-weight: 800; font-size: 1rem; white-space: nowrap; }

.nav-toggle {
    display: none; width: 44px; height: 44px;
    align-items: center; justify-content: center; gap: 5px; flex-direction: column;
    border: 1px solid var(--ink);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }

@media (max-width: 980px) {
    .primary-nav, .header-cta { display: none; }
    .nav-toggle { display: inline-flex; }
    .site-header-inner { grid-template-columns: 1fr auto; }
}

.mobile-nav {
    background: var(--paper-2); border-top: 1px solid var(--paper-line);
    padding: 1.25rem 1.25rem 1.5rem;
}
.mobile-nav .nav-menu { flex-direction: column; gap: 0; }
.mobile-nav .nav-menu li { border-bottom: 1px solid var(--paper-line); }
.mobile-nav .nav-menu li > a { display: block; padding: 1rem 0; color: var(--ink); }
.mobile-cta { display: block; margin-top: 1rem; padding: 1rem; background: var(--orange); color: var(--paper); text-align: center; font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; letter-spacing: .02em; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: var(--paper);
    color: var(--ink);
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
    isolation: isolate;
    border-bottom: 1px solid var(--paper-line);
}
.hero-grid-bg {
    position: absolute; inset: 0; z-index: -1;
    background-image:
        linear-gradient(to right, rgba(234,91,11,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(234,91,11,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black 40%, transparent 100%);
}
.hero-noise {
    position: absolute; inset: 0; z-index: -1; opacity: .4;
    background:
        radial-gradient(circle at 80% 20%, rgba(234,91,11,0.08), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(234,91,11,0.05), transparent 45%);
}
.hero-inner {
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: clamp(1.75rem, 4vw, 3rem);
    position: relative;
}
.status-pill {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .4rem .7rem;
    border: 1px solid var(--paper-line);
    background: var(--paper);
    color: var(--text-mute);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #21a341; box-shadow: 0 0 0 4px rgba(33,163,65,0.18); animation: pulse-green 2.2s ease-in-out infinite; }
@keyframes pulse-green { 0%, 100% { box-shadow: 0 0 0 4px rgba(33,163,65,0.18); } 50% { box-shadow: 0 0 0 7px rgba(33,163,65,0.04); } }

.hero-headline {
    font-size: clamp(3.4rem, 11vw, 9.5rem);
    line-height: .88;
    letter-spacing: -.018em;
    text-transform: uppercase;
    margin: 0;
    max-width: 14ch;
    color: var(--ink);
}
.hero-headline .line { display: block; animation: rise .9s cubic-bezier(.2,.8,.2,1) both; }
.hero-headline .line:nth-child(1) { animation-delay: .05s; }
.hero-headline .line:nth-child(2) { animation-delay: .15s; }
.hero-headline .line:nth-child(3) { animation-delay: .25s; }
.hero-headline .line:nth-child(4) { animation-delay: .35s; }
.hero-headline .line-accent { color: var(--orange); }
.hero-headline .line-pre { font-weight: 500; color: var(--text-mute); font-size: .32em; letter-spacing: .04em; text-transform: none; font-family: var(--ff-body); margin-bottom: .35em; }
.hero-headline .line-mid { font-size: .85em; }
.hero-headline .line-thin { font-weight: 500; color: var(--text-mute); font-size: .32em; letter-spacing: 0; text-transform: none; font-family: var(--ff-body); margin-top: .35em; }
.hero-headline .line-strike {
    display: inline-block;
    border-top: 2px solid var(--ink);
    padding-top: .25em;
    font-size: .8em;
}

@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero-foot {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
    border-top: 1px solid var(--paper-line);
    padding-top: clamp(1.5rem, 3vw, 2.25rem);
}
.hero-lede p { margin: 0; font-size: clamp(1rem, 1.4vw, 1.18rem); color: var(--text-mute); max-width: 56ch; }
.hero-cta-row { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero-spec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    margin-top: clamp(1rem, 2vw, 1.5rem);
    background: var(--paper-2);
}
.spec-row {
    padding: 1rem 1.25rem;
    border-right: 1px solid var(--paper-line);
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.spec-row:last-child { border-right: 0; }
.spec-key { color: var(--text-mute); font-size: .65rem; }
.spec-val { color: var(--orange); font-size: 1.05rem; font-weight: 700; }

@media (max-width: 800px) {
    .hero-foot { grid-template-columns: 1fr; }
    .hero-spec { grid-template-columns: repeat(2, 1fr); }
    .spec-row:nth-child(2) { border-right: 0; }
    .spec-row:nth-child(1), .spec-row:nth-child(2) { border-bottom: 1px solid var(--paper-line); }
}

/* ---------- MARQUEE ---------- */
.marquee {
    background: var(--orange);
    color: var(--paper);
    overflow: hidden;
    padding: 1.1rem 0;
    border-top: 1px solid var(--orange-3);
    border-bottom: 1px solid var(--orange-3);
}
.marquee-track {
    display: flex; gap: 1.5rem; align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: marquee 50s linear infinite;
}
.marquee-item { font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; letter-spacing: .015em; }
.marquee-sep { font-size: 1rem; opacity: .65; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- BRAND STRIP ---------- */
.brand-strip { background: var(--paper); color: var(--ink); padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 4vw, 3.5rem); border-top: 1px solid var(--paper-line); }
.brand-strip-eyebrow { color: var(--orange); display: block; margin-bottom: 1.25rem; font-size: .8rem; letter-spacing: .12em; }
.brand-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); }
.brand-track { display: flex; align-items: center; width: max-content; animation: marquee 45s linear infinite; }
.brand-item { flex: 0 0 auto; height: 64px; padding-right: clamp(2.5rem, 5vw, 4.5rem); display: flex; align-items: center; justify-content: center; opacity: .85; transition: opacity .2s ease; }
.brand-item:hover { opacity: 1; }
.brand-item img { height: 100%; width: auto; max-width: 220px; object-fit: contain; }
@media (max-width: 700px) { .brand-item { height: 48px; padding-right: 2.25rem; } .brand-track { animation-duration: 30s; } }

/* ---------- SERVICES ---------- */
.services { padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); background: var(--paper); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 2px solid var(--ink);
    border-left: 2px solid var(--ink);
}
.service-card {
    padding: clamp(1.5rem, 2.4vw, 2.25rem);
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    display: flex; flex-direction: column;
    gap: 1rem;
    transition: background var(--t-base), color var(--t-base);
    position: relative;
}
.service-card-feature { background: var(--orange); color: var(--paper); }
.service-card-feature .service-list li { color: var(--paper); border-bottom-color: rgba(255,255,255,0.25); }
.service-card-feature .service-list li::before { color: var(--paper); }
.service-card-feature .link-arrow { color: var(--paper); border-bottom-color: var(--paper); }
.service-card-feature .service-tag { color: var(--paper); border-color: var(--paper); }

.service-card:hover { background: var(--orange); color: var(--paper); }
.service-card:hover .service-list li { color: var(--paper); border-bottom-color: rgba(255,255,255,0.25); }
.service-card:hover .service-tag { color: var(--paper); border-color: var(--paper); }
.service-card:hover .service-list li::before { color: var(--paper); }
.service-card:hover .link-arrow { color: var(--paper); border-bottom-color: var(--paper); }

.service-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .25rem; }
.service-num { font-size: .85rem; font-weight: 700; }
.service-tag { font-size: .65rem; padding: .25rem .5rem; border: 1px solid currentColor; }

.service-h { font-size: clamp(1.7rem, 2.6vw, 2.4rem); margin-top: .25rem; }
.service-desc { font-size: 1rem; line-height: 1.55; }
.service-list { display: flex; flex-direction: column; gap: 0; margin-top: auto; }
.service-list li {
    position: relative;
    padding: .65rem 0 .65rem 1.4rem;
    font-size: .92rem;
    border-bottom: 1px solid var(--paper-line);
}
.service-list li::before {
    content: '/'; position: absolute; left: 0; top: .65rem;
    font-family: var(--ff-mono); font-weight: 700; color: var(--orange);
}
.service-card .link-arrow { margin-top: 1rem; align-self: flex-start; }

@media (max-width: 980px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

.service-extra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.extra-tile {
    padding: 1.4rem 1.5rem;
    border: 1.5px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    column-gap: 1rem;
    row-gap: .35rem;
    align-items: start;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.extra-tile:hover { background: var(--orange); color: var(--paper); border-color: var(--orange); }
.extra-tag { grid-column: 1; grid-row: 1; font-size: .65rem; }
.extra-arrow { grid-column: 2; grid-row: 1 / span 3; align-self: center; font-size: 2rem; font-family: var(--ff-display); font-weight: 800; }
.extra-h { grid-column: 1; grid-row: 2; font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; text-transform: uppercase; }
.extra-desc { grid-column: 1; grid-row: 3; font-size: .9rem; color: var(--text-mute); }
.extra-tile:hover .extra-desc { color: var(--paper); }

@media (max-width: 800px) { .service-extra { grid-template-columns: 1fr; } }

/* ---------- STATS ---------- */
.stats { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--paper-2); border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-left: 1px solid var(--paper-line); }
.stat { padding: 1.5rem clamp(1rem, 2vw, 2rem); border-right: 1px solid var(--paper-line); }
.stat-num {
    display: block;
    font-family: var(--ff-display); font-weight: 800;
    font-size: clamp(3.5rem, 7vw, 5.5rem); line-height: .9;
    color: var(--orange);
    letter-spacing: -.02em;
}
.stat-sup { font-size: .5em; vertical-align: super; color: var(--orange); margin-left: .04em; }
.stat-label { display: block; margin-top: .85rem; font-size: .92rem; color: var(--text-mute); line-height: 1.4; }

@media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr 1fr; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--paper-line); } }
@media (max-width: 480px) { .stat-grid { grid-template-columns: 1fr; } .stat { border-bottom: 1px solid var(--paper-line); } }

/* ---------- PROCESS ---------- */
.process { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--paper); }
.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    counter-reset: step;
    border-top: 2px solid var(--ink);
}
.process-step {
    padding: clamp(1.5rem, 2.4vw, 2.25rem) clamp(1.25rem, 2vw, 1.75rem);
    border-right: 1px solid var(--paper-line);
    position: relative;
}
.process-step:last-child { border-right: 0; }
.process-num { display: block; color: var(--orange); font-size: .72rem; margin-bottom: 1rem; }
.process-h { font-size: 1.85rem; margin-bottom: .65rem; }
.process-step p { margin: 0; color: var(--text-mute); font-size: .98rem; }

@media (max-width: 900px) { .process-list { grid-template-columns: 1fr 1fr; } .process-step { border-bottom: 1px solid var(--paper-line); } .process-step:nth-child(2) { border-right: 0; } }
@media (max-width: 540px) { .process-list { grid-template-columns: 1fr; } .process-step { border-right: 0; } }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--paper-2); }

.google-rating {
    display: inline-flex; align-items: center; gap: .85rem;
    padding: .85rem 1.1rem;
    border: 1.5px solid var(--ink);
    background: var(--paper);
    margin-bottom: 1.5rem;
}
.google-rating-mark {
    width: 28px; height: 28px;
    flex-shrink: 0;
}
.google-rating-text { display: flex; flex-direction: column; line-height: 1.1; gap: .2rem; }
.google-rating-num { font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); display: inline-flex; align-items: center; gap: .5rem; }
.google-rating-stars { display: inline-flex; gap: 1px; color: #fbbc04; font-size: 1rem; }
.google-rating-meta { font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote {
    margin: 0;
    padding: 2.25rem 1.85rem 1.85rem;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-left: 4px solid var(--orange);
    display: flex; flex-direction: column; gap: 1.5rem;
    position: relative;
}
.quote::before {
    content: '“';
    position: absolute; top: -.4rem; left: 1rem;
    font-family: var(--ff-display); font-weight: 800;
    font-size: 5rem; line-height: 1; color: var(--orange);
}
.quote blockquote { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--ink); padding-top: 1.25rem; }
.quote-stars { color: #fbbc04; font-size: 1rem; letter-spacing: 1px; }
.quote figcaption { display: flex; flex-direction: column; gap: .25rem; padding-top: 1rem; border-top: 1px solid var(--paper-line); }
.quote-author { font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; color: var(--ink); }
.quote-meta { color: var(--text-mute); font-size: .65rem; }

.quote-foot { margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.quote-foot-link { font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; font-size: 1rem; color: var(--ink); border-bottom: 2px solid var(--orange); padding-bottom: 2px; transition: color var(--t-fast), gap var(--t-fast); display: inline-flex; align-items: center; gap: .45rem; }
.quote-foot-link:hover { color: var(--orange); gap: .75rem; }

@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

/* ---------- AREAS ---------- */
.areas { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--paper); }
.area-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.area-pill {
    display: inline-flex; align-items: center;
    padding: .5rem .85rem;
    font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .03em;
    border: 1px solid var(--ink); background: var(--paper); color: var(--ink);
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
    cursor: default;
}
.area-pill:hover { background: var(--orange); color: var(--paper); border-color: var(--orange); }
.area-pill-more { background: var(--orange); color: var(--paper); border-color: var(--orange); }

/* ---------- BIG CTA ---------- */
.big-cta {
    position: relative;
    background: var(--orange);
    color: var(--paper);
    padding: clamp(4rem, 9vw, 8rem) 0;
    overflow: hidden;
    isolation: isolate;
}
.big-cta-grid-bg {
    position: absolute; inset: 0; z-index: -1;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 100%);
}
.big-cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.big-cta .eyebrow-light { color: var(--paper); }
.big-cta-h {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: .95;
    letter-spacing: -.01em;
    max-width: 18ch;
    color: var(--paper);
}
.big-cta-h span { display: block; }
.big-cta-h span:nth-child(2) { color: var(--ink); }
.big-cta-sub { font-size: 1.1rem; color: var(--text-light-strong); margin: 0; max-width: 50ch; }
.big-cta-num {
    display: inline-block;
    font-family: var(--ff-display); font-weight: 900;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 1;
    color: var(--paper);
    margin-top: 1rem;
    border-bottom: 4px solid var(--paper);
    padding-bottom: .25rem;
    transition: transform var(--t-fast), color var(--t-fast);
}
.big-cta-num:hover { transform: scale(1.02); color: var(--ink); border-color: var(--ink); }
.big-cta-foot { display: flex; gap: .85rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; }
.big-cta-foot .btn-ghost.btn-light:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ---------- CTA STRIP (inner pages) ---------- */
.cta-strip { background: var(--orange); color: var(--paper); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.cta-strip-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-strip .ts-mono { color: var(--ink); }
.cta-strip-h { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-top: .5rem; max-width: 22ch; color: var(--paper); }
.cta-strip-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cta-strip .btn-primary { background: var(--paper); color: var(--orange); border-color: var(--paper); }
.cta-strip .btn-primary:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cta-strip .btn-ghost { color: var(--paper); border-color: var(--paper); }
.cta-strip .btn-ghost:hover { background: var(--paper); color: var(--orange); border-color: var(--paper); }
@media (max-width: 800px) { .cta-strip-inner { grid-template-columns: 1fr; } }

/* ---------- PAGE HERO (inner) ---------- */
.page-hero {
    position: relative;
    background: var(--paper);
    color: var(--ink);
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--paper-line);
}
.page-hero .eyebrow { background: var(--paper); color: var(--orange); border-color: var(--orange); }
.page-hero-grid {
    position: absolute; inset: 0; z-index: -1;
    background-image:
        linear-gradient(to right, rgba(234,91,11,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(234,91,11,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 30%, transparent 100%);
}
.page-title { font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: .9; letter-spacing: -.015em; max-width: 18ch; color: var(--ink); }
.page-lede { margin-top: 1.25rem; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-mute); max-width: 60ch; }

/* ---------- PAGE BODY / PROSE ---------- */
.page-body { padding: clamp(3rem, 6vw, 5rem) 0; }
.prose { font-size: 1.06rem; line-height: 1.7; color: var(--text); }
.prose h2 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); text-transform: uppercase; margin: 3rem 0 1rem; line-height: 1; letter-spacing: -.005em; color: var(--ink); }
.prose h3 { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.35rem, 2.3vw, 1.7rem); text-transform: uppercase; margin: 2.25rem 0 .75rem; letter-spacing: 0; color: var(--ink); }
.prose p { margin: 0 0 1.15rem; }
.prose a { color: var(--orange); border-bottom: 1.5px solid var(--orange); padding-bottom: 1px; transition: background var(--t-fast), color var(--t-fast); }
.prose a:hover { background: var(--orange); color: var(--paper); }
.prose ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.prose ul li { display: flex; align-items: center; gap: .85rem; padding: .65rem 0; border-bottom: 1px dashed var(--paper-line); }
.prose ul li::before { content: '/'; flex: 0 0 auto; font-family: var(--ff-mono); font-weight: 700; color: var(--paper); background: var(--orange); padding: .25rem .55rem .35rem; line-height: 1; font-size: .85rem; }
.prose ol { padding-left: 1.4rem; margin: 1rem 0 1.5rem; }
.prose blockquote { border-left: 3px solid var(--orange); padding: .25rem 0 .25rem 1.25rem; margin: 1.5rem 0; font-family: var(--ff-display); font-weight: 500; font-size: 1.4rem; line-height: 1.3; text-transform: none; color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose hr { margin: 3rem 0; border-top: 1px solid var(--paper-line); }

/* ---------- POST GRID ---------- */
.post-list { padding: clamp(3rem, 6vw, 5rem) 0; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { padding: 1.5rem; border: 1px solid var(--paper-line); background: var(--paper); display: flex; flex-direction: column; gap: 1rem; transition: background var(--t-fast); }
.post-card:hover { background: var(--paper-2); }
.post-date { color: var(--text-mute); font-size: .7rem; }
.post-title { font-size: 1.5rem; color: var(--ink); }
.post-title a:hover { color: var(--orange); }
.post-excerpt { color: var(--text-mute); font-size: .95rem; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

/* ---------- ERROR ---------- */
.error-hero { padding: clamp(5rem, 10vw, 9rem) 0; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--ink);
    color: var(--text-light);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 1.5rem;
    position: relative;
    border-top: 4px solid var(--orange);
    overflow: hidden;
    isolation: isolate;
}
.footer-grid-bg {
    position: absolute; inset: 0; z-index: -1; opacity: .5;
    background-image:
        linear-gradient(to right, var(--line-dark) 1px, transparent 1px),
        linear-gradient(to bottom, var(--line-dark) 1px, transparent 1px);
    background-size: 80px 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 3rem;
}
.footer-col .brand { color: var(--paper); margin-bottom: 1.25rem; }
.footer-col .brand-logo {
    opacity: 1;
}
.footer-tag { font-size: .95rem; max-width: 32ch; margin: 0 0 1rem; color: var(--text-light); }
.footer-meta { font-size: .85rem; color: var(--text-light); margin: 0; line-height: 1.7; }
.footer-meta .ts-mono { color: var(--orange); margin-right: .35rem; font-size: .7rem; }
.footer-heading { font-family: var(--ff-display); font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); margin-bottom: 1rem; }
.footer-list { display: flex; flex-direction: column; gap: .55rem; font-size: .92rem; }
.footer-list a { transition: color var(--t-fast); border-bottom: 1px solid transparent; padding-bottom: 1px; color: var(--text-light); }
.footer-list a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.footer-addr { color: var(--text-light); }
.footer-cta-h { font-size: 1.6rem; margin: .5rem 0 1.25rem; line-height: 1; max-width: 18ch; color: var(--paper); }
.footer-cta .btn { margin-bottom: .65rem; }
.footer-cta .btn-ghost { color: var(--text-light-strong); border-color: rgba(255,255,255,0.45); }
.footer-cta .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.footer-bar {
    border-top: 1px solid var(--ink-3);
    padding-top: 1.25rem;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
    font-size: .7rem;
    color: var(--text-light);
}
.footer-bar .ts-mono { color: var(--text-light); }

@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- UTILITIES ---------- */
::selection { background: var(--orange); color: var(--paper); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .marquee-track { animation: none; }
}
