/* ========================================
   ALL SERVIS — "Strojovna" Design
   Industrial / Brutalist auto service
   ======================================== */

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #A01520;
    --orange-hover: #C41828;
    --steel: #2C2F33;
    --surface: #3D4147;
    --dark: #1A1C1F;
    --chalk: #E8E6E1;
    --zinc: #8A8D93;
    --yellow: #F5C518;
    --green: #2D8B4E;

    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --font-mono: 'Roboto Mono', monospace;

    --h1: clamp(3.2rem, 6vw, 5.5rem);
    --h2: clamp(2rem, 3.5vw, 3rem);
    --h3: clamp(1.3rem, 2vw, 1.6rem);
    --body: clamp(0.95rem, 1.1vw, 1.05rem);
    --small: 0.8rem;
    --mono: clamp(0.85rem, 1vw, 1rem);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --sidenav-w: 60px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--body);
    line-height: 1.6;
    color: var(--chalk);
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; color: inherit; font: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.text-accent { color: var(--orange); }

/* === LOADER === */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: clip-path 0.6s var(--ease-out);
    clip-path: inset(0);
}

.loader--done {
    clip-path: inset(50% 0);
    pointer-events: none;
}

.loader__img {
    width: 120px;
    height: auto;
    animation: loaderPulse 1s ease-in-out;
}

@keyframes loaderPulse {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* === VERTICAL SIDENAV (desktop) === */
.sidenav {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidenav-w);
    height: 100vh;
    background: var(--steel);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.sidenav__logo {
    display: block;
    margin-bottom: 20px;
}

.sidenav__logo img {
    display: block;
    width: 48px;
    height: auto;
}

.sidenav__progress {
    width: 2px;
    height: 60px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 24px;
    position: relative;
}

.sidenav__progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--orange);
    transition: height 0.1s linear;
}

.sidenav__links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.sidenav__link {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--zinc);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.sidenav__link::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 4px;
    height: 4px;
    background: transparent;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: background 0.3s;
}

.sidenav__link--active { color: var(--chalk); }
.sidenav__link--active::before { background: var(--orange); }
.sidenav__link:hover { color: var(--chalk); }

.sidenav__phone {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--zinc);
    letter-spacing: 0.1em;
    margin-top: auto;
}

/* Main content offset for sidenav */
.main { margin-left: var(--sidenav-w); }
.footer { margin-left: var(--sidenav-w); }

/* === TOPBAR (mobile only) === */
.topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--dark);
    z-index: 200;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar__logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--chalk);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.topbar__logo span { color: var(--orange); }

.topbar__logo-img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.topbar__actions { display: flex; align-items: center; gap: 12px; }

.topbar__phone {
    color: var(--zinc);
    padding: 8px;
    transition: color 0.3s;
}
.topbar__phone:hover { color: var(--orange); }

.topbar__burger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.topbar__burger span {
    display: block;
    height: 2px;
    background: var(--chalk);
    transition: all 0.3s var(--ease-out);
}

.topbar__burger span:nth-child(2) {
    width: 60%;
    background: var(--orange);
}

.topbar__burger--open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.topbar__burger--open span:nth-child(2) { opacity: 0; width: 0; }
.topbar__burger--open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 190;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu--open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--chalk);
    padding: 8px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
}

.mobile-menu--open .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu--open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu--open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu--open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu--open .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }

.mobile-menu__link:hover,
.mobile-menu__link:active { color: var(--orange); }

.mobile-menu__footer {
    position: absolute;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-menu__phone {
    font-family: var(--font-mono);
    color: var(--zinc);
    font-size: 0.9rem;
}

/* === HERO === */
.hero {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 100vh;
}

.hero__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12vh 4vw 8vh 4vw;
    background: var(--dark);
    position: relative;
    z-index: 2;
}

.hero__location {
    font-family: var(--font-mono);
    font-size: var(--small);
    color: var(--orange);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-30px);
    animation: heroReveal 0.6s var(--ease-out) 0.8s forwards;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--h1);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-40px);
    animation: heroReveal 0.6s var(--ease-out) 0.9s forwards;
}

.hero__title--accent { color: var(--orange); }

.hero__line {
    width: 0;
    height: 3px;
    background: var(--orange);
    margin-bottom: 32px;
    animation: lineGrow 0.4s var(--ease-out) 1.2s forwards;
}

@keyframes lineGrow { to { width: 80px; } }

.hero__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--chalk);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateX(-30px);
    animation: heroReveal 0.6s var(--ease-out) 1.0s forwards;
    transition: color 0.3s;
    position: relative;
    width: fit-content;
}

.hero__phone::after {
    content: 'ZAVOLAT';
    position: absolute;
    inset: -4px -12px;
    background: var(--orange);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.3s ease;
}

.hero__phone:hover::after {
    clip-path: inset(0 0 0 0);
}

.hero__cta {
    opacity: 0;
    transform: translateX(-30px);
    animation: heroReveal 0.6s var(--ease-out) 1.1s forwards;
    width: fit-content;
}

@keyframes heroReveal {
    to { opacity: 1; transform: translateX(0); }
}

.hero__image {
    position: relative;
    overflow: hidden;
}

.hero__image-inner {
    width: 100%;
    height: 100%;
    position: sticky;
    top: 0;
    clip-path: inset(0 100% 0 0);
    animation: imageReveal 0.8s var(--ease-out) 0.4s forwards;
}

@keyframes imageReveal {
    to { clip-path: inset(0 0 0 0); }
}

/* Hero video */
.hero__video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero__badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 16px 20px;
    border: 2px solid var(--orange);
    background: rgba(26, 28, 31, 0.7);
    backdrop-filter: blur(8px);
    text-align: center;
    transform: rotate(3deg);
    z-index: 3;
}

.hero__badge-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--orange);
    display: block;
    line-height: 1;
}

.hero__badge-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--chalk);
    letter-spacing: 0.2em;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--orange);
    color: var(--dark);
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
}

.btn--primary:hover {
    background: var(--orange-hover);
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 96%);
}

.btn--full { width: 100%; }

.btn__text-default { transition: opacity 0.3s; }
.btn__text-hover {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover .btn__text-default { opacity: 0; }
.btn:hover .btn__text-hover { opacity: 1; }

/* === TICKER === */
.ticker {
    background: var(--orange);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker__track {
    display: flex;
    will-change: transform;
    animation: tickerScroll 30s linear infinite;
}

.ticker:hover .ticker__track {
    animation-duration: 60s;
}

.ticker__set {
    display: flex;
    flex-shrink: 0;
}

.ticker__item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
    letter-spacing: 0.1em;
    padding: 0 16px;
    flex-shrink: 0;
}

.ticker__sep {
    color: rgba(26, 28, 31, 0.3);
    padding: 0 8px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
}

.section--surface {
    background: var(--steel);
}

.section-header {
    margin-bottom: 56px;
}

.section-header__tag {
    font-family: var(--font-mono);
    font-size: var(--small);
    color: var(--zinc);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-header__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--h2);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
}

/* === ACCORDION === */
.accordion__item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.accordion__item:first-child {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.accordion__header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    gap: 20px;
    text-align: left;
    transition: all 0.3s var(--ease-out);
}

.accordion__header:hover {
    padding-left: 8px;
}

.accordion__num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--orange);
    opacity: 0.3;
    min-width: 60px;
    transition: all 0.3s var(--ease-out);
}

.accordion__item--open .accordion__num {
    opacity: 1;
    transform: translateX(4px);
}

.accordion__icon {
    width: 22px;
    height: 22px;
    color: var(--orange);
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.accordion__item--open .accordion__icon { opacity: 0.8; }

.accordion__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--h3);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--chalk);
}

.accordion__line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.06);
    position: relative;
}

.accordion__line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--orange);
    transition: width 0.4s var(--ease-out);
}

.accordion__header:hover .accordion__line::after {
    width: 40px;
}

.accordion__toggle {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--zinc);
    transition: all 0.3s;
}

.accordion__item--open .accordion__toggle {
    transform: rotate(45deg);
    color: var(--orange);
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}

.accordion__item--open .accordion__body {
    max-height: 300px;
}

.accordion__content {
    padding: 0 0 32px 80px;
    max-width: 600px;
}

.accordion__content p {
    color: var(--zinc);
    margin-bottom: 16px;
    line-height: 1.7;
}

.accordion__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* === SERVICE TAGS === */
.stag {
    display: inline-block;
    background: var(--surface);
    border-left: 3px solid var(--orange);
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--chalk);
    position: relative;
}

.stag::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    background: var(--dark);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.stag--light {
    background: rgba(255,255,255,0.1);
    border-left-color: var(--yellow);
    color: var(--chalk);
}

/* === COUNTERS === */
.counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 56px;
    max-width: 800px;
}

.counter {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.counter__display {
    border: 2px solid var(--surface);
    padding: 20px 24px;
    background: var(--dark);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
    flex-shrink: 0;
    min-width: 110px;
    text-align: center;
}

.counter__number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--chalk);
    line-height: 1;
}

.counter__info {
    padding-top: 4px;
}

.counter__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
    color: var(--chalk);
}

.counter__text {
    font-size: 0.85rem;
    color: var(--zinc);
    line-height: 1.6;
}

/* === BLOKOVÁ VÝJIMKA === */
.blokovka {
    display: flex;
    gap: 24px;
    max-width: 800px;
}

.blokovka__marker {
    width: 4px;
    min-height: 100%;
    background: var(--orange);
    flex-shrink: 0;
}

.blokovka__content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--h3);
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.blokovka__content p {
    color: var(--zinc);
    line-height: 1.7;
}

.blokovka__content strong {
    color: var(--chalk);
}

/* === REVIEWS === */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.review {
    background: var(--surface);
    border-left: 3px solid var(--orange);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review__stars {
    color: var(--yellow);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review__text {
    color: var(--chalk);
    font-style: italic;
    line-height: 1.7;
    flex: 1;
}

.review__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(138, 141, 147, 0.2);
    padding-top: 16px;
}

.review__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--chalk);
}

.review__car {
    font-family: var(--font-mono);
    font-size: var(--small);
    color: var(--zinc);
}

.reviews-google {
    margin-top: 32px;
    margin-bottom: 8px;
}

.reviews-google__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    padding: 12px 24px;
    border-radius: 4px;
}

.reviews-google__rating {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--chalk);
}

.reviews-google__stars {
    color: var(--yellow);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.reviews-google__count {
    font-family: var(--font-mono);
    font-size: var(--small);
    color: var(--zinc);
}

.review--cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-left-color: var(--yellow);
    background: rgba(61, 65, 71, 0.6);
}

.review--cta .review__text {
    font-style: normal;
    color: var(--zinc);
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* === MOTORSPORT === */
.motorsport {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-left: var(--sidenav-w);
}

.motorsport__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.motorsport__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.motorsport__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,28,31,0.97) 0%, rgba(26,28,31,0.85) 50%, rgba(26,28,31,0.6) 100%);
    z-index: 2;
}

.motorsport__content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 80px 32px;
}

.motorsport__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--h2);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 20px;
    margin-top: 12px;
}

.motorsport__desc {
    color: var(--zinc);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 500px;
}

.motorsport__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.motorsport__gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s var(--ease-out);
}

.motorsport__gallery img:hover {
    border-color: var(--orange);
    transform: scale(1.02);
}

.motorsport__teams {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.motorsport__link {
    color: var(--orange);
    border-bottom: 1px solid rgba(232, 81, 26, 0.3);
    transition: border-color 0.3s;
}

.motorsport__link:hover {
    border-bottom-color: var(--orange);
}

.motorsport__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.motorsport__insta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: var(--small);
    color: var(--zinc);
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.motorsport__insta:hover {
    color: var(--chalk);
    border-bottom-color: var(--orange);
}

/* === CONTACT === */
.contact {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    margin-bottom: 48px;
}

.contact__map { min-height: 450px; }

.contact__map iframe { height: 100%; }

.contact__form-wrap {
    background: var(--steel);
    padding: 40px;
}

/* Service Order Form */
.service-order {
    position: relative;
    overflow: hidden;
}

.service-order__watermark {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 6rem;
    color: rgba(255,255,255,0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    white-space: nowrap;
    pointer-events: none;
}

.service-order__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255,255,255,0.06);
}

.service-order__header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-order__id {
    font-family: var(--font-mono);
    font-size: var(--small);
    color: var(--zinc);
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--zinc);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px dashed var(--zinc);
    color: var(--chalk);
    font-family: var(--font-body);
    font-size: var(--body);
    padding: 8px 0;
    outline: none;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--orange);
    border-bottom-style: solid;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(138, 141, 147, 0.5);
}

.form-field textarea {
    resize: vertical;
    min-height: 60px;
}

/* Phone CTA (replaces order form) */
.phone-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.phone-cta__lead {
    font-size: var(--body);
    color: var(--chalk);
    line-height: 1.6;
    margin: 0;
}

.phone-cta__number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--orange);
    letter-spacing: 0.02em;
    text-decoration: none;
    line-height: 1;
    padding: 8px 0;
    border-bottom: 2px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}

.phone-cta__number:hover {
    color: var(--chalk);
}

.phone-cta__hours {
    font-family: var(--font-mono);
    font-size: var(--small);
    color: var(--zinc);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.phone-cta__hours em {
    font-style: normal;
    color: var(--chalk);
}

/* Contact Details */
.contact__details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact__detail {
    padding: 20px 0;
    border-top: 2px solid rgba(255,255,255,0.06);
}

.contact__detail-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--zinc);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}

.contact__detail-value {
    font-size: 0.95rem;
    color: var(--chalk);
    transition: color 0.3s;
}

a.contact__detail-value:hover {
    color: var(--orange);
}

.contact__detail-value em {
    color: var(--zinc);
    font-style: italic;
}

/* Phone link hover overlay */
.phone-link {
    position: relative;
    display: inline-block;
}

.phone-link::after {
    content: 'ZAVOLAT';
    position: absolute;
    inset: -4px -8px;
    background: var(--orange);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.3s ease;
}

.phone-link:hover::after {
    clip-path: inset(0 0 0 0);
}

/* === FOOTER === */
.footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__logo-img {
    display: block;
}

.footer__copy {
    font-size: var(--small);
    color: var(--zinc);
}

.footer__social a {
    color: var(--zinc);
    transition: color 0.3s;
}

.footer__social a:hover { color: var(--orange); }

.footer__legal {
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__legal-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--zinc);
    letter-spacing: 0.03em;
}

.footer__legal-row a {
    color: var(--zinc);
    border-bottom: 1px dashed rgba(138,141,147,0.4);
    transition: color 0.2s, border-color 0.2s;
}

.footer__legal-row a:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--steel);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--orange);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 200;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    animation: cookieSlideUp 0.4s var(--ease-out);
}

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

.cookie-banner[hidden] { display: none; }

.cookie-banner__text {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--chalk);
    margin: 0;
}

.cookie-banner__text a {
    color: var(--orange);
    border-bottom: 1px dashed var(--orange);
}

.cookie-banner__text a:hover {
    color: var(--chalk);
    border-bottom-color: var(--chalk);
}

.cookie-banner__btn {
    flex-shrink: 0;
    background: var(--orange);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-banner__btn:hover { background: var(--chalk); }

/* === LEGAL PAGE === */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-page__header {
    margin-bottom: 48px;
    max-width: 820px;
}

.legal-page__intro {
    color: var(--zinc);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 20px;
}

.legal-page__section {
    max-width: 820px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-page__section:last-child { border-bottom: none; }

.legal-page__section h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--chalk);
}

.legal-page__section p,
.legal-page__section li {
    color: var(--chalk);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-page__section ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page__section a {
    color: var(--orange);
    border-bottom: 1px dashed var(--orange);
    transition: color 0.2s;
}

.legal-page__section a:hover { color: var(--chalk); border-bottom-color: var(--chalk); }

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        bottom: 80px;
    }
    .cookie-banner__btn { width: 100%; }

    .footer__legal-row { font-size: 0.7rem; }

    .legal-page { padding: 110px 0 100px; }
}

/* === MOBILE CTA BAR === */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--steel);
    border-top: 2px solid var(--orange);
    padding: 10px 16px;
    gap: 10px;
    z-index: 150;
}

.mobile-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-cta__btn--call {
    background: transparent;
    color: var(--chalk);
    border: 1px solid rgba(255,255,255,0.15);
}

.mobile-cta__btn--order {
    background: var(--orange);
    color: var(--dark);
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Stagger for counters */
.counters .counter:nth-child(1) { transition-delay: 0s; }
.counters .counter:nth-child(2) { transition-delay: 0.1s; }
.counters .counter:nth-child(3) { transition-delay: 0.2s; }
.counters .counter:nth-child(4) { transition-delay: 0.3s; }

/* Accordion items reveal */
.accordion__item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.accordion__item--visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .counters { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; }
    .contact__details { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 50% 50%; }
}

@media (max-width: 768px) {
    :root { --sidenav-w: 0px; }

    .sidenav { display: none; }
    .topbar { display: flex; }
    .main { margin-left: 0; padding-top: 56px; }
    .footer { margin-left: 0; }
    .motorsport { margin-left: 0; }
    .mobile-cta { display: flex; }

    /* Hero stack */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__image {
        order: -1;
        height: 50vh;
    }

    .hero__image-inner {
        position: relative;
        height: 100%;
    }

    .hero__video { height: 100%; }

    .hero__text {
        padding: 32px 24px 100px;
        margin-top: -40px;
        position: relative;
        z-index: 3;
    }

    .hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }

    .hero__badge {
        top: 16px;
        left: 16px;
        bottom: auto;
        right: auto;
    }

    .hero__cta { width: 100%; text-align: center; }

    /* Sections */
    .section { padding: 60px 0; }

    .accordion__content { padding-left: 0; }
    .accordion__num { min-width: 40px; font-size: 1.8rem; }

    .counters { grid-template-columns: 1fr; gap: 20px; }
    .reviews { grid-template-columns: 1fr; }

    .contact__form-wrap { padding: 24px 20px; }
    .contact__details { grid-template-columns: 1fr; }

    .motorsport { min-height: 60vh; }
    .motorsport__content { padding: 40px 24px; }
    .motorsport__title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    .footer__inner { flex-direction: column; gap: 12px; text-align: center; }

    /* No parallax on mobile */
    .hero__text { transform: none !important; }

    /* Space for mobile CTA bar */
    .footer { padding-bottom: 72px; }
}

@media (max-width: 480px) {
    .counters { grid-template-columns: 1fr; }
    .accordion__header { gap: 12px; }
    .accordion__line { display: none; }
}
