/* ============================================================
   Exped Now — Django + Unpoly
   Neo-brutalist Gen-Z design system
   ============================================================ */

:root {
    --bg: #F6F6F4;
    --surface: #FFFFFF;
    --ink: #0A0A0A;
    --ink-soft: #4A4A4A;
    --orange: #FF4A1C;
    --orange-hover: #E03A12;
    --yellow: #D4FF26;
    --yellow-hover: #C2EB1B;
    --grey: #B4B4B4;
    --error: #FF1C1C;
    --success: #00D153;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Epilogue', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--yellow); color: var(--ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Brutalist shadows ---------- */
.brutal-sm { box-shadow: 2px 2px 0 0 var(--ink); }
.brutal-md { box-shadow: 4px 4px 0 0 var(--ink); }
.brutal-lg { box-shadow: 8px 8px 0 0 var(--ink); }
.brutal-xl { box-shadow: 12px 12px 0 0 var(--ink); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 22px;
    border: 2px solid var(--ink);
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn-brutal { box-shadow: 4px 4px 0 0 var(--ink); }
.btn-brutal:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--ink); }
.btn-brutal:active { transform: translate(4px, 4px); box-shadow: 0 0 0 0 var(--ink); }
.btn-orange { background: var(--orange); color: white; }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-black { background: var(--ink); color: white; }
.btn-white { background: var(--surface); color: var(--ink); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
}
.navbar-inner {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
}
.brand-name {
    font-size: 26px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}
.brand-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    background: var(--orange);
    color: white;
    padding: 3px 6px;
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
}
.nav-links {
    display: none;
    gap: 32px;
}
.nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta { display: none; }
@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-cta { display: inline-block; }
}

/* ---------- Hero ---------- */
.hero {
    padding: 56px 24px 100px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    margin-top: -3%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 10;
}
@media (min-width: 900px) {
    .hero-grid { grid-template-columns: 7fr 5fr; }
}
.hero-pill {
    margin-bottom: 0%;
    display: inline-block;
    background: var(--yellow);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    padding: 4px 12px;
    transform: rotate(-2deg);
    margin-bottom: 24px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.hero-h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.85;
    margin: 0;
    font-size: clamp(56px, 10vw, 120px);
}
.accent { color: var(--orange); }
.hero-sub {
    margin-top: 24px;
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 540px;
}
.hero-ctas {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 55px;
}
@media (max-width: 899px) {
    .hero-ctas {
        justify-content: flex-start;
    }
}
.hero-stats {
    margin-top: 40px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
}
.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
}
.hero-image-column {
    display: flex;
    flex-direction: column;
}
.hero-image-wrap {
    position: relative;
    margin-bottom: 10%;
}
.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 0 var(--ink);
}
.hero-tag {
    position: absolute;
    padding: 8px 14px;
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.hero-tag-bl { background: var(--ink); color: var(--yellow); bottom: -20px; left: -20px; transform: rotate(-3deg); }
.hero-tag-tr { background: var(--orange); color: white; top: -16px; right: -16px; transform: rotate(6deg); }
.hero-stroke {
    position: absolute;
    margin-left: 3%;
    bottom: -40px;
    left: 0;
    right: 0;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 140px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    -webkit-text-stroke: 2px var(--ink);
    color: transparent;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
}

/* ---------- Marquee ---------- */
.marquee {
    background: var(--yellow);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    overflow: hidden;
    padding: 12px 0;
}
.marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Value props ---------- */
.value-props {
    padding: 23px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .value-props { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
    border: 2px solid var(--ink);
    padding: 32px;
    box-shadow: 8px 8px 0 0 var(--ink);
}
.value-orange { background: var(--orange); color: white; }
.value-white { background: var(--surface); }
.value-yellow { background: var(--yellow); }
.value-icon { font-size: 32px; }
.value-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 16px 0 12px;
    line-height: 1;
}

/* ---------- Sections ---------- */
.trending-section, .stories-preview, .testimonials, .cta-final {
    padding: 16px 24px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin: 0 0 8px;
}
.section-h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 0.85;
    margin: 0;
}
.section-h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 28px;
    margin: 48px 0 16px;
    line-height: 1;
}
.page-h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.85;
    margin: 0;
}
.link-underline {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ---------- Trek grid + cards ---------- */
.trek-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 700px) { .trek-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trek-grid { grid-template-columns: repeat(3, 1fr); } }
.trek-card {
    display: block;
    background: var(--surface);
    border: 2px solid var(--ink);
    transition: box-shadow 200ms ease;
    color: inherit;
}
.trek-card:hover { box-shadow: 12px 12px 0 0 var(--ink); }
.trek-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
}
.trek-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 500ms ease;
}
.trek-card:hover .trek-card-img img { transform: scale(1.05); }
.badge {
    position: absolute;
    padding: 4px 8px;
    border: 2px solid var(--ink);
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 2px 2px 0 0 var(--ink);
}
.badge-trending {
    top: 12px; left: 12px;
    background: var(--orange);
    color: white;
    transform: rotate(-3deg);
}
.badge-difficulty {
    top: 12px; right: 12px;
    background: var(--surface);
    box-shadow: none;
}
.difficulty-easy { background: var(--success); color: white; }
.difficulty-moderate { background: var(--yellow); }
.difficulty-hard { background: var(--orange); color: white; }
.difficulty-extreme { background: var(--ink); color: white; }
.badge-white {
    position: static;
    background: var(--surface);
    box-shadow: none;
}
.trek-card-body { padding: 20px; }
.trek-region {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
}
.trek-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 8px 0;
    line-height: 1.1;
}
.trek-desc {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trek-meta {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 16px;
}
.trek-stats {
    display: flex;
    gap: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
}
.trek-price { text-align: right; }
.price-amount {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 1;
}
.price-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
}
.trek-footer {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid var(--ink);
    padding-top: 12px;
    margin-top: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ---------- Treks list page ---------- */
.treks-header {
    padding: 48px 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 24px;
}
.count-pill {
    background: var(--yellow);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    padding: 4px 12px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.filter-bar {
    margin: 0 24px 40px;
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
    padding: 20px;
}
.filter-row {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .filter-row { grid-template-columns: 5fr 7fr; }
}
.filter-search {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--ink);
    background: var(--bg);
    font-family: 'Epilogue', sans-serif;
    font-weight: 500;
}
.filter-search:focus { background: white; outline: none; border-color: var(--orange); }
.filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pill {
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    padding: 8px 14px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: transform 120ms ease, box-shadow 120ms ease;
}
.pill:hover { transform: translate(1px, 1px); box-shadow: 1px 1px 0 0 var(--ink); }
.pill-active { background: var(--ink); color: white; }
.pill-live { background: var(--yellow); box-shadow: none; padding: 2px 8px; }
#trek-grid { padding: 0 24px 80px; }
.empty-state {
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
    padding: 40px;
    text-align: center;
}
.empty-state h3 {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
}

/* ---------- Testimonials ---------- */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 900px) {
    .testimonials { grid-template-columns: 5fr 7fr; }
}
.testimonial-main {
    background: var(--ink);
    color: white;
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 0 var(--ink);
    padding: 32px;
}
.t-star { color: var(--yellow); font-size: 24px; }
.testimonial-main p { font-size: 18px; line-height: 1.6; margin: 16px 0; }
.t-author {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--yellow);
    margin-top: 24px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.t-card {
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
    padding: 20px;
}
.t-card p { margin: 12px 0; font-weight: 500; }
.t-card .t-author { color: var(--ink); margin-top: 12px; }
.t-yellow { background: var(--yellow); align-self: start; }
.t-white { background: var(--surface); margin-top: 32px; }
.t-orange { background: var(--orange); color: white; grid-column: span 2; padding: 24px; }
.t-orange .t-author { color: var(--yellow); }
.t-star-sm { font-size: 18px; }

/* ---------- Stories ---------- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 700px) { .story-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .story-grid { grid-template-columns: repeat(3, 1fr); } }
.story-card {
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
    overflow: hidden;
}
@media (min-width: 700px) { .story-card-offset { transform: translateY(32px); } }
.story-img {
    aspect-ratio: 5/4;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
}
.story-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 700ms ease;
}
.story-card:hover .story-img img { transform: scale(1.05); }
.story-body { padding: 20px; }
.story-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--yellow);
    border: 2px solid var(--ink);
    padding: 2px 8px;
}
.story-body h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 12px 0 8px;
    line-height: 1.1;
}
.story-body p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 16px;
}
.story-meta, .story-footer {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
}
.story-footer {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid var(--ink);
    padding-top: 12px;
    margin-top: 16px;
}

.stories-page { padding: 48px 24px 80px; }

/* ---------- Trek detail ---------- */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 24px;
}
.back-link:hover { color: var(--orange); }
.detail-grid {
    padding: 0 24px 80px;
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 8fr 4fr; } }
.detail-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.detail-region {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
}
.detail-hero {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 2px solid var(--ink);
    margin-top: 24px;
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
@media (min-width: 700px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    padding: 16px;
}
.stat-card .stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1;
    margin-top: 8px;
}
.stat-orange { background: var(--orange); color: white; }
.stat-orange .stat-label { color: rgba(255,255,255,0.7); }
.detail-desc { font-size: 18px; line-height: 1.6; color: var(--ink); }
.itinerary { display: flex; flex-direction: column; gap: 12px; }
.itin-row {
    display: flex;
    gap: 16px;
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    padding: 16px;
}
.itin-day {
    background: var(--ink);
    color: var(--yellow);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    padding: 8px 12px;
    height: fit-content;
    font-size: 18px;
}
.itin-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}
.itin-desc { font-size: 14px; color: var(--ink-soft); }
.inclusions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 700px) { .inclusions { grid-template-columns: 1fr 1fr; } }
.inclusions li {
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
}
.detail-sidebar { position: sticky; top: 96px; align-self: start; }

/* ---------- Booking form ---------- */
.booking-form {
    background: var(--surface);
    border: 2px solid var(--ink);
    padding: 24px;
}
.booking-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.booking-head h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    margin: 0;
}
.form-label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 12px 0 4px;
}
.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--ink);
    background: var(--bg);
    font-family: 'Epilogue', sans-serif;
    font-weight: 500;
    font-size: 14px;
}
.form-input:focus { background: white; outline: none; }
.form-input-center { text-align: center; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; }
.form-error {
    color: var(--error);
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}
.form-success {
    color: var(--success);
    font-weight: 600;
    margin-top: 12px;
    font-size: 14px;
}
.participants-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.btn-icon {
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    padding: 8px 12px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn-icon:hover { transform: translate(1px, 1px); box-shadow: 1px 1px 0 0 var(--ink); }
.booking-total {
    background: var(--ink);
    color: white;
    border: 2px solid var(--ink);
    padding: 16px;
    margin: 20px 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.booking-total-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--yellow);
}
.booking-total-sub {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
}
.booking-total-amount {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 28px;
}
.booking-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 12px;
}

/* ---------- Confirmation ---------- */
.confirmation-wrap {
    padding: 64px 24px;
    max-width: 800px;
    margin: 0 auto;
}
.confirmation-card {
    background: var(--surface);
    border: 2px solid var(--ink);
    padding: 48px 32px;
}
.confirm-check {
    font-size: 56px;
    color: var(--success);
    line-height: 1;
}
.confirm-id {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-top: 16px;
}
.confirm-sub { font-size: 18px; color: var(--ink-soft); margin-top: 16px; }
.confirm-stats {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 700px) { .confirm-stats { grid-template-columns: repeat(4, 1fr); } }
.confirm-stat {
    background: var(--bg);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    padding: 16px;
}
.confirm-stat-accent { background: var(--yellow); }
.confirm-stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
}
.confirm-stat-value {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 4px;
}
.confirm-ctas {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- About ---------- */
.about-top {
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 900px) { .about-top { grid-template-columns: 7fr 5fr; } }
.about-p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink);
    max-width: 560px;
    margin: 16px 0;
}
.about-stats {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.about-stat {
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
    padding: 20px;
}
.about-stat-orange { background: var(--orange); color: white; }
.about-stat-yellow { background: var(--yellow); }
.about-stat-white { background: var(--surface); }
.about-stat .stat-num { font-size: 36px; }
.about-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 2px solid var(--ink); }

.contact-section {
    padding: 96px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 900px) { .contact-section { grid-template-columns: 5fr 7fr; } }
.contact-info h2 { font-family: 'Syne', sans-serif; font-size: 48px; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1; margin: 0; }
.contact-info p { margin-top: 16px; font-size: 18px; color: var(--ink-soft); }
.contact-meta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
}
.contact-label {
    color: var(--ink-soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.contact-form {
    background: var(--surface);
    border: 2px solid var(--ink);
    padding: 24px;
}

/* ---------- Final CTA ---------- */
.cta-final {
    margin: 24px;
    background: var(--orange);
    color: white;
    border: 2px solid var(--ink);
    box-shadow: 12px 12px 0 0 var(--ink);
    padding: 64px;
    position: relative;
    overflow: hidden;
}
.cta-final h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.85;
    margin: 0;
}
.cta-final p {
    margin-top: 16px;
    font-size: 18px;
    max-width: 540px;
}
.cta-final .btn { margin-top: 32px; }
.cta-stroke {
    position: absolute;
    right: -32px;
    bottom: -48px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 180px;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.1;
    pointer-events: none;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ink);
    color: white;
    margin-top: 96px;
    border-top: 4px solid var(--orange);
}
.footer-grid {
    padding: 64px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 5fr 2fr 2fr 3fr; }
}
.footer-headline {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.85;
    margin: 0;
}
.footer-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--yellow);
    margin: 0 0 12px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin: 8px 0; font-size: 14px; }
.footer ul li a:hover { color: var(--orange); }
.socials { display: flex; gap: 12px; }
.socials a {
    padding: 8px 12px;
    border: 2px solid white;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
}
.socials a:hover { background: var(--orange); border-color: var(--orange); }
.footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.2);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ---------- Flash messages ---------- */
.flash-wrap {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.flash {
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
}
.flash-success { background: var(--success); color: white; }
.flash-error { background: var(--error); color: white; }

/* ---------- Unpoly transitions ---------- */
up-progress-bar { background: var(--orange); }

/* ---------- Auth pages ---------- */
.auth-wrap {
    padding: 64px 24px;
    max-width: 480px;
    margin: 0 auto;
}
.auth-card {
    background: var(--surface);
    border: 2px solid var(--ink);
    padding: 32px;
}
.auth-h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    font-size: 56px;
    line-height: 0.85;
    margin: 8px 0 0;
}
.auth-sub { color: var(--ink-soft); margin: 16px 0 24px; }
.auth-card .form-input, .auth-card input { width: 100%; padding: 10px 12px; border: 2px solid var(--ink); background: var(--bg); font-family: 'Epilogue', sans-serif; font-size: 14px; margin-bottom: 4px; }
.auth-card input:focus { outline: none; background: white; }
.form-help { display: block; font-size: 11px; color: var(--ink-soft); margin: 4px 0 8px; }
.auth-switch { text-align: center; margin-top: 24px; font-family: 'Space Mono', monospace; font-size: 13px; }

/* ---------- Navbar auth additions ---------- */
.nav-auth { display: none; gap: 16px; align-items: center; }
@media (min-width: 768px) { .nav-auth { display: flex; } }
.nav-link-text {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.nav-link-text:hover { color: var(--orange); }
.nav-logout { display: none; align-items: center; gap: 10px; margin: 0; }
@media (min-width: 768px) { .nav-logout { display: flex; } }
.user-pill {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    background: var(--yellow);
    border: 2px solid var(--ink);
    padding: 4px 10px;
}

/* ---------- My bookings ---------- */
.bookings-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.booking-row {
    background: var(--surface);
    border: 2px solid var(--ink);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: inherit;
}
.booking-row:hover { box-shadow: 8px 8px 0 0 var(--ink); }
.booking-row-trek {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.booking-row-meta {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 4px;
}
.booking-row-right { text-align: right; }
.booking-row-status {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 8px;
    border: 2px solid var(--ink);
    display: inline-block;
}
.booking-row-total {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin-top: 8px;
}
.status-pending { background: var(--yellow); }
.status-confirmed { background: var(--success); color: white; }
.status-cancelled { background: var(--grey); }
.muted { color: var(--ink-soft); }

/* ---------- Deposit CTA on confirmation ---------- */
.deposit-cta {
    margin-top: 32px;
    background: var(--yellow);
    border: 2px solid var(--ink);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.deposit-amount {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
}
.deposit-sub {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
    margin-left: 8px;
    font-weight: 700;
}
.status-paid { color: var(--success); }

/* ---------- Payment return status ---------- */
.payment-result {
    margin-top: 32px;
    border: 2px solid var(--ink);
    padding: 32px;
    text-align: center;
    box-shadow: 4px 4px 0 0 var(--ink);
}
.payment-paid { background: var(--surface); }
.payment-failed { background: var(--surface); color: var(--error); }
.payment-pending { background: var(--bg); }
.spinner {
    font-size: 32px;
    letter-spacing: 8px;
    color: var(--orange);
    animation: pulse 1s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ---------- Form field spacing (signup / login) ---------- */
.form-field { margin-bottom: 18px; }
.form-field .form-label { margin: 0 0 6px 0; display: block; }
.form-field .form-input,
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--ink);
    background: var(--bg);
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
}
.form-field input:focus { background: white; outline: none; }
.form-field .form-help {
    display: block;
    font-size: 11px;
    color: var(--ink-soft);
    margin-top: 6px;
    line-height: 1.4;
}
.form-field .form-help ul {
    margin: 4px 0 0 0;
    padding-left: 16px;
}
.form-field .form-help li { margin: 2px 0; }
.form-field .form-error { margin-top: 6px; }

/* Reset Django's default <ul class="errorlist"> styling */
.errorlist { list-style: none; padding: 0; margin: 0; color: var(--error); font-size: 12px; }

/* ---------- Social login button + divider ---------- */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}
.social-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--ink);
    color: var(--yellow);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 13px;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 16px 0;
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--ink);
}

/* ---------- New features: roles, campaigns, leads (same design system) ---------- */
textarea.form-input, select.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--ink);
    background: var(--bg);
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}
textarea.form-input:focus, select.form-input:focus { background: white; outline: none; }
.role-badge {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    border: 2px solid var(--ink);
    display: inline-block;
    vertical-align: middle;
    box-shadow: 2px 2px 0 0 var(--ink);
}
.role-client { background: var(--surface); }
.role-trekker { background: var(--yellow); }
.role-admin { background: var(--orange); color: white; }
.status-active { background: var(--success); color: white; }
.status-draft { background: var(--grey); }
.status-closed { background: var(--grey); }
.auth-wide { max-width: 680px; }
.dash-card {
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
    padding: 24px;
    margin-top: 32px;
}
.dash-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.lead-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    background: var(--surface);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
}
.lead-table th, .lead-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--ink);
    font-size: 14px;
}
.lead-table th {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--yellow);
}
.lead-table tr:last-child td { border-bottom: none; }
.article-body { max-width: 760px; font-size: 16px; line-height: 1.75; margin-top: 24px; }
.article-body p { margin: 0 0 16px; }
.filter-select {
    padding: 8px 14px;
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    background: var(--surface);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- Trekker verification + reviews ---------- */
.trekker-toggle {
    background: var(--yellow);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 0 var(--ink);
    padding: 14px 16px;
}
.trekker-toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    cursor: pointer;
}
.trekker-toggle-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--ink);
    cursor: pointer;
    flex-shrink: 0;
}
.form-field input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 2px dashed var(--ink);
    background: var(--bg);
    font-family: 'Space Mono', monospace;
    font-size: 12px;
}

.verified-badge {
    background: var(--success);
    color: white;
}
.verified-tag {
    background: var(--success);
    color: white;
}

.status-banner { border-width: 2px; }
.banner-pending { background: var(--yellow); }
.banner-rejected { background: var(--orange); color: white; }
.banner-rejected .section-h3 { color: white; }

/* Rating summary */
.rating-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}
.rating-hero {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: var(--yellow);
    padding: 12px 20px;
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--orange);
}
.rating-hero-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1;
}
.rating-hero-stars { font-size: 20px; letter-spacing: 2px; }
.star-filled { color: var(--orange); }
.star-empty { color: var(--grey); }

.rating-breakdown {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rating-breakdown li {
    display: grid;
    grid-template-columns: 40px 1fr 32px;
    align-items: center;
    gap: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
}
.rb-label { font-weight: 700; }
.rb-bar {
    display: block;
    height: 10px;
    background: var(--bg);
    border: 2px solid var(--ink);
    overflow: hidden;
}
.rb-fill {
    display: block;
    height: 100%;
    background: var(--orange);
}
.rb-count { text-align: right; color: var(--ink-soft); }

/* Star rating input */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}
.star-choice {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border: 2px solid var(--ink);
    background: var(--bg);
    transition: background 120ms ease;
}
.star-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.star-choice-mark {
    font-size: 22px;
    line-height: 1;
    color: var(--grey);
}
.star-choice-label {
    position: absolute;
    left: -9999px;
}
.star-choice:hover,
.star-choice:hover ~ .star-choice { background: var(--yellow); }
.star-choice:hover .star-choice-mark,
.star-choice:hover ~ .star-choice .star-choice-mark { color: var(--orange); }
.star-choice input:checked ~ .star-choice-mark,
.star-choice:has(input:checked) .star-choice-mark { color: var(--orange); }
.star-choice:has(input:checked),
.star-choice:has(input:checked) ~ .star-choice { background: var(--yellow); }
.star-choice:has(input:checked) ~ .star-choice .star-choice-mark { color: var(--orange); }

.review-stars {
    font-size: 18px;
    letter-spacing: 2px;
}

/* ---------- Payments ---------- */
.pay-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}
@media (min-width: 700px) { .pay-grid { grid-template-columns: 1fr 1fr; } }
.pay-card {
    border: 2px solid var(--ink);
    padding: 32px;
}
.pay-card-stripe { background: var(--ink); color: white; }
.pay-card-stripe .btn-yellow { color: var(--ink); }
.pay-card-razorpay { background: var(--yellow); }
.pay-amount {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
    margin: 20px 0 0;
    letter-spacing: -0.03em;
}
.pay-cta {
    background: var(--orange);
    color: white;
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 0 var(--ink);
    padding: 20px;
}
.pay-cta .btn-block { margin-top: 4px; }
.seats-strip {
    background: var(--yellow);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--ink);
    padding: 12px 16px;
    text-align: center;
}
