/* ============================================================
   Holm & Skarsgård Classics
   Clean Nordic · snow + slate + soft red accent
   Specialist classic-car rental
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --snow: #f8f8f6;
    --snow-2: #ececea;
    --paper: #fcfcfa;
    --bone: #ffffff;
    --cloud: #e4e4e0;

    --slate: #2c3138;
    --slate-2: #3d434a;
    --slate-soft: #5a6068;
    --stone: #7a8088;
    --stone-soft: #a0a4a8;
    --silver: #c0c3c4;

    --red: #c8362b;
    --red-deep: #a02820;
    --red-soft: #e07a72;

    --ink: #15171b;
    --ink-soft: #2c3138;

    --line: rgba(21, 23, 27, 0.14);
    --line-soft: rgba(21, 23, 27, 0.06);
    --line-strong: rgba(21, 23, 27, 0.32);

    --shadow-sm: 0 2px 8px rgba(21, 23, 27, 0.04);
    --shadow: 0 8px 24px rgba(21, 23, 27, 0.06);
    --shadow-lg: 0 20px 50px rgba(21, 23, 27, 0.1);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    --max: 1320px;
    --r: 0px;      /* CLEAN NORDIC = sharp corners as default */
    --r-sm: 4px;   /* a touch of softness on small elements */
    --r-card: 2px;
    --t: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-variation-settings: "SOFT" 30;
}

a { color: inherit; text-decoration: none; transition: var(--t); }
a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
img, svg { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 36px; }

/* Mono number/registration style */
.mono {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ============================================================
   HEADER — strict horizontal bar (not pill, not floating-detached)
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(248, 248, 246, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
}
/* Brand mark: red square (no pill, no circle) - signature Nordic minimalism */
.brand-mark {
    width: 34px; height: 34px;
    flex: none;
    background: var(--slate);
    position: relative;
    display: grid;
    place-items: center;
}
.brand-mark::before {
    content: '';
    width: 12px; height: 12px;
    background: var(--red);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand-text .tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate-soft);
    letter-spacing: 0.04em;
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 8px 18px;
    transition: var(--t);
    position: relative;
}
.nav-link:hover { color: var(--red); }
.nav-link.active {
    color: var(--ink);
    font-weight: 600;
}
.nav-link.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 6px;
    background: var(--red);
}
.nav-cta {
    background: var(--slate) !important;
    color: var(--snow) !important;
    padding: 12px 22px !important;
    font-weight: 600 !important;
    margin-left: 12px;
    font-size: 12px !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.nav-cta:hover { background: var(--red) !important; }
.burger {
    display: none;
    background: var(--snow-2);
    border: 1px solid var(--line);
    color: var(--ink);
    width: 40px; height: 40px;
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   SHARED — Buttons (sharp, geometric)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 16px 28px;
    cursor: pointer;
    border: 0;
    transition: var(--t);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--slate);
    color: var(--snow);
}
.btn-primary:hover {
    background: var(--red);
    color: var(--snow);
}
.btn-red {
    background: var(--red);
    color: var(--snow);
}
.btn-red:hover {
    background: var(--red-deep);
    color: var(--snow);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--snow);
}
.btn .ar { transition: transform 0.3s ease; }
.btn:hover .ar { transform: translateX(3px); }

.btn-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--t);
}
.btn-link:hover {
    color: var(--red);
    border-color: var(--red);
    gap: 14px;
}

/* ============================================================
   SHARED — Section base + heads
   ============================================================ */
.section { padding: 120px 0; position: relative; }
.section-bone { background: var(--bone); }
.section-cloud { background: var(--snow-2); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--red);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.section-tag::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--red);
}

.section-head { max-width: 860px; margin-bottom: 72px; }
.section-head h2 {
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 0.98;
    margin-bottom: 24px;
    letter-spacing: -0.022em;
    font-weight: 500;
}
.section-head h2 em {
    font-style: italic;
    color: var(--red);
    font-weight: 500;
}
.section-head .lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 660px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-tag { justify-content: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO — magazine-spread layout with thin horizontal lines
   ============================================================ */
.hero {
    padding: 130px 0 80px;
    position: relative;
    border-bottom: 1px solid var(--line);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: start;
}

/* Editorial preamble at the top: file no + date */
.hero-preamble {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-soft);
    padding-bottom: 16px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hero-preamble .file-no .red-dot {
    color: var(--red);
    margin: 0 6px;
}

.hero h1 {
    font-size: clamp(52px, 7.5vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: 500;
}
.hero h1 em {
    font-style: italic;
    color: var(--red);
    font-weight: 500;
}
.hero h1 .accent {
    color: var(--slate);
    font-style: italic;
    font-weight: 400;
}

.hero .lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero stat row — horizontal split with vertical hairlines */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.hero-stat {
    padding-right: 24px;
    border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .v {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.025em;
    font-weight: 500;
}
.hero-stat .v .unit {
    font-family: var(--font-mono);
    font-size: 0.4em;
    color: var(--red);
    margin-left: 4px;
    font-weight: 500;
    vertical-align: top;
}
.hero-stat .l {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate-soft);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Hero image — straight rectangle, no rounded corners */
.hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--snow-2);
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-image-placeholder {
    width: 100%; height: 100%;
    background:
        linear-gradient(135deg, var(--snow-2) 0%, var(--cloud) 100%);
    display: grid;
    place-items: center;
    color: var(--slate);
    font-family: var(--font-display);
    font-size: 22px;
    text-align: center;
    padding: 32px;
    position: relative;
}
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid var(--line);
}
.hero-image-placeholder::after {
    content: '';
    position: absolute;
    top: 28px; left: 28px;
    width: 24px; height: 24px;
    background: var(--red);
}
.hero-image-placeholder .ph-text { position: relative; z-index: 1; }
.hero-image-placeholder span {
    font-family: var(--font-mono);
    display: block;
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--slate-soft);
}

/* Hero image caption strip — like a magazine credit */
.hero-image-caption {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hero-image-caption .red-dot { color: var(--red); }

/* ============================================================
   APPROACH — 3 columns separated by hairline rules
   ============================================================ */
.approach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.app-card {
    padding: 50px 36px 50px 0;
    border-right: 1px solid var(--line);
    transition: var(--t);
    background: transparent;
}
.app-card:last-child { border-right: 0; padding-right: 0; }
.app-card:not(:first-child) { padding-left: 36px; }
.app-card:hover { background: var(--bone); }

.app-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--red);
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: 0.14em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.app-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}
.app-card h3 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--ink);
    font-weight: 500;
}
.app-card h3 em { font-style: italic; color: var(--red); }
.app-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   FLEET / CAR LISTING — magazine catalog
   ============================================================ */
.fleet-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.filter-group {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}
.filter-chip {
    background: transparent;
    border: 0;
    border-right: 1px solid var(--line);
    color: var(--slate-soft);
    padding: 8px 18px 8px 0;
    margin-right: 18px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t);
}
.filter-chip:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.filter-chip:hover { color: var(--ink); }
.filter-chip.active {
    color: var(--red);
    font-weight: 600;
}
.filter-count {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.filter-count strong {
    color: var(--ink);
    font-weight: 600;
    margin-right: 4px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
}
.car-card {
    background: var(--bone);
    border: 1px solid var(--line);
    transition: var(--t);
    display: flex;
    flex-direction: column;
}
.car-card:hover {
    border-color: var(--ink);
    transform: translateY(-3px);
}
.car-photo {
    aspect-ratio: 4 / 3;
    background: var(--snow-2);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.car-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.car-card:hover .car-photo img { transform: scale(1.04); }
.car-photo-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--snow-2) 0%, var(--cloud) 100%);
    display: grid;
    place-items: center;
    color: var(--slate);
    font-family: var(--font-display);
    font-size: 17px;
    text-align: center;
    padding: 20px;
    position: relative;
}
.car-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 12px; left: 12px;
    width: 14px; height: 14px;
    background: var(--red);
}
.car-photo-placeholder span {
    font-family: var(--font-mono);
    display: block;
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--silver);
}

/* Era tag — top-left ribbon, monospace */
.car-era {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--ink);
    color: var(--snow);
    padding: 5px 11px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 1;
}
.car-era.sports { background: var(--red); }
.car-era.tourer { background: var(--ink); }
.car-era.young { background: var(--slate); }

.car-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.car-fileno {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
}
.car-make {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-soft);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}
.car-card h3 {
    font-size: 26px;
    line-height: 1.05;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.015em;
}
.car-card h3 em { font-style: italic; color: var(--red); }
.car-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
}
.car-meta-item {
    padding: 4px 0;
}
.car-meta-item .l {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--slate-soft);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.car-meta-item .v {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
}
.car-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.car-foot .period {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.car-price {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
}
.car-price .cur {
    font-size: 0.5em;
    color: var(--slate-soft);
    margin-right: 3px;
    vertical-align: top;
    font-family: var(--font-mono);
}

/* ============================================================
   CAR DETAIL — magazine spread
   ============================================================ */
.car-hero {
    padding: 130px 0 80px;
    border-bottom: 1px solid var(--line);
}
.car-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 28px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 20px;
}
.car-hero-top .make {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--slate-soft);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.car-hero-top .make strong { color: var(--red); font-weight: 500; }
.car-hero-top h1 {
    font-size: clamp(54px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    font-weight: 500;
    margin-top: 16px;
}
.car-hero-top h1 em { font-style: italic; color: var(--red); }
.car-hero-top .right-block {
    text-align: right;
}
.car-hero-top .year {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 88px);
    line-height: 0.95;
    color: var(--red);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.car-hero-top .registration {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-soft);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 8px;
}

.car-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
}
.car-gallery-main {
    aspect-ratio: 16 / 11;
    background: var(--snow-2);
    overflow: hidden;
}
.car-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.car-gallery-main .car-photo-placeholder { font-size: 22px; }
.car-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.car-gallery-side > div {
    aspect-ratio: 4 / 3;
    background: var(--snow-2);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--line);
    transition: var(--t);
}
.car-gallery-side > div:hover { border-color: var(--red); }
.car-gallery-side > div img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.car-info-block {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
}
.car-info-text .desc {
    font-size: 19px;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.008em;
}
.car-info-text .desc em { color: var(--red); font-style: italic; }
.car-info-text p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
}
.car-info-text p:last-child { margin-bottom: 0; }

.car-booking-card {
    background: var(--ink);
    color: var(--snow);
    padding: 40px 36px;
    position: relative;
}
.car-booking-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 36px; height: 4px;
    background: var(--red);
}
.car-booking-card .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red-soft);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.car-booking-card .price {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--snow);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.car-booking-card .price .cur {
    font-size: 0.45em;
    color: var(--silver);
    margin-right: 4px;
    vertical-align: top;
    font-family: var(--font-mono);
}
.car-booking-card .price-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--silver);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(248, 248, 246, 0.14);
}
.car-booking-card ul {
    list-style: none;
    margin-bottom: 28px;
}
.car-booking-card ul li {
    padding: 9px 0 9px 22px;
    position: relative;
    font-size: 13.5px;
    color: rgba(248, 248, 246, 0.78);
    line-height: 1.6;
}
.car-booking-card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 16px;
    width: 12px; height: 1px;
    background: var(--red);
}
.car-booking-card .btn { width: 100%; justify-content: center; }
.car-booking-card .btn-primary { background: var(--red); }
.car-booking-card .btn-primary:hover { background: var(--snow); color: var(--ink); }

/* SPECS strip — data tables in mono */
.car-specs-block {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.spec-cell {
    padding: 28px 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bone);
}
.spec-cell .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.spec-cell .v {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.012em;
}
.spec-cell .v .mono-small {
    font-family: var(--font-mono);
    font-size: 0.6em;
    color: var(--slate-soft);
    margin-left: 6px;
    font-weight: 500;
}

/* The story-of-the-car block (signature differentiator) */
.car-provenance {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.car-provenance .section-tag { margin-bottom: 28px; }
.car-provenance h3 {
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1;
    margin-bottom: 36px;
    max-width: 720px;
    font-weight: 500;
    letter-spacing: -0.022em;
}
.car-provenance h3 em { font-style: italic; color: var(--red); }
.provenance-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 30px;
}
.prov-row {
    padding: 28px 28px 28px 0;
    border-right: 1px solid var(--line);
}
.prov-row:last-child { border-right: 0; padding-right: 0; }
.prov-row:not(:first-child) { padding-left: 28px; }
.prov-year {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--red);
    letter-spacing: 0.16em;
    margin-bottom: 12px;
    font-weight: 500;
}
.prov-row p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.65;
}
.prov-row p strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   ABOUT page — workshop story + team
   ============================================================ */
.about-hero {
    padding: 130px 0 80px;
    border-bottom: 1px solid var(--line);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: end;
}
.about-hero h1 {
    font-size: clamp(54px, 7.5vw, 104px);
    line-height: 0.92;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: -0.03em;
}
.about-hero h1 em { font-style: italic; color: var(--red); }
.about-hero .lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}
.about-hero-image {
    aspect-ratio: 4 / 5;
    background: var(--snow-2);
    overflow: hidden;
}
.about-hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-hero-image .hero-image-placeholder { font-size: 18px; }

/* Story timeline */
.story {
    max-width: 820px;
    margin: 0 auto;
}
.story h2 { margin-bottom: 50px; text-align: center; }
.story-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.story-row:last-child { border-bottom: 0; }
.story-row .year {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--red);
    font-style: italic;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}
.story-row .text p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
}
.story-row .text p:last-child { margin-bottom: 0; }
.story-row .text p strong {
    color: var(--ink);
    font-weight: 600;
}

/* Facts strip — newspaper-style */
.facts-strip {
    background: var(--ink);
    color: var(--snow);
    padding: 60px 0;
    margin: 80px 0;
}
.facts-strip .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.fact {
    padding: 0 32px;
    border-right: 1px solid rgba(248, 248, 246, 0.18);
}
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; padding-right: 0; }
.fact .v {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 0.95;
    color: var(--snow);
    font-weight: 500;
    letter-spacing: -0.028em;
    margin-bottom: 8px;
}
.fact .v em { color: var(--red-soft); font-style: italic; font-size: 0.7em; }
.fact .l {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--silver);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.team-card {
    background: var(--bone);
    border: 1px solid var(--line);
    transition: var(--t);
}
.team-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.team-photo {
    aspect-ratio: 4 / 5;
    background: var(--snow-2);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info {
    padding: 24px 26px 28px;
}
.team-role {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
}
.team-name {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}
.team-name em { color: var(--red); font-style: italic; }
.team-bio {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============================================================
   CONTACT page
   ============================================================ */
.contact-page {
    padding: 130px 0 100px;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.contact-side h1 {
    font-size: clamp(48px, 6.4vw, 88px);
    line-height: 0.94;
    margin-bottom: 26px;
    letter-spacing: -0.03em;
    font-weight: 500;
}
.contact-side h1 em { font-style: italic; color: var(--red); }
.contact-side .lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}
.contact-cards {
    border-top: 1px solid var(--line);
}
.contact-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    gap: 30px;
    align-items: baseline;
}
.contact-card .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}
.contact-card .value {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.55;
}
.contact-card .value a:hover { color: var(--red); }
.contact-card .phone {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.015em;
}

.contact-form-wrap {
    background: var(--bone);
    border: 1px solid var(--line);
    padding: 44px;
    position: relative;
}
.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 44px;
    width: 36px; height: 4px;
    background: var(--red);
}
.contact-form h3 {
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: -0.015em;
}
.contact-form h3 em { color: var(--red); font-style: italic; }
.form-row { margin-bottom: 18px; }
.form-row-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-row label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 13px 16px;
    background: var(--snow);
    border: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--t);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: 0;
    border-color: var(--red);
    background: var(--bone);
}
.form-row select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c8362b' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--stone-soft); }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }

.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}
.form-success.show { display: block; }
.form-success .check {
    width: 64px; height: 64px;
    background: var(--red);
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    color: var(--snow);
    font-size: 30px;
}
.form-success h3 {
    color: var(--ink);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
}
.form-success p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
}
.contact-form.hidden { display: none; }

/* ============================================================
   FOOTER — minimalist with horizontal lines
   ============================================================ */
.footer {
    background: var(--snow);
    padding: 80px 0 40px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 30px;
}
.footer-brand p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    margin-top: 18px;
}
.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a, .footer-col li {
    color: var(--ink-soft);
    font-size: 14px;
}
.footer-col li a:hover { color: var(--red); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.footer-bottom .red-dot { color: var(--red); }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--ink);
    color: var(--snow);
    padding: 22px 26px;
    z-index: 100;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(21, 23, 27, 0.3);
    border-top: 3px solid var(--red);
}
.cookie.show { display: flex; }
.cookie p {
    flex: 1;
    min-width: 220px;
    font-size: 13px;
    line-height: 1.55;
}
.cookie a { color: var(--red-soft); text-decoration: underline; }
.cookie button {
    padding: 9px 18px;
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cookie .accept { background: var(--red); color: var(--snow); }
.cookie .decline {
    background: transparent;
    color: var(--snow);
    border: 1px solid rgba(248, 248, 246, 0.2);
}

/* ============================================================
   Animations
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
    .header-inner { padding: 12px 20px; }
    .brand-text .name { font-size: 16px; }
    .nav-links {
        position: fixed;
        top: 70px; left: 12px; right: 12px;
        background: var(--bone);
        border: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 0;
        display: none;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 12px 18px; border-bottom: 1px solid var(--line-soft); }
    .nav-link:last-child { border-bottom: 0; }
    .nav-link.active::before { display: none; }
    .nav-cta { margin-left: 0; margin-top: 6px; }
    .burger { display: flex; }

    .hero { padding: 110px 0 60px; }
    .hero-grid, .about-hero-grid, .contact-page-grid, .car-info-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image, .about-hero-image { max-height: 600px; aspect-ratio: 4 / 4.4; }
    .hero-stats { gap: 0; }
    .hero-stat { padding-right: 16px; }
    .hero-stat .v { font-size: 30px; }
    .car-hero-top { flex-direction: column; align-items: flex-start; }
    .car-hero-top .right-block { text-align: left; }

    .approach { grid-template-columns: 1fr; }
    .app-card { border-right: 0; border-bottom: 1px solid var(--line); padding: 36px 0 !important; }
    .app-card:last-child { border-bottom: 0; }

    .fleet-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .car-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .car-gallery { grid-template-columns: 1fr; }
    .provenance-timeline { grid-template-columns: 1fr; }
    .prov-row { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 0 !important; }
    .prov-row:last-child { border-bottom: 0; }
    .section { padding: 70px 0; }

    .facts-strip .wrap { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
    .fact { padding: 0 16px !important; }
    .fact:nth-child(2) { border-right: 0; }
    .fact:nth-child(3) { padding-left: 0 !important; }
    .fact .v { font-size: 42px; }

    .contact-form-wrap { padding: 28px; }
    .form-row-pair { grid-template-columns: 1fr; }
    .contact-card { grid-template-columns: 110px 1fr; gap: 20px; }
    .story-row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 540px) {
    .wrap { padding: 0 20px; }
    .hero h1 { font-size: 48px; }
    .car-specs-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .facts-strip .wrap { grid-template-columns: 1fr; }
    .fact { border-right: 0 !important; }
}
