:root {
    --bg: #070707;
    --bg-soft: #101010;
    --bg-card: #151515;
    --ink: #f8f5e8;
    --muted: #c6c0a4;
    --gold: #ffd94a;
    --gold-deep: #c99700;
    --line: rgba(255,255,255,.13);
    --shadow: 0 28px 90px rgba(0,0,0,.42);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 217, 74, .16), transparent 28rem),
        radial-gradient(circle at 90% 15%, rgba(255, 217, 74, .11), transparent 26rem),
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 40%);
    z-index: -2;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 70%);
    z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
    width: min(var(--container), calc(100vw - 40px));
    margin-inline: auto;
}
.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    background: var(--gold);
    color: #111;
    padding: .7rem 1rem;
    border-radius: .8rem;
    z-index: 1000;
}
.skip-link:focus { left: 1rem; }
.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(7,7,7,.82);
    backdrop-filter: blur(18px);
}
.header-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}
.brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.brand img, .footer-brand img {
    border-radius: 15px;
    border: 1px solid rgba(255,217,74,.26);
    box-shadow: 0 12px 30px rgba(0,0,0,.4);
    object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.02; font-size: .95rem; }
.brand-text strong { color: var(--gold); }
.brand-text span { color: var(--ink); }
.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
}
.primary-nav a {
    color: var(--muted);
    font-weight: 650;
    font-size: .94rem;
    padding: .65rem .85rem;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
}
.primary-nav a:hover,
.primary-nav a.active {
    color: var(--ink);
    background: rgba(255,255,255,.08);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.phone-pill {
    border: 1px solid rgba(255,217,74,.35);
    color: var(--gold);
    padding: .65rem .9rem;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
    white-space: nowrap;
}
.lang-switch {
    display: flex;
    gap: .25rem;
    padding: .25rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
}
.lang-switch a {
    font-size: .78rem;
    font-weight: 800;
    color: var(--muted);
    padding: .42rem .52rem;
    border-radius: 999px;
}
.lang-switch a.active {
    color: #111;
    background: var(--gold);
}
.nav-toggle { display: none; }

.hero { padding: 5.2rem 0 2rem; }
.hero-grid, .split-grid, .page-hero-grid, .contact-grid, .cta-inner {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.hero h1, .page-hero h1 {
    margin: .5rem 0 1.15rem;
    font-size: clamp(2.45rem, 5vw, 5.15rem);
    line-height: .98;
    letter-spacing: -.06em;
    max-width: 930px;
}
.lead {
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    max-width: 760px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .76rem;
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
}
.hero-actions, .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.8rem;
}
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: .82rem 1.18rem;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, var(--gold), #ffb300);
    color: #111;
    box-shadow: 0 16px 42px rgba(255, 217, 74, .22);
}
.btn-ghost {
    border-color: rgba(255,255,255,.2);
    color: var(--ink);
    background: rgba(255,255,255,.06);
}
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.7rem;
}
.badge-row span {
    color: var(--muted);
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.05);
    padding: .5rem .75rem;
    border-radius: 999px;
    font-weight: 750;
    font-size: .9rem;
}
.hero-media {
    position: relative;
    min-height: 520px;
}
.logo-card {
    position: absolute;
    right: 0;
    top: 0;
    width: min(430px, 82vw);
    border-radius: 34px;
    padding: .6rem;
    background: linear-gradient(145deg, rgba(255,217,74,.35), rgba(255,255,255,.04));
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    z-index: 2;
}
.logo-card img { border-radius: 28px; }
.hero-illustration {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(520px, 92vw);
    filter: drop-shadow(0 28px 60px rgba(0,0,0,.55));
    z-index: 1;
}
.stats-section { padding: 1rem 0 3rem; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.stat-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.05);
    border-radius: var(--radius);
    padding: 1.35rem;
}
.stat-card strong {
    color: var(--gold);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    display: block;
}
.stat-card span { color: var(--muted); font-weight: 700; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}
.section-heading h2, .section-copy h2, .cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.03;
    letter-spacing: -.045em;
    margin: .5rem 0 1rem;
}
.section-copy p, .service-card p, .why-card p, .process-card p, .legal-card p, .empty-state p {
    color: var(--muted);
}
.insurance-note {
    color: var(--ink);
    font-weight: 700;
}
.feature-panel, .contact-card, .form-card, .empty-state, .legal-card {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: var(--shadow);
}
.panel-line, .detail-line {
    display: grid;
    gap: .3rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.panel-line:last-child, .detail-line:last-child { border-bottom: 0; }
.panel-line span, .detail-line span {
    color: var(--gold);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 900;
}
.panel-line a, .detail-line a { color: var(--ink); font-weight: 850; }
.dark-band {
    background: linear-gradient(180deg, rgba(255,217,74,.08), rgba(255,255,255,.03));
    border-block: 1px solid rgba(255,255,255,.08);
}
.card-grid {
    display: grid;
    gap: 1rem;
}
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.brand-marquee {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    box-shadow: var(--shadow);
}
.brand-marquee-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    padding: 1rem;
    animation: brand-marquee 30s linear infinite;
}
.brand-logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: .85rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(145deg, rgba(255,217,74,.11), rgba(255,255,255,.03));
    color: var(--ink);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.service-card, .why-card, .process-card, .testimonial-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(12,12,12,.78);
    border-radius: var(--radius);
    padding: 1.35rem;
    min-height: 210px;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.service-card:hover, .why-card:hover, .process-card:hover, .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,217,74,.35);
    background: rgba(255,255,255,.07);
}
.service-link-card {
    display: block;
}
.service-accordion {
    display: grid;
    gap: 1rem;
}
.service-accordion-item {
    min-height: 0;
    padding: 0;
}
.service-card-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
    padding: 1.35rem;
    border: 0;
    color: inherit;
    background: transparent;
    text-align: left;
    cursor: pointer;
}
.service-card-toggle-copy h2,
.service-card-toggle-copy h3,
.service-card-toggle-copy p {
    margin-inline: 0;
}
.service-toggle-indicator {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    flex-shrink: 0;
}
.service-toggle-indicator::before,
.service-toggle-indicator::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 14px;
    height: 2px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform .2s ease, opacity .2s ease;
}
.service-toggle-indicator::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.service-accordion-item.is-open .service-toggle-indicator::after {
    opacity: 0;
}
.service-card-panel {
    border-top: 1px solid rgba(255,255,255,.09);
}
.service-card-panel-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 1.25rem;
    padding: 0 1.35rem 1.35rem;
    align-items: start;
}
.service-detail-copy p {
    margin-top: 0;
}
.service-detail-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .75rem;
}
.service-detail-list li {
    padding-left: 1.25rem;
    position: relative;
    color: var(--muted);
}
.service-detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}
.service-work-figure,
.tuning-photo-panel,
.about-photo-panel {
    margin: 0;
    display: grid;
    gap: .8rem;
}
.service-work-figure img,
.tuning-photo,
.about-photo {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
}
.service-work-figure figcaption,
.tuning-photo-panel figcaption,
.about-photo-panel figcaption {
    color: var(--muted);
    font-size: .95rem;
}
.service-work-placeholder {
    min-height: 250px;
    display: grid;
    place-items: center;
    padding: 1.2rem;
    border-radius: 24px;
    border: 1px dashed rgba(255,217,74,.35);
    background: rgba(255,255,255,.03);
    color: var(--muted);
    text-align: center;
}
.service-card.high { min-height: 260px; }
.service-card h2, .service-card h3, .why-card h3, .process-card h3, .legal-card h2 {
    line-height: 1.1;
    margin: .8rem 0 .6rem;
    font-size: 1.2rem;
}
.icon {
    width: 42px;
    height: 42px;
    color: var(--gold);
    margin-bottom: .35rem;
}
.mini-mark {
    width: 42px;
    height: 6px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 24px rgba(255,217,74,.38);
}
.sticky-copy { align-self: start; position: sticky; top: 120px; }
.why-grid { align-items: start; }
.why-list { display: grid; gap: 1rem; }
.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 900;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-card {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255,255,255,.05);
    min-height: 260px;
}
.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card figcaption {
    position: absolute;
    inset-inline: 1rem;
    bottom: 1rem;
    padding: .65rem .75rem;
    border-radius: 14px;
    background: rgba(0,0,0,.64);
    backdrop-filter: blur(12px);
    color: var(--gold);
    font-weight: 900;
}
.cta-band {
    padding: 4rem 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,217,74,.22), transparent 24rem),
        linear-gradient(135deg, #151515, #060606);
    border-top: 1px solid rgba(255,255,255,.08);
}
.cta-inner {
    border: 1px solid rgba(255,217,74,.24);
    border-radius: 30px;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: rgba(255,255,255,.055);
    box-shadow: var(--shadow);
}

.page-hero {
    padding: 4.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,217,74,.08), transparent);
}
.page-hero-img {
    width: min(430px, 100%);
    justify-self: end;
    filter: drop-shadow(0 28px 60px rgba(0,0,0,.48));
    border-radius: 30px;
    object-fit: cover;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.process-card span {
    color: var(--gold);
    font-weight: 950;
    letter-spacing: .15em;
}
.rounded-media {
    border-radius: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    width: 100%;
}
.storage-list {
    display: grid;
    gap: .8rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}
.storage-list li {
    counter-increment: step;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .9rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    color: var(--muted);
    font-weight: 750;
}
.storage-list li::before {
    content: counter(step);
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: #111;
    font-weight: 950;
}
.testimonial-grid, .legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.testimonial-card { min-height: 270px; display: flex; flex-direction: column; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: 1.15rem; }
.testimonial-card p { font-size: 1.05rem; flex: 1; }
.testimonial-card footer { display: grid; gap: .2rem; }
.testimonial-card footer span { color: var(--muted); font-size: .9rem; }
.empty-state { max-width: 840px; margin-inline: auto; text-align: center; }
.empty-state h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.1; }
.muted-note { font-size: .95rem; color: #a49d7e !important; }

.contact-grid { align-items: start; grid-template-columns: .86fr 1.14fr; }
.contact-card { position: sticky; top: 120px; }
.social-links, .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.2rem;
}
.social-links a, .footer-links a {
    border: 1px solid rgba(255,255,255,.15);
    color: var(--gold);
    border-radius: 999px;
    padding: .55rem .78rem;
    font-weight: 850;
    font-size: .92rem;
}
.contact-form { display: grid; gap: 1rem; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.contact-form label { display: grid; gap: .45rem; }
.contact-form label > span {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}
input, textarea, select {
    width: 100%;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 15px;
    background: rgba(0,0,0,.32);
    color: var(--ink);
    padding: .9rem 1rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
select option { color: #111; }
input:focus, textarea:focus, select:focus {
    border-color: rgba(255,217,74,.75);
    box-shadow: 0 0 0 4px rgba(255,217,74,.12);
}
textarea { resize: vertical; }
.file-field small { color: var(--muted); }
.checkbox-field {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: .7rem !important;
    color: var(--muted);
}
.checkbox-field input { width: auto; margin-top: .3rem; }
.hp-field { display: none !important; }
.alert {
    border-radius: 17px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid;
}
.alert ul { margin: 0; padding-left: 1.2rem; }
.alert-success { background: rgba(58, 190, 125, .12); border-color: rgba(58, 190, 125, .35); }
.alert-error { background: rgba(255, 91, 91, .12); border-color: rgba(255, 91, 91, .35); }
.map-frame {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    min-height: 430px;
    background: rgba(255,255,255,.05);
}
.map-frame iframe { width: 100%; height: 430px; border: 0; display: block; }

.site-footer {
    border-top: 1px solid rgba(255,255,255,.08);
    background: #050505;
    padding: 3rem 0 1.2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 1.5rem;
}
.site-footer h2 {
    color: var(--gold);
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 .9rem;
}
.site-footer p, .footer-bottom { color: var(--muted); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 2rem;
    padding-top: 1.2rem;
    font-size: .9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes brand-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
    .brand-marquee-track { animation: none; }
}

@media (max-width: 1100px) {
    .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
    .nav-toggle {
        display: inline-grid;
        gap: 5px;
        width: 46px;
        height: 46px;
        place-content: center;
        border-radius: 12px;
        border: 1px solid var(--line);
        background: rgba(255,255,255,.06);
        color: var(--ink);
    }
    .nav-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; background: currentColor; }
    .primary-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(9,9,9,.96);
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: .7rem;
        box-shadow: var(--shadow);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: .9rem 1rem; }
    .header-actions { grid-column: 1 / -1; justify-content: space-between; padding-bottom: .9rem; }
    .card-grid.four, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid, .legal-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card-panel-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, var(--container)); }
    .hero { padding-top: 3.2rem; }
    .hero-grid, .split-grid, .page-hero-grid, .contact-grid, .cta-inner { grid-template-columns: 1fr; }
    .hero-media { min-height: 500px; }
    .logo-card { width: min(360px, 88vw); left: 50%; right: auto; transform: translateX(-50%) rotate(1deg); }
    .hero-illustration { width: min(420px, 92vw); }
    .stats-grid, .card-grid.four, .gallery-grid, .process-grid, .testimonial-grid, .legal-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
    .sticky-copy, .contact-card { position: static; }
    .page-hero-img { justify-self: start; max-width: 320px; }
    .footer-bottom { flex-direction: column; }
    .header-actions { align-items: stretch; flex-direction: column; }
    .phone-pill { text-align: center; }
    .lang-switch { justify-content: center; }
    .gallery-card img { height: 230px; }
}
