/* ============================================================
   Tidewater Camper Co · Coastal RV rental
   Coastal calm · off-white + ocean blue + driftwood
   ============================================================ */

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

:root {
    /* Off-whites & paper */
    --paper: #f7f4ee;
    --paper-2: #ebe5d7;
    --bone: #fcfaf4;
    --shell: #fffdf6;
    --sand: #e8dfc9;
    --sand-2: #d8ccb0;

    /* Ocean blues */
    --ocean: #1f4a6b;
    --ocean-deep: #143651;
    --ocean-soft: #4a7396;
    --tide: #6e95b3;
    --tide-pale: #b6cbd9;
    --tide-mist: #dde7ee;

    /* Driftwood + accents */
    --drift: #8b7355;
    --drift-deep: #6a5640;
    --drift-soft: #b59f7e;
    --drift-pale: #d8c7a8;

    /* Warm sun (limited use) */
    --sun: #d49852;
    --sun-soft: #e4b884;

    /* Ink + neutrals */
    --ink: #1a2330;
    --ink-soft: #2e3b4d;
    --slate: #5a6678;
    --stone: #828b9a;
    --silver: #b0b6bf;

    --line: rgba(26, 35, 48, 0.14);
    --line-soft: rgba(26, 35, 48, 0.06);
    --line-strong: rgba(26, 35, 48, 0.28);
    --line-tide: rgba(110, 149, 179, 0.4);

    --shadow-sm: 0 2px 8px rgba(26, 35, 48, 0.04);
    --shadow: 0 10px 28px rgba(26, 35, 48, 0.08);
    --shadow-lg: 0 24px 50px rgba(31, 74, 107, 0.14);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

    --max: 1280px;
    --r: 6px;
    --r-lg: 14px;
    --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.02;
    letter-spacing: -0.015em;
    color: var(--ink);
}

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

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

/* ============================================================
   HEADER — solid bar with manifest line above
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(247, 244, 238, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
/* Manifest top-strip — looks like a shipping bill header */
.header-manifest {
    background: var(--ocean);
    color: var(--shell);
    padding: 7px 0;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.header-manifest .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(252, 250, 244, 0.78);
}
.header-manifest .wrap strong { color: var(--shell); font-weight: 600; }
.header-manifest .sep {
    color: var(--sun-soft);
    margin: 0 8px;
}

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px 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: anchor-square in ocean blue */
.brand-mark {
    width: 38px; height: 38px;
    flex: none;
    background: var(--ocean);
    border-radius: 4px;
    position: relative;
    display: grid;
    place-items: center;
}
.brand-mark::before {
    /* Simplified compass-cross inside */
    content: '';
    width: 16px;
    height: 16px;
    background:
        linear-gradient(to right, transparent 47%, var(--shell) 47%, var(--shell) 53%, transparent 53%),
        linear-gradient(to bottom, transparent 47%, var(--shell) 47%, var(--shell) 53%, transparent 53%);
}
.brand-mark::after {
    /* Small inner ring */
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: var(--sun);
    border-radius: 50%;
}
.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-mono);
    font-size: 10px;
    color: var(--ocean-soft);
    letter-spacing: 0.16em;
    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(--ocean); }
.nav-link.active {
    color: var(--ocean);
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 2px;
    background: var(--sun);
}
.nav-cta {
    background: var(--ocean) !important;
    color: var(--shell) !important;
    padding: 12px 22px !important;
    font-weight: 600 !important;
    margin-left: 12px;
    font-size: 12px !important;
    letter-spacing: 0.04em;
    border-radius: 4px;
}
.nav-cta:hover { background: var(--ocean-deep) !important; }
.burger {
    display: none;
    background: var(--tide-mist);
    border: 1px solid var(--line);
    color: var(--ocean);
    width: 40px; height: 40px;
    border-radius: 4px;
    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-body);
    font-size: 13px;
    font-weight: 600;
    padding: 16px 28px;
    cursor: pointer;
    border: 0;
    transition: var(--t);
    border-radius: 4px;
    letter-spacing: 0.04em;
}
.btn-primary {
    background: var(--ocean);
    color: var(--shell);
}
.btn-primary:hover {
    background: var(--ocean-deep);
    color: var(--shell);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(31, 74, 107, 0.28);
}
.btn-sun {
    background: var(--sun);
    color: var(--ink);
}
.btn-sun:hover {
    background: var(--drift);
    color: var(--shell);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--ocean);
    border: 1.5px solid var(--ocean);
}
.btn-ghost:hover {
    background: var(--ocean);
    color: var(--shell);
}
.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(--ocean);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1.5px solid var(--sun);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--t);
}
.btn-link:hover {
    color: var(--ocean-deep);
    border-color: var(--ocean);
    gap: 14px;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ocean);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
/* dotted route line as section-tag prefix */
.section-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: repeating-linear-gradient(to right,
        var(--ocean) 0,
        var(--ocean) 4px,
        transparent 4px,
        transparent 8px);
}

.section-head { max-width: 860px; margin-bottom: 64px; }
.section-head h2 {
    font-size: clamp(38px, 5.2vw, 70px);
    line-height: 1;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    font-weight: 500;
}
.section-head h2 em {
    font-style: italic;
    color: var(--ocean);
    font-weight: 500;
}
.section-head h2 .accent {
    color: var(--drift);
    font-style: italic;
    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 — split with route-strip below
   ============================================================ */
.hero {
    padding: 160px 0 80px;
    position: relative;
}
.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(--ocean);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.hero-eyebrow .compass {
    width: 18px; height: 18px;
    border: 1.5px solid var(--ocean);
    border-radius: 50%;
    position: relative;
    flex: none;
}
.hero-eyebrow .compass::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--sun);
    border-radius: 50%;
}
.hero-eyebrow .est {
    color: var(--slate);
    margin-left: 6px;
    letter-spacing: 0.12em;
}

.hero h1 {
    font-size: clamp(52px, 7.8vw, 108px);
    line-height: 0.94;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 30px;
    font-weight: 500;
}
.hero h1 em {
    font-style: italic;
    color: var(--ocean);
    font-weight: 500;
}
.hero h1 .accent {
    color: var(--drift);
    font-style: italic;
    font-weight: 400;
}

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

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

/* Hero image — large rectangle with maritime caption */
.hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--tide-mist);
    border-radius: var(--r);
    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(180deg, var(--tide-pale) 0%, var(--tide-mist) 55%, var(--sand) 100%);
    display: grid;
    place-items: center;
    color: var(--ocean-deep);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    text-align: center;
    padding: 32px;
    position: relative;
}
/* Horizon line in placeholder */
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(31, 74, 107, 0.3) 20%,
        rgba(31, 74, 107, 0.3) 80%,
        transparent 100%);
}
/* Sun spot in placeholder */
.hero-image-placeholder::after {
    content: '';
    position: absolute;
    top: 35%;
    right: 25%;
    width: 50px; height: 50px;
    background: radial-gradient(circle, var(--sun-soft) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.7;
}
.hero-image-placeholder .ph-text { position: relative; z-index: 1; }
.hero-image-placeholder span {
    font-family: var(--font-mono);
    font-style: normal;
    display: block;
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ocean-soft);
}

/* Floating tide tag */
.hero-tag {
    position: absolute;
    top: 22px; left: 22px;
    background: var(--shell);
    color: var(--ocean);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    border: 1px solid var(--line-tide);
}
.hero-tag::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--sun);
    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-coords {
    position: absolute;
    bottom: 22px; right: 22px;
    background: rgba(20, 54, 81, 0.92);
    color: var(--shell);
    padding: 12px 16px;
    border-radius: 4px;
    font-family: var(--font-mono);
    z-index: 2;
}
.hero-coords .top {
    font-size: 9.5px;
    letter-spacing: 0.18em;
    color: var(--tide-pale);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.hero-coords .coords {
    font-size: 13px;
    color: var(--shell);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Hero stats row — manifest table */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 56px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.hero-stat {
    padding-right: 24px;
    border-right: 1px dashed var(--line-tide);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .v {
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.025em;
    font-weight: 600;
    font-style: italic;
}
.hero-stat .v .unit {
    font-family: var(--font-mono);
    font-size: 0.34em;
    color: var(--ocean);
    margin-left: 4px;
    font-weight: 500;
    vertical-align: top;
    font-style: normal;
    letter-spacing: 0.06em;
}
.hero-stat .l {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ocean-soft);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ============================================================
   APPROACH — 3-card with dotted route between
   ============================================================ */
.approach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.app-card {
    background: var(--shell);
    border: 1px solid var(--line-soft);
    border-radius: var(--r);
    padding: 40px 32px;
    transition: var(--t);
    position: relative;
}
.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--line-tide);
}
.app-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--drift);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}
.app-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(to right,
        var(--drift-soft) 0,
        var(--drift-soft) 3px,
        transparent 3px,
        transparent 6px);
}
.app-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--tide-mist);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--ocean);
    border: 1px solid var(--line-tide);
}
.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(--ocean); }
.app-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   FLEET — listing of campers
   ============================================================ */
.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: 8px;
    flex-wrap: wrap;
}
.filter-chip {
    background: var(--shell);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    padding: 8px 18px;
    border-radius: var(--r-pill);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t);
}
.filter-chip:hover { border-color: var(--ocean); color: var(--ocean); }
.filter-chip.active {
    background: var(--ocean);
    color: var(--shell);
    border-color: var(--ocean);
}
.filter-count {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.filter-count strong {
    color: var(--ocean);
    font-weight: 600;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.camper-card {
    background: var(--shell);
    border: 1px solid var(--line-soft);
    border-radius: var(--r);
    overflow: hidden;
    transition: var(--t);
    display: flex;
    flex-direction: column;
}
.camper-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--line-tide);
}
.camper-photo {
    aspect-ratio: 4 / 3;
    background: var(--tide-mist);
    position: relative;
    overflow: hidden;
}
.camper-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.camper-card:hover .camper-photo img { transform: scale(1.04); }
.camper-photo-placeholder {
    width: 100%; height: 100%;
    background:
        linear-gradient(180deg, var(--tide-pale) 0%, var(--tide-mist) 55%, var(--sand) 100%);
    display: grid;
    place-items: center;
    color: var(--ocean-deep);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    text-align: center;
    padding: 20px;
    position: relative;
}
.camper-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(31, 74, 107, 0.25) 30%, rgba(31, 74, 107, 0.25) 70%, transparent 100%);
}
.camper-photo-placeholder span {
    font-family: var(--font-mono);
    font-style: normal;
    display: block;
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ocean-soft);
}

.camper-class {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--shell);
    color: var(--ocean);
    padding: 5px 12px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    z-index: 1;
    border: 1px solid var(--line-tide);
}
.camper-class.van { background: var(--shell); color: var(--ocean); }
.camper-class.compact { background: var(--ocean); color: var(--shell); border-color: var(--ocean); }
.camper-class.full { background: var(--drift); color: var(--shell); border-color: var(--drift); }

.camper-sleeps {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(20, 54, 81, 0.86);
    color: var(--shell);
    padding: 5px 11px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    z-index: 1;
}

.camper-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.camper-id {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--sun);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}
.camper-make {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ocean-soft);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}
.camper-card h3 {
    font-size: 26px;
    line-height: 1.05;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.012em;
}
.camper-card h3 em { font-style: italic; color: var(--ocean); }
.camper-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
    margin-top: 4px;
}
.camper-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.camper-feature svg { color: var(--ocean); flex: none; }
.camper-foot {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--line-tide);
}
.camper-foot .period {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ocean-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.camper-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: var(--ocean);
    letter-spacing: -0.02em;
    line-height: 1;
}
.camper-price .cur {
    font-size: 0.5em;
    color: var(--ocean-soft);
    margin-right: 3px;
    vertical-align: top;
    font-family: var(--font-mono);
    font-style: normal;
}

/* ============================================================
   ROUTE PLANNER — signature element (sample trip itinerary)
   ============================================================ */
.route-band {
    background: var(--ocean);
    color: var(--shell);
    border-radius: var(--r-lg);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}
.route-band::before {
    /* Subtle radial gradient like a chart */
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--ocean-soft) 0%, transparent 65%);
    opacity: 0.5;
    border-radius: 50%;
}
.route-band-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(252, 250, 244, 0.18);
    position: relative;
}
.route-band-head h3 {
    color: var(--shell);
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 500;
}
.route-band-head h3 em { font-style: italic; color: var(--sun-soft); }
.route-band-head .file-no {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--tide-pale);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.route-band-head .file-no strong { color: var(--shell); }

.route-stops {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
/* Horizontal dotted line connecting the stops */
.route-stops::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(to right,
        var(--sun-soft) 0,
        var(--sun-soft) 6px,
        transparent 6px,
        transparent 12px);
    z-index: 0;
}
.stop {
    position: relative;
    text-align: center;
    z-index: 1;
}
.stop-marker {
    width: 26px; height: 26px;
    background: var(--ocean);
    border: 2px solid var(--sun);
    border-radius: 50%;
    margin: 0 auto 18px;
    position: relative;
}
.stop-marker::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: var(--sun);
    border-radius: 50%;
}
.stop-day {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--sun-soft);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}
.stop-name {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--shell);
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: -0.005em;
    line-height: 1.15;
}
.stop-name em { font-style: italic; color: var(--sun-soft); }
.stop-miles {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--tide-pale);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.route-band-foot {
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid rgba(252, 250, 244, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--tide-pale);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.route-band-foot strong { color: var(--shell); }

/* ============================================================
   CAMPER DETAIL — gallery + spec + provisions
   ============================================================ */
.camper-hero {
    padding: 160px 0 80px;
}
.camper-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;
}
.camper-hero-top .make {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ocean-soft);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.camper-hero-top .make strong { color: var(--sun); font-weight: 600; }
.camper-hero-top h1 {
    font-size: clamp(50px, 7vw, 96px);
    line-height: 0.94;
    letter-spacing: -0.028em;
    font-weight: 500;
    margin-top: 16px;
}
.camper-hero-top h1 em { font-style: italic; color: var(--ocean); }
.camper-hero-top .right-block { text-align: right; }
.camper-hero-top .year {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.95;
    color: var(--drift);
    font-weight: 600;
    letter-spacing: -0.02em;
}
.camper-hero-top .vin {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ocean-soft);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 8px;
}

.camper-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 22px;
}
.camper-gallery-main {
    aspect-ratio: 16 / 11;
    background: var(--tide-mist);
    border-radius: var(--r);
    overflow: hidden;
}
.camper-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.camper-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.camper-gallery-side > div {
    aspect-ratio: 4 / 3;
    background: var(--tide-mist);
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--t);
}
.camper-gallery-side > div:hover { border-color: var(--sun); }
.camper-gallery-side > div img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.camper-gallery-main .camper-photo-placeholder,
.camper-gallery-side .camper-photo-placeholder {
    width: 100%; height: 100%;
    font-size: 18px;
}
.camper-gallery-side .camper-photo-placeholder { font-size: 13px; }

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

.camper-booking-card {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 36px 32px;
    position: relative;
    border-top: 4px solid var(--sun);
}
.camper-booking-card .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ocean);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.camper-booking-card .price {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--ocean);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 6px;
}
.camper-booking-card .price .cur {
    font-size: 0.45em;
    color: var(--ocean-soft);
    margin-right: 4px;
    vertical-align: top;
    font-family: var(--font-mono);
    font-style: normal;
}
.camper-booking-card .price-sub {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--slate);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.camper-booking-card ul {
    list-style: none;
    margin-bottom: 24px;
}
.camper-booking-card ul li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.55;
}
.camper-booking-card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 16px;
    width: 12px;
    height: 2px;
    background: repeating-linear-gradient(to right,
        var(--sun) 0,
        var(--sun) 2px,
        transparent 2px,
        transparent 4px);
}
.camper-booking-card .btn { width: 100%; justify-content: center; }

/* SPECS — manifest table */
.camper-specs-block {
    margin-top: 72px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.camper-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: 26px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--shell);
}
.spec-cell .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ocean);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.spec-cell .v {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.012em;
}
.spec-cell .v .mono-small {
    font-family: var(--font-mono);
    font-size: 0.6em;
    color: var(--ocean-soft);
    margin-left: 6px;
    font-weight: 500;
}

/* PROVISIONS — list of what's included */
.provisions-block {
    margin-top: 72px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}
.provisions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 36px;
    margin-top: 30px;
}
.provision-item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line-tide);
    font-size: 14px;
    color: var(--ink-soft);
}
.provision-item .check {
    color: var(--sun);
    flex: none;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 13px;
}
.provision-item .item-name { color: var(--ink); font-weight: 500; flex: 1; }
.provision-item .item-qty {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ocean-soft);
    letter-spacing: 0.06em;
}

/* ============================================================
   ABOUT — story + crew + facts
   ============================================================ */
.about-hero {
    padding: 160px 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(50px, 7vw, 98px);
    line-height: 0.94;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: -0.028em;
}
.about-hero h1 em { font-style: italic; color: var(--ocean); }
.about-hero h1 .accent { color: var(--drift); font-style: italic; }
.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(--tide-mist);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

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

/* Facts band */
.facts-band {
    background: var(--ocean);
    color: var(--shell);
    padding: 60px 0;
}
.facts-band .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.fact {
    padding: 0 32px;
    border-right: 1px dashed rgba(252, 250, 244, 0.22);
}
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; padding-right: 0; }
.fact .v {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 56px;
    line-height: 0.95;
    color: var(--shell);
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}
.fact .v em { color: var(--sun-soft); font-style: italic; font-size: 0.7em; }
.fact .l {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--tide-pale);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact-page {
    padding: 160px 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, 86px);
    line-height: 0.95;
    margin-bottom: 26px;
    letter-spacing: -0.028em;
    font-weight: 500;
}
.contact-side h1 em { font-style: italic; color: var(--ocean); }
.contact-side .lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-card {
    background: var(--shell);
    border: 1px solid var(--line-soft);
    border-radius: var(--r);
    padding: 22px;
    border-top: 3px solid var(--ocean);
}
.contact-card .label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ocean);
    letter-spacing: 0.2em;
    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(--ocean); }
.contact-card .phone {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 26px;
    color: var(--ocean);
    font-weight: 600;
    letter-spacing: -0.015em;
}

.contact-form-wrap {
    background: var(--shell);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 44px;
    position: relative;
    border-top: 4px solid var(--sun);
}
.contact-form h3 {
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: -0.015em;
}
.contact-form h3 em { color: var(--ocean); 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(--ocean);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 13px 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    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(--ocean);
    background: var(--shell);
}
.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='%231f4a6b' 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(--sun);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    color: var(--ink);
    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(--paper-2);
    padding: 70px 0 36px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px dashed var(--line-tide);
    margin-bottom: 28px;
}
.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(--ocean);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}
.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(--ocean); }
.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);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.footer-bottom .sep { color: var(--sun); margin: 0 8px; }

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--ocean);
    color: var(--shell);
    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(31, 74, 107, 0.32);
    border-top: 3px solid var(--sun);
}
.cookie.show { display: flex; }
.cookie p {
    flex: 1;
    min-width: 220px;
    font-size: 13px;
    line-height: 1.55;
}
.cookie a { color: var(--sun-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: 4px;
    text-transform: uppercase;
}
.cookie .accept { background: var(--sun); color: var(--ink); }
.cookie .decline {
    background: transparent;
    color: var(--shell);
    border: 1px solid rgba(252, 250, 244, 0.2);
}

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
    .header-manifest { display: none; }
    .header-inner { padding: 12px 20px; }
    .brand-text .name { font-size: 18px; }
    .nav-links {
        position: fixed;
        top: 70px; left: 12px; right: 12px;
        background: var(--shell);
        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; }
    .nav-link.active::after { display: none; }
    .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, .camper-info-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image, .about-hero-image { max-height: 620px; aspect-ratio: 4 / 4.6; }
    .hero-stats { gap: 0; }
    .hero-stat { padding-right: 16px; }
    .hero-stat .v { font-size: 32px; }
    .camper-hero-top { flex-direction: column; align-items: flex-start; }
    .camper-hero-top .right-block { text-align: left; }

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

    .route-band { padding: 40px 26px; }
    .route-band-head h3 { font-size: 28px; }
    .route-stops { grid-template-columns: 1fr; gap: 24px; }
    .route-stops::before { display: none; }
    .stop { display: flex; align-items: center; gap: 16px; text-align: left; }
    .stop-marker { margin: 0; flex: none; }
    .stop > div { flex: 1; }

    .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: 44px; }

    .contact-form-wrap { padding: 28px; }
    .contact-cards { grid-template-columns: 1fr; }
    .form-row-pair { grid-template-columns: 1fr; }
    .log-row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 540px) {
    .wrap { padding: 0 20px; }
    .hero h1 { font-size: 48px; }
    .camper-specs-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; }
}
