:root {
    --bg: #f5f3ef;
    --paper: #fefdfb;
    --paper-soft: #efede8;
    --surface: rgba(254, 253, 251, 0.94);
    --text: #1a1a1a;
    --muted: #5e5a55;
    --line: rgba(26, 26, 26, 0.1);
    --accent: #1d7a50;
    --accent-deep: #145a3a;
    --accent-soft: #d4eddf;
    --warm: #c48420;
    --warm-soft: #fdf0d8;
    --hero-bg: #0f3324;
    --hero-mid: #1d7a50;
    --shadow: 0 22px 48px rgba(26, 50, 36, 0.1);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell: min(1120px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Rubik", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -48px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--accent-deep);
    color: #fff;
    z-index: 1000;
}

.skip-link:focus {
    top: 12px;
}

/* ── Version rail ── */
.version-rail {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 120;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
}

.version-rail a {
    min-width: 26px;
    min-height: 26px;
    padding: 4px 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(26, 26, 26, 0.9);
    color: #fefdfb;
    font-size: 8px;
    line-height: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.version-rail a:first-child {
    border-top: 0;
}

.version-rail a:hover,
.version-rail a:focus-visible {
    background: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(245, 243, 239, 0.82);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.header-row,
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.brand-copy {
    display: grid;
    gap: 2px;
    color: var(--muted);
    font-size: 0.9rem;
}

.brand-copy strong {
    color: var(--text);
    font-size: 1rem;
}

.site-nav {
    display: flex;
    gap: 22px;
    align-items: center;
    font-size: 0.95rem;
    color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.demo-banner a:hover,
.demo-banner a:focus-visible {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

/* ── Typography ── */
h1,
h2,
h3,
strong {
    margin-top: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.1;
}

p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
}

h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.eyebrow,
.offer-label {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
}

.eyebrow {
    color: var(--accent);
}

.offer-label {
    color: var(--warm);
}

.section-sub {
    max-width: 620px;
    color: var(--muted);
}

/* ── Buttons ── */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--accent);
    color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--accent-deep);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
}

/* ── Campaign hero ── */
.campaign-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(29, 122, 80, 0.3), transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(196, 132, 32, 0.15), transparent 40%),
        linear-gradient(170deg, #0a2a1b 0%, #0f3324 30%, #143f2c 60%, #1a5038 100%);
    color: #ecf5ef;
    text-align: center;
}

.campaign-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 820px;
}

.campaign-hero h1 {
    color: #fff;
    max-width: 780px;
}

.campaign-sub {
    max-width: 640px;
    color: rgba(236, 245, 239, 0.76);
    font-size: 1.08rem;
    margin-bottom: 36px;
}

.season-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 32px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-soft);
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3ddc84;
    box-shadow: 0 0 8px rgba(61, 220, 132, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.campaign-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.button-hero {
    background: #fff;
    color: var(--accent-deep);
    min-height: 56px;
    padding: 0 28px;
    font-size: 1.05rem;
}

.button-hero:hover,
.button-hero:focus-visible {
    background: var(--accent-soft);
    color: var(--accent-deep);
}

.button-hero-alt {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    min-height: 56px;
    padding: 0 28px;
    font-size: 1.05rem;
}

.button-hero-alt:hover,
.button-hero-alt:focus-visible {
    background: rgba(255, 255, 255, 0.14);
}

.campaign-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: grid;
    gap: 4px;
    text-align: center;
    font-size: 0.88rem;
}

.meta-item strong {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.meta-item span {
    color: rgba(236, 245, 239, 0.8);
}

/* ── Sections ── */
.section {
    padding: 58px 0;
}

.section-soft {
    background: rgba(212, 237, 223, 0.18);
}

.section-ruled {
    background-image:
        linear-gradient(rgba(26, 26, 26, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 26, 26, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
}

.section-booking {
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
}

.section-heading {
    max-width: 860px;
    margin-bottom: 32px;
}

.section-heading-tight {
    max-width: 720px;
}

/* ── Offer grid ── */
.offer-layout {
    display: grid;
    gap: 28px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.offer-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.offer-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.offer-card-accent {
    background: linear-gradient(180deg, #fefdfb 0%, var(--warm-soft) 100%);
    border-color: rgba(196, 132, 32, 0.14);
}

/* ── Deadline track ── */
.deadline-layout {
    display: grid;
    gap: 28px;
}

.deadline-track {
    display: grid;
    gap: 2px;
}

.deadline-step {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 24px 28px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.deadline-step:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.deadline-step:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.step-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 0.84rem;
    white-space: nowrap;
}

.deadline-step-closed .step-marker {
    background: rgba(180, 60, 60, 0.12);
    color: #8e4242;
}

.deadline-step p {
    color: var(--muted);
    margin-bottom: 0;
}

/* ── Pickup grid ── */
.pickup-layout {
    display: grid;
    gap: 28px;
}

.pickup-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pickup-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.pickup-card p {
    color: var(--muted);
    margin-bottom: 0;
}

/* ── Booking / Contact section ── */
.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.booking-copy {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.booking-copy p {
    color: var(--muted);
}

.booking-notes {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.booking-notes article {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(212, 237, 223, 0.24);
    border: 1px solid rgba(29, 122, 80, 0.1);
}

.booking-notes p {
    margin-bottom: 0;
}

.booking-links {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.booking-link {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line);
}

.booking-link span {
    color: var(--muted);
    font-size: 0.9rem;
}

.booking-form-wrap {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

/* ── Form ── */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 190px;
}

.input--hidden {
    position: absolute;
    left: -9999px;
}

.form-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.button-submit {
    width: 100%;
}

.form-status {
    display: none;
    margin: 14px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
}

.form-success {
    background: rgba(29, 122, 80, 0.12);
    color: #145a3a;
}

.form-error {
    background: rgba(180, 60, 60, 0.12);
    color: #8e4242;
}

.form-legal {
    color: var(--muted);
    font-size: 0.85rem;
}

.form-legal a {
    text-decoration: underline;
}

/* ── FAQ ── */
.faq-layout {
    display: grid;
    gap: 28px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-grid details {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.faq-grid summary {
    cursor: pointer;
    list-style: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid p {
    margin: 14px 0 0;
    color: var(--muted);
}

/* ── Footer ── */
.site-footer {
    padding: 20px 0 48px;
}

.site-footer p {
    color: var(--muted);
}

.footer-row {
    align-items: flex-start;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: underline;
}

/* ── Legal pages ── */
.legal-section {
    min-height: calc(100vh - 80px);
}

.legal-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    color: var(--muted);
}

.legal-card h2 {
    margin-top: 32px;
    font-size: 1.55rem;
}

.legal-card ul {
    padding-left: 20px;
}

/* ── Demo banner ── */
.demo-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
    padding: 4px 8px;
    background: rgba(26, 26, 26, 0.94);
    color: #fefdfb;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    text-align: center;
}

.demo-banner span {
    font-size: 8px;
    line-height: 1.2;
}

.demo-banner a {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 980px) {
    .offer-grid,
    .pickup-grid,
    .booking-layout,
    .faq-grid,
    .form-actions,
    .form-row {
        grid-template-columns: 1fr;
    }

    .deadline-step {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 16px;
    }
}

@media (max-width: 760px) {
    .version-rail {
        top: auto;
        bottom: 56px;
        transform: none;
    }

    .version-rail a {
        min-width: 30px;
        min-height: 30px;
        padding: 6px 5px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
        border-radius: 20px;
        background: rgba(245, 243, 239, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .header-row,
    .footer-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .campaign-hero {
        min-height: auto;
        padding: 64px 0 48px;
    }

    .campaign-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .campaign-meta {
        gap: 20px;
    }

    .deadline-step {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .step-marker {
        justify-self: start;
    }

    .booking-copy,
    .booking-form-wrap,
    .legal-card {
        padding: 22px;
    }
}
