/* ============================================================
   Halton Hire Co · Construction equipment rental
   Industrial yellow · paper + ink + safety yellow
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --paper: #f5f4ef;
    --paper-2: #ebe9e0;
    --bone: #fcfbf6;
    --shell: #fffef9;
    --concrete: #e0ddd1;
    --rule: #c9c5b6;

    --ink: #14130f;
    --ink-soft: #1f1e19;
    --graphite: #3a3833;
    --slate: #5a5852;
    --stone: #7d7a72;
    --silver: #a09d94;
    --silver-soft: #c0bdb3;

    --yellow: #fbbf09;
    --yellow-deep: #d99e00;
    --yellow-soft: #fdd54a;
    --yellow-pale: #fef3c7;
    --yellow-glow: #fffbeb;

    --safety: #fb7402;
    --green: #15803d;
    --green-pale: #d1fae5;
    --red: #b91c1c;

    --line: rgba(20, 19, 15, 0.14);
    --line-soft: rgba(20, 19, 15, 0.06);
    --line-strong: rgba(20, 19, 15, 0.28);

    --shadow-sm: 0 1px 2px rgba(20, 19, 15, 0.04);
    --shadow: 0 6px 20px rgba(20, 19, 15, 0.07);
    --shadow-lg: 0 18px 44px rgba(20, 19, 15, 0.12);

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

    --max: 1300px;
    --r: 0px;
    --r-sm: 2px;
    --r-pill: 100px;
    --t: all 0.25s 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(--paper);
    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: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
    text-transform: none;
}

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

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

/* ============================================================
   HAZARD STRIPE — signature industrial element
   ============================================================ */
.hazard-stripe {
    height: 14px;
    background-image: repeating-linear-gradient(
        -45deg,
        var(--yellow) 0,
        var(--yellow) 18px,
        var(--ink) 18px,
        var(--ink) 36px
    );
}
.hazard-stripe.thin {
    height: 6px;
    background-image: repeating-linear-gradient(
        -45deg,
        var(--yellow) 0,
        var(--yellow) 8px,
        var(--ink) 8px,
        var(--ink) 16px
    );
}

/* ============================================================
   HEADER — bar with hazard stripe above
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245, 244, 239, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
}
/* Brand mark: yellow square with bold H */
.brand-mark {
    width: 40px; height: 40px;
    flex: none;
    background: var(--yellow);
    position: relative;
    display: grid;
    place-items: center;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    border: 2px solid var(--ink);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    text-transform: uppercase;
}
.brand-text .tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate);
    letter-spacing: 0.06em;
    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-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    padding: 8px 16px;
    transition: var(--t);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--ink); background: var(--yellow-pale); }
.nav-link.active {
    color: var(--ink);
    background: var(--yellow);
}
.nav-cta {
    background: var(--ink) !important;
    color: var(--yellow) !important;
    padding: 12px 22px !important;
    font-weight: 700 !important;
    margin-left: 10px;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.nav-cta:hover { background: var(--yellow) !important; color: var(--ink) !important; }
.burger {
    display: none;
    background: var(--yellow);
    border: 2px solid var(--ink);
    color: var(--ink);
    width: 42px; height: 42px;
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   SHARED — Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    padding: 16px 28px;
    cursor: pointer;
    border: 2px solid var(--ink);
    transition: var(--t);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--ink);
}
.btn-primary:hover {
    background: var(--ink);
    color: var(--yellow);
}
.btn-dark {
    background: var(--ink);
    color: var(--yellow);
}
.btn-dark:hover {
    background: var(--yellow);
    color: var(--ink);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--paper);
}
.btn .ar { transition: transform 0.3s ease; }
.btn:hover .ar { transform: translateX(3px); }

.btn-link {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 3px solid var(--yellow);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--t);
}
.btn-link:hover {
    color: var(--yellow-deep);
    border-color: var(--ink);
    gap: 14px;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: var(--yellow);
    padding: 5px 12px;
    border: 2px solid var(--ink);
}

.section-head { max-width: 880px; margin-bottom: 64px; }
.section-head h2 {
    font-size: clamp(40px, 5.6vw, 78px);
    line-height: 0.94;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
    font-weight: 800;
    text-transform: uppercase;
}
.section-head h2 em {
    font-style: normal;
    color: var(--yellow-deep);
    font-weight: 800;
    background: var(--ink);
    padding: 0 0.15em;
    color: var(--yellow);
    display: inline-block;
}
.section-head h2 mark {
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.18em;
    font-weight: 800;
}
.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
   ============================================================ */
.hero {
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding: 6px 12px;
    background: var(--yellow);
    border: 2px solid var(--ink);
}
.hero-eyebrow .dot {
    width: 7px; height: 7px;
    background: var(--ink);
    border-radius: 50%;
}

.hero h1 {
    font-size: clamp(54px, 8vw, 110px);
    line-height: 0.9;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 30px;
    font-weight: 900;
    text-transform: uppercase;
}
.hero h1 em {
    font-style: normal;
    background: var(--yellow);
    padding: 0 0.12em;
    margin: 0 0.04em;
    color: var(--ink);
    display: inline-block;
    transform: rotate(-1deg);
}
.hero h1 .accent {
    font-style: normal;
    color: var(--yellow-deep);
    font-weight: 900;
}

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

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

/* Hero stats — bold mono blocks */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
    border: 2px solid var(--ink);
    background: var(--shell);
}
.hero-stat {
    padding: 18px 20px;
    border-right: 2px solid var(--ink);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .v {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.03em;
    font-weight: 800;
}
.hero-stat .v .unit {
    font-family: var(--font-mono);
    font-size: 0.34em;
    color: var(--yellow-deep);
    margin-left: 4px;
    font-weight: 600;
    text-transform: uppercase;
}
.hero-stat .l {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate);
    letter-spacing: 0.06em;
    margin-top: 6px;
    text-transform: uppercase;
}

/* Hero image — sharp rectangle, no border-radius, hazard frame */
.hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--concrete);
    border: 2px solid var(--ink);
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-image-placeholder {
    width: 100%; height: 100%;
    background:
        linear-gradient(135deg, var(--graphite) 0%, var(--ink) 60%, var(--graphite) 100%);
    display: grid;
    place-items: center;
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: 13px;
    text-align: center;
    padding: 32px;
    position: relative;
}
/* Hazard corners on placeholder */
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    right: 20px; bottom: 20px;
    border: 3px solid var(--yellow);
    border-style: dashed;
}
.hero-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 40px; right: 40px;
    width: 80px; height: 80px;
    background: var(--yellow);
    box-shadow:
        -100px 0 0 var(--yellow),
        0 -100px 0 var(--yellow);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    opacity: 0.4;
}
.hero-image-placeholder .ph-text {
    position: relative;
    z-index: 1;
    color: rgba(245, 244, 239, 0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 10px;
}
.hero-image-placeholder .ph-text strong {
    display: block;
    margin-top: 8px;
    color: var(--yellow);
    font-size: 18px;
    font-family: var(--font-display);
    font-weight: 800;
}

/* Hero floating tag — on site banner */
.hero-tag {
    position: absolute;
    top: 18px; left: 18px;
    background: var(--yellow);
    color: var(--ink);
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    border: 2px solid var(--ink);
}
.hero-tag .dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-spec-badge {
    position: absolute;
    bottom: 18px; right: 18px;
    background: var(--ink);
    color: var(--shell);
    padding: 14px 18px;
    z-index: 2;
    border: 2px solid var(--yellow);
}
.hero-spec-badge .top {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    color: var(--yellow);
    margin-bottom: 4px;
    text-transform: uppercase;
}
.hero-spec-badge .v {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--shell);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* ============================================================
   APPROACH — 3 cards with hazard-corner accents
   ============================================================ */
.approach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.app-card {
    background: var(--shell);
    border: 2px solid var(--ink);
    padding: 36px 30px;
    transition: var(--t);
    position: relative;
}
.app-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.app-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40px; height: 40px;
    background: var(--yellow);
    border-left: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}
.app-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink);
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    background: var(--yellow);
    padding: 3px 8px;
    border: 1.5px solid var(--ink);
}
.app-icon {
    width: 52px; height: 52px;
    background: var(--ink);
    color: var(--yellow);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}
.app-card h3 {
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 14px;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.022em;
    text-transform: uppercase;
}
.app-card h3 em {
    font-style: normal;
    background: var(--yellow);
    padding: 0 0.1em;
    color: var(--ink);
}
.app-card p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ============================================================
   FLEET LISTING
   ============================================================ */
.fleet-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--ink);
}
.filter-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.filter-chip {
    background: var(--shell);
    border: 2px solid var(--ink);
    color: var(--ink);
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--t);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.filter-chip:hover { background: var(--yellow-pale); }
.filter-chip.active {
    background: var(--yellow);
    color: var(--ink);
}
.filter-count {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--paper-2);
    padding: 6px 12px;
    border: 1.5px solid var(--ink);
}
.filter-count strong {
    color: var(--ink);
    font-weight: 700;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.kit-card {
    background: var(--shell);
    border: 2px solid var(--ink);
    overflow: hidden;
    transition: var(--t);
    display: flex;
    flex-direction: column;
}
.kit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.kit-photo {
    aspect-ratio: 4 / 3;
    background: var(--ink);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
}
.kit-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.kit-card:hover .kit-photo img { transform: scale(1.04); }
.kit-photo-placeholder {
    width: 100%; height: 100%;
    background:
        repeating-linear-gradient(-45deg,
            var(--graphite) 0,
            var(--graphite) 14px,
            var(--ink) 14px,
            var(--ink) 28px);
    position: relative;
}
.kit-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    border: 3px dashed var(--yellow);
}
.kit-photo-placeholder .ph-label {
    position: absolute;
    bottom: 12px; left: 12px;
    color: var(--yellow);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
    background: var(--ink);
    padding: 3px 8px;
}

.kit-class {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--yellow);
    color: var(--ink);
    padding: 5px 11px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 1;
    border: 2px solid var(--ink);
}
.kit-class.heavy { background: var(--ink); color: var(--yellow); border-color: var(--yellow); }
.kit-class.compact { background: var(--yellow); color: var(--ink); }
.kit-class.lift { background: var(--safety); color: var(--shell); border-color: var(--ink); }
.kit-class.tools { background: var(--shell); color: var(--ink); }

.kit-status {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(20, 19, 15, 0.86);
    color: var(--shell);
    padding: 4px 10px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 600;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.kit-status .dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
}
.kit-status.few .dot { background: var(--yellow); }
.kit-status.out .dot { background: var(--red); }

.kit-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.kit-sku {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate);
    letter-spacing: 0.06em;
    font-weight: 600;
    text-transform: uppercase;
}
.kit-make {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink);
    letter-spacing: 0.06em;
    font-weight: 600;
    text-transform: uppercase;
}
.kit-card h3 {
    font-size: 22px;
    line-height: 1.05;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.022em;
    text-transform: uppercase;
}
.kit-card h3 em {
    font-style: normal;
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.1em;
}
.kit-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.spec-line {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--ink-soft);
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
}
.spec-line .k {
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.9em;
}
.spec-line .v {
    color: var(--ink);
    font-weight: 600;
}
.kit-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: auto;
    padding-top: 14px;
    border-top: 2px solid var(--ink);
}
.kit-foot .period {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--slate);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.kit-foot .period strong {
    color: var(--ink);
    font-weight: 700;
}
.kit-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1;
    background: var(--yellow);
    padding: 4px 10px;
    border: 2px solid var(--ink);
}
.kit-price .cur {
    font-size: 0.55em;
    color: var(--ink);
    margin-right: 2px;
    vertical-align: top;
    font-family: var(--font-mono);
    font-weight: 600;
}
.kit-price .per {
    font-family: var(--font-mono);
    font-size: 0.4em;
    color: var(--ink);
    font-weight: 600;
}

/* ============================================================
   YARD STATUS BOARD — signature element
   ============================================================ */
.yard-board {
    background: var(--shell);
    border: 2px solid var(--ink);
}
.yard-board-head {
    background: var(--ink);
    padding: 16px 26px;
    border-bottom: 2px solid var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--yellow);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.yard-board-head .left {
    color: var(--shell);
    font-weight: 700;
}
.yard-board-head .right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.yard-board-head .right .dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.yard-row {
    display: grid;
    grid-template-columns: 28px 1.4fr 1fr 1fr 100px;
    align-items: center;
    padding: 16px 26px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s ease;
}
.yard-row:last-child { border-bottom: 0; }
.yard-row:hover { background: var(--yellow-glow); }
.yard-row .indicator {
    width: 12px; height: 12px;
    background: var(--green);
    border: 2px solid var(--ink);
}
.yard-row.few .indicator { background: var(--yellow); }
.yard-row.out .indicator { background: var(--red); }
.yard-row .name {
    color: var(--ink);
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: -0.012em;
    text-transform: uppercase;
}
.yard-row .name small {
    display: block;
    color: var(--slate);
    font-family: var(--font-mono);
    font-size: 10px;
    margin-top: 2px;
    letter-spacing: 0.04em;
    font-weight: 500;
    text-transform: none;
}
.yard-row .stock {
    color: var(--ink-soft);
    font-family: var(--font-mono);
    font-size: 12px;
}
.yard-row .stock strong { color: var(--ink); font-weight: 700; }
.yard-row.few .stock { color: var(--yellow-deep); }
.yard-row.out .stock { color: var(--red); }
.yard-row .delivery {
    color: var(--ink-soft);
    font-family: var(--font-mono);
    font-size: 12px;
}
.yard-row .delivery strong { color: var(--ink); }
.yard-row .action {
    text-align: right;
}
.yard-row .action a {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border: 2px solid var(--ink);
    background: var(--yellow);
    display: inline-block;
}
.yard-row .action a:hover { background: var(--ink); color: var(--yellow); }
.yard-row.out .action a { background: var(--shell); pointer-events: none; opacity: 0.4; }

/* ============================================================
   KIT DETAIL PAGE
   ============================================================ */
.detail-hero {
    padding: 160px 0 70px;
}
.detail-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 24px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--ink);
    flex-wrap: wrap;
    gap: 20px;
}
.detail-hero-top .make {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--slate);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.detail-hero-top .make strong { color: var(--ink); font-weight: 700; }
.detail-hero-top h1 {
    font-size: clamp(52px, 7.5vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    font-weight: 900;
    margin-top: 14px;
    text-transform: uppercase;
}
.detail-hero-top h1 em {
    font-style: normal;
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.12em;
    display: inline-block;
}
.detail-hero-top .right-block { text-align: right; }
.detail-hero-top .sku {
    font-family: var(--font-mono);
    font-size: 30px;
    color: var(--ink);
    font-weight: 700;
}
.detail-hero-top .availability {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--green);
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--green-pale);
    padding: 4px 10px;
    border: 1.5px solid var(--green);
}
.detail-hero-top .availability .dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 16px;
}
.detail-gallery-main {
    aspect-ratio: 16 / 10;
    background: var(--ink);
    overflow: hidden;
    border: 2px solid var(--ink);
}
.detail-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.detail-gallery-main .kit-photo-placeholder { width: 100%; height: 100%; }
.detail-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.detail-gallery-side > div {
    aspect-ratio: 4 / 3;
    background: var(--ink);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--ink);
    transition: var(--t);
    position: relative;
}
.detail-gallery-side > div:hover { box-shadow: 0 0 0 4px var(--yellow); }
.detail-gallery-side > div img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.detail-gallery-side .kit-photo-placeholder { width: 100%; height: 100%; }
.detail-gallery-side .kit-photo-placeholder::before { width: 50%; height: 50%; }

.detail-info-block {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}
.detail-info-text .desc {
    font-size: 22px;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 26px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.018em;
}
.detail-info-text .desc em {
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.12em;
    font-style: normal;
}
.detail-info-text p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.detail-info-text p:last-child { margin-bottom: 0; }
.detail-info-text strong {
    background: var(--yellow-pale);
    padding: 1px 6px;
    border-radius: 2px;
    color: var(--ink);
    font-weight: 700;
}

.detail-booking-card {
    background: var(--ink);
    color: var(--shell);
    padding: 32px 30px;
    border: 2px solid var(--ink);
    position: relative;
}
.detail-booking-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px;
    height: 8px;
    background-image: repeating-linear-gradient(
        -45deg,
        var(--yellow) 0,
        var(--yellow) 12px,
        var(--ink) 12px,
        var(--ink) 24px
    );
}
.detail-booking-card .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--yellow);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin-top: 12px;
}
.detail-booking-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(252, 251, 246, 0.18);
}
.detail-booking-card .price-day {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--yellow);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}
.detail-booking-card .price-day .cur {
    font-size: 0.45em;
    color: var(--silver-soft);
    margin-right: 4px;
    vertical-align: top;
    font-family: var(--font-mono);
    font-weight: 600;
}
.detail-booking-card .price-day .per {
    font-family: var(--font-mono);
    font-size: 0.28em;
    color: var(--silver-soft);
    font-weight: 600;
    margin-left: 4px;
    text-transform: uppercase;
}
.detail-booking-card .price-week {
    text-align: right;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--silver-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.detail-booking-card .price-week strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--shell);
    margin-top: 4px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.detail-booking-card ul {
    list-style: none;
    margin-bottom: 22px;
}
.detail-booking-card ul li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 13.5px;
    color: rgba(252, 251, 246, 0.82);
    line-height: 1.55;
    font-family: var(--font-mono);
}
.detail-booking-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 8px;
    color: var(--yellow);
    font-weight: 700;
}
.detail-booking-card .btn { width: 100%; justify-content: center; }

/* SPECS table */
.detail-specs-block {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 2px solid var(--ink);
}
.detail-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 2px solid var(--ink);
    border-left: 2px solid var(--ink);
}
.spec-cell {
    padding: 22px 22px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    background: var(--shell);
}
.spec-cell .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: var(--yellow);
    display: inline-block;
    padding: 2px 6px;
    border: 1.5px solid var(--ink);
}
.spec-cell .v {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.022em;
}
.spec-cell .v .mono-small {
    font-family: var(--font-mono);
    font-size: 0.55em;
    color: var(--slate);
    margin-left: 4px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Attachments / extras */
.extras-block {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 2px solid var(--ink);
}
.extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.extra-item {
    background: var(--shell);
    border: 2px solid var(--ink);
    padding: 20px;
    transition: var(--t);
}
.extra-item:hover { background: var(--yellow-pale); transform: translateY(-2px); }
.extra-name {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.012em;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.extra-price {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink);
    font-weight: 700;
    background: var(--yellow);
    padding: 2px 6px;
    display: inline-block;
    border: 1.5px solid var(--ink);
    text-transform: uppercase;
}
.extra-desc {
    font-size: 12.5px;
    color: var(--slate);
    line-height: 1.55;
    margin-top: 10px;
}

/* ============================================================
   ABOUT — story + crew + facts
   ============================================================ */
.about-hero {
    padding: 130px 0 80px;
    border-bottom: 2px solid var(--ink);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: end;
}
.about-hero h1 {
    font-size: clamp(48px, 6.8vw, 92px);
    line-height: 0.92;
    margin-bottom: 28px;
    font-weight: 900;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}
.about-hero h1 em {
    font-style: normal;
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.12em;
    display: inline-block;
}
.about-hero .lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 540px;
}
.about-hero-image {
    aspect-ratio: 4 / 5;
    background: var(--ink);
    overflow: hidden;
    border: 2px solid var(--ink);
}
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-image .kit-photo-placeholder { width: 100%; height: 100%; }

/* Story timeline */
.logbook {
    max-width: 840px;
    margin: 0 auto;
}
.logbook h2 { margin-bottom: 50px; text-align: center; }
.log-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 36px;
    padding: 26px 0;
    border-bottom: 2px solid var(--ink);
    align-items: start;
}
.log-row:first-child { border-top: 2px solid var(--ink); }
.log-row .year {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--ink);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    background: var(--yellow);
    padding: 8px 14px;
    border: 2px solid var(--ink);
    display: inline-block;
}
.log-row .text p {
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 12px;
}
.log-row .text p:last-child { margin-bottom: 0; }
.log-row .text p strong {
    color: var(--ink);
    font-weight: 700;
    background: var(--yellow-pale);
    padding: 1px 5px;
}

/* Facts band */
.facts-band {
    background: var(--ink);
    color: var(--shell);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-image:
        repeating-linear-gradient(-45deg,
            var(--yellow) 0,
            var(--yellow) 18px,
            var(--ink) 18px,
            var(--ink) 36px) 14;
}
.facts-band .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.fact {
    padding: 0 30px;
    border-right: 1px solid rgba(252, 251, 246, 0.14);
}
.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: 1;
    color: var(--yellow);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.fact .v em { color: var(--shell); font-style: normal; font-size: 0.62em; font-weight: 700; }
.fact .l {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--silver-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Crew */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.crew-card {
    background: var(--shell);
    border: 2px solid var(--ink);
    overflow: hidden;
    transition: var(--t);
}
.crew-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.crew-photo {
    aspect-ratio: 4 / 5;
    background: var(--ink);
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
}
.crew-photo img { width: 100%; height: 100%; object-fit: cover; }
.crew-photo .kit-photo-placeholder { width: 100%; height: 100%; }
.crew-info {
    padding: 22px 24px 24px;
}
.crew-role {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink);
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    background: var(--yellow);
    padding: 3px 8px;
    border: 1.5px solid var(--ink);
    display: inline-block;
}
.crew-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.022em;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.crew-name em {
    font-style: normal;
    background: var(--yellow-pale);
    color: var(--ink);
    padding: 0 0.1em;
}
.crew-bio {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-page {
    padding: 130px 0 100px;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
}
.contact-side h1 {
    font-size: clamp(48px, 6.4vw, 88px);
    line-height: 0.94;
    margin-bottom: 24px;
    letter-spacing: -0.035em;
    font-weight: 900;
    text-transform: uppercase;
}
.contact-side h1 em {
    font-style: normal;
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.12em;
    display: inline-block;
}
.contact-side .lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 480px;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-card {
    background: var(--shell);
    border: 2px solid var(--ink);
    padding: 22px;
    border-top: 8px solid var(--yellow);
}
.contact-card .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink);
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: var(--yellow);
    padding: 2px 6px;
    display: inline-block;
    border: 1.5px solid var(--ink);
}
.contact-card .value {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.55;
}
.contact-card .value a:hover { color: var(--yellow-deep); }
.contact-card .value .phone {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-form-wrap {
    background: var(--shell);
    border: 2px solid var(--ink);
    padding: 38px;
    position: relative;
}
.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 10px;
    background-image: repeating-linear-gradient(
        -45deg,
        var(--yellow) 0,
        var(--yellow) 14px,
        var(--ink) 14px,
        var(--ink) 28px
    );
}
.contact-form h3 {
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.022em;
    text-transform: uppercase;
    margin-top: 14px;
}
.contact-form h3 em {
    font-style: normal;
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.12em;
}
.form-row { margin-bottom: 16px; }
.form-row-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-row label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink);
    letter-spacing: 0.08em;
    margin-bottom: 7px;
    font-weight: 700;
    text-transform: uppercase;
}
.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 12px 14px;
    background: var(--paper);
    border: 2px solid var(--ink);
    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;
    background: var(--yellow-glow);
    box-shadow: 0 0 0 3px var(--yellow);
}
.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='%2314130f' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--silver-soft); }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}
.form-success.show { display: block; }
.form-success .check {
    width: 60px; height: 60px;
    background: var(--yellow);
    border: 2px solid var(--ink);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: var(--ink);
    font-size: 28px;
    font-weight: 900;
}
.form-success h3 {
    color: var(--ink);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.form-success p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.65;
}
.contact-form.hidden { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: var(--shell);
    padding: 70px 0 34px;
}
.footer .brand-text .name { color: var(--shell); }
.footer .brand-text .tag { color: var(--silver-soft); }
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(252, 251, 246, 0.14);
    margin-bottom: 26px;
}
.footer-brand p {
    color: rgba(252, 251, 246, 0.7);
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    margin-top: 16px;
}
.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--yellow);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col li a, .footer-col li {
    color: rgba(252, 251, 246, 0.7);
    font-size: 14px;
}
.footer-col li a:hover { color: var(--yellow); }
.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(--silver);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.footer-bottom .sep { color: var(--yellow); margin: 0 6px; }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 540px;
    margin: 0 auto;
    background: var(--ink);
    color: var(--shell);
    padding: 20px 24px;
    z-index: 100;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px rgba(20, 19, 15, 0.3);
    border-top: 6px solid transparent;
    border-image: repeating-linear-gradient(
        -45deg,
        var(--yellow) 0,
        var(--yellow) 10px,
        var(--ink) 10px,
        var(--ink) 20px
    ) 6;
}
.cookie.show { display: flex; }
.cookie p {
    flex: 1;
    min-width: 220px;
    font-size: 13px;
    line-height: 1.55;
}
.cookie a { color: var(--yellow); text-decoration: underline; }
.cookie button {
    padding: 9px 16px;
    border: 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cookie .accept { background: var(--yellow); color: var(--ink); }
.cookie .decline {
    background: transparent;
    color: var(--shell);
    border: 1.5px solid rgba(252, 251, 246, 0.3);
}

/* ============================================================
   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: 14px 20px; }
    .brand-text .name { font-size: 16px; }
    .nav-links {
        position: fixed;
        top: 84px; left: 12px; right: 12px;
        background: var(--shell);
        border: 2px solid var(--ink);
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 2px;
        display: none;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 12px 18px; }
    .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
    .burger { display: flex; }

    .hero { padding: 110px 0 60px; }
    .hero-grid, .about-hero-grid, .contact-page-grid, .detail-info-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image, .about-hero-image { max-height: 600px; aspect-ratio: 4 / 4.4; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-stat:nth-child(2) { border-right: 0; }
    .hero-stat:nth-child(3) {
        grid-column: span 2;
        border-top: 2px solid var(--ink);
        border-right: 0;
    }
    .hero-stat .v { font-size: 28px; }
    .detail-hero-top { flex-direction: column; align-items: flex-start; }
    .detail-hero-top .right-block { text-align: left; }

    .approach, .fleet-grid, .crew-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .detail-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-gallery { grid-template-columns: 1fr; }
    .extras-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 70px 0; }

    .yard-row { grid-template-columns: 16px 1fr 70px; font-size: 12px; padding: 14px 18px; gap: 12px; }
    .yard-row .stock, .yard-row .delivery { display: none; }
    .yard-row .name { font-size: 15px; }

    .facts-band .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: 24px; }
    .contact-cards { grid-template-columns: 1fr; }
    .form-row-pair { grid-template-columns: 1fr; }
    .log-row { grid-template-columns: 1fr; gap: 12px; }
    .log-row .year { width: max-content; }
}
@media (max-width: 540px) {
    .wrap { padding: 0 18px; }
    .hero h1 { font-size: 44px; }
    .detail-specs-grid { grid-template-columns: 1fr; }
    .extras-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .facts-band .wrap { grid-template-columns: 1fr; }
    .fact { border-right: 0 !important; }
}
