:root {
    --bg: #ddd2ba;
    --paper: #f4ecde;
    --ink: #2d231a;
    --muted: #5f5a45;
    --primary: #4f6a33;
    --primary-dark: #3e4f2a;
    --accent: #c1902b;
    --sky: #8fc7e8;
    --river: #4c85a6;
    --cloud: #fdfdfb;
    --sand: #d9be72;
    --line: #b9aa8b;
    --shadow: 0 16px 34px rgba(60, 47, 29, 0.2);
    --radius: 18px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Space Grotesk", sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
}

h1,
h2,
h3,
h4 {
    font-family: "Sora", sans-serif;
    line-height: 1.15;
}

p {
    font-size: 1rem;
}

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

ul {
    list-style: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(253, 253, 251, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(79, 106, 51, 0.24);
}

.header-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-family: "Sora", sans-serif;
    letter-spacing: 0.01em;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--river);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

nav a {
    color: var(--muted);
    font-weight: 600;
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--primary-dark);
}

nav a.active {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 5px;
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 70px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 236, 222, 0.84), rgba(253, 253, 251, 0.48));
    z-index: 1;
    pointer-events: none;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.aurora-1 {
    width: 320px;
    height: 320px;
    background: var(--sky);
    top: -120px;
    left: -120px;
}

.aurora-2 {
    width: 380px;
    height: 380px;
    background: var(--sand);
    bottom: -180px;
    right: -140px;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 28px;
    z-index: 2;
}

.hero-background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
    filter: saturate(0.85) contrast(1.05) brightness(0.96);
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 15ch;
    margin-bottom: 18px;
    color: #2a180f;
}

.hero-copy > p {
    max-width: 58ch;
    color: var(--muted);
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 13px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(88, 103, 57, 0.36);
}

.btn-ghost {
    background: var(--cloud);
    color: var(--primary-dark);
    border: 1px solid rgba(79, 106, 51, 0.45);
}

.quick-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-stats article {
    min-width: 130px;
    background: var(--cloud);
    border: 1px solid var(--line);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 12px 14px;
}

.quick-stats strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
}

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

.hero-panel {
    background: #efe6d4;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    animation: floatIn 1s ease both;
}

.hero-panel h2 {
    margin-bottom: 8px;
}

.hero-panel p {
    color: var(--muted);
    margin-bottom: 16px;
}

.mini-availability p {
    background: #f2ead9;
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    color: #4f3729;
}

.mini-availability i {
    color: var(--river);
    margin-right: 8px;
}

.hero-panel small {
    color: #7a6454;
}

.section {
    padding: 76px 0;
}

.section-head {
    margin-bottom: 32px;
}

.section-head h2 {
    font-size: clamp(1.65rem, 4vw, 2.6rem);
    max-width: 20ch;
}

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

.services {
    background: #eee4d1;
}

.place-description {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.place-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.place-description::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(140, 147, 224, 0.3);
    z-index: 1;
}

.place-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 800px;
}

.place-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #2a180f;
}

.place-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color:whitesmoke;
}

.feature-card,
.price-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 3px solid rgba(79, 106, 51, 0.55);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 8px 20px rgba(56, 34, 20, 0.08);
}

.feature-card i {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #fff;
    background: var(--river);
}

.feature-card p,
.price-card ul {
    color: var(--muted);
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
    position: relative;
}

.price-card .vehicle-size {
    color: var(--muted);
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.price-card ul li {
    margin-bottom: 8px;
}

.featured {
    border-color: var(--primary);
    background: #edf2e2;
    box-shadow: 0 15px 28px rgba(88, 103, 57, 0.24);
    transform: translateY(-8px);
}

.badge {
    position: absolute;
    top: -11px;
    right: 18px;
    background: var(--sand);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.75rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
}

.booking-highlights {
    margin-top: 20px;
}

.booking-highlights li {
    margin-bottom: 10px;
    color: var(--muted);
}

.booking-highlights i {
    color: var(--primary);
    margin-right: 8px;
}

.booking-copy h2,
.section-head h2 {
    color: #3f3427;
}

.booking-form-wrap {
    background: #f5eee0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 14px 30px rgba(79, 106, 51, 0.18);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label,
.extras legend {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font: inherit;
    border: 1px solid #bea986;
    border-radius: 12px;
    padding: 11px 12px;
    background: #fff9ef;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(88, 103, 57, 0.16);
}

.extras {
    border: 1px dashed #b59f7f;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 14px;
}

.extras label {
    display: block;
    color: #4f4d37;
    margin-bottom: 8px;
}

.water-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#water8LQty {
    width: 60px;
    padding: 8px 10px;
    border: 1px solid #bea986;
    border-radius: 8px;
    background: #fff9ef;
    font-family: inherit;
    font-size: 0.95rem;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

#water8LQty:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(88, 103, 57, 0.16);
}

.quote-box {
    margin-top: 8px;
    margin-bottom: 14px;
    padding: 12px;
    background: #e8debb;
    border-radius: 12px;
    border: 1px solid #c9b07f;
}

.quote-box p {
    margin-bottom: 6px;
    color: #4f452f;
}

.quote-breakdown {
    margin: 8px 0;
    padding: 8px 10px;
    border: 1px dashed #bfa778;
    border-radius: 10px;
    background: rgba(253, 253, 251, 0.45);
}

.quote-breakdown p {
    margin-bottom: 4px;
    font-size: 0.92rem;
}

.quote-total {
    margin-top: 6px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.form-note {
    margin-top: 10px;
    color: #72674b;
    font-size: 0.84rem;
}

.form-message {
    margin-top: 12px;
    border-radius: 10px;
    padding: 11px 12px;
    display: none;
    font-weight: 600;
}

.form-message.error {
    display: block;
    background: #ffe8e6;
    color: #7c1f1f;
    border: 1px solid #e0a9a3;
}

.form-message.success {
    display: block;
    background: #f2e8d0;
    color: #4f5a2f;
    border: 1px solid #bdab70;
}

.calendar-link-btn {
    margin-top: 10px;
    display: inline-block;
}

.date-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--muted);
}

.available-ranges {
    display: none;
    margin-top: 8px;
    padding: 9px 12px;
    border-radius: 10px;
    background: rgba(79, 106, 51, 0.08);
    border: 1px solid rgba(79, 106, 51, 0.25);
    color: #2f4424;
    font-size: 0.84rem;
    line-height: 1.45;
}

.available-ranges.show {
    display: block;
}

.calendar-sync-badge {
    display: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    margin-top: 6px;
    margin-bottom: 2px;
}

.calendar-sync-badge.loading {
    display: block;
    color: var(--muted);
    background: rgba(180, 165, 130, 0.2);
    border: 1px solid var(--line);
}

.calendar-sync-badge.ok {
    display: block;
    color: var(--primary-dark);
    background: rgba(79, 106, 51, 0.1);
    border: 1px solid rgba(79, 106, 51, 0.3);
}

.calendar-sync-badge.error {
    display: block;
    color: #7a3a00;
    background: #fdf0e0;
    border: 1px solid #e8b96a;
}

.availability-status {
    display: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
    margin-top: 6px;
    margin-bottom: 2px;
}

.availability-status.ok {
    display: block;
    background: #e6f4e0;
    color: #2e6624;
    border: 1px solid #a8d5a0;
}

.availability-status.blocked {
    display: block;
    background: #fdf0e0;
    color: #7a3a00;
    border: 1px solid #e8b96a;
}

.faq-list {
    max-width: 850px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--cloud);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question:hover {
    background: rgba(79, 106, 51, 0.08);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 15px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    transition: max-height var(--transition), padding var(--transition);
    padding: 0 16px;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 16px 16px;
}

.site-footer {
    background: #3e2d20;
    color: #eadfce;
    padding-top: 46px;
    margin-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 18px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-bottom: 8px;
}

.site-footer p {
    margin-bottom: 8px;
}

.site-footer a {
    color: #eadfce;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(234, 223, 206, 0.22);
    padding: 16px 0;
    color: #cfbaa0;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .booking-grid,
    .pricing-grid,
    .card-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: none;
    }
}

@media (max-width: 760px) {
    .mobile-menu-btn {
        display: inline-flex;
    }

    nav {
        position: fixed;
        top: 74px;
        right: -100%;
        width: min(78vw, 320px);
        background: #f4ecdc;
        border-left: 1px solid var(--line);
        padding: 20px;
        transition: right var(--transition);
        box-shadow: -8px 12px 22px rgba(0, 0, 0, 0.08);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .hero-background-video {
        opacity: 0.18;
    }
}
