:root {
    --ink: #070807;
    --stage: #0c0f0c;
    --panel: #141814;
    --line: #2a3328;
    --text: #f4f6f1;
    --muted: #a7b3a4;
    --lime: #b6e34a;
    --lime-deep: #8bc41f;
    --forest: #1c3d24;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

html, body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font-family: "Manrope", "Segoe UI", sans-serif;
}

h1, h2, h3, .brand__text strong, .footer__name, .display {
    font-family: "Oswald", "Impact", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
h1:focus { outline: none; }

a { color: var(--lime); }
a:hover { color: var(--white); }

.shell {
    width: min(1240px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.site { min-height: 100vh; display: flex; flex-direction: column; background: var(--ink); }
.main { flex: 1; padding-bottom: 5rem; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(7, 8, 7, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner, .admin-tabs__inner, .topbar__actions, .section-head, .hero__actions, .qty-row, .cart-foot {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar__inner { justify-content: space-between; min-height: 78px; }
.topbar__actions { gap: 0.9rem; }

.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--white); }
.brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    box-shadow: 0 0 0 1px rgba(182, 227, 74, 0.35);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 1.05rem; letter-spacing: 0.04em; }
.brand__text small { color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.62rem; margin-top: 0.25rem; }

.nav { display: flex; gap: 1.6rem; }
.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
}
.nav a.active { color: var(--lime); border-bottom-color: var(--lime); }

.nav--mobile { display: none; flex-direction: column; padding: 0 1.25rem 1.25rem; }
.menu-toggle { display: none; background: none; border: 0; color: var(--white); }
.nav-sheet { border-top: 1px solid var(--line); background: var(--ink); }

.icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    width: 2.4rem;
    height: 2.4rem;
}
.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--lime);
    color: var(--ink);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    min-width: 1.2rem;
    text-align: center;
    padding: 0 0.25rem;
}

.who { color: var(--muted); font-size: 0.85rem; max-width: 12rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.admin-tabs { background: var(--panel); }
.admin-tabs a { color: var(--muted); text-decoration: none; padding: 0.9rem 0; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.admin-tabs a.active { color: var(--lime); border-bottom: 2px solid var(--lime); }

.btn, .chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.85rem 1.35rem;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.btn--solid { background: var(--lime); color: var(--ink); }
.btn--solid:hover { background: var(--lime-deep); color: var(--ink); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.28); color: var(--white); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.chip { background: var(--panel); border-color: var(--line); color: var(--text); }
.chip--active { background: var(--lime); color: var(--ink); border-color: var(--lime); }

.text-link { background: none; border: 0; color: var(--lime); font-weight: 800; cursor: pointer; text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem; color: var(--lime); font-weight: 800; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 40rem; line-height: 1.5; }
.muted { color: var(--muted); }

.hero {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: flex-start;
    padding: 3rem 0 1.5rem;
    background:
        linear-gradient(180deg, rgba(7,8,7,0.15) 0%, rgba(7,8,7,0.82) 72%, #070807 100%),
        radial-gradient(circle at 80% 20%, #2c5a32 0%, transparent 42%),
        #101610;
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem 3rem;
    align-items: center;
    width: min(1240px, calc(100% - 2.5rem));
    margin: 0 auto;
}
.display {
    font-size: clamp(3.2rem, 8vw, 7rem);
    line-height: 0.88;
    margin: 0.2rem 0 1rem;
    max-width: 14ch;
}
h1.hero__title {
    font-family: "Oswald", "Impact", sans-serif;
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-transform: none;
    max-width: 13ch;
    margin: 0.4rem 0 1rem;
    color: var(--white);
}
.hero__copy { max-width: 36rem; font-size: 1.08rem; color: #d5ddd0; margin-bottom: 0; }
.hero__actions {
    margin-top: 1.6rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(182, 227, 74, 0.28);
    width: 100%;
    max-width: 36rem;
}
.hero__art {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__art img {
    width: min(100%, 26rem);
    height: auto;
    max-height: 22rem;
    object-fit: contain;
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.45));
}

.page-hero { padding: 4.5rem 0 2rem; background: linear-gradient(180deg, #152016 0%, var(--ink) 100%); }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.92; margin: 0.2rem 0 0.8rem; max-width: 100%; overflow-wrap: anywhere; }
.page-hero--tour { padding: 5rem 0 3.25rem; }
.page-hero--tour .page-hero__intro { max-width: 40rem; }
.page-hero--tour h1 {
    overflow-wrap: normal;
    font-size: clamp(2.35rem, 5.2vw, 4.2rem);
    line-height: 0.95;
    margin: 0.15rem 0 1rem;
}
.page-hero--tour .lede {
    font-size: 1.12rem;
    line-height: 1.7;
    max-width: 36rem;
    margin: 0;
}
.page-hero__rule {
    width: 3.4rem;
    height: 2px;
    border: 0;
    margin: 0 0 1.15rem;
    background: var(--lime);
}
.page-hero__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
}
.page-hero__row h1 { margin: 0.2rem 0; }
.media-hero__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    max-width: 44rem;
}
.media-hero__row .lede { margin: 0; flex: 1 1 16rem; }

.band { padding: 4rem 0; }
.band--alt { background: var(--stage); }
.hero + .band { padding-top: 2rem; }
.hero + .band > .shell {
    border-top: 1px solid rgba(182, 227, 74, 0.28);
    padding-top: 1.75rem;
}

.section-kicker { margin-bottom: 0.4rem; }
.section-head { justify-content: space-between; margin: 0 0 1.5rem; align-items: flex-end; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0; }

.cards-3, .product-grid, .offer-grid { display: grid; gap: 1.25rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.offer-grid { grid-template-columns: repeat(2, 1fr); }

.offer-card {
    display: flex;
    flex-direction: column;
    background: var(--panel);
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 1.4rem;
    text-decoration: none;
    color: inherit;
    min-height: 100%;
}
.offer-card img { width: 100%; height: 180px; object-fit: cover; object-position: center; border-radius: 14px; margin-bottom: 1rem; }
.offer-card--photo img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    background: #1a2218;
}
.offer-card h3 { margin: 0.35rem 0 0.5rem; font-size: 1.8rem; color: var(--white); }
.offer-card p { color: var(--muted); margin: 0 0 1.1rem; flex: 1; }
.offer-card:hover { border-color: rgba(182, 227, 74, 0.45); }
.offer-card__cta {
    color: var(--ink);
    background: var(--lime);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    text-align: center;
}

.slot-list { display: flex; flex-direction: column; gap: 0.65rem; margin: 1.2rem 0; }
.slot {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #0e120e;
    cursor: pointer;
}
.slot--active { border-color: var(--lime); }
.slot--full { opacity: 0.5; cursor: not-allowed; }
.slot strong { display: block; }
.slot small { color: var(--muted); }
.slot-admin { margin-top: 2.5rem; }

.show-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 1.1rem;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scroll-snap-type: x mandatory;
}
.show-row > * { scroll-snap-align: start; display: flex; align-self: stretch; }

.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.25rem; }
.media-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    width: 100%;
}
.media-card__hit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.media-card__admin { display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem; }
.media-form { margin: 1.4rem 0; }
.media-card strong {
    font-family: Oswald, Impact, sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.media-card__still {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #1a2218;
}
.media-card__still img { width: 100%; height: 100%; object-fit: cover; }
.media-card__play {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: var(--lime);
    color: var(--ink);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
}
.media-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(7, 8, 7, 0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.media-modal__panel { width: min(960px, 100%); }
.media-modal__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 0.85rem; }
.media-modal__head h2 { margin: 0; font-size: 1.6rem; }
.media-modal__frame { aspect-ratio: 16 / 9; background: #000; border-radius: 14px; overflow: hidden; }
.media-modal__frame iframe { width: 100%; height: 100%; border: 0; }

.story-card, .product-card, .panel, .pullquote, .experience-card {
    background: var(--panel);
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.04);
}
.story-card, .experience-card { padding: 1.4rem; }
.story-card img, .experience-card img { width: 100%; height: 170px; object-fit: cover; border-radius: 14px; margin-bottom: 1rem; }
.experience-card--photo img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    background: #1a2218;
}
.experience-card h3 { margin: 0 0 0.4rem; font-size: 1.5rem; }
.experience-card p { color: var(--muted); margin: 0; }

.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; padding: 4.5rem 0; align-items: center; }
.pullquote { margin: 0; padding: 2.2rem; font-size: 2rem; line-height: 1.15; color: var(--white); text-transform: uppercase; font-family: Oswald, sans-serif; }

.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.product-card { overflow: hidden; display: flex; flex-direction: column; position: relative; height: 100%; width: 100%; }
.product-card__media { display: block; background: #1a2218; position: relative; }
.product-card__media img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.4s ease; }
.product-card--photo .product-card__media img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__date {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: var(--lime);
    color: var(--ink);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
}
.product-card__body { padding: 1.2rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; min-height: 0; }
.product-card h3 { margin: 0 0 0.4rem; font-size: 1.55rem; }
.product-card h3 a { text-decoration: none; color: inherit; }
.product-card__body > .muted {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.6em;
    margin: 0 0 0.75rem;
}
.product-card__footer { margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.product-card__meta { display: flex; align-items: baseline; gap: 0.4rem; color: var(--lime); font-size: 1.15rem; }
.product-card__footer .btn { width: 100%; }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; padding-top: 2.5rem; align-items: start; }
.product-detail__image { width: 100%; max-height: 32rem; object-fit: cover; border-radius: 24px; background: #1a2218; }
.price { font-size: 2.2rem; font-family: Oswald, sans-serif; color: var(--lime); }

.prose-page article { max-width: 44rem; margin: 0 auto 2.5rem; }
.prose-page p { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.visit-grid, .checkout__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.panel { padding: 1.6rem; }
.panel p { margin: 0 0 0.75rem; line-height: 1.55; }
.panel p:last-child { margin-bottom: 0; }
.checkout .panel p { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }

.order-filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem 1rem;
    margin-bottom: 1rem;
}
.order-filters label { margin-bottom: 0; }
.table-scroll { overflow-x: auto; }
.sort-btn {
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0;
    cursor: pointer;
    text-align: left;
}
.sort-btn:hover { color: var(--lime); }
.cart-table { width: 100%; border-collapse: collapse; background: var(--panel); border-radius: 18px; overflow: hidden; }
.cart-table th, .cart-table td { text-align: left; padding: 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.order-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.cart-foot { justify-content: flex-end; margin-top: 1.5rem; }

form label, .admin-form label { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; font-weight: 700; }
.admin-form .btn { margin-right: 0.75rem; }
input, select, textarea {
    font: inherit;
    padding: 0.8rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0e120e;
    color: var(--text);
}
.check { flex-direction: row !important; align-items: center; }
.preview { width: 180px; border-radius: 12px; }
.banner { background: #2a2110; border-left: 4px solid var(--lime); padding: 0.9rem 1rem; border-radius: 8px; }
.banner--ok { background: #142214; border-left-color: var(--lime); }
.banner--warn { background: #2a1810; border-left-color: #e07a3d; }
.stay-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    padding-bottom: 2rem;
}
.stay-offer > * { min-height: 0; height: 100%; }
.stay-offer .product-card--photo .product-card__media { flex: 0 0 auto; }
.stay-offer .product-card--photo .product-card__media img {
    height: 14.5rem;
    aspect-ratio: auto;
}
.stay-offer .product-card__body { padding: 1rem 1.15rem 1.1rem; }
.stay-offer .stay-welcome { height: 100%; display: flex; flex-direction: column; }
.stay-offer .stay-welcome__letter { flex: 1; height: 100%; }
.stay-book { padding: 2.5rem 0 2rem; }
.stay-book__intro { margin-bottom: 1.35rem; max-width: 42rem; }
.stay-book__intro h1 { margin: 0 0 0.45rem; }
.stay-book__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.stay-book__card {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 1.1rem 1.2rem 1.2rem;
}
.stay-book__photo {
    width: 100%;
    height: 14.5rem;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    margin-bottom: 0.85rem;
    background: #1a2218;
}
.stay-book__card .price { font-size: 1.7rem; margin: 0 0 0.85rem; }
.stay-book__card .qty-row { margin-top: 0.85rem; }
.stay-book__card .qty-row .btn { width: 100%; }
.stay-book__notes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.85rem 0 0.35rem;
}
.stay-book__notes > * { margin: 0; }
.stay-book__estimate { padding-top: 0.15rem; }
.stay-book__fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 0.4rem;
}
.stay-book__fields label { margin-bottom: 0; }
.stay-book__fields input,
.stay-book__fields select {
    width: 100%;
    min-height: 3rem;
    box-sizing: border-box;
}
.stay-book__fields input[type="datetime-local"] {
    min-width: 0;
    color-scheme: dark;
}
.stay-book__fields-span { grid-column: 1 / -1; }
.stay-breed-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: flex-end; }
.breed-admin__add { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 0.75rem 1rem; margin-bottom: 1.5rem; }
.breed-admin__add label { flex: 1 1 16rem; margin-bottom: 0; }
.breed-admin__input { width: min(100%, 22rem); }
.stay-welcome { margin: 0; }
.stay-welcome label { max-width: 22rem; }
.stay-welcome__letter {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 1rem 1.15rem;
    color: var(--muted);
    line-height: 1.5;
    box-sizing: border-box;
}
.stay-welcome__story {
    display: grid;
    grid-template-columns: 1fr 9.5rem;
    gap: 1rem;
    align-items: start;
}
.stay-welcome__copy p + h3 { margin-top: 0.1rem; }
.stay-welcome__clip { margin: 0; }
.stay-welcome__frame {
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}
.stay-welcome__frame iframe { width: 100%; height: 100%; border: 0; }
.stay-welcome__clip figcaption {
    margin: 0.4rem 0 0;
    font-size: 0.8rem;
    line-height: 1.35;
}
.stay-welcome__letter p { margin: 0 0 0.55rem; }
.stay-welcome__letter p:last-child { margin-bottom: 0; }
.stay-welcome__letter h3 {
    margin: 0.7rem 0 0.25rem;
    font-size: 0.88rem;
    color: var(--text);
}
.stay-welcome__letter ul { margin: 0 0 0.45rem; padding-left: 1.1rem; }
.stay-welcome__letter li { margin: 0.12rem 0; }
.checkout-choice { margin: 1rem 0; color: var(--muted); }
.checkout-choice p { margin: 0 0 0.6rem; }
.checkout__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.1rem; }
.checkout__actions .btn { width: 100%; text-align: center; }
.pay-qr {
    width: min(240px, 72vw);
    height: auto;
    background: #fff;
    padding: 0.75rem;
    border-radius: 14px;
    display: block;
    margin: 0.6rem 0 1rem;
}
.pay-qr-block { margin: 1.2rem 0; }
.pay-qr-block .muted { word-break: break-all; }
.pay-panel ul { padding-left: 1.1rem; }
.stay-pickers { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.2rem 0; }
.stay-pickers input[type="datetime-local"] { color-scheme: dark; }
.terms { margin: 1rem 0; color: var(--muted); }
.terms summary { cursor: pointer; color: var(--lime); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.terms p { margin-top: 0.6rem; line-height: 1.55; }
.login-panel { max-width: 36rem; }
.login-actions { display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem; max-width: 22rem; }
.login-actions .btn { width: 100%; text-align: center; }
.login-legal { margin-top: 1.25rem; max-width: 36rem; line-height: 1.55; }
.page-hero__actions { margin-top: 1.4rem; }
.tour-story { display: flex; flex-direction: column; gap: 3.2rem; padding: 0.5rem 0 1.5rem; }
.tour-stop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 2.6rem;
    align-items: center;
}
.tour-stop--flip .tour-album { order: -1; }
.tour-stop__copy h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    margin: 0.2rem 0 0.85rem;
    color: var(--white);
}
.tour-stop__copy p { color: var(--muted); line-height: 1.7; margin: 0 0 0.85rem; }
.tour-stop__copy p:last-child { margin-bottom: 0; }
.tour-album { margin: 0; }
.tour-album__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.45rem;
    align-items: center;
}
.tour-album__slides {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    min-width: 0;
}
.tour-album__slide {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #1a2218;
    aspect-ratio: 1;
    padding: 0;
    border: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
    width: 100%;
}
.tour-album__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-album__slide .tour-album__play {
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
}
.tour-album__nav {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid rgba(182, 227, 74, 0.45);
    background: #0e120e;
    color: var(--lime);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}
.tour-album__nav:hover:not(:disabled) { background: rgba(182, 227, 74, 0.12); color: var(--white); }
.tour-album__nav:disabled { opacity: 0.35; cursor: default; }
.tour-album__tag {
    position: absolute;
    left: 0.45rem;
    bottom: 0.45rem;
    background: var(--lime);
    color: var(--ink);
    font-weight: 800;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.4rem;
    border-radius: 7px;
}
.tour-album__video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(182, 227, 74, 0.45);
    color: var(--muted);
    text-align: center;
    box-sizing: border-box;
}
.tour-lightbox {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(7, 8, 7, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.tour-lightbox__panel {
    width: min(52rem, 100%);
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1rem 1.1rem 1.15rem;
    box-shadow: var(--shadow);
}
.tour-lightbox__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.tour-lightbox__head h2 { margin: 0; font-size: 1.45rem; }
.tour-lightbox__media {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 12rem;
}
.tour-lightbox__media img,
.tour-lightbox__media video {
    display: block;
    width: 100%;
    max-height: min(68vh, 36rem);
    object-fit: contain;
    background: #000;
}
.tour-lightbox__caption {
    color: var(--muted);
    line-height: 1.6;
    margin: 0.85rem 0 0;
}
.tour-lightbox__tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
}
.tour-album__count { display: block; margin-top: 0.2rem; }
.tour-album__play {
    background: var(--lime);
    color: var(--ink);
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
}
.tour-album__video small { font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; }
.tour-album figcaption {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.4;
}
.tour-book { padding: 2.4rem 0 1.2rem; border-top: 1px solid rgba(182, 227, 74, 0.22); scroll-margin-top: 6rem; }
.tour-book h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0.2rem 0 0.7rem;
}
.tour-book .lede { max-width: 36rem; }
.tour-book__panel {
    display: grid;
    grid-template-columns: minmax(14rem, 20rem) 1fr;
    gap: 1.6rem 2rem;
    align-items: center;
    margin-top: 1.6rem;
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 1.15rem;
    box-shadow: var(--shadow);
}
.tour-book__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    background: #1a2218;
    display: block;
}
.tour-book__detail h3 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin: 0.15rem 0 0.7rem;
    color: var(--white);
}
.tour-book__detail p { color: var(--muted); line-height: 1.65; margin: 0 0 0.85rem; max-width: 38rem; }
.tour-book__price {
    font-family: Oswald, Impact, sans-serif;
    font-size: 2rem;
    color: var(--lime);
    margin: 0 0 1rem;
}
.tour-book__price span { font-size: 1rem; font-family: Manrope, sans-serif; color: var(--muted); font-weight: 700; }
.tour-book__detail .btn { display: inline-flex; width: auto; min-width: 12rem; justify-content: center; }
.prose-page {
    max-width: 46rem;
    padding-bottom: 2rem;
}
.prose-page article + article { margin-top: 2rem; }
.prose-page h2 { font-size: 1.45rem; margin: 0 0 0.65rem; }
.prose-page p, .prose-page li { color: var(--muted); line-height: 1.65; }
.prose-page p { margin: 0 0 0.85rem; }
.prose-page ul, .prose-page ol { margin: 0 0 0.85rem; padding-left: 1.2rem; }
.prose-page li { margin: 0.28rem 0; }
.prose-page strong { color: var(--text); }
.total { font-weight: 800; font-size: 1.2rem; color: var(--lime); }

.mud-input, .mud-input-control, .mud-input-slot, .mud-input > input {
    color: var(--text) !important;
}

.social-links { display: flex; align-items: center; gap: 0.7rem; }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    color: var(--lime);
    text-decoration: none;
}
.social-links a:hover { border-color: var(--lime); color: var(--white); background: rgba(182, 227, 74, 0.12); }
.social-follow { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; margin-top: 0.4rem; }
.social-follow .muted { margin: 0; }

.footer { background: #050605; color: var(--muted); padding: 3.2rem 0 2.4rem; border-top: 1px solid var(--line); }
.footer a { color: var(--lime); display: block; margin-top: 0.4rem; text-decoration: none; text-transform: uppercase; font-weight: 700; letter-spacing: 0.04em; }
.footer .social-links { margin: 0 0 0.85rem; }
.footer .social-links a { display: inline-flex; margin-top: 0; text-transform: none; letter-spacing: 0; font-weight: 400; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1.5rem; }
.footer__name { font-size: 1.8rem; margin: 0 0 0.4rem; color: var(--white); }

@media (min-width: 640px) {
    .checkout__actions { flex-direction: row; }
    .order-filters { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
    .order-filters { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 901px) {
    .hero { padding-bottom: 2.75rem; }
    .hero + .band { padding-top: 3.5rem; }
    .hero + .band > .shell {
        border-top: 0;
        padding-top: 0;
    }
    .hero__art img {
        width: 100%;
        max-width: 28rem;
        max-height: 26rem;
    }
}

@media (max-width: 900px) {
    .nav--desktop, .who { display: none; }
    .nav--mobile, .menu-toggle { display: flex; }
    .tour-stop { grid-template-columns: 1fr; }
    .tour-stop--flip .tour-album { order: 0; }
    .tour-album__slides { grid-template-columns: 1fr; }
    .tour-album__slides > :nth-child(n + 2) { display: none; }
    .tour-book__panel { grid-template-columns: 1fr; }
    .tour-book__photo { aspect-ratio: 16 / 10; max-height: 18rem; }
    .hero__grid, .cards-3, .product-grid, .offer-grid, .media-grid, .split, .visit-grid, .checkout__grid, .product-detail, .footer__grid, .stay-pickers, .stay-offer, .stay-book__grid, .stay-welcome__story {
        grid-template-columns: 1fr;
    }
    .stay-welcome__clip { max-width: 9.5rem; }
    .show-row { grid-auto-columns: 78vw; }
    .hero { min-height: auto; padding: 3rem 0 1.1rem; }
    .hero__grid { gap: 1.75rem; }
    .hero + .band { padding-top: 1.5rem; }
    .hero + .band > .shell { padding-top: 1.4rem; }
    .topbar__inner { min-height: 68px; }
}
