/* =========================================================
   TURBOFIX GARAGE · Design System
   Aesthetic: Industrial / Performance / Editorial-tactical
   ========================================================= */

:root {
    /* Core palette */
    --bg: #0a0a0b;
    --bg-elev: #111114;
    --bg-card: #16161a;
    --bg-card-hover: #1c1c22;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);

    --text: #f4f4f5;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;

    /* Brand accent — electric amber, fluorescent traffic-cone vibe */
    --accent: #ffb300;
    --accent-hot: #ff6a00;
    --accent-glow: rgba(255, 179, 0, 0.4);

    /* Secondary accents */
    --danger: #ef4444;
    --cyan: #22d3ee;
    --mint: #34d399;

    /* Type */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Layout */
    --container: 1280px;
    --radius: 4px;
    --radius-lg: 12px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-snap: cubic-bezier(0.7, 0, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Grain overlay ---------- */
.grain-overlay {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: rgba(10, 10, 11, 0.7);
    border-bottom: 1px solid var(--line);
    transition: padding 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(10, 10, 11, 0.92); }

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--text);
}
.brand-mark {
    width: 36px; height: 36px;
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.4s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.1); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.08em;
}
.brand-sub {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-top: 0.2rem;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex; align-items: center; gap: 2rem;
}
.nav-links li a:not(.btn-pill) {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}
.nav-links li a:not(.btn-pill):hover { color: var(--text); }
.nav-links li a.active {
    color: var(--accent);
}
.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

/* Pill button */
.btn-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent);
    color: #0a0a0b !important;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: all 0.25s var(--ease);
    box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-pill:hover {
    background: #ffc847;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-pill span { transition: transform 0.25s var(--ease); }
.btn-pill:hover span { transform: translateX(4px); }

/* Outline button variant */
.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1px solid var(--line-strong);
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.25s var(--ease);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Mobile nav */
.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--text);
    transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--bg-elev);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 1.5rem 2rem;
        transform: translateY(-110%);
        transition: transform 0.3s var(--ease);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links li { border-bottom: 1px solid var(--line); }
    .nav-links li:last-child { border: none; padding-top: 1rem; }
    .nav-links li a:not(.btn-pill) { display: block; padding: 1rem 0; font-size: 1rem; }
    .nav-links li a.active::after { display: none; }
}

/* ---------- Layout helpers ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

main { padding-top: 70px; }

/* Section padding */
.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }

/* ---------- Reusable ---------- */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin: 1rem 0 1.5rem;
    text-transform: uppercase;
}
.section-title em {
    font-style: normal;
    color: var(--accent);
    font-family: inherit;
}
.section-lede {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 60ch;
    line-height: 1.6;
}

/* ============================================================
   HOME · Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at top right, rgba(255, 179, 0, 0.08), transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(255, 106, 0, 0.05), transparent 50%),
                var(--bg);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* The blurred amber blob */
.hero-blob {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    filter: blur(120px);
    opacity: 0.25;
    top: -100px;
    right: -150px;
    animation: blob-float 14s ease-in-out infinite;
}
@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-40px, 40px) scale(1.1); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 1.5rem;
    max-width: var(--container);
    margin: 0 auto;
}

.hero-content { animation: rise 1s var(--ease) both; }
.hero-content > * { animation: rise 0.9s var(--ease) both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }

@keyframes rise {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    margin: 1.5rem 0 1.5rem;
}
.hero-headline .line-2 {
    display: block;
    color: var(--accent);
    position: relative;
}
.hero-headline .line-2::after {
    content: '';
    display: inline-block;
    width: 0.6em;
    height: 0.12em;
    background: var(--accent);
    margin-left: 0.2em;
    vertical-align: middle;
    animation: blink 1.2s steps(2, end) infinite;
    box-shadow: 0 0 20px var(--accent-glow);
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 50ch;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-meta {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    line-height: 1;
}
.hero-meta-lbl {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* Hero visual — illustrated SVG car composition */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rise 1.2s var(--ease) 0.4s both;
}
.hero-visual-frame {
    position: absolute;
    inset: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.05), transparent 70%);
}
.hero-visual-corner {
    position: absolute;
    width: 32px; height: 32px;
    border: 2px solid var(--accent);
}
.hero-visual-corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-visual-corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.hero-visual-corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.hero-visual-corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero-svg { width: 85%; height: auto; position: relative; z-index: 2; }
.hero-tag {
    position: absolute;
    background: var(--bg-elev);
    border: 1px solid var(--line-strong);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 0.5rem;
    z-index: 3;
    animation: pulse-tag 3s ease-in-out infinite;
}
.hero-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 8px var(--mint);
}
.hero-tag.t1 { top: 12%; left: -8%; }
.hero-tag.t2 { top: 50%; right: -10%; animation-delay: 1s; }
.hero-tag.t3 { bottom: 18%; left: 0%; animation-delay: 2s; }
@keyframes pulse-tag {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   HOME · Marquee strip
   ============================================================ */
.marquee {
    background: var(--accent);
    color: #0a0a0b;
    padding: 1.1rem 0;
    overflow: hidden;
    border-top: 2px solid #0a0a0b;
    border-bottom: 2px solid #0a0a0b;
    transform: rotate(-1.5deg);
    margin: 0 -2rem;
    position: relative;
    z-index: 2;
}
.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    width: max-content;
}
.marquee-item {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 3rem;
}
.marquee-item::after {
    content: '✦';
    color: #0a0a0b;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   HOME · Services preview
   ============================================================ */
.services-preview {
    background: var(--bg);
    padding: 7rem 0;
    position: relative;
}

.services-preview-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
    margin-bottom: 4rem;
}
@media (max-width: 768px) {
    .services-preview-header { grid-template-columns: 1fr; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.service-card:hover {
    border-color: var(--line-strong);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.service-card-arrow {
    color: var(--text-dim);
    align-self: flex-end;
    transition: all 0.3s var(--ease);
}
.service-card:hover .service-card-arrow {
    color: var(--accent);
    transform: translate(4px, -4px);
}

/* ============================================================
   HOME · Stats band
   ============================================================ */
.stats-band {
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.stat {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
@media (max-width: 768px) {
    .stat { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 2rem; }
    .stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
    color: var(--accent);
    letter-spacing: 0.01em;
}
.stat-lbl {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ============================================================
   HOME · Process / Why us
   ============================================================ */
.process {
    padding: 7rem 0;
    background: var(--bg);
    position: relative;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}
@media (max-width: 900px) { .process-content { grid-template-columns: 1fr; gap: 3rem; } }

.process-steps {
    display: flex; flex-direction: column;
    gap: 0;
}
.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: padding-left 0.3s var(--ease);
}
.process-step:hover { padding-left: 0.75rem; }
.process-step:last-child { border-bottom: none; }
.process-step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--text-dim);
    transition: color 0.3s var(--ease);
}
.process-step:hover .process-step-num { color: var(--accent); }
.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================================
   HOME · Testimonials
   ============================================================ */
.testimonials {
    padding: 7rem 0;
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.5;
    color: var(--accent);
    opacity: 0.4;
    position: absolute;
    top: 1.5rem; right: 1.5rem;
}
.testimonial-stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}
.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-meta {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.testimonial-name { font-weight: 600; }
.testimonial-car { color: var(--text-dim); font-family: var(--font-mono); font-size: 0.75rem; }

/* ============================================================
   HOME · CTA banner
   ============================================================ */
.cta-banner {
    padding: 5rem 0;
    background: var(--bg);
}
.cta-card {
    background: linear-gradient(135deg, #1a1a20 0%, #0f0f12 100%);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--accent), transparent 50%, var(--accent-hot));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 1rem 0 1rem;
}
.cta-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 50ch;
    margin-left: auto; margin-right: auto;
}

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
    padding: 8rem 0 5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin: 1rem 0 1.5rem;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 60ch;
}

/* Breadcrumb */
.crumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.crumb a { color: var(--text-muted); transition: color 0.2s; }
.crumb a:hover { color: var(--accent); }
.crumb span { color: var(--accent); }

/* ============================================================
   ABOUT page
   ============================================================ */
.about-story {
    padding: 6rem 0;
    background: var(--bg);
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 900px) { .about-story-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--line);
}
.about-image-tag {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: var(--accent);
    color: #0a0a0b;
    padding: 0.6rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-story p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.about-story p strong { color: var(--text); font-weight: 600; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
    border: 1px solid var(--line);
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--bg-card);
}
.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.value-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Timeline */
.timeline {
    padding: 6rem 0;
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.timeline-track {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.timeline-track::before {
    content: '';
    position: absolute;
    top: 30px; left: 0; right: 0;
    height: 1px;
    background: var(--line-strong);
}
@media (max-width: 768px) {
    .timeline-track { grid-template-columns: 1fr; }
    .timeline-track::before { display: none; }
}
.timeline-item { position: relative; }
.timeline-item::before {
    content: '';
    position: absolute;
    top: 22px; left: 50%;
    transform: translateX(-50%);
    width: 16px; height: 16px;
    background: var(--accent);
    border: 4px solid var(--bg-elev);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent), 0 0 20px var(--accent-glow);
}
@media (max-width: 768px) { .timeline-item::before { display: none; } }
.timeline-year {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 3rem;
}
@media (max-width: 768px) { .timeline-year { margin-bottom: 1rem; } }
.timeline-item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}
.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Team */
.team {
    padding: 6rem 0;
    background: var(--bg);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .team-grid { grid-template-columns: 1fr; } }

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}
.team-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
}
.team-card-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-elev));
    position: relative;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid var(--line);
}
.team-card-photo svg {
    width: 60%; height: 60%;
    color: var(--text-dim);
}
.team-card-photo .years-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--accent);
    color: #0a0a0b;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    letter-spacing: 0.05em;
}
.team-card-info {
    padding: 1.25rem;
}
.team-card-info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}
.team-card-info .role {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.team-card-info .specialty {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================================
   SERVICES page
   ============================================================ */
.services-full {
    padding: 6rem 0;
    background: var(--bg);
}
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) { .services-full-grid { grid-template-columns: 1fr; } }

.service-full-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-full-card::after {
    content: attr(data-num);
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
}
.service-full-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}
.service-full-icon {
    width: 56px; height: 56px;
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.service-full-icon svg { width: 28px; height: 28px; }
.service-full-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}
.service-full-card > div > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.service-features {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 1rem;
}
.service-features li {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.service-price {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

/* ============================================================
   OFFERS page
   ============================================================ */
.offers-section {
    padding: 6rem 0;
    background: var(--bg);
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .offers-grid { grid-template-columns: 1fr; } }

.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.4s var(--ease);
    display: flex; flex-direction: column;
}
.offer-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px -20px var(--accent-glow);
}

.offer-discount-strip {
    background: var(--accent);
    color: #0a0a0b;
    padding: 1rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offer-card[data-color="red"] .offer-discount-strip { background: var(--danger); color: #fff; }
.offer-card[data-color="cyan"] .offer-discount-strip { background: var(--cyan); color: #0a0a0b; }

.offer-discount-strip .badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.3rem 0.5rem;
    letter-spacing: 0.1em;
}

.offer-body {
    padding: 1.75rem;
    flex: 1;
    display: flex; flex-direction: column;
}
.offer-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}
.offer-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex: 1;
}
.offer-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.offer-price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--accent);
    line-height: 1;
}
.offer-original {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-dim);
    text-decoration: line-through;
}
.offer-expires {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-section {
    padding: 6rem 0;
    background: var(--bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info {
    position: sticky; top: 100px;
}
.contact-info-block {
    margin-bottom: 2.5rem;
}
.contact-info-block h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.contact-info-block p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}
.contact-info-block.small p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.contact-info-block a:hover { color: var(--accent); }

.hours-list {
    border-top: 1px solid var(--line);
    margin-top: 1rem;
}
.hours-list li {
    display: flex; justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}
.hours-list li span:first-child {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.contact-form-wrap > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.success-banner {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--mint);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-grid .full { grid-column: span 2; }
@media (max-width: 540px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .full { grid-column: span 1; }
}

.field {
    display: flex; flex-direction: column;
    gap: 0.5rem;
}
.field label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.field input, .field select, .field textarea {
    background: var(--bg);
    border: 1px solid var(--line-strong);
    color: var(--text);
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s var(--ease);
    width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.1);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .err {
    color: var(--danger);
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

.btn-submit {
    background: var(--accent);
    color: #0a0a0b;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 1.5rem;
    transition: all 0.25s var(--ease);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-submit:hover {
    background: #ffc847;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* Map placeholder */
.contact-map {
    margin-top: 2rem;
    aspect-ratio: 16/9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-elev);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
}
.contact-map iframe {
    width: 100%; height: 100%; border: 0;
    filter: invert(0.9) hue-rotate(180deg) contrast(0.85);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #050506;
    border-top: 1px solid var(--line);
    padding: 5rem 0 2rem;
    position: relative;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
    display: flex; align-items: center; gap: 0.6rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.footer-logo .brand-mark { width: 32px; height: 32px; }
.footer-logo .brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text);
    letter-spacing: 0.08em;
}
.footer-tagline {
    color: var(--text-muted);
    max-width: 32ch;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-col p, .footer-col li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-col p { margin-bottom: 0.75rem; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col ul li { margin-bottom: 0.5rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
