:root {
    --forest: #012d1d;
    --forest-2: #1b4332;
    --olive: #3f6653;
    --sage: #86af99;
    --sand: #f4e1d2;
    --cream: #faf9f6;
    --terracotta: #b8662e;
    --ink: #1a1c1a;
    --muted: #5e665f;
    --line: #d9ded9;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Noto Sans', 'sans-serif';
}


[x-cloak] {
    display: none !important;
}

.container-premium {
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
}

@media (min-width: 768px) {
    .container-premium {
        width: min(1280px, calc(100% - 96px));
    }
}

.nav-glass {
    background: rgb(235 236 230);
    border-bottom: 1px solid rgba(113, 121, 115, 0.15);
    box-shadow: 0 0 3px #012d1d36;
}

.hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(1, 45, 29, 0.72),
            rgba(1, 45, 29, 0.16) 65%,
            rgba(1, 45, 29, 0.05)),
        linear-gradient(0deg,
            rgba(1, 45, 29, 0.32),
            transparent 48%);
}

.card-soft {
    background: #fff;
    border: 1px solid rgba(113, 121, 115, 0.18);
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(18, 45, 32, 0.07);
}

.card-soft-hover {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.card-soft-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(18, 45, 32, 0.13);
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.8rem 1.35rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.btn-primary {
    background: var(--forest);
    color: #fff;
}

.btn-primary:hover {
    background: #174936;
}

.btn-secondary {
    border-color: var(--terracotta);
    color: #8a451e;
    background: transparent;
}

.btn-secondary:hover {
    background: #fff4ec;
}

.btn-ghost {
    color: var(--forest);
    background: transparent;
    padding-inline: 0.5rem;
}

.btn-ghost:hover {
    background: rgba(1, 45, 29, 0.06);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible {
    outline: 3px solid rgba(27, 67, 50, 0.25);
    outline-offset: 3px;
}

.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--olive);
}

.section-space {
    padding-block: 5rem;
}

@media (min-width: 768px) {
    .section-space {
        padding-block: 7rem;
    }
}

.image-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prose-walkit {
    line-height: 1.8;
    color: #414844;
}

.prose-walkit h2,
.prose-walkit h3 {
    margin: 1.8rem 0 0.75rem;
    color: var(--forest);
    font-family: 'Noto Sans', 'sans-serif';
}

.prose-walkit p {
    margin: 0.8rem 0;
}

.prose-walkit ul {
    padding-left: 1.3rem;
    list-style: disc;
}

.input-walkit {
    width: 100%;
    border: 1px solid #cbd2cc;
    border-radius: 0.75rem;
    background: #fff;
    padding: 0.82rem 1rem;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.input-walkit:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.12);
}

.label-walkit {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #414844;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid #c6cec8;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    background: #fff;
    color: #414844;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.chip.active,
.chip:hover {
    border-color: var(--forest);
    background: var(--forest);
    color: #fff;
}

.chip:focus-visible {
    outline: 3px solid rgba(27, 67, 50, 0.2);
    outline-offset: 2px;
}

.tour-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
}

.line-clamp-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.aspect-tour {
    aspect-ratio: 4 / 3;
}

.aspect-hero {
    aspect-ratio: 16 / 9;
}

.sticky-booking {
    position: sticky;
    top: 7rem;
}

.booking-step-line {
    height: 3px;
    overflow: hidden;
    background: #d6ddd7;
    border-radius: 99px;
}

.booking-step-line>span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--forest);
    transition: width 0.25s ease;
}

.booking-addon {
    border: 1px solid #d7ddd8;
    border-radius: 1rem;
    background: #fff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-addon.selected {
    border-color: var(--forest);
    box-shadow: 0 0 0 2px rgba(27, 67, 50, 0.12);
}

.map-placeholder {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 35%,
            rgba(255, 255, 255, 0.95) 0 5%,
            transparent 6%),
        linear-gradient(145deg, #dfe8e1, #f3e5d8);
}

.map-placeholder::before,
.map-placeholder::after {
    content: "";
    position: absolute;
    border: 2px dashed rgba(27, 67, 50, 0.3);
    border-radius: 50%;
    transform: rotate(-10deg);
    pointer-events: none;
}

.map-placeholder::before {
    width: 80%;
    height: 52%;
    left: 10%;
    top: 20%;
}

.map-placeholder::after {
    width: 48%;
    height: 28%;
    left: 24%;
    top: 36%;
}

.flash {
    margin-bottom: 1rem;
    border-radius: 0.9rem;
    padding: 1rem 1.1rem;
}

.flash-success {
    background: #e4f2e8;
    color: #245334;
}

.flash-error {
    background: #fde7e4;
    color: #8f241b;
}

.rich-content iframe {
    display: block;
    max-width: 100%;
    border: 0;
}

.footer-link {
    color: #dce9e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

.skeleton {
    background: linear-gradient(90deg,
            #ecece8 25%,
            #f6f6f3 50%,
            #ecece8 75%);
    background-size: 200% 100%;
    animation: skeleton 1.4s linear infinite;
}

@keyframes skeleton {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

@media (max-width: 767px) {
    .mobile-scroll {
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-scroll::-webkit-scrollbar {
        display: none;
    }

    .sticky-mobile-cta {
        position: fixed;
        z-index: 45;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0.75rem 1rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
        background: rgba(250, 249, 246, 0.95);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        border-top: 1px solid #d8ddd9;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .card-soft-hover,
    .btn-primary,
    .btn-secondary,
    .btn-ghost,
    .input-walkit,
    .chip,
    .booking-step-line>span,
    .booking-addon,
    .footer-link {
        transition: none;
    }

    .skeleton {
        animation: none;
    }
}