/* ============================================================
   Northbrook Motorcars · Boutique car rental
   Premium chrome · off-white + graphite + brass
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --paper: #f6f4ef;
    --paper-2: #ece8df;
    --bone: #fbf9f4;
    --warm-white: #fefdfa;
    --chrome: #e2dfd6;

    --graphite: #2a2a2a;
    --graphite-soft: #3d3d3d;
    --slate: #5a5a5a;
    --slate-soft: #7a7a7a;
    --silver: #a0a0a0;
    --silver-soft: #c4c2bc;

    --brass: #b08e54;
    --brass-deep: #8a6e3e;
    --brass-soft: #d4b78a;
    --brass-pale: #ecdfc7;

    --ink: #161614;
    --ink-soft: #2a2a26;

    --line: rgba(22, 22, 20, 0.12);
    --line-soft: rgba(22, 22, 20, 0.05);
    --line-strong: rgba(22, 22, 20, 0.22);
    --brass-line: rgba(176, 142, 84, 0.35);

    --shadow-sm: 0 4px 14px rgba(22, 22, 20, 0.05);
    --shadow: 0 14px 36px rgba(22, 22, 20, 0.08);
    --shadow-lg: 0 26px 60px rgba(22, 22, 20, 0.12);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, system-ui, sans-serif;

    --max: 1280px;
    --r: 10px;
    --r-lg: 18px;
    --r-pill: 100px;
    --t: all 0.35s 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.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.012em;
    color: var(--ink);
}

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

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

/* ============================================================
   HEADER — slim editorial bar with brass accent
   ============================================================ */
.header {
    position: fixed;
    top: 16px; left: 0; right: 0;
    z-index: 100;
    pointer-events: none;
}
.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 14px 12px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
    background: rgba(251, 249, 244, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-pill);
    box-shadow: 0 4px 24px rgba(22, 22, 20, 0.04);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
/* Brand mark: monogram N with brass underline */
.brand-mark {
    width: 38px; height: 38px;
    flex: none;
    background: var(--graphite);
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    line-height: 1;
}
.brand-mark::after {
    content: 'N';
    color: var(--brass-soft);
    transform: translateX(-1px);
}
.brand-mark::before {
    content: '';
    position: absolute;
    bottom: 9px;
    width: 14px; height: 1.5px;
    background: var(--brass);
    border-radius: 1px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand-text .tag {
    font-family: var(--font-body);
    font-size: 9.5px;
    color: var(--slate);
    letter-spacing: 0.3em;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    transition: var(--t);
    position: relative;
}
.nav-link:hover { background: var(--paper-2); color: var(--ink); }
.nav-link.active {
    color: var(--ink);
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px; height: 1.5px;
    background: var(--brass);
}
.nav-cta {
    background: var(--graphite) !important;
    color: var(--paper) !important;
    padding: 11px 22px !important;
    font-weight: 600 !important;
    margin-left: 6px;
}
.nav-cta:hover { background: var(--brass-deep) !important; }
.burger {
    display: none;
    background: var(--paper-2);
    border: 0;
    color: var(--ink);
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   SHARED — Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: var(--r-pill);
    cursor: pointer;
    border: 0;
    transition: var(--t);
}
.btn-primary {
    background: var(--graphite);
    color: var(--paper);
}
.btn-primary:hover {
    background: var(--brass-deep);
    color: var(--paper);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(138, 110, 62, 0.3);
}
.btn-brass {
    background: var(--brass);
    color: var(--paper);
}
.btn-brass:hover {
    background: var(--brass-deep);
    color: var(--paper);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid 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-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 3px;
    transition: var(--t);
}
.btn-link:hover {
    color: var(--brass-deep);
    border-color: var(--brass-deep);
    gap: 12px;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--brass-deep);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.section-tag::before {
    content: '';
    width: 28px; height: 1.5px;
    background: var(--brass);
}

.section-head { max-width: 820px; margin-bottom: 64px; }
.section-head h2 {
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 0.98;
    margin-bottom: 22px;
    letter-spacing: -0.025em;
    font-weight: 500;
}
.section-head h2 em {
    font-style: italic;
    color: var(--brass-deep);
}
.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 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 180px; right: -300px;
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1px solid var(--brass-line);
    pointer-events: none;
    opacity: 0.5;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 34px;
}
.hero-eyebrow .ring {
    width: 28px; height: 2px;
    background: var(--brass);
}
.hero-eyebrow .est {
    color: var(--slate);
    margin-left: 6px;
    letter-spacing: 0.12em;
}

.hero h1 {
    font-size: clamp(54px, 8.2vw, 112px);
    line-height: 0.94;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin-bottom: 30px;
    font-weight: 500;
}
.hero h1 em {
    font-style: italic;
    color: var(--brass-deep);
    font-weight: 400;
}
.hero h1 .accent {
    color: var(--graphite);
    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-meta {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-meta-item .v {
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.025em;
    font-weight: 500;
}
.hero-meta-item .v em {
    color: var(--brass-deep);
    font-style: italic;
    font-size: 0.7em;
    font-weight: 400;
}
.hero-meta-item .l {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Hero image */
.hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--chrome);
    box-shadow: var(--shadow-lg);
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-image-placeholder {
    width: 100%; height: 100%;
    background:
        linear-gradient(135deg, var(--paper-2) 0%, var(--chrome) 50%, var(--silver-soft) 100%);
    display: grid;
    place-items: center;
    color: var(--graphite);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    text-align: center;
    padding: 32px;
    position: relative;
}
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid var(--brass-line);
    border-radius: var(--r);
    pointer-events: none;
}
.hero-image-placeholder .ph-text { position: relative; z-index: 1; }
.hero-image-placeholder span {
    font-family: var(--font-body);
    font-style: normal;
    display: block;
    margin-top: 18px;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--slate);
    font-weight: 600;
}

.hero-tag {
    position: absolute;
    top: 22px; left: 22px;
    background: rgba(22, 22, 20, 0.86);
    backdrop-filter: blur(10px);
    color: var(--paper);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.hero-tag::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--brass-soft);
    border-radius: 50%;
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-badge {
    position: absolute;
    bottom: 22px; right: 22px;
    background: rgba(254, 253, 250, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 6px 20px rgba(22, 22, 20, 0.15);
    z-index: 2;
    border-left: 2px solid var(--brass);
}
.hero-badge .top { display: flex; align-items: center; gap: 8px; }
.hero-badge .stars { color: var(--brass-deep); font-size: 12px; letter-spacing: 2px; }
.hero-badge .rating {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1;
}
.hero-badge small {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--slate);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ============================================================
   APPROACH cards
   ============================================================ */
.approach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.app-card {
    background: var(--bone);
    border: 1px solid var(--line-soft);
    border-radius: var(--r);
    padding: 42px 34px;
    transition: var(--t);
    position: relative;
}
.app-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--brass);
    transform: scaleX(0.16);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.app-card:hover::before { transform: scaleX(1); }
.app-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--brass-deep);
    margin-bottom: 26px;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.app-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--paper-2);
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    color: var(--graphite);
    border: 1px solid var(--brass-line);
}
.app-card h3 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--ink);
    font-weight: 500;
}
.app-card h3 em { font-style: italic; color: var(--brass-deep); }
.app-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   FLEET LISTING — cars grid
   ============================================================ */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}
.filter-chip {
    background: var(--bone);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    padding: 9px 18px;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--t);
}
.filter-chip:hover { border-color: var(--brass); color: var(--ink); }
.filter-chip.active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.filter-count {
    margin-left: auto;
    align-self: center;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--slate);
    letter-spacing: 0.06em;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.car-card {
    background: var(--bone);
    border: 1px solid var(--line-soft);
    border-radius: var(--r);
    overflow: hidden;
    transition: var(--t);
    display: flex;
    flex-direction: column;
}
.car-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.car-photo {
    aspect-ratio: 4 / 3;
    background: var(--chrome);
    position: relative;
    overflow: hidden;
}
.car-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.car-card:hover .car-photo img { transform: scale(1.04); }
.car-photo-placeholder {
    width: 100%; height: 100%;
    background:
        linear-gradient(135deg, var(--paper-2) 0%, var(--chrome) 60%, var(--silver-soft) 100%);
    display: grid;
    place-items: center;
    color: var(--slate);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}
.car-tier {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(22, 22, 20, 0.86);
    backdrop-filter: blur(6px);
    color: var(--paper);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.car-tier.economy { background: rgba(90, 90, 90, 0.92); }
.car-tier.business { background: rgba(42, 42, 42, 0.92); }
.car-tier.premium { background: rgba(176, 142, 84, 0.95); }

.car-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.car-make {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
}
.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(--brass-deep); }
.car-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
    margin-top: 4px;
}
.car-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 500;
}
.car-spec svg { color: var(--brass-deep); flex: none; }
.car-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
}
.car-foot .period {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}
.car-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
}
.car-price .cur {
    font-size: 0.5em;
    color: var(--slate);
    margin-right: 3px;
    vertical-align: top;
}
.car-price .per {
    font-family: var(--font-body);
    font-size: 0.4em;
    color: var(--slate);
    font-weight: 500;
}

/* ============================================================
   CAR DETAIL PAGE — gallery + specs
   ============================================================ */
.car-hero {
    padding: 130px 0 60px;
}
.car-hero-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}
.car-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.car-gallery-main {
    aspect-ratio: 16 / 10;
    background: var(--chrome);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.car-gallery-main img,
.car-gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.car-gallery-main .car-photo-placeholder,
.car-gallery-thumb .car-photo-placeholder {
    width: 100%; height: 100%;
}
.car-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.car-gallery-thumb {
    aspect-ratio: 4 / 3;
    background: var(--chrome);
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--t);
}
.car-gallery-thumb:hover { border-color: var(--brass); }

.car-info-side .car-make {
    font-size: 13px;
    letter-spacing: 0.28em;
    margin-bottom: 12px;
}
.car-info-side h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    line-height: 0.98;
    margin-bottom: 22px;
    letter-spacing: -0.022em;
    font-weight: 500;
    color: var(--ink);
}
.car-info-side h1 em { font-style: italic; color: var(--brass-deep); }
.car-info-side .desc {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 36px;
}
.car-info-side .price-row {
    background: var(--bone);
    border: 1px solid var(--line-soft);
    border-left: 3px solid var(--brass);
    border-radius: var(--r);
    padding: 24px 28px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}
.price-row .left .label {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--brass-deep);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}
.price-row .left .v {
    font-family: var(--font-display);
    font-size: 44px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
}
.price-row .left .v .cur {
    font-size: 0.55em;
    color: var(--slate);
    margin-right: 4px;
    vertical-align: top;
}
.price-row .left small {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--slate);
    margin-top: 4px;
    display: block;
    letter-spacing: 0.04em;
}
.car-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Specs grid */
.car-specs-block {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
}
.spec-cell {
    padding: 26px 24px;
    background: var(--bone);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.spec-cell:nth-child(4n) { border-right: 0; }
.spec-cell:nth-last-child(-n+4) { border-bottom: 0; }
.spec-cell .label {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--brass-deep);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.spec-cell .v {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

/* Included list */
.included-block {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 36px;
    margin-top: 30px;
}
.included-item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px;
    color: var(--ink-soft);
}
.included-item::before {
    content: '';
    width: 14px; height: 1.5px;
    background: var(--brass);
    flex: none;
    transform: translateY(-3px);
}

/* ============================================================
   ABOUT page — team + story
   ============================================================ */
.about-hero {
    padding: 130px 0 80px;
}
.about-hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-hero .lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 30px;
}
.about-hero-image {
    aspect-ratio: 4 / 5;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--chrome);
    box-shadow: var(--shadow);
}

.story-block {
    max-width: 760px;
    margin: 0 auto;
}
.story-block h2 { margin-bottom: 36px; }
.story-block p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 22px;
}
.story-block p strong {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15em;
    color: var(--ink);
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--bone);
    border: 1px solid var(--line-soft);
    border-radius: var(--r);
    overflow: hidden;
    transition: var(--t);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-photo {
    aspect-ratio: 4 / 5;
    background: var(--chrome);
}
.team-photo .car-photo-placeholder { font-size: 14px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info {
    padding: 22px 24px 24px;
}
.team-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.012em;
    margin-bottom: 4px;
}
.team-name em { color: var(--brass-deep); font-style: italic; }
.team-role {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--brass-deep);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}
.team-bio {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.facts-band {
    background: var(--graphite);
    color: var(--paper);
    border-radius: var(--r-lg);
    padding: 60px 50px;
    margin: 60px 0;
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.fact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 1px solid rgba(246, 244, 239, 0.18);
    padding-left: 24px;
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact .v {
    font-family: var(--font-display);
    font-size: 50px;
    line-height: 1;
    color: var(--paper);
    font-weight: 500;
    letter-spacing: -0.025em;
}
.fact .v em { color: var(--brass-soft); font-style: italic; font-size: 0.7em; }
.fact .l {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--silver-soft);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================================
   CONTACT — large form + info side
   ============================================================ */
.contact-page {
    padding: 130px 0 90px;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.contact-side .section-tag { margin-bottom: 20px; }
.contact-side h1 {
    font-size: clamp(48px, 6vw, 84px);
    line-height: 0.96;
    margin-bottom: 26px;
    letter-spacing: -0.028em;
    font-weight: 500;
}
.contact-side h1 em { font-style: italic; color: var(--brass-deep); }
.contact-side .lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 460px;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}
.contact-card {
    background: var(--bone);
    border: 1px solid var(--line-soft);
    border-left: 2px solid var(--brass);
    border-radius: var(--r);
    padding: 22px;
}
.contact-card .label {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--brass-deep);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-card .value {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.55;
}
.contact-card .value a:hover { color: var(--brass-deep); }
.contact-card .phone {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.contact-form-wrap {
    background: var(--bone);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-lg);
    padding: 44px;
    position: relative;
}
.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 44px; right: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.contact-form h3 {
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 28px;
    font-weight: 500;
    letter-spacing: -0.015em;
}
.contact-form h3 em { color: var(--brass-deep); 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-body);
    font-size: 10px;
    color: var(--brass-deep);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 13px 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    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(--brass);
    background: var(--warm-white);
}
.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='%238a6e3e' 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(--silver); }
.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(--brass);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    color: var(--paper);
    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
   ============================================================ */
.footer {
    background: var(--graphite);
    color: var(--paper);
    padding: 70px 0 36px;
}
.footer h5 { color: var(--paper); }
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(246, 244, 239, 0.12);
    margin-bottom: 30px;
}
.footer-brand .brand .brand-text .name { color: var(--paper); }
.footer-brand .brand .brand-text .tag { color: var(--silver-soft); }
.footer-brand .brand .brand-mark { background: var(--paper); color: var(--graphite); }
.footer-brand .brand .brand-mark::after { color: var(--brass-deep); }
.footer-brand p {
    color: rgba(246, 244, 239, 0.7);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin-top: 18px;
}
.footer-col h5 {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--brass-soft);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a, .footer-col li {
    color: rgba(246, 244, 239, 0.7);
    font-size: 14px;
}
.footer-col li a:hover { color: var(--brass-soft); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--silver);
}

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--graphite);
    color: var(--paper);
    border-radius: var(--r);
    padding: 22px 26px;
    z-index: 100;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(22, 22, 20, 0.3);
    border-left: 3px solid var(--brass);
}
.cookie.show { display: flex; }
.cookie p {
    flex: 1;
    min-width: 220px;
    font-size: 13px;
    line-height: 1.55;
}
.cookie a { color: var(--brass-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;
    border-radius: var(--r-pill);
    text-transform: uppercase;
}
.cookie .accept { background: var(--brass); color: var(--paper); }
.cookie .decline {
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(246, 244, 239, 0.2);
}

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
    .header { top: 12px; }
    .header-inner { padding: 8px 8px 8px 18px; gap: 10px; }
    .brand-text .name { font-size: 18px; }
    .nav-links {
        position: fixed;
        top: 80px; left: 12px; right: 12px;
        background: var(--bone);
        border: 1px solid var(--line);
        border-radius: var(--r);
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 4px;
        display: none;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 12px 18px; }
    .burger { display: grid; }

    .hero { padding: 120px 0 60px; }
    .hero-grid, .car-hero-wrap, .about-hero-wrap, .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image, .about-hero-image { max-height: 600px; aspect-ratio: 4 / 4.6; }
    .hero-meta { gap: 28px; }
    .hero-meta-item .v { font-size: 30px; }

    .approach, .fleet-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .car-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .spec-cell:nth-child(4n) { border-right: 1px solid var(--line); }
    .spec-cell:nth-child(2n) { border-right: 0; }
    .spec-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
    .spec-cell:nth-last-child(-n+2) { border-bottom: 0; }
    .included-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
    .facts-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
    .fact:nth-child(3) { border-left: 0; padding-left: 0; }
    .fact { padding-left: 22px; }

    .contact-form-wrap { padding: 28px; }
    .contact-cards { grid-template-columns: 1fr; }
    .form-row-pair { grid-template-columns: 1fr; }
    .facts-band { padding: 40px 28px; }
}
@media (max-width: 540px) {
    .wrap { padding: 0 20px; }
    .hero h1 { font-size: 50px; }
    .car-specs-grid { grid-template-columns: 1fr; }
    .spec-cell:nth-child(2n) { border-right: 0; }
    .spec-cell { border-bottom: 1px solid var(--line) !important; }
    .spec-cell:last-child { border-bottom: 0 !important; }
    .facts-grid { grid-template-columns: 1fr; }
    .fact { border-left: 0; padding-left: 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
