/* ============================================
   Demon Garage — style.css
   Design system + layout + components
   ============================================ */

/* ---- VARIABLES ---- */
:root {
    --bg:         #0D0D0D;
    --bg-2:       #111111;
    --bg-card:    #141414;
    --bg-card-2:  #1A1A1A;
    --red:        #E63000;
    --red-hover:  #FF3D00;
    --red-dim:    rgba(230, 48, 0, 0.12);
    --red-glow:   rgba(230, 48, 0, 0.35);
    --white:      #FFFFFF;
    --gray:       #A0A0A0;
    --gray-2:     #606060;
    --border:     rgba(255, 255, 255, 0.07);
    --border-r:   rgba(230, 48, 0, 0.25);
    --font-head:  'Barlow Condensed', sans-serif;
    --font-body:  'Barlow', sans-serif;
    --radius:     8px;
    --radius-sm:  5px;
    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; user-select: none; -webkit-user-select: none; }
input, textarea, select { user-select: text; -webkit-user-select: text; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gray-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--dark { background: var(--bg-2); }

/* ---- TYPOGRAPHY ---- */
.section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red);
}
.section-tag::before {
    content: '';
    display: block; width: 20px; height: 2px;
    background: var(--red);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 540px;
}

.accent { color: var(--red); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-head); font-size: 1rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    min-height: 48px;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}
.btn-primary:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--red-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background 0.4s, padding 0.4s var(--ease), border-color 0.4s;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    border-bottom-color: var(--border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
    font-family: var(--font-head);
    font-size: 1.35rem; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--white);
    flex-shrink: 0;
}
.nav-logo span { color: var(--red); }

.nav-links {
    display: flex; align-items: center; gap: 2rem;
    margin-left: auto;
}
.nav-link {
    font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gray);
    transition: color 0.2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.btn-nav {
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    background: var(--red); color: var(--white);
    border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.2s;
    min-height: 44px; display: inline-flex; align-items: center;
}
.btn-nav:hover { background: var(--red-hover); transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 44px; height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
}
.nav-toggle.active {
    border-color: var(--red);
    background: rgba(230,48,0,0.10);
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.navbar.menu-open {
    background: rgba(13,13,13,0.98) !important;
    backdrop-filter: blur(16px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: rgba(13,13,13,0.98);
    padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
    font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gray); padding: 0.85rem 0;
    min-height: 44px; display: flex; align-items: center;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--white); }
.nav-mobile-link:last-of-type { border-bottom: none; }

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex; align-items: center;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

/* Hero photo background */
.hero-photo {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%;
    display: block;
}
.hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 85% 50%;
    display: block;
    animation: heroZoom 18s ease-in-out infinite alternate;
    transform-origin: center center;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.07); }
}

/* Dark overlay */
.hero-bg {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(13,13,13,0.55) 0%,
        rgba(13,13,13,0.40) 40%,
        rgba(13,13,13,0.80) 100%
    );
    pointer-events: none;
}
/* Subtle red vignette — brand accent */
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 60%, rgba(230,48,0,0.12) 0%, transparent 65%);
    pointer-events: none;
}
/* Bottom fade do bg */
.hero-bg::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}

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

/* Red vertical accent line */
.hero-line {
    position: absolute; left: 50%; top: 15%; bottom: 15%;
    width: 1px; background: linear-gradient(to bottom, transparent, var(--red), transparent);
    opacity: 0.15; z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative; z-index: 3;
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    text-align: center;
}

.hero-tag {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--red); margin-bottom: 1.5rem;
}
.hero-tag-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.hero-title .line-red { color: var(--red); }

.hero-subtitle {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: -1.25rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex; align-items: center; gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat-num {
    font-family: var(--font-head); font-size: 2rem; font-weight: 800;
    color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label { font-size: 0.82rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- SERVICES ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
    overflow: hidden;
    cursor: default;
}
.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--red-dim) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}
.service-card:hover { border-color: var(--border-r); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(230,48,0,0.12); }
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--red-dim);
    border: 1px solid var(--border-r);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
    transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(230,48,0,0.2); }

.service-card h3 {
    font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--white); margin-bottom: 0.75rem;
    position: relative; z-index: 1;
}
.service-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.7; position: relative; z-index: 1; }

.service-features {
    margin-top: 1.25rem;
    display: flex; flex-direction: column; gap: 0.45rem;
    position: relative; z-index: 1;
}
.service-feature {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: var(--gray);
}
.service-feature::before {
    content: '';
    width: 14px; height: 1px;
    background: var(--red); flex-shrink: 0;
}

/* ---- ABOUT ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img {
    width: 100%; height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: block;
    background: var(--bg-card-2);
}
/* Placeholder gdy brak zdjecia */
.about-img-placeholder {
    width: 100%; height: 480px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-2); font-size: 0.85rem; font-family: var(--font-head);
    letter-spacing: 0.1em; text-transform: uppercase;
}
.about-img-accent {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    width: 120px; height: 120px;
    border: 3px solid var(--red);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.5;
}

.about-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 2.5rem;
}
.about-stat {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
}
.about-stat-num {
    font-family: var(--font-head); font-size: 2.2rem; font-weight: 800;
    color: var(--red); line-height: 1;
    margin-bottom: 0.3rem;
}
.about-stat-label { font-size: 0.82rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- WHY US ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.why-item {
    padding: 1.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: border-color 0.3s, transform 0.3s var(--ease);
}
.why-item:hover { border-color: var(--border-r); transform: translateY(-3px); }
.why-num {
    font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; color: var(--red); margin-bottom: 1rem;
    text-transform: uppercase;
}
.why-item h4 {
    font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--white); margin-bottom: 0.6rem;
}
.why-item p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ---- GALLERY ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card-2);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: border-color 0.3s, transform 0.3s var(--ease);
}
.gallery-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}
.gallery-item:hover { border-color: var(--border-r); transform: scale(1.02); }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-2); font-family: var(--font-head);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    flex-direction: column; gap: 0.5rem;
    background: var(--bg-card-2);
}
.gallery-placeholder svg { opacity: 0.3; }

/* ---- CONTACT ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }

.contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--red-dim); border: 1px solid var(--border-r);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
}
.contact-item-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.contact-item-value { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--white); }
.contact-item a:hover .contact-item-value { color: var(--red); }

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 200px;
}
.contact-map iframe {
    width: 100%; height: 100%;
    border: 0; filter: invert(90%) hue-rotate(180deg);
    display: block;
}
.contact-map-card {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.1rem 1.25rem;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.contact-map-card:hover {
    border-color: var(--red);
    background: rgba(230,48,0,0.06);
}
.contact-map-card-icon {
    flex-shrink: 0;
    color: var(--red);
    opacity: 0.85;
}
.contact-map-card-text {
    display: flex; flex-direction: column; gap: 0.25rem;
}
.contact-map-card-label {
    font-size: 0.9rem; color: var(--white); font-weight: 500;
}
.contact-map-card-action {
    font-size: 0.78rem; color: var(--red);
    font-family: var(--font-head); letter-spacing: 0.05em; text-transform: uppercase;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body); font-size: 0.95rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-2); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--border-r);
    box-shadow: 0 0 0 3px rgba(230,48,0,0.1);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #E63000 !important;
    box-shadow: 0 0 0 3px rgba(230,48,0,0.15) !important;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
    width: 100%; padding: 1rem;
    background: var(--red); color: var(--white);
    border-radius: var(--radius-sm);
    font-family: var(--font-head); font-size: 1rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    min-height: 52px;
}
.btn-submit:hover:not(:disabled) {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--red-glow);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem;
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.3);
    border-radius: var(--radius-sm);
    color: #4ade80;
    font-family: var(--font-head); font-weight: 600;
    letter-spacing: 0.05em;
}

.field-error {
    font-size: 0.78rem; color: var(--red);
    margin-top: 0.2rem;
    opacity: 0; transform: translateY(-3px);
    transition: opacity 0.2s, transform 0.2s;
    min-height: 1rem;
}
.field-error.visible { opacity: 1; transform: translateY(0); }

/* ---- FOOTER ---- */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-logo {
    font-family: var(--font-head); font-size: 1.1rem; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-right: auto;
}
.footer-logo span { color: var(--red); }
.footer-copy { font-size: 0.82rem; color: var(--gray-2); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.82rem; color: var(--gray-2); transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }

/* ---- SERVICE CARD HIGHLIGHT ---- */
.service-card--highlight {
    border-color: var(--border-r);
}
.service-card--highlight::after {
    content: 'Najpopularniejsza';
    position: absolute; top: 1rem; right: 1rem;
    font-family: var(--font-head); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--red);
    background: var(--red-dim);
    border: 1px solid var(--border-r);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    z-index: 2;
}

/* ---- ABOUT STATS 3-COL ---- */
.about-stats {
    grid-template-columns: repeat(3, 1fr);
}
.about-img-placeholder {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

/* ---- GALLERY OVERLAY ---- */
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(230, 48, 0, 0.55);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--white);
}

/* ---- CONTACT LINK ---- */
.contact-item-link {
    color: var(--white);
    transition: color 0.2s;
    font-family: var(--font-head); font-size: 1rem; font-weight: 600;
}
.contact-item-link:hover { color: var(--red); }

/* ---- FORM NOTE ---- */
.form-note {
    font-size: 0.78rem; color: var(--gray-2);
    margin-top: 0.5rem;
}

/* ---- FORM SUCCESS (hidden by default) ---- */
.form-success {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem;
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.3);
    border-radius: var(--radius-sm);
    color: #4ade80;
    font-family: var(--font-head); font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}
.form-success.hidden { display: none !important; }

/* ---- UTILS ---- */
.hidden { display: none !important; }
.loader-icon { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- HERO SERVICES TAGS ---- */
.hero-services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.9rem;
    margin-bottom: 2.5rem;
}

.hero-service-item {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
}

.hero-service-dot {
    color: var(--red);
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.8;
}

/* ---- MOTORSPORT SECTION ---- */
.moto-section {
    background: #0A0A0A;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.moto-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%; height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(230,48,0,0.05) 70%);
    pointer-events: none;
}

.moto-header {
    margin-bottom: 3.5rem;
}

.moto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.moto-text .section-sub {
    margin-bottom: 1.5rem;
}

.moto-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.moto-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: var(--red-dim);
    border: 1px solid var(--border-r);
    border-radius: 3px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
}

.moto-badge::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.moto-visual {
    position: relative;
}

.moto-img {
    width: 100%; height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}
@media (max-width: 768px) { .moto-img { height: 260px; } }

.moto-img-placeholder {
    width: 100%; height: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.75rem;
    color: var(--gray-2);
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.moto-img-placeholder svg { opacity: 0.25; }

.moto-quote {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--red);
    background: var(--bg-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.moto-quote p {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.moto-quote span {
    display: block;
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 0.4rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .moto-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .moto-img-placeholder { height: 260px; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 3rem; }
}

/* ---- GALLERY SHOW MORE ---- */
.gallery-more-wrap {
    display: none;
    justify-content: center;
    margin-top: 2rem;
}
.gallery-more-btn {
    font-family: var(--font-head);
    font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 0.75rem 2rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gallery-more-btn:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(230,48,0,0.06);
}

@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .nav-toggle { display: flex; }

    .section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }

    .hero { padding: 6rem 1.25rem 3rem; }
    .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
    .hero-stats { gap: 1.5rem; }

    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img, .about-img-placeholder { height: 300px; }
    .about-img-accent { display: none; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: span 2; }
    .gallery-grid:not(.gallery-expanded) .gallery-item:nth-child(n+5) { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }

    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .footer-logo { margin-right: 0; }

    .section-title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .about-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.1ms !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .page-loader { display: none !important; }
}
