:root {
    --primary-color: #000000;
    --secondary-color: #fbc972;
    --primary: var(--primary-color);
    --secondary: var(--secondary-color);
    --accent: #b56a3a;
    --accent-soft: #d98a56;
    --sand: #f7f2e8;
    --text: #1f2a35;
    --muted: #5c6975;
    --white: #ffffff;
    --header-height: 84px;
    --topbar-height: 36px;
    --header-total-height: calc(var(--header-height) + var(--topbar-height));
    --header-offset: var(--header-total-height);
    --header-bar-offset: var(--header-height);
}

html {
    scroll-padding-top: var(--header-offset);
}

.site-main--offset {
    padding-top: var(--header-offset);
}

.site-main--flush {
    padding-top: 0;
}

* {
    box-sizing: border-box;
}

html {
    font-family: var(--font-primary);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--text);
    background: #faf8f3;
    line-height: 1.6;
    overflow-x: hidden;
}

button,
input,
select,
textarea,
optgroup,
option {
    font-family: inherit;
}

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

img {
    max-width: 100%;
    display: block;
}

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

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

.icon {
    display: inline-block;
    flex-shrink: 0;
}

.icon--sm {
    width: 16px;
    height: 16px;
}

.icon--md {
    width: 22px;
    height: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
    min-height: 46px;
    padding: 0.7rem 1.4rem;
}

.btn-primary {
    background: var(--secondary);
    color: #2b2615;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #f5bb53;
    transform: translateY(-1px);
    outline: none;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.section {
    padding: 5rem 0;
}

.home-reveal {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
    will-change: opacity, transform;
}

.home-reveal--visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.home-reveal-item {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1);
    transition-delay: var(--home-reveal-item-delay, 0ms);
    will-change: opacity, transform;
}

.home-reveal--visible .home-reveal-item,
.home-reveal-item.home-reveal-item--visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.home-hero-animate {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    animation: homeHeroFadeUp 0.75s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
    animation-delay: var(--home-hero-delay, 0ms);
}

@keyframes homeHeroFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-reveal-item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-hero-animate {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.section-title {
    font-size: clamp(1.8rem, 2.7vw, 2.5rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    color: var(--primary);
}

.section-subtitle {
    margin: 0;
    color: var(--muted);
    max-width: 700px;
}

.home-last-minute-packages {
    background: #fff;
    overflow-x: hidden;
}

.home-last-minute-packages__eyebrow {
    margin: 0;
    color: #9a6c17;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
}

.home-last-minute-packages__grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.home-last-minute-packages__empty {
    margin: 0;
    color: #5c6975;
}

.home-tours {
    background: #fff;
    padding-top: 2.4rem;
}

.home-tours__grid {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.home-tours__card {
    position: relative;
    height: 190px;
    border-radius: 2px;
    overflow: hidden;
    display: block;
}

.home-tours__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 14, 22, 0.76), rgba(8, 14, 22, 0.18));
    z-index: 1;
    transition: background 0.28s ease;
}

.home-tours__card img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-tours__card span {
    position: absolute;
    left: 1rem;
    bottom: 0.8rem;
    z-index: 2;
    color: #fff;
    font-size: clamp(1.15rem, 2.1vw, 1.9rem);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.home-tours__card:hover img,
.home-tours__card:focus-visible img {
    transform: scale(1.08);
}

.home-tours__card:hover::before,
.home-tours__card:focus-visible::before {
    background: linear-gradient(to top, rgba(8, 14, 22, 0.88), rgba(8, 14, 22, 0.3));
}

.home-tours__card:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -4px;
}

.home-stories {
    background: #fff;
}

.home-stories__grid {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-stories__card {
    position: relative;
    min-height: 255px;
    overflow: hidden;
    border-radius: 2px;
    display: block;
}

.home-stories__card img {
    width: 100%;
    height: 100%;
    min-height: 255px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-stories__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 1rem;
    background: rgba(251, 201, 114, 0.94);
    color: #1f2d3d;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.32s ease, opacity 0.32s ease;
}

.home-stories__content h3 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.15;
}

.home-stories__content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
}

.home-stories__card:hover img,
.home-stories__card:focus-visible img {
    transform: scale(1.07);
}

.home-stories__card:hover .home-stories__content,
.home-stories__card:focus-visible .home-stories__content {
    transform: translateY(0);
    opacity: 1;
}

.home-stories__card:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -4px;
}

/* Homepage: Google reviews showcase */
.home-google-reviews {
    --home-reviews-accent: #e0a824;
    --home-reviews-accent-deep: #a46d04;
    --home-reviews-surface: #faf7f1;
    --home-reviews-muted: #ece6dc;
    --home-reviews-ink: #1c2430;
    --home-reviews-ink-soft: #4a5560;
    background: transparent;
}

.home-google-reviews__shell {
    background: #fff;
    border: 1px solid #ddd4c8;
    border-radius: clamp(1.25rem, 2.5vw, 1.75rem);
    box-shadow: 0 18px 40px rgba(12, 28, 42, 0.08);
    overflow: hidden;
}

.home-google-reviews__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    padding: clamp(1rem, 2.5vw, 1.35rem);
    align-items: stretch;
}

.home-google-reviews__visual {
    position: relative;
    min-height: 100%;
}

.home-google-reviews__bubble {
    position: relative;
    z-index: 2;
    max-width: min(18rem, 88%);
    margin: 0 0 -1.75rem 0.65rem;
    padding: 0.95rem 1.1rem;
    background: #fff;
    border: 1px solid #e8dfd2;
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(12, 28, 42, 0.08);
}

.home-google-reviews__bubble::after {
    content: "";
    position: absolute;
    left: 1.35rem;
    bottom: -0.55rem;
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-right: 1px solid #e8dfd2;
    border-bottom: 1px solid #e8dfd2;
    transform: rotate(45deg);
}

.home-google-reviews__bubble-label {
    display: block;
    font-family: var(--font-secondary);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.25;
    font-weight: 500;
    color: var(--home-reviews-ink);
    letter-spacing: 0.01em;
}

.home-google-reviews__bubble-heart {
    color: var(--accent);
    margin-left: 0.15rem;
}

.home-google-reviews__figure {
    position: relative;
    margin: 0;
    height: 100%;
    min-height: clamp(22rem, 42vw, 28rem);
    border-radius: clamp(1rem, 2vw, 1.35rem);
    overflow: hidden;
}

.home-google-reviews__figure img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.home-google-reviews__figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 20, 30, 0.05) 20%, rgba(12, 20, 30, 0.72) 100%);
    pointer-events: none;
}

.home-google-reviews__stat {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    margin: 0;
    text-align: right;
    color: #fff;
}

.home-google-reviews__stat-value {
    display: block;
    font-family: var(--font-secondary);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.home-google-reviews__stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.home-google-reviews__rating-pill {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 18px rgba(12, 28, 42, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--home-reviews-ink);
}

.home-google-reviews__google-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.home-google-reviews__rating-stars {
    color: #e8a317;
    letter-spacing: 0.04em;
    font-size: 0.72rem;
}

.home-google-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-google-reviews__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 7.5rem;
    padding: 1rem 3.25rem 1rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--home-reviews-muted);
    background: var(--home-reviews-surface);
    color: var(--home-reviews-ink-soft);
    transition:
        background-color 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
    cursor: pointer;
}

.home-google-reviews__card.is-active {
    background: linear-gradient(145deg, var(--home-reviews-accent) 0%, var(--home-reviews-accent-deep) 100%);
    border-color: transparent;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 28px rgba(111, 69, 38, 0.28);
    transform: translateY(-2px);
}

.home-google-reviews__card:focus-visible {
    outline: 2px solid var(--home-gold, #c8a45d);
    outline-offset: 2px;
}

.home-google-reviews__stars {
    display: flex;
    gap: 0.12rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: #c4b8a8;
}

.home-google-reviews__card.is-active .home-google-reviews__stars {
    color: rgba(255, 255, 255, 0.45);
}

.home-google-reviews__stars .is-filled {
    color: var(--secondary);
}

.home-google-reviews__card.is-active .home-google-reviews__stars .is-filled {
    color: #fff;
}

.home-google-reviews__quote {
    margin: 0;
}

.home-google-reviews__quote p {
    margin: 0;
    font-size: clamp(0.9rem, 1.4vw, 0.98rem);
    line-height: 1.55;
}

.home-google-reviews__author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: auto;
}

.home-google-reviews__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: rgba(143, 106, 50, 0.14);
    color: var(--home-reviews-accent);
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.home-google-reviews__card.is-active .home-google-reviews__avatar {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.home-google-reviews__meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.home-google-reviews__meta strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--home-reviews-ink);
}

.home-google-reviews__card.is-active .home-google-reviews__meta strong {
    color: #fff;
}

.home-google-reviews__meta span {
    font-size: 0.78rem;
    line-height: 1.35;
}

.home-google-reviews__card-action {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--home-reviews-ink);
    box-shadow: 0 4px 12px rgba(12, 28, 42, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.home-google-reviews__card-action svg {
    width: 1rem;
    height: 1rem;
}

.home-google-reviews__card-action:hover,
.home-google-reviews__card-action:focus-visible {
    transform: scale(1.06);
    outline: none;
}

.home-google-reviews__card.is-active .home-google-reviews__card-action {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

.home-google-reviews__empty {
    margin: 0;
    padding: 1.5rem;
    text-align: center;
    color: var(--muted);
}

.home-google-reviews__cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.15rem, 3vw, 1.65rem);
    background: linear-gradient(90deg, var(--home-reviews-accent-deep) 0%, var(--home-reviews-accent) 55%, #a66b3f 100%);
    color: #fff;
}

.home-google-reviews__cta-text {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.home-google-reviews__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    background: #fff;
    color: var(--home-reviews-ink);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-google-reviews__cta-btn:hover,
.home-google-reviews__cta-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(12, 28, 42, 0.16);
    outline: none;
}

@media (max-width: 900px) {
    .home-google-reviews__main {
        grid-template-columns: 1fr;
    }

    .home-google-reviews__figure {
        min-height: clamp(16rem, 50vw, 22rem);
    }

    .home-google-reviews__bubble {
        max-width: 92%;
        margin-bottom: -1.25rem;
    }
}

@media (max-width: 560px) {
    .home-google-reviews__cta-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-google-reviews__cta-btn {
        width: 100%;
    }
}

/* Homepage: luxury editorial pillars (heritage palette, minimal structure) */
.home-why-poema {
    background: #fff;
    padding-top: 2.4rem;
    padding-bottom: 2.75rem;
}

.home-why-poema__intro {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

.home-why-poema__eyebrow {
    margin: 0 0 0.7rem;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a6f5f;
}

.home-why-poema__intro h2 {
    margin: 0 0 0.9rem;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.8vw, 2.85rem);
    font-weight: 400;
    color: #1f2730;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.home-why-poema__lede {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(0.98rem, 1.65vw, 1.08rem);
    font-weight: 400;
    color: #5c6975;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.home-why-poema__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 0.85rem;
}

.home-why-poema__item {
    padding: 1.65rem 1.15rem 1.75rem;
    text-align: center;
    border: 1px solid #e5dfd4;
    background: rgba(255, 255, 255, 0.72);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.home-why-poema__item:hover,
.home-why-poema__item:focus-within {
    border-color: rgba(181, 106, 58, 0.42);
    box-shadow: 0 14px 32px rgba(12, 28, 42, 0.07);
}

.home-why-poema__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    border: 1px solid rgba(181, 106, 58, 0.38);
    color: #9a6c17;
    background: rgba(251, 201, 114, 0.12);
}

.home-why-poema__icon {
    width: 26px;
    height: 26px;
}

.home-why-poema__item h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1f2730;
}

.home-why-poema__item p {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    line-height: 1.58;
    color: #5c6975;
    max-width: 28ch;
    margin-inline: auto;
}

.grid {
    display: grid;
    gap: 1.25rem;
}

.card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(11, 60, 105, 0.08);
}

.site-footer {
    background: linear-gradient(160deg, #000000 0%, #000000 65%, #000000 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 2.8rem 0 1.15rem;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.05fr 1.6fr;
    gap: 1.35rem;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
}

.site-footer__brand-name {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    letter-spacing: 0.02em;
    font-weight: 700;
}

.site-footer__brand-name:hover,
.site-footer__brand-name:focus-visible {
    color: #dbe8f4;
}

.site-footer__brand p {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 340px;
}

.site-footer__brand-cta {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    padding: 0.5rem 0.95rem;
    color: #fff;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.site-footer__brand-cta:hover,
.site-footer__brand-cta:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.72);
    outline: none;
}

.site-footer__newsletter h3,
.site-footer__links h4,
.site-footer__contact h4 {
    margin: 0 0 0.7rem;
    color: #fff;
    font-family: var(--font-secondary);
}

.site-footer__newsletter p {
    margin: 0 0 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.site-footer__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.site-footer__form input {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 10px;
    padding: 0.62rem 0.72rem;
}

.site-footer__form input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__form input:focus-visible {
    outline: 2px solid rgba(251, 201, 114, 0.8);
    outline-offset: 1px;
}

.site-footer__form input[name="email"] {
    grid-column: span 2;
}

.site-footer__form .btn {
    width: fit-content;
    min-width: 130px;
}

.site-footer__newsletter small,
.site-footer__copyright,
.site-footer small {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.site-footer__newsletter small a {
    color: #fff;
    text-decoration: underline;
}

.site-footer__main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.site-footer__links,
.site-footer__contact {
    display: grid;
    gap: 0.45rem;
}

.site-footer__links a,
.site-footer__contact a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
    color: var(--secondary-color);
}

.site-footer__links a:focus-visible,
.site-footer__contact a:focus-visible,
.site-footer__backtop:focus-visible {
    outline: 2px solid rgba(251, 201, 114, 0.9);
    outline-offset: 2px;
    border-radius: 6px;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.site-footer__socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transition: 0.2s ease;
}

.site-footer__socials a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #0c304f;
}

.site-footer__contact span {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer__bottom {
    margin-top: 1.2rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.site-footer__copyright {
    display: inline-flex;
}

.site-footer__backtop {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page {
    padding: calc(var(--header-offset) + 1.2rem) 0 3rem;
}

.legal-page__container {
    max-width: 900px;
}

.legal-page h1 {
    margin: 0.45rem 0 0.9rem;
    color: var(--primary-color);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-family: var(--font-secondary);
}

.legal-page h2 {
    margin: 1.1rem 0 0.45rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.legal-page p {
    margin: 0;
    color: #304457;
    line-height: 1.85;
}

.chat-widget {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 210;
}

.chat-widget__panel {
    width: min(410px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid #dbe6f0;
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(10, 33, 55, 0.28);
    margin-bottom: 0.8rem;
    overflow: hidden;
    display: none;
}

.chat-widget__panel.is-open {
    display: block;
}

.chat-widget__panel-head {
    background: linear-gradient(145deg, var(--primary-color) 0%, #000000 100%);
    color: #fff;
    padding: 0.9rem 1rem;
}

.chat-widget__panel-head h3 {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
}

.chat-widget__panel-head p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.84);
}

.chat-widget__form {
    padding: 0.95rem;
    display: grid;
    gap: 0.6rem;
}

.chat-widget__grid,
.chat-widget__phone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.chat-widget__form input,
.chat-widget__form select,
.chat-widget__form textarea {
    width: 100%;
    border: 1px solid #d7e2ed;
    border-radius: 10px;
    padding: 0.62rem 0.72rem;
    font: inherit;
    color: #1c3349;
    background: #fff;
}

.chat-widget__form textarea {
    resize: vertical;
    min-height: 95px;
}

.chat-widget__toggle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(145deg, var(--primary-color) 0%, #000000 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(11, 60, 105, 0.35);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

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

.chat-widget__toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.48);
    outline-offset: 2px;
}

.chat-widget.is-on-footer .chat-widget__toggle {
    background: #f8f6f1;
    color: #1f2f40;
    box-shadow: 0 10px 24px rgba(12, 28, 42, 0.2);
}

.chat-widget__icon {
    width: 25px;
    height: 25px;
}

.chat-widget__icon--close {
    display: none;
}

.chat-widget.is-open .chat-widget__icon--open {
    display: none;
}

.chat-widget.is-open .chat-widget__icon--close {
    display: block;
}

.chat-widget--homepage {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-widget__hint {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    max-width: min(280px, calc(100vw - 5.5rem));
    margin-bottom: 0.75rem;
    padding: 0.85rem 0.95rem;
    background: #fff;
    border: 1px solid #dbe6f0;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(10, 33, 55, 0.22);
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.96);
    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.2, 0.75, 0.2, 1),
        visibility 0.35s ease;
    visibility: hidden;
    pointer-events: none;
}

.chat-widget__hint.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    visibility: visible;
    pointer-events: auto;
}

.chat-widget__hint-text {
    margin: 0;
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 600;
    color: #1c3349;
}

.chat-widget__hint-close {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    border: 0;
    border-radius: 50%;
    background: #eef4fa;
    color: #4a6278;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.chat-widget__hint-close svg {
    width: 0.85rem;
    height: 0.85rem;
}

.chat-widget__hint-close:hover,
.chat-widget__hint-close:focus-visible {
    background: #dce9f5;
    color: #1c3349;
    outline: none;
}

.chat-widget__hint-tail {
    position: absolute;
    right: 1.35rem;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-right: 1px solid #dbe6f0;
    border-bottom: 1px solid #dbe6f0;
    transform: rotate(45deg);
}

.chat-widget.is-open .chat-widget__hint,
.chat-widget.is-hint-dismissed .chat-widget__hint {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.96);
    visibility: hidden;
    pointer-events: none;
}

.chat-widget__toggle.is-pulse {
    animation: chatWidgetPulse 2s ease-in-out infinite;
}

@keyframes chatWidgetPulse {
    0%,
    100% {
        box-shadow: 0 10px 25px rgba(11, 60, 105, 0.35);
    }

    50% {
        box-shadow:
            0 10px 25px rgba(11, 60, 105, 0.35),
            0 0 0 10px rgba(11, 60, 105, 0.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .chat-widget__hint {
        transition: none;
    }

    .chat-widget__toggle.is-pulse {
        animation: none;
    }
}

.whatsapp-float {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 210;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 3.5rem;
    padding: 0 1rem 0 0.85rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
    transition:
        transform 0.2s ease,
        box-shadow 0.25s ease,
        background-color 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
    outline: none;
}

.whatsapp-float__icon {
    width: 1.65rem;
    height: 1.65rem;
    flex-shrink: 0;
}

.whatsapp-float__label {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 3.5rem;
        height: 3.5rem;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .whatsapp-float__label {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }
}

body.mobile-menu-open .whatsapp-float {
    z-index: 100;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 60, 105, 0.08);
    box-shadow: 0 10px 28px rgba(12, 28, 42, 0.1);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1),
        opacity 0.45s ease;
}

.site-header.site-header--preload {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
}

.site-header--hidden {
    transform: translate3d(0, calc(-1 * var(--header-total-height)), 0);
}

.site-header__topbar {
    position: relative;
    z-index: 3;
    background: var(--accent);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 5rem;
    overflow: visible;
    opacity: 1;
    transition:
        max-height 0.35s ease,
        opacity 0.3s ease,
        border-color 0.3s ease;
}

.site-header--topbar-hidden .site-header__topbar {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-bottom-color: transparent;
    pointer-events: none;
}

.site-header__topbar .site-header__contact {
    color: #fff;
}

.site-header__topbar .header-call-dropdown__toggle {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.site-header__topbar .site-header__email:hover,
.site-header__topbar .site-header__email:focus-visible {
    color: #fff;
    opacity: 0.88;
    outline: none;
}

.site-header__topbar-inner {
    min-height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.auth-btn--topbar {
    padding: 0.32rem 0.62rem;
    font-size: 0.8rem;
    gap: 0.35rem;
}

.auth-btn--text-only {
    gap: 0;
}

.site-header__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    width: 100%;
    color: #24455f;
    font-size: 0.96rem;
}

.header-call-dropdown {
    position: relative;
    z-index: 5;
}

.header-call-dropdown__toggle {
    border: 1px solid rgba(21, 50, 72, 0.4);
    background: rgba(255, 255, 255, 0.95);
    color: inherit;
    min-height: 28px;
    border-radius: 4px;
    padding: 0 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.header-call-dropdown__toggle[aria-expanded="true"] .header-call-dropdown__chevron {
    transform: rotate(180deg);
}

.header-call-dropdown__chevron {
    transition: transform 0.2s ease;
}

.header-call-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    width: min(220px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid #e4e8ed;
    box-shadow: 0 12px 24px rgba(9, 27, 42, 0.14);
    border-radius: 8px;
    padding: 0.65rem;
    z-index: 25;
}

.header-call-dropdown__menu {
    display: none;
}

.header-call-dropdown.is-open .header-call-dropdown__menu,
.header-call-dropdown:hover .header-call-dropdown__menu,
.header-call-dropdown:focus-within .header-call-dropdown__menu {
    display: block;
}

.header-call-dropdown__region {
    margin: 0;
    color: #5b6a78;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.header-call-dropdown__link {
    display: block;
    color: #1f3448;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.35;
    margin: 0.12rem 0 0.5rem;
    padding: 0.15rem 0.2rem;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-call-dropdown__link:hover,
.header-call-dropdown__link:focus-visible {
    background: #f3f7fb;
    color: #0f2438;
    outline: none;
}

.header-call-dropdown__divider {
    height: 1px;
    margin: 0.45rem 0;
    background: #e4e8ed;
}

.header-call-dropdown__link--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.1rem;
    color: #128c7e;
}

.header-call-dropdown__link--whatsapp:hover,
.header-call-dropdown__link--whatsapp:focus-visible {
    background: rgba(37, 211, 102, 0.12);
    color: #0d6b5f;
}

.header-call-dropdown__whatsapp-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.site-header__email {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.site-header__email:hover,
.site-header__email:focus-visible {
    color: #000000;
    outline: none;
}

.site-header__bar {
    position: relative;
    z-index: 1;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.site-header--scrolled,
.site-header--solid {
    background: #ffffff;
    border-bottom-color: rgba(11, 60, 105, 0.1);
    box-shadow: 0 10px 28px rgba(12, 28, 42, 0.1);
}

.site-header--hero-integrated {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

.site-header--hero-integrated .site-header__topbar {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-bottom-color: transparent;
    pointer-events: none;
}

.site-header--hero-integrated .site-header__hero-menu {
    display: none;
}

.site-header__hero-menu {
    display: none;
}

.site-header__wordmark {
    display: none;
    font-family: var(--font-secondary);
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--primary-color);
    white-space: nowrap;
}

.site-header--hero-integrated .site-header__wordmark {
    display: block;
    color: #fff;
}

.site-header--hero-integrated .site-header__logo-img--default {
    display: none;
}

.site-header--scrolled .site-header__wordmark {
    display: none;
}

.site-header--scrolled .site-header__logo-img--default {
    display: block;
}

.site-header--hero-integrated .site-nav__link {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.15rem;
}

@media (min-width: 861px) and (max-width: 1180px) {
    .site-header--hero-integrated .site-nav__link--hero-compact {
        display: none;
    }
}

.site-header--hero-integrated .site-nav__link:hover,
.site-header--hero-integrated .site-nav__link:focus-visible {
    color: var(--secondary-color);
}

.site-header--hero-integrated .site-header__find-journey {
    border-color: rgba(188, 129, 9, 0.9);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    padding: 0.5rem 1rem;
}

.site-header--hero-integrated .site-header__find-journey:hover,
.site-header--hero-integrated .site-header__find-journey:focus-visible {
    border-color: #fff;
    background: rgba(188, 129, 9, 0.35);
}

.site-header--hero-integrated .site-header__mobile-toggle {
    color: #fff;
}

@media (min-width: 861px) {
    .site-header--hero-integrated .site-header__bar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1.5rem;
    }

    .site-header--hero-integrated .site-nav {
        justify-self: center;
    }

    .site-header--hero-integrated .site-header__actions {
        justify-self: end;
    }

    .site-header--hero-integrated .site-header__mobile-toggle {
        display: none;
    }
}

.site-header__logo img {
    height: calc(var(--header-height) - 14px);
    width: auto;
}

.site-header--overlay .site-header__email:hover,
.site-header--overlay .site-header__email:focus-visible {
    color: var(--secondary-color);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav__link {
    color: var(--primary-color);
    font-size: 0.96rem;
    letter-spacing: 0.03em;
    padding: 0.4rem 0.25rem;
    transition: color 0.25s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: var(--secondary);
    outline: none;
}

.site-nav__link--button {
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.site-header__find-journey {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.48rem 0.95rem;
    border: 1px solid rgba(11, 60, 105, 0.28);
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.site-header__find-journey:hover,
.site-header__find-journey:focus-visible {
    border-color: var(--primary-color);
    background: rgba(11, 60, 105, 0.07);
    outline: none;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(11, 60, 105, 0.28);
    color: var(--primary-color);
    font-size: 0.88rem;
    transition: all 0.25s ease;
}

.auth-btn--solid {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #2b2615;
}

.auth-btn--solid:hover,
.auth-btn--solid:focus-visible {
    background: var(--accent-soft);
    border-color: var(--accent-soft);
    outline: none;
}

.auth-btn--ghost:hover,
.auth-btn--ghost:focus-visible {
    border-color: var(--primary-color);
    background: rgba(11, 60, 105, 0.07);
    outline: none;
}

.site-header__mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.4rem;
    cursor: pointer;
}

.site-header--overlay .site-nav__link {
    color: #fff;
}

.site-header--overlay .site-header__topbar {
    border-bottom-color: rgba(255, 255, 255, 0.22);
}

.site-header--overlay .site-header__contact {
    color: rgba(255, 255, 255, 0.92);
}

.site-header--overlay .header-call-dropdown__toggle {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.site-header--overlay .site-nav__link:hover,
.site-header--overlay .site-nav__link:focus-visible {
    color: var(--secondary-color);
}

.site-header--overlay .auth-btn {
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.site-header--overlay .auth-btn--solid {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.site-header--overlay .auth-btn--solid:hover,
.site-header--overlay .auth-btn--solid:focus-visible {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.55);
}

.site-header--overlay .auth-btn--ghost:hover,
.site-header--overlay .auth-btn--ghost:focus-visible {
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.14);
}

.site-header--overlay .site-header__find-journey {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.site-header--overlay .site-header__find-journey:hover,
.site-header--overlay .site-header__find-journey:focus-visible {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.12);
}

.site-header--overlay .site-header__mobile-toggle {
    color: #fff;
}

.site-header--overlay .site-header__logo-img--default {
    opacity: 0;
}

.site-header--overlay .site-header__logo-img--overlay {
    opacity: 1;
}

.site-header__logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: calc(var(--header-height) - 14px);
}

.site-header__logo-img--overlay {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-header__logo-img--default {
    transition: opacity 0.3s ease;
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mega-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu__shell {
    background: #fff;
    border-radius: 0 0 18px 18px;
    display: grid;
    grid-template-columns: 0.95fr 1fr 1.15fr;
    box-shadow: 0 26px 56px rgba(16, 26, 39, 0.22);
    overflow: hidden;
    max-height: min(78vh, 700px);
}

.mega-menu__column {
    padding: 1.3rem 1.3rem 1.4rem;
    background: #fff;
}

.mega-menu__column + .mega-menu__column {
    border-left: 1px solid #ece8e3;
}

.mega-menu__close {
    border: 0;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    line-height: 0;
    padding: 0;
    margin-bottom: 0.75rem;
}

.mega-menu__categories,
.mega-menu__popular-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu__categories {
    display: grid;
    gap: 0.45rem;
}

.mega-menu__category {
    border: 0;
    width: 100%;
    text-align: left;
    padding: 0.35rem 0.25rem 0.35rem 0.7rem;
    background: transparent;
    color: #334453;
    font-size: 0.98rem;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.mega-menu__category.is-active {
    border-left-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
}

.mega-menu__popular-label {
    margin: 1.2rem 0 0.45rem;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7e8692;
}

.mega-menu__popular-links {
    display: grid;
    gap: 0.4rem;
}

.mega-menu__popular-links a {
    color: #3f4a57;
    font-size: 0.92rem;
}

.mega-menu__featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.featured-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 110px;
}

.featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 17, 25, 0.72), rgba(11, 17, 25, 0.05));
}

.featured-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.featured-card span {
    position: absolute;
    left: 0.65rem;
    bottom: 0.5rem;
    color: #fff;
    z-index: 1;
    font-size: 0.9rem;
}

.mega-menu__all-destinations {
    display: inline-flex;
    margin: 1rem 0 0.8rem;
    color: var(--accent);
    font-weight: 600;
    border-bottom: 1px solid rgba(181, 106, 58, 0.4);
}

.mega-menu__regions {
    max-height: 330px;
    overflow: auto;
    display: grid;
}

.mega-menu__region-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.72rem 0.15rem;
    border-bottom: 1px solid #f0ece6;
    color: #223346;
}

.mega-menu__region-row:hover {
    color: var(--accent);
}

.mega-menu__column--preview {
    position: relative;
    min-height: 100%;
    padding: 0;
}

.mega-menu__column--preview img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.mega-menu__preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(5, 16, 29, 0.84), rgba(22, 48, 73, 0.24));
}

.mega-menu__preview-title {
    position: absolute;
    left: 1.45rem;
    bottom: 1.25rem;
    margin: 0;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-family: var(--font-secondary);
    letter-spacing: 0.02em;
}

.mega-menu__shell {
    grid-template-columns: 320px 320px minmax(0, 1fr);
    border-radius: 0 0 12px 12px;
}

.mega-menu__column--left {
    background: #f8f6f1;
}

.mega-menu__left-top {
    margin-bottom: 0.3rem;
}

.mega-menu__left-top .mega-menu__category {
    font-size: 2rem;
    padding: 0.55rem 0.25rem 0.55rem 0.7rem;
    border-left-width: 2px;
}

.mega-menu__popular-label {
    margin-top: 0.85rem;
}

.mega-menu__popular-links a {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1rem;
    font-weight: 600;
}

.mega-menu__left-divider {
    margin: 1rem 0;
    border-top: 1px solid #d8d2c7;
}

.mega-menu__secondary-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.15rem;
}

.mega-menu__link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2a3440;
    font-size: 0.98rem;
    padding: 0.4rem 0.1rem;
}

.mega-menu__link-row::after {
    content: "›";
    color: #9aa2ab;
}

.mega-menu__column--middle {
    background: #fff;
}

.mega-menu__featured-grid {
    margin-bottom: 0.55rem;
}

.featured-card {
    border-radius: 0;
}

.featured-card img {
    height: 122px;
}

.mega-menu__all-destinations {
    min-height: 42px;
    width: 100%;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd7cb;
    color: #1f2a35;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 0.65rem;
    border-bottom: 1px solid #ddd7cb;
}

.mega-menu__regions {
    max-height: 420px;
}

.mega-menu__region-row {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
    padding: 0.6rem 0.15rem;
}

.mobile-drawer {
    display: none;
}

@media (min-width: 861px) {
    body.is-homepage .mobile-drawer__backdrop {
        position: fixed;
        inset: 0;
        z-index: 2147483645;
        border: 0;
        padding: 0;
        margin: 0;
        background: rgba(8, 20, 33, 0.56);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    body.is-homepage .mobile-drawer__backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    body.is-homepage .mobile-drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        display: flex;
        flex-direction: column;
        width: min(22rem, 92vw);
        max-width: min(22rem, 92vw);
        background: #fff;
        z-index: 2147483646;
        transform: translateX(100%);
        transition: transform 0.33s ease;
        padding: 1.2rem 1.1rem 1.4rem;
        gap: 1rem;
        border-left: 1px solid #e8e1d7;
        box-shadow: -14px 0 34px rgba(6, 22, 36, 0.22);
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
    }

    body.is-homepage .mobile-drawer.is-open {
        transform: translateX(0);
    }

    body.is-homepage .mobile-drawer__header {
        display: flex;
        justify-content: flex-end;
    }

    body.is-homepage .mobile-drawer__links {
        display: grid;
        gap: 0.15rem;
    }

    body.is-homepage .mobile-drawer__links > a,
    body.is-homepage .mobile-drawer__links > button {
        text-align: left;
        padding: 0.65rem 0.15rem;
        font-size: 1rem;
        color: #1d2d3f;
        background: transparent;
        border: 0;
        cursor: pointer;
    }
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-top: var(--header-offset);
    padding-bottom: clamp(5.75rem, 14vw, 8rem);
}

.hero__slides {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero__slide.is-active .hero__background {
    animation: hero-zoom 10s ease-out forwards;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(6, 28, 48, 0.88) 0%, rgba(11, 60, 105, 0.58) 45%, rgba(251, 201, 114, 0.22) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    animation: hero-content-up 900ms ease forwards;
}

.hero__slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(8, 21, 34, 0.35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero__slider-btn--prev {
    left: 1.2rem;
}

.hero__slider-btn--next {
    right: 1.2rem;
}

.hero__slider-btn:hover,
.hero__slider-btn:focus-visible {
    background: rgba(8, 21, 34, 0.56);
    border-color: rgba(255, 255, 255, 0.9);
    outline: none;
}

.hero__content--centered {
    display: grid;
    justify-items: center;
    text-align: center;
}

.hero__logo {
    width: 84px;
    margin-bottom: 1.4rem;
    opacity: 0;
    transform: translateY(16px);
    animation: hero-item-in 700ms 140ms ease forwards;
}

.hero__eyebrow {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    opacity: 0;
    margin: 0 0 1rem;
    animation: hero-item-in 700ms 220ms ease forwards;
}

.hero__title {
    font-size: clamp(2.1rem, 5.6vw, 4.2rem);
    line-height: 1.02;
    margin: 0 0 1rem;
    max-width: 16ch;
    opacity: 0;
    transform: translateY(24px);
    animation: hero-item-in 900ms 330ms ease forwards;
}

/* Trial/demo webfonts (e.g. Fontspring DEMO) map ASCII apostrophe to watermark glyphs; render this character from system fonts */
.hero__title-apostrophe {
    font-family: ui-serif, Georgia, "Times New Roman", serif;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.3rem 1.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(251, 201, 114, 0.2);
    color: #fff;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.79rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(24px);
    animation: hero-item-in 900ms 430ms ease forwards;
}

.hero__cta:hover,
.hero__cta:focus-visible {
    background: rgba(251, 201, 114, 0.36);
    border-color: rgba(255, 255, 255, 1);
    outline: none;
}

.hero__trust-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(180deg, rgba(6, 18, 30, 0.2) 0%, rgba(6, 18, 30, 0.55) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.85rem 0 1rem;
}

.hero__trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    justify-content: flex-start;
}

.hero__trust-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #fbbc05;
}

.hero__trust-svg {
    width: 1.65rem;
    height: 1.65rem;
    display: block;
}

.hero__trust-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
    text-align: left;
}

.hero__trust-line {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(0.58rem, 0.9vw, 0.72rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 767px) {
    .hero {
        padding-bottom: clamp(7rem, 28vw, 9.5rem);
    }

    .hero__trust-bar {
        padding: 0.75rem 0 0.95rem;
    }

    .hero__trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem 0.75rem;
    }

    .hero__trust-item {
        gap: 0.55rem;
    }

    .hero__trust-line {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }
}

.hero-search {
    /* margin-top: 1.5rem; */
    background: #fff;
    border-radius: 14px;
    padding: 0.8rem 0.85rem;
    box-shadow: 0 16px 34px rgba(7, 20, 34, 0.24);
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 0.8fr 0.8fr auto;
    gap: 0.55rem;
    align-items: end;
    margin-bottom: 0.95rem;
    opacity: 0;
    transform: translateY(24px);
    animation: hero-item-in 900ms 540ms ease forwards;
}

.hero-search__field {
    display: grid;
    gap: 0.35rem;
}

.hero-search__field label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f7782;
}

.hero-search select,
.hero-search input {
    border: 1px solid #dfe3e8;
    background: #fff;
    min-height: 44px;
    border-radius: 9px;
    padding: 0 0.7rem;
    color: #213141;
    font-size: 0.92rem;
    outline: none;
}

.hero-search select:focus-visible,
.hero-search input:focus-visible {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(11, 60, 105, 0.12);
}

.hero-search__submit {
    border: 0;
    min-height: 44px;
    border-radius: 10px;
    background: var(--secondary-color);
    color: #2b2615;
    font-weight: 700;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-search__submit:hover,
.hero-search__submit:focus-visible {
    background: #f5bb53;
    transform: translateY(-1px);
    outline: none;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid #00dd7f;
    background: #fff;
    color: #1b2f40;
    min-height: 48px;
    padding: 0.3rem 0.85rem;
    font-size: 0.86rem;
    animation: hero-item-in 900ms 600ms ease forwards;
    opacity: 0;
    transform: translateY(24px);
}

.hero-trust-badge__brand {
    background: #00dd7f;
    color: #0f1f2f;
    padding: 0.55rem 0.65rem;
    font-weight: 700;
}

.hero-trust-badge__name {
    font-weight: 700;
    text-decoration: underline;
}

.hero-trust-badge__rating {
    color: #00a650;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
}

.hero-trust-badge__reviews {
    color: #5d6873;
    font-size: 0.8rem;
}

.home-spirit {
    background: #fff;
    border-top: 1px solid #eee6db;
    padding-top: 3.4rem;
}

.home-spirit__layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.45fr);
    gap: 2rem;
    align-items: center;
    margin-top: 1.9rem;
}

.home-spirit__layout--text-only {
    grid-template-columns: 1fr;
    justify-items: center;
}

.home-spirit__layout--text-only .home-spirit__content {
    width: 100%;
    max-width: min(68rem, 100%);
}

.home-spirit__image img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.home-spirit__content {
    display: grid;
    gap: 0.6rem;
    text-align: center;
}

.home-spirit__title {
    margin: 0 auto;
    max-width: 980px;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1.05rem;
    justify-content: center;
    color: #1f3041;
    text-transform: uppercase;
    font-size: clamp(1.35rem, 2.65vw, 2.95rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    font-weight: 700;
}

.home-spirit__title span {
    flex: 0 0 96px;
    height: 2px;
    background: #1f3041;
}

.home-spirit__text {
    margin: 0 auto;
    color: #4d5966;
    font-size: clamp(1rem, 1.75vw, 1.2rem);
    line-height: 1.55;
    max-width: 1200px;
}

@keyframes hero-zoom {
    from { transform: scale(1.12); }
    to { transform: scale(1.03); }
}

@keyframes hero-content-up {
    from { transform: translateY(10px); }
    to { transform: translateY(0); }
}

@keyframes hero-item-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.packages-hero {
    position: relative;
    min-height: 54vh;
    padding-top: calc(var(--header-offset) + 1rem);
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.packages-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packages-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(8, 29, 50, 0.85), rgba(8, 29, 50, 0.35));
}

.packages-hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: 2.1rem;
}

.packages-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: grey;
}

.packages-breadcrumb a:hover {
    color: var(--secondary-color);
}

.packages-hero h1 {
    margin: 0.8rem 0 0.5rem;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.05;
    font-family: var(--font-secondary);
}

.packages-hero p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.9);
}

.packages-hero--split {
    min-height: 0;
    padding-top: var(--header-offset);
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    align-items: stretch;
    color: var(--text);
    background: #f5f2eb;
}

/* Higher specificity than `.packages-hero { display: flex }` so split hero always uses grid (stack on small screens via media query below) */
.packages-hero.packages-hero--split {
    display: grid;
}

.packages-hero__media {
    position: relative;
    min-height: clamp(340px, 56vh, 540px);
}

.packages-hero--split .packages-hero__media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packages-hero--split .packages-hero__overlay {
    background: linear-gradient(180deg, rgba(7, 18, 30, 0.22), rgba(7, 18, 30, 0.56));
}

.packages-hero__media-content {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: grid;
    place-content: center;
    gap: 0.95rem;
    justify-items: center;
    text-align: center;
    color: #fff;
    padding: 1.2rem;
}

.packages-hero__media-content h1 {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.06;
    font-family: var(--font-secondary);
}

.packages-hero__view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
}

.packages-hero--split .packages-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    padding: 1.8rem 0 1.6rem;
}

.packages-hero--split .packages-breadcrumb {
    color: #7d837f;
}

.packages-hero--split .packages-breadcrumb a:hover {
    color: var(--primary-color);
}

.packages-hero--split .packages-hero__content h2 {
    margin: 1rem 0 1rem;
    color: #1e2428;
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
    line-height: 1.22;
    font-family: var(--font-secondary);
}

.packages-hero--split .packages-hero__content p {
    margin: 0;
    color: #37424b;
    max-width: 640px;
}

.inner-page-nav {
    position: sticky;
    top: 0;
    z-index: 112;
    background: #ece9e1;
    border-top: 1px solid #d9d2c8;
    border-bottom: 1px solid #d9d2c8;
}

.inner-page-nav__inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem 1.4rem;
}

.inner-page-nav__inner a {
    color: #575f63;
    font-size: 0.93rem;
    border-bottom: 2px solid transparent;
    padding: 0.2rem 0;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.inner-page-nav__inner a:hover {
    color: #262e33;
    border-bottom-color: #262e33;
}

.inner-page-nav__inner a.is-active {
    color: #1e252b;
    border-bottom-color: #9f6b45;
}

.recommended-journeys {
    padding-bottom: 2.2rem;
}

.recommended-journeys__head {
    text-align: center;
    margin-bottom: 1.4rem;
}

.recommended-journeys__head p {
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4e5961;
    font-weight: 700;
    font-size: 0.82rem;
}

.recommended-journeys__head h2 {
    margin: 0;
    color: #1c242c;
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 3.3vw, 2.9rem);
    line-height: 1.14;
}

.recommended-journeys__switch {
    margin-top: 1rem;
    display: inline-flex;
    border: 1px solid #d8dce2;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.recommended-journeys__switch button {
    border: 0;
    background: #fff;
    color: #4f5e70;
    min-height: 42px;
    padding: 0.5rem 1.1rem;
    cursor: pointer;
    font-weight: 500;
}

.recommended-journeys__switch button.is-active {
    background: #111821;
    color: #fff;
}

.experiences-section {
    padding-top: 1.2rem;
}

.experiences-section__head {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 1.3rem;
}

.experiences-section__head p {
    margin: 0 0 0.4rem;
    color: #303a43;
    font-size: 0.95rem;
}

.experiences-section__head h2 {
    margin: 0;
    color: #1b232b;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.2vw, 3.15rem);
    line-height: 1.14;
}

.experiences-section__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.experience-card {
    border: 1px solid #ddd7ce;
    background: #f6f2ea;
}

.experience-card__media {
    overflow: hidden;
}

.experience-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.experience-card__body {
    padding: 0.65rem;
}

.experience-card__location {
    margin: 0;
    color: #47525c;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.experience-card__body h3 {
    margin: 0.4rem 0 0.8rem;
    color: #1f2730;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.35;
}

.experience-card__button {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 34px;
    border: 1px solid #cfd4da;
    border-radius: 2px;
    background: #f3f3f2;
    color: #232d36;
    font-size: 0.9rem;
    cursor: pointer;
}

.experience-card__button:hover,
.experience-card__button:focus-visible {
    background: #e9ebee;
    border-color: #9ca6af;
    outline: none;
}

.experience-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.experience-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.experience-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 18, 28, 0.58);
}

.experience-modal__dialog {
    position: relative;
    width: min(960px, 92vw);
    margin: min(8vh, 4rem) auto 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    box-shadow: 0 22px 44px rgba(10, 24, 36, 0.28);
}

.experience-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: 1px solid #d5dbe2;
    background: #fff;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d2831;
    cursor: pointer;
    z-index: 2;
}

.experience-modal__media img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.experience-modal__content {
    padding: 3.1rem 1.4rem 1.4rem;
}

.experience-modal__content h3 {
    margin: 0 0 0.7rem;
    color: #1b232b;
    font-family: var(--font-secondary);
    font-size: clamp(1.55rem, 2.2vw, 2.2rem);
    line-height: 1.2;
}

.experience-modal__content p {
    margin: 0;
    color: #424e5a;
    line-height: 1.75;
}

.accommodations-section {
    padding-top: 1.1rem;
}

.accommodations-section__head {
    max-width: 900px;
    margin: 0 auto 1.2rem;
    text-align: center;
}

.accommodations-section__head h2 {
    margin: 0;
    color: #1d252d;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.3vw, 3.15rem);
    line-height: 1.15;
}

.accommodations-carousel {
    position: relative;
}

.accommodations-carousel__track {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.accommodations-carousel__track::-webkit-scrollbar {
    display: none;
}

.accommodation-card {
    flex: 0 0 min(24%, 290px);
    min-width: 260px;
    border: 1px solid #ddd7ce;
    background: #f6f2ea;
    scroll-snap-align: start;
}

.accommodation-card__media {
    position: relative;
}

.accommodation-card__media img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.accommodation-card__badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: #121a23;
    color: #fff;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.45rem;
    border-radius: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.accommodation-card__body {
    padding: 0.75rem;
}

.accommodation-card__location {
    margin: 0;
    color: #46515d;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.accommodation-card__body h3 {
    margin: 0.45rem 0 0.9rem;
    color: #1f2730;
    font-family: var(--font-secondary);
    font-size: 2rem;
    line-height: 1.05;
}

.accommodation-card__button {
    width: 100%;
    min-height: 38px;
    border: 1px solid #ccd3db;
    background: #f4f4f4;
    color: #1d2731;
    border-radius: 3px;
    cursor: pointer;
}

.accommodation-card__button:hover,
.accommodation-card__button:focus-visible {
    background: #e8ecef;
    border-color: #98a4af;
    outline: none;
}

.accommodations-carousel__nav {
    position: absolute;
    top: 37%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d4d9df;
    background: #fff;
    color: #2b3743;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.accommodations-carousel__nav--prev {
    left: 0.4rem;
}

.accommodations-carousel__nav--next {
    right: 0.4rem;
}

.accommodation-modal {
    position: fixed;
    inset: 0;
    z-index: 230;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.accommodation-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.accommodation-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 22, 0.72);
}

.accommodation-modal__dialog {
    position: relative;
    width: min(1100px, 94vw);
    max-height: 92vh;
    overflow-y: auto;
    margin: 3.5vh auto 0;
    background: #fff;
    border-radius: 8px;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1.75rem, 3vw, 2.25rem);
}

.accommodation-modal__close {
    position: absolute;
    top: clamp(1rem, 2vw, 1.35rem);
    right: clamp(1rem, 2vw, 1.35rem);
    border: 0;
    background: transparent;
    color: #6b7785;
    cursor: pointer;
    z-index: 3;
    padding: 0.25rem;
}

.accommodation-modal__close:hover {
    color: #1d252d;
}

.accommodation-modal__header {
    margin: 0 2.75rem 1.5rem 0;
}

.accommodation-modal__title {
    margin: 0;
    color: #1d252d;
    font-family: var(--font-secondary);
    font-size: clamp(1.65rem, 2.6vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.accommodation-modal__body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

.accommodation-modal__slider {
    min-width: 0;
}

.accommodation-modal__slider-viewport {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #e8e4dc;
}

.accommodation-modal__slider-img {
    width: 100%;
    height: auto;
    min-height: min(52vh, 520px);
    max-height: 56vh;
    object-fit: cover;
    display: block;
}

.accommodation-modal__slider--single .accommodation-modal__slider-nav {
    display: none;
}

.accommodation-modal__slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: #1d252d;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.accommodation-modal__slider-nav:hover {
    background: #fafafa;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.16);
}

.accommodation-modal__slider-nav--prev {
    left: 0.75rem;
}

.accommodation-modal__slider-nav--next {
    right: 0.75rem;
}

.accommodation-modal__description {
    min-width: 0;
    padding-top: 0.15rem;
}

.accommodation-modal__description-text {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    line-height: 1.75;
    color: #2f3944;
}

.accommodation-modal__description-text p {
    margin: 0 0 1rem;
}

.accommodation-modal__description-text p:last-child {
    margin-bottom: 0;
}

.places-visit-section {
    padding-top: 1rem;
}

.places-visit-section__head h2 {
    margin: 0 0 1rem;
    color: #1d252d;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.places-visit-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.place-visit-card {
    background: transparent;
    text-align: center;
}

.place-visit-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border: 2px solid #252b2f;
}

.place-visit-card__body {
    padding: 0.65rem 0.5rem 0;
}

.place-visit-card__body h3 {
    margin: 0;
    color: #1e2730;
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 2.4vw, 2.3rem);
    line-height: 1.1;
}

.place-visit-card__body p {
    margin: 0.5rem auto 0;
    color: #2f3a45;
    max-width: 96%;
    font-size: 1rem;
    line-height: 1.45;
}

.ways-explore-section {
    padding-top: 1.1rem;
}

.ways-explore-section__head {
    text-align: center;
    margin-bottom: 1.1rem;
}

.ways-explore-section__head p {
    margin: 0;
    color: #1f2831;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    font-size: 0.84rem;
}

.ways-explore-section__head h2 {
    margin: 0.45rem 0 0;
    color: #1e262f;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
}

.ways-explore-tabs {
    margin: 0 auto 1.1rem;
    width: fit-content;
    display: flex;
    border: 1px solid #cfcbc2;
    border-radius: 10px;
    overflow: hidden;
    background: #f2eee6;
}

.ways-explore-tabs button {
    border: 0;
    background: #f2eee6;
    color: #29333d;
    min-height: 44px;
    padding: 0.55rem 1.2rem;
    border-right: 1px solid #cfcbc2;
    cursor: pointer;
    font-size: 1.05rem;
}

.ways-explore-tabs button:last-child {
    border-right: 0;
}

.ways-explore-tabs button.is-active {
    background: #e7ddc8;
}

.ways-explore-feature {
    background: #fff;
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    border: 1px solid #ddd7cf;
}

.ways-explore-feature__media img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.ways-explore-feature__content {
    padding: 1.5rem 1.4rem;
}

.ways-explore-feature__content > p:first-child {
    margin: 0;
    color: #25303a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.86rem;
    font-weight: 700;
}

.ways-explore-feature__content h3 {
    margin: 0.45rem 0 0.7rem;
    color: #1f2730;
    font-family: var(--font-secondary);
    font-size: clamp(1.9rem, 2.5vw, 2.5rem);
    line-height: 1.15;
}

.ways-explore-feature__content p {
    margin: 0;
    color: #34414c;
    line-height: 1.65;
    font-size: 1.07rem;
}

.ways-explore-feature__content a {
    margin-top: 2rem;
    display: inline-flex;
    color: #1a2430;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
}

.map-section {
    padding-top: 1rem;
}

.map-section__canvas {
    position: relative;
    min-height: 420px;
    border: 2px solid #292f33;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.58) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.58) 1px, transparent 1px),
        linear-gradient(120deg, #f3f1eb 28%, #d6e7ef 60%, #d2e2eb 100%);
    background-size: 190px 190px, 190px 190px, cover;
    overflow: hidden;
}

.map-section__controls {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2;
    display: grid;
}

.map-section__controls button {
    width: 28px;
    height: 28px;
    border: 1px solid #bfc8d1;
    background: #fff;
    color: #24303d;
    font-size: 1.15rem;
    line-height: 1;
}

.map-section__pin {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #a45633;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(14, 26, 37, 0.2);
}

.map-section__label {
    position: absolute;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.86);
    color: #1f2b36;
    border: 1px solid #d7dfe6;
    border-radius: 3px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.1rem 0.35rem;
}

.packages-grid--recommended .package-card--grid:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
}

.packages-grid--recommended .package-card--grid:first-child img {
    min-height: 100%;
}

@media (max-width: 900px) {
    .packages-grid--recommended .package-card--grid:first-child {
        grid-template-columns: 1fr;
    }
}

.packages-gallery {
    padding-bottom: 1rem;
}

.packages-gallery__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.packages-gallery__header h2 {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.packages-gallery__link {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d2dae4;
    border-radius: 999px;
    min-height: 40px;
    padding: 0.2rem 0.9rem;
    color: var(--primary-color);
    background: #fff;
    font-weight: 600;
}

.packages-gallery__link:hover {
    border-color: var(--primary-color);
}

.packages-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 120px;
    gap: 0.8rem;
}

.packages-gallery__item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
}

.packages-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.packages-gallery__item--main {
    grid-column: span 2;
    grid-row: span 2;
}

.offers-ticker {
    border-top: 1px solid #ece7df;
    border-bottom: 1px solid #ece7df;
    background: #fff;
    overflow: hidden;
    white-space: nowrap;
}

.offers-ticker__track {
    display: inline-flex;
    gap: 2rem;
    animation: ticker 28s linear infinite;
    padding: 0.8rem 0;
}

.offers-ticker__track span {
    color: var(--primary-color);
    font-weight: 600;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.packages-results__layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 1.1rem;
}

.packages-filters {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 12px;
    padding: 1rem;
    position: sticky;
    top: 102px;
    height: fit-content;
}

.packages-filters h2 {
    margin: 0 0 1rem;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.packages-filters__group {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.packages-filters__group label,
.packages-filters__group p {
    margin: 0;
    font-size: 0.84rem;
    color: #556270;
}

.packages-filters input,
.packages-filters select {
    min-height: 40px;
    border: 1px solid #d9dfe6;
    border-radius: 8px;
    padding: 0 0.62rem;
}

.packages-filters__checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.packages-filters__price {
    display: grid;
    gap: 0.5rem;
}

.packages-filters__price input[type="range"] {
    width: 100%;
    accent-color: var(--primary-color);
}

.packages-filters__range-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    color: #556270;
}

.packages-filters__range-indicator strong {
    color: var(--accent);
}

.packages-filters__submit {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 9px;
    font-weight: 700;
    background: var(--secondary-color);
    color: #2b2615;
    cursor: pointer;
}

.packages-filters {
    background: #f4f1ea;
}

.packages-filters h2 {
    display: none;
}

.packages-filters__group h3 {
    margin: 0 0 0.8rem;
    color: #0f1820;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1.2rem;
    font-weight: 700;
}

.packages-filters__group--regions {
    margin-bottom: 1.15rem;
}

.packages-filters__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.packages-filters__chip {
    position: relative;
}

.packages-filters__chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.packages-filters__chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    border: 1px solid #cbc3b7;
    border-radius: 999px;
    padding: 0.15rem 1rem;
    color: #1f2b35;
    background: #f4f1ea;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.packages-filters__chip input:checked + span {
    background: #e2d6c2;
    border-color: #ad9c85;
}

.packages-filters__chip--destination input:checked + span {
    background: #000;
    color: #fff;
    border-color: #000;
}

.packages-filters__group--compact input[type="date"] {
    border-radius: 10px;
    border: 1px solid #cbc3b7;
    background: #f7f4ed;
}

.packages-filters__price input[type="range"] {
    accent-color: #a86a41;
}

.packages-filters__toggle {
    display: none;
}

.packages-results__content {
    display: grid;
    gap: 0.9rem;
}

.packages-results__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.packages-results__toolbar p,
.packages-results__count {
    margin: 0;
    color: #5d6975;
}

.packages-toolbar-search {
    flex: 1;
    min-width: 0;
    max-width: min(480px, 100%);
}

.packages-toolbar-search__field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.42rem 0.95rem;
    border: 1px solid #dce2e9;
    border-radius: 999px;
    background: #fff;
    cursor: text;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.packages-toolbar-search__field:focus-within {
    border-color: rgba(11, 60, 105, 0.45);
    box-shadow: 0 0 0 3px rgba(11, 60, 105, 0.1);
}

.packages-toolbar-search__icon {
    flex-shrink: 0;
    color: #5d6975;
}

.packages-toolbar-search__input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 0.94rem;
    color: #1f2a35;
    padding: 0.2rem 0;
}

.packages-toolbar-search__input::placeholder {
    color: #8a96a3;
}

.packages-toolbar-search__input:focus {
    outline: none;
}

.packages-results__view-switch {
    display: inline-flex;
    border: 1px solid #dce2e9;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.packages-results__view-switch a {
    padding: 0.45rem 0.9rem;
    color: #4f5e70;
}

.packages-results__view-switch a.is-active {
    background: var(--primary-color);
    color: #fff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}
.packages-grid-recommended {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.9rem;
}

.packages-grid-activity {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.packages-list {
    display: grid;
    gap: 0.9rem;
}

.packages-map-view {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 0.9rem;
}

.packages-map-view__panel,
.packages-map-view__list {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 12px;
    padding: 0.9rem;
}

.packages-map-view__panel h3 {
    margin: 0 0 0.45rem;
    color: var(--primary-color);
}

.packages-map-view__panel p {
    margin: 0 0 0.8rem;
    color: #5a6876;
}

.packages-map-view__image {
    width: 100%;
    min-height: 330px;
    border-radius: 10px;
    object-fit: cover;
}

.packages-map-view__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.package-card {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 12px;
    overflow: hidden;
}

.package-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.package-card__body {
    padding: 0.9rem;
}

.package-card__body h3 {
    margin: 0 0 0.4rem;
    color: var(--primary-color);
    font-size: 1.08rem;
}

.package-card__body p {
    margin: 0 0 0.8rem;
    color: #5e6975;
    font-size: 0.92rem;
}

.package-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
    margin-bottom: 0.8rem;
    color: #455565;
    font-size: 0.86rem;
}

.package-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.package-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
}

.package-card__price del {
    color: #8f97a1;
}

.package-card__price strong {
    font-size: 1.1rem;
    color: var(--accent);
}

.package-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #556270;
    font-size: 0.88rem;
}

.package-card__button {
    display: inline-flex;
    margin-top: 0.8rem;
    border-radius: 999px;
    min-height: 38px;
    align-items: center;
    padding: 0.2rem 0.95rem;
    background: var(--primary-color);
    color: #fff;
}

.package-card--list {
    display: grid;
    grid-template-columns: minmax(260px, 45%) minmax(0, 55%);
}

.package-card--list .package-card__media {
    position: relative;
}

.package-card--list .package-card__media img {
    height: 100%;
    height: 320px;
}

.package-card--list .package-card__badges {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 1;
    display: inline-flex;
    gap: 0.35rem;
}

.package-card--list .package-card__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0.1rem 0.45rem;
    border-radius: 6px;
    background: #fff;
    color: #1f2931;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.package-card--list .package-card__badges .is-offer {
    background: #ad5e2e;
    color: #fff;
}

.package-card--list .package-card__body {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.package-card--list .package-card__body h3 {
    margin: 0;
    padding: 0.9rem 1rem 0.25rem;
    color: #1f2730;
    font-family: var(--font-secondary);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.1;
}

.package-card--list .package-card__subhead {
    margin: 0;
    padding: 0 1rem;
    color: #3f4c58;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.package-card--list .package-card__body > p {
    margin: 0;
    padding: 1rem 1rem 1.1rem;
    color: #343e48;
    font-size: 1rem;
    border-bottom: 1px solid #e7e1d8;
}

.package-card--list .package-card__itinerary {
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
}

.package-card--list .package-card__itinerary strong {
    color: #2b333b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

.package-card--list .package-card__itinerary span {
    color: #4b5661;
    font-size: 0.92rem;
}

.package-card--list .package-card__side {
    grid-column: 2;
    border-top: 1px solid #e7e1d8;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.package-card--list .package-card__bottom-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.package-card--list .package-card__from {
    margin: 0;
    color: #4a5662;
    font-size: 0.95rem;
}

.package-card--list .package-card__from strong {
    color: #1e2730;
    font-size: 1.25rem;
}

.package-card__button--dark {
    background: #111821;
}

.package-card__button--dark:hover,
.package-card__button--dark:focus-visible {
    background: #202b37;
}

.package-card--grid {
    border-radius: 0;
    background: #f5f1e8;
    max-height: 600px;
    border-color: #d9d2c7;
}

.package-card--grid .package-card__media {
    position: relative;
}

.package-card--grid .package-card__media img {
    height: 245px;
}

.package-card--grid .package-card__badges {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    display: inline-flex;
    gap: 0.35rem;
}

.package-card--grid .package-card__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 0.45rem;
    border-radius: 4px;
    background: #fff;
    color: #121820;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-card--grid .package-card__badges .is-offer {
    background: #b56637;
    color: #fff;
}

.package-card--grid .package-card__body {
    padding: 0.8rem 0.85rem 0;
}

.package-card--grid .package-card__body h3 {
    margin: 0;
    color: #1c2630;
    font-family: var(--font-secondary);
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    line-height: 1.03;
}

.package-card--grid .package-card__season {
    margin: 0.2rem 0 0.95rem;
    color: #1f2a34;
    font-size: 1.2rem;
}

.package-card--grid .package-card__subhead {
    margin: 0 0 1.15rem;
    color: #0d141b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.2rem;
    font-weight: 700;
}

.package-card--grid .package-card__itinerary {
    margin-bottom: 0.8rem;
}

.package-card--grid .package-card__itinerary strong {
    display: block;
    margin: 0 0 0.3rem;
    color: #0d141b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.2rem;
}

.package-card--grid .package-card__itinerary span {
    color: #192531;
    font-size: 1.13rem;
    line-height: 1.35;
}

.package-card--grid .package-card__bottom-row {
    border-top: 1px solid #d9d2c7;
    margin: 0 -0.85rem;
    padding: 0.7rem 0.85rem 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.package-card--grid .package-card__from {
    margin: 0;
    color: #1c2630;
    font-size: 1.1rem;
    line-height: 1.05;
}

.package-card--grid .package-card__from strong {
    font-size: 1.8rem;
    font-weight: 700;
}

.package-card--grid .package-card__from span {
    display: block;
    font-size: 1.05rem;
}

.package-card__button--outline {
    margin-top: 0;
    min-height: 36px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid #b7b8b8;
    color: #111920;
    justify-content: center;
    min-width: 92px;
    line-height: 1.05;
}

.package-card__button--outline:hover,
.package-card__button--outline:focus-visible {
    background: #ebe7df;
    border-color: #8f959a;
    outline: none;
}

.package-journey-dropdown {
    position: relative;
    display: inline-flex;
}

.package-journey-dropdown__toggle {
    gap: 0.35rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.package-journey-dropdown__toggle[aria-expanded="true"] .package-journey-dropdown__chevron {
    transform: rotate(180deg);
}

.package-journey-dropdown__chevron {
    transition: transform 0.2s ease;
}

.package-journey-dropdown__menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.45rem);
    z-index: 20;
    min-width: 11.5rem;
    padding: 0.35rem;
    border-radius: 8px;
    border: 1px solid #d9d2c7;
    background: #fff;
    box-shadow: 0 10px 28px rgba(17, 24, 33, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.package-journey-dropdown.is-open .package-journey-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.package-journey-dropdown__link {
    display: block;
    padding: 0.55rem 0.7rem;
    border-radius: 6px;
    color: #1f2730;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.package-journey-dropdown__link:hover,
.package-journey-dropdown__link:focus-visible {
    background: #f5f1e8;
    color: #111821;
}

.package-card--map {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
}

.package-card--map img {
    height: 100%;
}

.packages-empty {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 12px;
    padding: 1rem;
    color: #667381;
}

.gallery-page {
    padding-top: calc(var(--header-offset) + 1.7rem);
    padding-bottom: 3rem;
}

.gallery-page__head h1 {
    margin: 0.8rem 0 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
}

.gallery-page__head p {
    margin: 0 0 1.3rem;
    color: #5f6b78;
}

.gallery-swiper {
    background: #fff;
    border: 1px solid #e7e2da;
    border-radius: 14px;
    padding: 1rem;
}

.gallery-swiper__stage {
    position: relative;
    min-height: min(72vh, 640px);
    border-radius: 12px;
    overflow: hidden;
    background: #eef2f7;
}

.gallery-swiper__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.gallery-swiper__slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.gallery-swiper__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-swiper__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    margin: 0.9rem 0;
}

.gallery-swiper__nav {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d5dde7;
    background: #fff;
    color: #30465e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-swiper__counter {
    color: #5d6975;
    font-weight: 600;
}

.gallery-swiper__thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
}

.gallery-swiper__thumb {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

.gallery-swiper__thumb.is-active {
    border-color: var(--secondary-color);
}

.gallery-swiper__thumb img {
    width: 100%;
    height: 74px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .home-last-minute-packages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-tours__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-stories__grid {
        grid-template-columns: 1fr;
    }

    .home-why-poema__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mega-menu__shell {
        grid-template-columns: 0.9fr 1fr;
    }

    .mega-menu__column--preview {
        display: none;
    }

    .packages-gallery__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 110px;
    }

    .packages-gallery__item--main {
        grid-column: span 2;
        grid-row: span 2;
    }

    .packages-results__layout {
        grid-template-columns: 1fr;
    }

    .packages-filters {
        position: static;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
    .packages-grid-activity {
        grid-template-columns: 1fr;
    }

    .experiences-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .accommodation-card {
        flex-basis: min(44%, 340px);
    }

    .places-visit-section__grid {
        grid-template-columns: 1fr;
    }

    .ways-explore-tabs {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ways-explore-tabs::-webkit-scrollbar {
        display: none;
    }

    .ways-explore-tabs button {
        white-space: nowrap;
    }

    .ways-explore-feature {
        grid-template-columns: 1fr;
    }

    .map-section__canvas {
        min-height: 320px;
    }

    .package-card--list {
        grid-template-columns: 1fr;
    }

    .package-card--list .package-card__media img {
        min-height: 240px;
    }

    .package-card--list .package-card__side {
        grid-column: auto;
    }

    .package-card--list .package-card__bottom-row {
        flex-wrap: wrap;
    }

    .package-card--list .package-card__side {
        border-top: 1px solid #e7e1d8;
    }

    .packages-map-view {
        grid-template-columns: 1fr;
    }

    .gallery-swiper__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .experiences-section__grid {
        grid-template-columns: 1fr;
    }

    .accommodation-card {
        flex-basis: 86%;
    }

    .accommodations-carousel__nav {
        display: none;
    }

    .accommodation-modal__body {
        grid-template-columns: 1fr;
    }

    .accommodation-modal__slider-img {
        min-height: 240px;
        max-height: none;
    }

    .experience-modal__dialog {
        grid-template-columns: 1fr;
        margin-top: 4vh;
    }

    .experience-modal__media img {
        min-height: 220px;
    }
}

@media (max-width: 860px) {
    .site-header__topbar-inner {
        min-height: 34px;
    }

    .site-header__contact {
        gap: 0.6rem;
        font-size: 0.86rem;
    }

    .header-call-dropdown__menu {
        width: 170px;
    }

    .site-nav,
    .site-header__actions {
        display: none;
    }
    

    .site-header__mobile-toggle {
        display: inline-flex;
    }

    .mega-menu {
        display: none;
    }

    .mobile-drawer__backdrop {
        position: fixed;
        inset: 0;
        border: 0;
        padding: 0;
        margin: 0;
        background: rgba(8, 20, 33, 0.56);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 2147483645;
    }

    .mobile-drawer__backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-drawer {
        position: fixed;
        inset: 0;
        width: 100vw;
        max-width: 100vw;
        background: #fff;
        z-index: 2147483646;
        transform: translateX(100%);
        transition: transform 0.33s ease;
        padding: 1.2rem 1.1rem 1.4rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        border-left: 1px solid #e8e1d7;
        box-shadow: -14px 0 34px rgba(6, 22, 36, 0.22);
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .mobile-drawer.is-open {
        transform: translateX(0);
    }

    body.is-homepage .mobile-drawer {
        left: auto;
        width: min(22rem, 92vw);
        max-width: min(22rem, 92vw);
        border-left: 1px solid #e8e1d7;
        box-shadow: -14px 0 34px rgba(6, 22, 36, 0.22);
    }

    .mobile-drawer__header {
        display: flex;
        justify-content: flex-end;
    }

    .mobile-drawer__close {
        border: 0;
        background: transparent;
        color: #1d2d3f;
        font-size: 1.8rem;
    }

    .mobile-drawer__links {
        display: grid;
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .mobile-drawer__links > a,
    .mobile-drawer__links > button {
        border: 0;
        border-bottom: 1px solid #ece7df;
        background: transparent;
        text-align: left;
        color: #24374a;
        padding: 0.8rem 0.2rem;
        font-size: 1rem;
    }

    .mobile-drawer__links > button[data-mobile-destination-toggle] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-weight: 600;
        cursor: pointer;
    }

    .mobile-drawer__links > button[data-mobile-destination-toggle]::after {
        content: "";
        display: inline-block;
        width: 0.5rem;
        height: 0.5rem;
        margin-left: 0.35rem;
        border-right: 2px solid #596979;
        border-bottom: 2px solid #596979;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .mobile-drawer__links > button[data-mobile-destination-toggle][aria-expanded="true"]::after {
        transform: rotate(225deg);
    }

    .mobile-drawer__destination-panel {
        display: none;
        margin: 0;
        padding: 0 0 0.5rem;
        border-bottom: 1px solid #ece7df;
        background: #faf8f5;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .mobile-drawer__destination-panel.is-open {
        display: block;
    }

    .mobile-drawer__destination-rail {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.65rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.65rem 0 0.85rem;
        margin: 0;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: thin;
    }

    .mobile-drawer__destination-rail::-webkit-scrollbar {
        height: 6px;
    }

    .mobile-drawer__destination-rail::-webkit-scrollbar-thumb {
        background: rgba(36, 55, 74, 0.25);
        border-radius: 999px;
    }

    .mobile-drawer__destination-card {
        position: relative;
        flex: 0 0 auto;
        width: min(42vw, 200px);
        aspect-ratio: 1;
        border-radius: 10px;
        overflow: hidden;
        scroll-snap-align: start;
        box-shadow: 0 6px 16px rgba(12, 28, 42, 0.12);
    }

    .mobile-drawer__destination-card:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }

    .mobile-drawer__destination-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .mobile-drawer__destination-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 35%, rgba(8, 22, 36, 0.75));
        pointer-events: none;
    }

    .mobile-drawer__destination-label {
        position: absolute;
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.55rem;
        z-index: 1;
        text-align: center;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #fff;
        line-height: 1.2;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
    }

    .mobile-drawer__all-destinations-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 0.15rem;
        padding: 0.72rem 1rem;
        border: 1px solid #d4cdc2;
        border-radius: 4px;
        background: #fff;
        color: #1f2730;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        transition:
            background 0.2s ease,
            border-color 0.2s ease;
    }

    .mobile-drawer__all-destinations-btn:hover,
    .mobile-drawer__all-destinations-btn:focus-visible {
        background: #f4f1ea;
        border-color: #b8a994;
        outline: none;
    }

    body.mobile-menu-open .chat-widget,
    body.mobile-menu-open .whatsapp-float,
    body.mobile-menu-open .expert-floating-bar {
        display: none;
    }

    .hero-search {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        padding: 0.9rem;
    }

    .hero__slider-btn {
        width: 38px;
        height: 38px;
    }

    .hero__slider-btn--prev {
        left: 0.6rem;
    }

    .hero__slider-btn--next {
        right: 0.6rem;
    }

    .hero-search__field--date {
        width: 100%;
        grid-column: 1 / -1;
    }

    .hero-search__submit {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-badge {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-spirit__layout {
        grid-template-columns: 1fr;
        margin-top: 1.2rem;
    }

    .home-spirit__image img {
        height: 240px;
    }

    .home-spirit__title {
        gap: 0.75rem;
    }

    .home-spirit__title span {
        flex-basis: 46px;
    }

    .packages-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 95px;
    }

    .packages-gallery__item--main {
        grid-column: span 2;
        grid-row: span 2;
    }

    .packages-results__toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .packages-gallery__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-swiper__stage {
        min-height: 50vh;
    }

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

.package-details-hero {
    position: relative;
    color: #fff;
}

.package-details-hero--immersive {
    display: block;
    min-height: 0;
    padding-top: var(--header-offset);
    color: #fff;
}

.package-details-hero--immersive .package-details-hero__media {
    position: relative;
    min-height: clamp(380px, 62vh, 760px);
    overflow: hidden;
}

.package-details-hero--immersive .package-details-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-details-hero--immersive .package-details-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 18, 30, 0.35) 0%,
        rgba(6, 18, 30, 0.25) 40%,
        rgba(6, 18, 30, 0.72) 100%
    );
    pointer-events: none;
}

.package-details-hero--immersive .package-details-hero__breadcrumb {
    position: relative;
    z-index: 2;
    padding: 0.35rem 0 0.5rem;
}

.packages-breadcrumb--on-hero {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.packages-breadcrumb--on-hero a {
    color: rgba(255, 255, 255, 0.88);
}

.packages-breadcrumb--on-hero a:hover {
    color: #fbbc05;
}

.packages-breadcrumb--on-hero span:last-of-type {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.package-details-hero--immersive .package-details-hero__intro {
    position: absolute;
    left: 5%;
    /* right: 0; */
    bottom: clamp(5.5rem, 14vw, 7.5rem);
    z-index: 2;
    max-width: min(640px, 92vw);
    padding-bottom: 0.25rem;
}

.package-details-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}

.package-details-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

.package-details-hero__badge--light {
    background: rgba(255, 255, 255, 0.96);
    color: #1a2836;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.package-details-hero__badge--accent {
    background: #bb820b;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-details-hero__title {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-family: var(--font-secondary);
    font-size: clamp(1.85rem, 4.2vw, 3.15rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: #fff;
}

.package-details-hero__title-anchor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
}

.package-details-hero__title-anchor:hover,
.package-details-hero__title-anchor:focus-visible {
    color: #fbbc05;
    outline: none;
}

.package-details-hero__title-chevron {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

.package-details-hero__tagline {
    margin: 0.55rem 0 0;
    max-width: 52ch;
    font-family: var(--font-primary);
    font-size: clamp(0.88rem, 1.35vw, 1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.package-details-hero__rule {
    display: block;
    width: min(280px, 55%);
    height: 1px;
    margin-top: 0.85rem;
    background: rgba(255, 255, 255, 0.55);
}

.package-details-hero--immersive .package-details-hero__stats-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 0 0 1.35rem;
    pointer-events: none;
}

.package-details-hero--immersive .package-details-hero__stats-strip-inner {
    pointer-events: auto;
}

.package-details-hero__stats-strip-inner.container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.package-details-hero__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem 0.75rem;
    width: min(250px, 100%);
    padding: 0.65rem 0 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.package-details-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    min-width: 0;
    text-align: left;
}

.package-details-hero__stat strong {
    font-family: var(--font-secondary);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 400;
    line-height: 1;
    color: #fff;
}

.package-details-hero__stat-label {
    font-family: var(--font-primary);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.25;
}

.package-details-hero__private {
    margin: 0;
    align-self: flex-end;
    max-width: min(480px, 100%);
    text-align: right;
}

.package-details-hero__private-link {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.45rem;
    max-width: 100%;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: inherit;
}

.package-details-hero__private-link:hover .package-details-hero__private-underline,
.package-details-hero__private-link:focus-visible .package-details-hero__private-underline {
    text-decoration-thickness: 2px;
}

.package-details-hero__private-link:focus-visible {
    outline: 2px solid #fbbc05;
    outline-offset: 3px;
    border-radius: 2px;
}

.package-details-hero__private-icon {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-top: 0.12rem;
    color: #fbbc05;
}

.package-details-hero__private-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1024px) {
    .package-details-hero--immersive .package-details-hero__intro {
        bottom: clamp(6.25rem, 22vw, 8.5rem);
        max-width: min(560px, 94vw);
    }
}

@media (max-width: 767px) {
    .package-details-hero--immersive .package-details-hero__media {
        min-height: clamp(320px, 52vh, 520px);
    }

    .package-details-hero--immersive .package-details-hero__intro {
        position: absolute;
        bottom: 1.1rem;
        left: 0;
        right: 0;
        max-width: none;
        padding-left: min(4%, 1rem);
        padding-right: min(4%, 1rem);
    }

    .package-details-hero--immersive .package-details-hero__stats-strip {
        position: static;
        width: 100%;
        padding: 1.1rem 0 1.35rem;
        background: var(--color-009);
        color: #000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        pointer-events: auto;
    }

    .package-details-hero__stats-strip-inner.container {
        align-items: stretch;
    }

    .package-details-hero__private {
        align-self: stretch;
        max-width: none;
        text-align: left;
    }

    .package-details-hero__stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem 1rem;
        width: 100%;
        padding: 0.85rem 0 0.65rem;
        border-top-color: rgba(255, 255, 255, 0.28);
        border-bottom-color: rgba(255, 255, 255, 0.28);
    }

    .package-details-hero__stat {
        align-items: center;
        text-align: center;
    }

    .package-details-hero__stat strong {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
        color: #000;
    }
    .package-details-hero__stat-label {
        color: #000;
    }
    .package-details-hero__private-link {
        color: #000;
    }

    .package-details-hero__private-link {
        font-size: 0.74rem;
    }
}

/* Legacy split hero (if used elsewhere with old markup) */
.package-details-hero.packages-hero--split {
    display: grid;
}

.package-details-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-details-hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: 2rem;
}

.package-details-hero__content h1 {
    margin: 0.8rem 0 0;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    font-family: var(--font-secondary);
}

.package-stats {
    padding: 1.4rem 0 1rem;
}

.package-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem 1rem;
}

.package-stat {
    display: grid;
    gap: 0.1rem;
    justify-items: center;
    text-align: center;
    color: #4f6070;
}

.package-stat .label {
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: #7a8794;
}

.package-stat strong {
    color: var(--primary-color);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1;
    font-family: var(--font-secondary);
}

.package-details-nav {
    position: sticky;
    top: 0;
    z-index: 95;
    background: #fff;
    border-top: 1px solid #e7e1d8;
    border-bottom: 1px solid #e7e1d8;
}

@media (max-width: 1024px) {
    /*
     * Force vertical stack: some hero wrappers use `display:flex` later in this file and win the cascade,
     * which ignores `grid-template-columns`. Column flex is reliable for image-then-copy on small screens.
     */
    .packages-hero.packages-hero--split,
    .activity-hero.packages-hero--split,
    .package-details-hero.packages-hero--split {
        display: flex !important;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
    }

    .packages-hero--split .packages-hero__media,
    .packages-hero--split .packages-hero__content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex: 0 0 auto;
    }

    .packages-hero__media {
        min-height: 50vh;
    }
}

.package-details-nav__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 1.1rem;
    min-height: 56px;
    align-items: center;
}

.package-details-nav__inner a {
    color: #4f6070;
    font-weight: 600;
    padding: 0.2rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.package-details-nav__inner a:hover,
.package-details-nav__inner a.is-active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.package-section {
    padding: 3rem 0;
}

.package-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

@media (min-width: 1025px) {
    .package-overview {
        grid-template-columns: minmax(0, 1fr) minmax(0, clamp(280px, 32vw, 380px));
        column-gap: clamp(1rem, 2vw, 1.5rem);
        row-gap: 1rem;
    }
}

.package-overview__content {
    min-width: 0;
}

.package-overview__content h2,
.dates-prices-info h2,
.journey-details h2 {
    margin: 0 0 0.7rem;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.package-overview__content p {
    margin: 0 0 1.1rem;
    color: #576676;
    font-size: 1.02rem;
}

.package-overview__lead {
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: #2e4257;
}

.package-overview__support {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #66788a;
}

.package-overview__highlights {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1rem, 4vw, 2.25rem);
    row-gap: 0;
    border-top: 1px solid rgba(26, 40, 55, 0.1);
    color: #1f2a35;
    font-size: clamp(0.88rem, 1.35vw, 0.98rem);
    font-weight: 300;
}

.package-overview__highlights li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.55rem 0.85rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26, 40, 55, 0.1);
    line-height: 1.55;
    font-weight: 300;
    min-width: 0;
}

.package-overview__highlights li::before {
    content: "";
    width: 14px;
    height: 14px;
    margin-top: 0.2em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.5l9.5 9.5-9.5 9.5-9.5-9.5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.5l9.5 9.5-9.5 9.5-9.5-9.5z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.package-overview__highlights li:nth-child(odd):last-child {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .package-overview__highlights {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .package-overview__highlights li:nth-child(odd):last-child {
        grid-column: auto;
    }
}

.package-download {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #d5dee9;
    border-radius: 999px;
    min-height: 40px;
    padding: 0.2rem 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.package-overview__gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    align-self: start;
    align-items: stretch;
    min-height: 0;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .package-overview__gallery {
        width: 100%;
        max-width: clamp(280px, 32vw, 380px);
        justify-self: end;
        margin-inline-end: 0;
    }
}

.package-overview__image {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0;
    border: 0;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    background: #dfe8ee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-overview__image:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.package-overview__image:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 35, 55, 0.18);
}

.package-overview__image:first-child {
    grid-column: 1;
    grid-row: 1 / -1;
    min-height: 0;
}

.package-overview__image:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.package-overview__image:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.package-overview__image:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
}

.package-overview__image:nth-child(n + 5) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
}

.package-overview__image:only-child {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    min-height: 0;
}

.package-overview__image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    /* Flex layout avoids grid overlap (desktop placement + implicit rows). */
    .package-overview__gallery {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 0.65rem;
        min-height: 0;
    }

    .package-overview__image {
        grid-column: unset;
        grid-row: unset;
    }

    .package-overview__gallery {
        height: auto;
        max-height: none;
    }

    .package-overview__image:first-child {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        max-height: min(280px, 42vh);
    }

    .package-overview__image:nth-child(2),
    .package-overview__image:nth-child(3),
    .package-overview__image:nth-child(4) {
        flex: 1 1 calc(50% - 0.35rem);
        max-width: calc(50% - 0.35rem);
        min-height: 0;
        max-height: min(140px, 22vh);
    }

    .package-overview__image:nth-child(2):last-child {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 0;
        max-height: min(260px, 40vh);
    }

    .package-overview__image:nth-child(n + 5) {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 0;
        max-height: min(160px, 28vh);
    }

    .package-overview__image:only-child {
        min-height: 0;
        max-height: min(300px, 45vh);
    }
}

.package-why-choose {
    background: #f5f2ea;
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.package-why-choose__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-why-choose__title {
    margin: 0 auto clamp(2rem, 4vw, 2.85rem);
    max-width: 54rem;
    text-align: center;
    font-family: var(--font-primary);
    font-size: clamp(0.82rem, 1.55vw, 0.98rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
    color: #1a1a1a;
}

.package-why-choose__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: start;
}

.package-why-choose__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.15rem);
    text-align: center;
}

.package-why-choose__icon {
    width: clamp(56px, 6vw, 72px);
    height: auto;
    object-fit: contain;
}

.package-why-choose__text {
    margin: 0;
    max-width: 11.5rem;
    font-family: var(--font-primary);
    font-size: clamp(0.8rem, 1.15vw, 0.9rem);
    font-weight: 400;
    line-height: 1.45;
    color: #2a2a2a;
}

@media (max-width: 960px) {
    .package-why-choose__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 36rem;
        margin-inline: auto;
    }

    .package-why-choose__item:nth-child(4) {
        grid-column: 1 / 2;
    }

    .package-why-choose__item:nth-child(5) {
        grid-column: 2 / 3;
    }
}

@media (max-width: 640px) {
    .package-why-choose__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 22rem;
    }

    .package-why-choose__item:nth-child(4),
    .package-why-choose__item:nth-child(5) {
        grid-column: auto;
    }

    .package-why-choose__item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 11.5rem;
    }
}

@media (max-width: 400px) {
    .package-why-choose__grid {
        grid-template-columns: 1fr;
        max-width: 14rem;
    }

    .package-why-choose__item:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }
}

.itinerary-days__heading {
    margin: 0 0 1.35rem;
    color: #1a2430;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.02em;
}

.itinerary-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
    gap: clamp(1.25rem, 3vw, 2.75rem);
    align-items: start;
}

.package-section--itinerary {
    padding-left: 0;
    padding-right: 0;
}

.itinerary-layout--full-bleed-map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(1rem, 2.5vw, 2rem);
    padding: 0;
    box-sizing: border-box;
}

.itinerary-days-column {
    min-width: 0;
    padding-right: max(1rem, calc((100vw - min(1200px, 92vw)) / 2));
}

.itinerary-days-column > .container {
    width: 100%;
    max-width: min(1200px, 100%);
    margin-left: 0;
    margin-right: 0;
}

.itinerary-map {
    padding: 0;
    margin: 0;
    position: sticky;
    top: var(--header-total-height);
    align-self: start;
    height: calc(100vh - var(--header-total-height));
    display: flex;
    flex-direction: column;
}

.itinerary-map__viewer {
    position: relative;
    flex: 1;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    background: #e8ecf0;
    border: none;
    border-right: 1px solid #dcd5ce;
    touch-action: none;
    box-shadow: none;
}

.itinerary-map__viewer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.02);
    transition: transform 0.3s ease;
    transform-origin: center;
    user-select: none;
    -webkit-user-drag: none;
}

.itinerary-map__controls {
    display: grid;
    gap: 0.35rem;
}

.itinerary-map__controls button {
    width: 38px;
    height: 38px;
    border: 1px solid #cfd9e5;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: #33485f;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(23, 38, 55, 0.16);
    font-size: 1.2rem;
    line-height: 1;
}

.itinerary-map__controls--floating {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
}

.itinerary-group {
    margin-bottom: 2rem;
}

.itinerary-group:last-child {
    margin-bottom: 0;
}

.itinerary-group__head {
    margin-bottom: 0.35rem;
}

.itinerary-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0.38rem 0.7rem 0.38rem 0.52rem;
    border-radius: 999px;
    background: #ece8e2;
    border: 1px solid #dcd6cc;
    color: #2c3640;
    font-family: var(--font-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.itinerary-location-badge__icon {
    flex-shrink: 0;
    opacity: 0.88;
}

.itinerary-group__list {
    position: relative;
    padding-left: 0.85rem;
    margin-top: 0.35rem;
}

.itinerary-group__list::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 0.1rem;
    bottom: 0.35rem;
    width: 2px;
    border-radius: 1px;
    background: #c9b69a;
}

.itinerary-day {
    position: relative;
    padding: 0 0 1.2rem;
    margin: 0;
    border-bottom: 1px solid #e2ded8;
}

.itinerary-day:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.itinerary-day__content {
    padding: 0.1rem 0 0.15rem 0.85rem;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.itinerary-day__heading {
    margin: 0 0 0.45rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.55rem;
    font-family: var(--font-secondary);
    font-size: clamp(1.05rem, 1.65vw, 1.28rem);
    font-weight: 600;
    line-height: 1.28;
    color: #1c2834;
}

.itinerary-day__heading-day {
    font-weight: 700;
}

.itinerary-day__heading-sep {
    color: #9aa3ab;
    font-weight: 400;
}

.itinerary-day__heading-text {
    font-weight: 600;
}

.itinerary-day__desc {
    margin: 0 0 0.65rem;
    font-family: var(--font-primary);
    font-size: 0.96rem;
    font-weight: 400;
    line-height: 1.65;
    color: #5a6572;
}

.itinerary-day__hotel {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 0.2rem 0;
    margin: 0;
    cursor: pointer;
    font-family: var(--font-primary);
    color: #3a4858;
    text-align: left;
    transition: color 0.2s ease;
}

.itinerary-day__hotel:hover,
.itinerary-day__hotel:focus-visible {
    color: var(--accent);
    outline: none;
}

.itinerary-day__hotel-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.itinerary-day__hotel-icon {
    flex-shrink: 0;
    color: #6d7a89;
}

.itinerary-day__hotel:hover .itinerary-day__hotel-icon,
.itinerary-day__hotel:focus-visible .itinerary-day__hotel-icon {
    color: var(--accent);
}

.itinerary-day__hotel-name {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.itinerary-day__hotel-chevron {
    flex-shrink: 0;
    opacity: 0.55;
    margin-left: 0.1rem;
}

.itinerary-day__hotel:hover .itinerary-day__hotel-chevron,
.itinerary-day__hotel:focus-visible .itinerary-day__hotel-chevron {
    opacity: 1;
}

.itinerary-hotel-modal {
    position: fixed;
    inset: 0;
    z-index: 185;
    display: none;
}

.itinerary-hotel-modal.is-open {
    display: block;
}

.itinerary-hotel-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 28, 0.76);
}

.itinerary-hotel-modal__dialog {
    position: relative;
    width: min(1120px, 94vw);
    margin: 3rem auto 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: calc(100vh - 6rem);
}

.itinerary-hotel-modal__close {
    position: absolute;
    top: 0.7rem;
    right: 0.8rem;
    z-index: 2;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.itinerary-hotel-modal__left {
    padding: 1rem;
    border-right: 1px solid #ece7df;
}

.itinerary-hotel-modal__main-image {
    border: 0;
    padding: 0;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    margin-bottom: 0.6rem;
}

.itinerary-hotel-modal__main-image img {
    width: 100%;
    height: min(52vh, 420px);
    object-fit: cover;
}

.itinerary-hotel-modal__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.itinerary-hotel-modal__thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    cursor: pointer;
}

.itinerary-hotel-modal__thumb.is-active {
    border-color: var(--accent);
}

.itinerary-hotel-modal__thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
}

.itinerary-hotel-modal__right {
    padding: 1.2rem 1.1rem;
    overflow-y: auto;
}

.itinerary-hotel-modal__right h3 {
    margin: 0 0 0.6rem;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: 2rem;
}

.itinerary-hotel-modal__right p {
    margin: 0;
    color: #4f6070;
    line-height: 1.8;
    white-space: pre-line;
}

.itinerary-hotel-gallery {
    position: fixed;
    inset: 0;
    z-index: 195;
    display: none;
    background: rgba(5, 12, 23, 0.94);
    align-items: center;
    justify-content: center;
}

.itinerary-hotel-gallery.is-open {
    display: flex;
}

.itinerary-hotel-gallery img {
    width: min(90vw, 1220px);
    max-height: 86vh;
    object-fit: contain;
}

.itinerary-hotel-gallery__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
}

.itinerary-hotel-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.itinerary-hotel-gallery__nav--prev {
    left: 1rem;
}

.itinerary-hotel-gallery__nav--next {
    right: 1rem;
}

.package-ship-section {
    background: #f4f1ea;
    border-top: 1px solid #e8e1d7;
    border-bottom: 1px solid #e8e1d7;
}

.package-ship {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(280px, 1fr);
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: stretch;
}

.package-ship__media {
    min-width: 0;
}

.package-ship__slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: min(420px, 52vh);
    height: clamp(320px, 48vw, 520px);
    background: #dfe5ea;
    box-shadow: 0 18px 40px rgba(18, 32, 48, 0.1);
}

.package-ship__slider--single .package-ship__nav {
    display: none;
}

.package-ship__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.package-ship__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

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

.package-ship__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.92);
    color: #1f3041;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(12, 28, 42, 0.18);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.package-ship__nav:hover,
.package-ship__nav:focus-visible {
    background: #fff;
    border-color: rgba(181, 106, 58, 0.55);
    color: var(--accent);
    outline: none;
}

.package-ship__nav--prev {
    left: 1rem;
}

.package-ship__nav--next {
    right: 1rem;
}

.package-ship__nav-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.package-ship__panel {
    background: #fff;
    border-top: 3px solid #b56a3a;
    border-radius: 0 0 12px 12px;
    padding: clamp(1.35rem, 3vw, 2.1rem) clamp(1.25rem, 2.5vw, 1.85rem);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min(100%, 420px);
}

.package-ship__eyebrow {
    margin: 0 0 0.55rem;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6d7a89;
}

.package-ship__title {
    margin: 0 0 1rem;
    font-family: var(--font-secondary);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0.01em;
    color: #111821;
}

.package-ship__desc-inner {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    font-weight: 400;
    line-height: 1.75;
    color: #4d5966;
}

.package-ship__desc-inner p {
    margin: 0 0 0.75rem;
}

.package-ship__desc-inner p:last-child {
    margin-bottom: 0;
}

.package-ship__desc-inner--clamped {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.package-ship__desc-inner.is-expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.package-ship__read-more {
    margin-top: 0.65rem;
    padding: 0;
    border: none;
    background: none;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.package-ship__read-more:hover,
.package-ship__read-more:focus-visible {
    color: #2e4257;
    outline: none;
}

@media (max-width: 1024px) {
    .package-ship__slider {
        height: min(52vh, 440px);
    }

    .package-ship__panel {
        min-height: 0;
    }
}

.dates-prices-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1rem;
}

.dates-prices-info,
.dates-prices-table {
    background: #f8f5ef;
    border: 1px solid #e6dfd4;
    border-radius: 12px;
    padding: 1rem;
}

.dates-prices-info__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.dates-prices-info__columns--single {
    grid-template-columns: 1fr;
}

.dates-prices-info__list {
    margin: 0;
    padding-left: 1rem;
    color: #5a6876;
    display: grid;
    gap: 0.5rem;
}

.dates-prices-table__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #e4ddd2;
}

.dates-prices-table__head h3 {
    margin: 0;
    font-family: var(--font-secondary);
    color: #1f2f40;
}

.dates-prices-table__head p {
    margin: 0.25rem 0 0;
    color: #677482;
    font-size: 0.9rem;
}

.dates-prices-table__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.dates-prices-table__head select {
    min-height: 38px;
    border: 1px solid #d4ccbf;
    border-radius: 8px;
    padding: 0 0.65rem;
    background: #fff;
}

.dates-prices-deckplan {
    border: 1px solid #d4ccbf;
    border-radius: 8px;
    min-height: 38px;
    padding: 0.48rem 0.75rem;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2d3f53;
    background: #fff;
}

.dates-prices-offers {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.dates-prices-offer-card {
    background: #fff;
    border-left: 3px solid var(--accent);
    padding: 0.8rem;
}

.dates-prices-offer-card__title {
    margin: 0 0 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.73rem;
    color: #6a7784;
    font-weight: 700;
}

.dates-prices-offer-card__description {
    margin: 0 0 0.3rem;
    color: #2f4357;
    font-size: 0.95rem;
}

.dates-prices-offer-card a {
    color: #243d55;
    text-decoration: underline;
    font-size: 0.88rem;
}

.dates-prices-notes {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.5rem;
}

.dates-prices-note {
    background: #eee4d1;
    border-radius: 8px;
    padding: 0.65rem 0.7rem;
    color: #4a5868;
    font-size: 0.9rem;
}

.dates-prices-accordion {
    margin-top: 0.7rem;
    display: grid;
}

.dates-prices-month {
    border-bottom: 1px solid #e5ddd1;
}

.dates-prices-month__summary {
    width: 100%;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.78rem 0.2rem;
    text-align: left;
    cursor: pointer;
}

.dates-prices-month__name {
    color: #24384d;
    font-size: 1.02rem;
}

.dates-prices-month__name em {
    margin-left: 0.45rem;
    font-style: normal;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.dates-prices-month__price {
    color: #485b6f;
}

.dates-prices-month__badge,
.dates-prices-row__availability {
    display: inline-flex;
    border: 1px solid #d3ccbf;
    border-radius: 999px;
    min-height: 30px;
    align-items: center;
    padding: 0 0.6rem;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #2f4358;
    background: #fff;
}

.dates-prices-month__chevron {
    color: #788492;
    transition: transform 0.2s ease;
}

.dates-prices-month__content {
    display: none;
    padding: 0 0.2rem 0.8rem;
}

.dates-prices-month.is-open .dates-prices-month__content {
    display: grid;
    gap: 0.55rem;
}

.dates-prices-month.is-open .dates-prices-month__chevron {
    transform: rotate(180deg);
}

.dates-prices-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0;
}

.dates-prices-row__radio {
    display: inline-flex;
    align-items: center;
}

.dates-prices-row__radio input {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.dates-prices-row button {
    border: 0;
    text-decoration: underline;
    background: transparent;
    color: #1f3850;
    min-height: auto;
    padding: 0;
    font-weight: 600;
    cursor: pointer;
}

.dates-prices-row span:first-child {
    color: #2d4055;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
}

.dates-prices-row strong {
    color: #33485e;
    font-size: 0.95rem;
}

.dates-prices-row__availability {
    justify-self: end;
}

.dates-prices-row__availability,
.dates-prices-month__badge {
    border: 1px solid #d4cbc0;
    border-radius: 999px;
    background: #faf8f4;
}

.booking-selection-card {
    margin-top: 1rem;
    background: #fff;
    border: 1px solid #ded6ca;
    border-radius: 10px;
    padding: 0.9rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.booking-selection-card__meta h4 {
    margin: 0 0 0.45rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.booking-selection-card__meta p {
    margin: 0.2rem 0;
    color: #526476;
    font-size: 0.9rem;
}

.booking-selection-card__cta {
    border-radius: 8px;
    min-height: 42px;
    padding: 0.6rem 0.9rem;
    background: var(--primary-color);
    color: var(--color-005);
    font-weight: 700;
    white-space: nowrap;
}

.journey-details {
    background: var(--color-009);
    
    padding: 1rem;
}

.journey-details ul {
    margin: 0;
    padding-left: 1rem;
    color: #566676;
}

.essential-info {
    background: #f5f6f7;
    border: 1px solid #e2e5e8;
    border-radius: 12px;
    padding: 1rem;
}

.essential-info h2 {
    margin: 0 0 0.8rem;
    color: #223649;
    font-family: var(--font-secondary);
}

.essential-info__item {
    border-top: 1px solid #d9dee3;
}

.essential-info__question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    text-align: left;
    padding: 1rem 0;
    color: #24384c;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
}

.essential-info__chevron {
    color: #4b5c6d;
    transition: transform 0.2s ease;
}

.essential-info__answer {
    display: none;
    padding: 0 0 1rem;
}

.essential-info__answer p {
    margin: 0;
    color: #4d6073;
    line-height: 1.7;
    max-width: 78ch;
}

.essential-info__item.is-open .essential-info__answer {
    display: block;
}

.essential-info__item.is-open .essential-info__chevron {
    transform: rotate(180deg);
}

.package-reviews__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.package-reviews__head h2 {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.package-reviews__head a {
    border: 1px solid #d8e1ec;
    border-radius: 999px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.9rem;
    color: #274058;
    font-weight: 600;
    background: #fff;
}

.package-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

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

.review-card {
    background: #fff;
    border: 1px solid #e6e0d7;
    border-radius: 12px;
    padding: 0.9rem;
}

.review-card__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.6rem;
}

.review-card__top strong {
    color: #23374a;
}

.review-card__top span {
    color: #7a8793;
    font-size: 0.82rem;
}

.review-card__rate {
    margin: 0.5rem 0 0.55rem;
    color: #c8ced6;
}

.review-card__rate .is-filled {
    color: #d58e3f;
}

.review-card p {
    margin: 0;
    color: #546577;
    line-height: 1.65;
}

/* Package details — testimonials / reviews (full-width band) */
.package-testimonials {
    --package-testimonials-bg: #e5ded1;
    --package-testimonials-footer: #d4cdc0;
    --package-testimonials-cta: #a75a39;
    background: var(--package-testimonials-bg);
    padding: 3.25rem 0 2.75rem;
    margin: 0;
}

.package-testimonials--page {
    background: var(--package-testimonials-bg);
    min-height: 50vh;
}

.package-testimonials__inner {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.package-testimonials__top {
    padding-bottom: 0.25rem;
}

.package-testimonials__kicker {
    margin: 0 0 0.65rem;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4a4338;
}

.package-testimonials__kicker--spaced {
    margin-top: 0.5rem;
}

.package-testimonials__head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.package-testimonials__title-wrap {
    flex: 1 1 16rem;
    min-width: 0;
}

.package-testimonials__title {
    margin: 0;
    max-width: 46rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    line-height: 1.2;
    color: #1f1a14;
}

.package-testimonials__title--page {
    max-width: none;
}

.package-testimonials__all-link {
    display: inline-block;
    margin-top: 0.65rem;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    color: #2f4a62;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.package-testimonials__all-link:hover {
    color: #0a3156;
}

.package-testimonials__nav {
    display: flex;
    gap: 0.45rem;
    flex-shrink: 0;
}

.package-testimonials__nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid #c9c2b6;
    background: #f3efe8;
    color: #1f1a14;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.package-testimonials__nav-btn:hover {
    background: #fff;
    border-color: #a39a8c;
}

.package-testimonials__carousel-wrap {
    margin-top: 0.25rem;
}

.package-testimonials__viewport {
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
}

.package-testimonials__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.package-testimonials__track::-webkit-scrollbar {
    display: none;
}

.package-testimonials__track:focus {
    outline: 2px solid #2f4a62;
    outline-offset: 4px;
}

.package-testimonial-card {
    flex: 0 0 min(100%, 22rem);
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(35, 28, 18, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

@media (min-width: 640px) {
    .package-testimonial-card {
        flex-basis: min(100%, 24rem);
    }
}

@media (min-width: 1100px) {
    .package-testimonial-card {
        flex-basis: min(100%, 26rem);
    }
}

.package-testimonial-card__body {
    background: #fff;
    padding: 1.35rem 1.25rem 1rem;
    flex: 1 1 auto;
}

.package-testimonial-card__comment {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #2a3238;
}

.package-testimonial-card__stars {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: #c8ced6;
}

.package-testimonial-card__stars .is-filled {
    color: #c58a3a;
}

.package-testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--package-testimonials-footer);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.package-testimonial-card__avatar {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 6px;
    background: linear-gradient(145deg, #5c6f7e, #3d4a55);
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-testimonial-card__meta {
    min-width: 0;
}

.package-testimonial-card__who {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    line-height: 1.35;
    color: #1f1a14;
}

.package-testimonial-card__dash {
    font-weight: 400;
    color: #4a4338;
}

.package-testimonial-card__trip {
    margin: 0.2rem 0 0;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    line-height: 1.4;
    color: #3f3a33;
}

.package-testimonial-card__trip em {
    font-style: italic;
    font-weight: 400;
}

.package-testimonial-card__date {
    font-style: normal;
    color: #5c554a;
}

.package-testimonials__cta-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.25rem;
}

.package-testimonials__cta {
    border: 0;
    border-radius: 4px;
    background: var(--package-testimonials-cta);
    color: #fff;
    min-height: 44px;
    padding: 0 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.package-testimonials__cta:hover {
    background: #8f4b2d;
}

.package-testimonials__empty {
    margin: 0;
    font-family: var(--font-primary);
    color: #4a4338;
}

.package-testimonials__page-intro {
    margin: 0.35rem 0 0;
    font-family: var(--font-primary);
    color: #4a4338;
    max-width: 40rem;
}

.package-testimonials__page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
    gap: 1rem;
    padding-bottom: 2.5rem;
}

@media (max-width: 639px) {
    .package-testimonials__head-row {
        flex-direction: column;
    }

    .package-testimonials__nav {
        align-self: flex-end;
    }
}

.related-packages__head {
    margin-bottom: 0.8rem;
}

.related-packages__head h2 {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.related-packages__scroll {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
}

.related-packages__item {
    min-width: min(360px, 86vw);
    max-width: 360px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.related-packages__item .package-card {
    height: 100%;
}

.booking-page {
    padding-bottom: 4rem;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 1rem;
}

.booking-form__section {
    background: #fff;
    border: 1px solid #e9e2d8;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.8rem;
}

.booking-form__section h2 {
    margin: 0 0 0.75rem;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.booking-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.booking-form__grid .booking-form__full {
    grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    min-height: 40px;
    border: 1px solid #dce3ec;
    border-radius: 8px;
    padding: 0 0.65rem;
}

.booking-form textarea {
    padding-top: 0.6rem;
    min-height: 90px;
}

.booking-form__section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.booking-form__section-head button {
    border: 1px solid #dce3ec;
    border-radius: 999px;
    min-height: 34px;
    background: #fff;
    color: #2c445b;
    padding: 0 0.8rem;
}

.booking-passenger {
    border-top: 1px solid #ece6dd;
    padding-top: 0.8rem;
    margin-top: 0.8rem;
}

.booking-passenger h4 {
    margin: 0 0 0.6rem;
    color: #34495f;
}

.booking-summary {
    background: #fff;
    border: 1px solid #e9e2d8;
    border-radius: 12px;
    padding: 1rem;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    height: fit-content;
}

.booking-summary h3 {
    margin: 0 0 0.7rem;
    color: var(--primary-color);
}

.booking-summary p {
    margin: 0.3rem 0;
    color: #516476;
}

.booking-summary__total {
    font-size: 1.1rem;
    color: #1f3347;
}

.booking-summary__payment h4 {
    margin: 0.8rem 0 0.45rem;
    color: #1f3347;
}

.booking-summary__payment label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.booking-summary__confirm {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-weight: 700;
}

.expert-floating-bar {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: 130;
    display: inline-flex;
    align-items: stretch;
    gap: 0.45rem;
}

.expert-floating-bar__summary {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(8, 18, 30, 0.22);
    display: inline-flex;
    align-items: center;
    padding: 0 0.8rem;
    min-height: 46px;
}

.expert-floating-bar__summary span {
    color: #2d4156;
    font-size: 0.95rem;
    white-space: nowrap;
}

.expert-floating-bar__summary span + span {
    border-left: 1px solid #d8dee7;
    margin-left: 0.55rem;
    padding-left: 0.55rem;
}

.expert-floating-bar__cta {
    border: 0;
    border-radius: 6px;
    background: linear-gradient(145deg, var(--primary-color) 0%, #000000 100%);
    color: #fff;
    min-height: 46px;
    padding: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
    cursor: pointer;
}

.expert-floating-bar__cta:hover {
    background: linear-gradient(145deg, #0a3156 0%, #0f4678 100%);
}

.expert-modal {
    position: fixed;
    inset: 0;
    z-index: 190;
    display: none;
    overflow-y: auto;
    padding: 1.5rem 0;
}

.expert-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.expert-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.expert-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    margin: auto;
    max-height: calc(100vh - 3rem);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(9, 17, 29, 0.22);
}

.expert-modal__media {
    display: none;
}

.expert-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-modal__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 17, 29, 0.72), rgba(9, 17, 29, 0.15));
}

.expert-modal__media-content {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    color: #fff;
    max-height: calc(100% - 2rem);
    overflow-y: auto;
    padding-right: 0.3rem;
}

.expert-modal__media-content p {
    margin: 0 0 0.45rem;
    font-size: clamp(0.68rem, 1.2vw, 0.76rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.expert-modal__media-content h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-secondary);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.15;
}

.expert-modal__media-content span {
    display: block;
    margin-bottom: 0.28rem;
    font-size: clamp(0.82rem, 1.4vw, 0.95rem);
}

.expert-modal__form-side {
    position: relative;
    padding: 2rem 1.75rem 1.5rem;
    overflow-y: auto;
    min-height: 0;
    max-height: calc(100vh - 3rem);
}

.expert-modal__form-side input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #d9dfe8;
    background: #fff;
    cursor: pointer;
    /* scrollable y */
    margin-right: 0.4rem;
}
.expert-modal__close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    color: #758291;
    cursor: pointer;
}

.expert-modal__form-side h2 {
    margin: 0 0 1rem;
    text-align: center;
    color: #1f3449;
    font-family: var(--font-secondary);
}

.expert-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.52rem;
}

.expert-form input:not([type="radio"]):not([type="checkbox"]),
.expert-form textarea {
    width: 100%;
    border: 1px solid #d9dfe8;
    border-radius: 4px;
    min-height: 42px;
    padding: 0 0.7rem;
    font-size: 0.92rem;
}

.expert-form textarea {
    min-height: 95px;
    padding-top: 0.55rem;
}

.expert-form__radio-group {
    margin: 0.9rem 0 0.7rem;
}

.expert-form__radio-group p {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    color: #5f6f80;
}

.expert-form__radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-right: 0.8rem;
    color: #32485d;
    cursor: pointer;
    line-height: 1;
}

.expert-form__radio-group input[type="radio"] {
    width: 16px;
    height: 16px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #d9dfe8;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
}


.expert-form__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    color: #5f6f80;
}

.expert-form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
    color: #506073;
    font-size: 0.88rem;
}

.expert-success-alert {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.expert-success-alert.is-open {
    display: flex;
    animation: expertSuccessFadeIn 0.35s ease;
}

.expert-success-alert__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(9, 17, 29, 0.78);
    backdrop-filter: blur(3px);
}

.expert-success-alert__card {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 2rem 1.75rem 1.6rem;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 28px 60px rgba(9, 17, 29, 0.28);
    animation: expertSuccessPopIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.expert-success-alert__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #ecfdf3 0%, #d1fae5 100%);
    color: #059669;
}

.expert-success-alert__icon-circle {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: expertSuccessDrawCircle 0.55s ease forwards 0.15s;
}

.expert-success-alert__icon-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: expertSuccessDrawCheck 0.4s ease forwards 0.65s;
}

.expert-success-alert__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #059669;
    font-weight: 700;
}

.expert-success-alert__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-secondary);
    font-size: clamp(1.75rem, 4vw, 2.1rem);
    line-height: 1.1;
    color: #1f3449;
}

.expert-success-alert__message {
    margin: 0 0 1.35rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #506073;
}

.expert-success-alert__message strong {
    color: #1f3449;
}

.expert-success-alert__btn {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(145deg, #0a3156 0%, #0f4678 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.expert-success-alert__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(10, 49, 86, 0.28);
}

@keyframes expertSuccessFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes expertSuccessPopIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes expertSuccessDrawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes expertSuccessDrawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.expert-form__notice {
    margin: 0 0 1rem;
    padding: 0.65rem 0.75rem;
    border-radius: 4px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.expert-form__notice--success {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.expert-form__notice--error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.expert-form__notice--error ul {
    margin: 0.35rem 0 0;
    padding-left: 1.1rem;
}

.expert-form__checkbox a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.expert-form__submit {
    width: 100%;
    margin-top: 0.9rem;
    border: 0;
    min-height: 44px;
    border-radius: 4px;
    background: #111;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    cursor: pointer;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(12, 22, 34, 0.88);
    z-index: 180;
    display: none;
    align-items: center;
    justify-content: center;
}

.image-lightbox.is-open {
    display: flex;
}

.image-lightbox__stage {
    width: min(78vw, 980px);
    max-height: 80vh;
    overflow: hidden;
}

.image-lightbox__stage img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    transform-origin: center;
}

.image-lightbox__close,
.hotel-drawer__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 1.5rem;
}

.image-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 1.6rem;
}

.image-lightbox__nav--prev {
    left: 1rem;
}

.image-lightbox__nav--next {
    right: 1rem;
}

.image-lightbox__controls {
    position: absolute;
    bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.image-lightbox__controls button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.hotel-drawer {
    position: fixed;
    inset: 0;
    z-index: 170;
    pointer-events: none;
    visibility: hidden;
}

.hotel-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.hotel-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 14, 22, 0.52);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.hotel-drawer.is-open .hotel-drawer__backdrop {
    opacity: 1;
}

.hotel-drawer__sheet {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(520px, 100%);
    max-width: 100%;
    background: #fff;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.hotel-drawer.is-open .hotel-drawer__sheet {
    transform: translateX(0);
}

.hotel-drawer__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 5;
    border: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #3d4854;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

.hotel-drawer__close:hover {
    color: #1a232c;
}

.hotel-drawer__scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.hotel-drawer__hero {
    position: relative;
    margin: 0;
    background: #e8e4dc;
}

.hotel-drawer__hero-img {
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: min(42vh, 420px);
    object-fit: cover;
    display: block;
}

.hotel-drawer__gallery-trigger {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: #fff;
    color: #1d252d;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hotel-drawer__gallery-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.22);
}

.hotel-drawer__inner {
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.85rem) 2.25rem;
}

.hotel-drawer__suite-name {
    margin: 0 0 0.85rem;
    font-family: var(--font-secondary);
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 400;
    color: #1d252d;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.hotel-drawer__description {
    margin: 0 0 1.35rem;
    font-family: var(--font-primary);
    font-size: clamp(0.94rem, 1.25vw, 1.02rem);
    line-height: 1.75;
    color: #5c6975;
}

.hotel-drawer__specs {
    margin: 0;
    padding: 0;
}

.hotel-drawer__spec-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem 1.25rem;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid #e8e3db;
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.hotel-drawer__spec-row:last-child {
    border-bottom: 0;
}

.hotel-drawer__spec-row dt {
    margin: 0;
    font-weight: 700;
    color: #1f2730;
}

.hotel-drawer__spec-row dd {
    margin: 0;
    font-weight: 400;
    color: #3d4854;
    text-align: right;
}

.hotel-drawer__rule {
    margin: 1.35rem 0 0;
    border: 0;
    border-top: 1px solid #e8e3db;
}

.hotel-drawer__accordion {
    margin-top: 0;
    padding-top: 0;
}

.hotel-drawer__accordion[hidden] {
    display: none !important;
}

.hotel-drawer-acc__item {
    border-bottom: 1px solid #e8e3db;
}

.hotel-drawer-acc__item:last-child {
    border-bottom: 0;
}

.hotel-drawer-acc__trigger {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.15rem 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.hotel-drawer-acc__lead {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    flex: 1;
}

.hotel-drawer-acc__acc-title {
    font-family: var(--font-secondary);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: #1d252d;
    font-weight: 400;
    line-height: 1.25;
}

.hotel-drawer-acc__acc-price {
    font-family: var(--font-primary);
    font-size: 0.92rem;
    color: #5c6975;
}

.hotel-drawer-acc__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #c9b89a;
    font-family: var(--font-primary);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5c5346;
    white-space: nowrap;
}

.hotel-drawer-acc__chev {
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.hotel-drawer-acc__item.is-open .hotel-drawer-acc__chev {
    transform: rotate(180deg);
}

.hotel-drawer-acc__panel {
    padding: 0 0 1.25rem;
}

.hotel-drawer-acc__panel-inner {
    padding-bottom: 0.25rem;
}

.hotel-drawer-acc__panel-hero {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #e8e4dc;
}

.hotel-drawer-acc__panel-hero img {
    width: 100%;
    display: block;
    max-height: 240px;
    object-fit: cover;
}

.hotel-drawer-acc__panel-desc {
    margin: 0 0 1rem;
    font-family: var(--font-primary);
    font-size: 0.94rem;
    line-height: 1.75;
    color: #5c6975;
}

.hotel-drawer__specs--compact .hotel-drawer__spec-row {
    font-size: 0.9rem;
    padding: 0.45rem 0;
}

.about-hero {
    padding-top: calc(var(--header-offset) + 2.2rem);
    padding-bottom: 2rem;
    background: linear-gradient(140deg, #f5f0e6 0%, #f8f6f1 100%);
}

.about-hero h1 {
    margin: 0.65rem 0 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.about-hero p {
    margin: 0;
    color: #5f6d7b;
    max-width: 700px;
}

.about-welcome__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 1rem;
    
}

.about-welcome__lead {
    color: #405364;
    font-size: 1.04rem;
}

.about-welcome__image img {
    border-radius: 16px;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.about-service-card {
    background: #fff;
    border: 1px solid #ece4d8;
    border-radius: 12px;
    padding: 0.9rem;
    color: #4c5f71;
}

.about-service-card svg {
    color: var(--accent);
}

.about-service-card h3 {
    margin: 0.6rem 0 0.4rem;
    color: var(--primary-color);
    font-size: 1.06rem;
}

.about-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.about-gallery__grid figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
}

.about-gallery__open {
    border: 0;
    width: 100%;
    padding: 0;
    cursor: zoom-in;
    background: transparent;
}

.about-gallery__grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.about-blogs__list {
    display: grid;
    gap: 0.9rem;
}

.about-blog-card {
    background: #fff;
    border: 1px solid #ebe3d8;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.about-blog-card--reverse {
    grid-template-columns: 2fr 1fr;
}

.about-blog-card--reverse .about-blog-card__image {
    order: 2;
}

.about-blog-card__image img {
    width: 100%;
    height: 230px;
    min-height: 230px;
    object-fit: cover;
}

.about-blog-card__content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-blog-card__content h3 {
    margin: 0 0 0.45rem;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem, 2.4vw, 1.75rem);
}

.about-blog-card__content p {
    margin: 0;
    color: #5e6e7d;
    line-height: 1.75;
}

.journeys-hero {
    padding: 3rem 0 1rem;
    background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.journeys-breadcrumb {
    padding-top: calc(var(--header-offset) + 1rem);
}

.journeys-hero h1 {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--primary-color);
}

.journeys-hero p {
    margin-top: 0.65rem;
    color: #5c6b7b;
    max-width: 760px;
}

.journeys-featured {
    padding: 0.75rem 0 1.2rem;
}

.journeys-featured__card {
    background: #fff;
    border: 1px solid #e9e3d9;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.journeys-featured__image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.journeys-featured__content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
}

.journeys-featured__content h2 {
    margin: 0;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
}

.journeys-featured__content p {
    margin: 0;
    color: #5b6a79;
    line-height: 1.75;
}

.journeys-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid #d9e3ef;
    background: #f6f9fc;
    color: #1f3f62;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
}

.journeys-grid {
    padding: 0.6rem 0 3rem;
}

[data-journey-animate] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: opacity, transform;
}

[data-journey-animate="card"] {
    transform: translate3d(0, 30px, 0) scale(0.98);
    transition-duration: 0.6s;
}

[data-journey-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/*
 * Journey page: only cards should stay hidden until JS reveals them. Sections and the
 * filter toolbar must remain visible — if there are zero grid cards, the journey script
 * never runs and would otherwise leave opacity:0 on the whole page (desktop).
 */
.journeys-page [data-journey-animate="section"],
.journeys-page [data-journey-animate="item"] {
    opacity: 1;
    transform: none;
    will-change: auto;
}

.journeys-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.journeys-filter__btn {
    border: 1px solid #d7e1ec;
    background: #fff;
    color: #2e4861;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.journeys-filter__btn:hover,
.journeys-filter__btn.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.journeys-grid__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.journey-card {
    border: 1px solid #e8e1d7;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-6px);
    border-color: #d6c7b2;
    box-shadow: 0 16px 30px rgba(12, 36, 64, 0.08);
}

.journey-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(12, 36, 64, 0.1);
}

.journey-card img {
    transition: transform 0.45s ease;
}

.journey-card:hover img,
.journey-card:focus-within img {
    transform: scale(1.045);
}

.journey-card.is-hidden {
    display: none;
}

.journey-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.journey-card__content {
    padding: 0.9rem;
}

.journey-card__content h3 {
    margin: 0.55rem 0 0.45rem;
    color: var(--primary-color);
    font-size: 1.08rem;
}

.journey-card__content p {
    margin: 0;
    color: #5d6d7d;
    line-height: 1.65;
}

.journey-card__link {
    margin-top: 0.65rem;
    display: inline-flex;
    color: #124472;
    font-weight: 700;
    text-decoration: none;
}

.journey-card__link:hover {
    color: #0a3153;
}

@media (prefers-reduced-motion: reduce) {
    [data-journey-animate],
    [data-journey-animate="card"],
    .journey-card,
    .journey-card img {
        transition: none !important;
        transform: none !important;
        animation: none !important;
        opacity: 1 !important;
    }
}

.journey-details {
    padding: 0.5rem 0 3rem;
}

.journey-details__article {
    max-width: 980px;
    margin: 0 auto;
}

.journey-details__header h1 {
    margin: 0.55rem 0 0.45rem;
    color: var(--primary-color);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-family: var(--font-secondary);
}

.journey-details__header p {
    margin: 0 0 1rem;
    color: #5a6978;
    line-height: 1.8;
}

.journey-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8e2d8;
    margin-bottom: 1rem;
}

.journey-slider__viewport {
    position: relative;
    min-height: 420px;
}

.journey-slider__slide {
    display: none;
    margin: 0;
}

.journey-slider__slide.is-active {
    display: block;
}

.journey-slider__slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.journey-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border: 1px solid #d6e0eb;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #173b5d;
    cursor: pointer;
}

.journey-slider__nav--prev {
    left: 0.7rem;
}

.journey-slider__nav--next {
    right: 0.7rem;
}

.journey-details__content p {
    margin: 0 0 0.85rem;
    color: #2a3a4a;
    line-height: 1.95;
    font-size: 1.03rem;
}

.about-reels .section-title {
    margin-bottom: 0.8rem;
}

.about-reels__viewport {
    position: relative;
}

.about-reels__floating-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #d8e1ec;
    background: rgba(255, 255, 255, 0.95);
    color: #2c445b;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(11, 28, 45, 0.2);
}

.about-reels__floating-nav--left {
    left: -18px;
}

.about-reels__floating-nav--right {
    right: -18px;
}

.about-reels__track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.about-reels__track::-webkit-scrollbar {
    display: none;
}

.reel-card {
    position: relative;
    min-width: min(360px, 84vw);
    max-width: 360px;
    height: 430px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 15, 25, 0.85), rgba(7, 15, 25, 0.12));
}

.reel-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #24394f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    line-height: 2;
    padding-left: 0.26rem;
    flex-shrink: 0;
}

.reel-card__play svg {
    width: 30px;
    height: 30px;
    display: block;
}

.reel-card__meta {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.75rem;
    z-index: 1;
    color: #fff;
}

.reel-card__meta h3 {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
    font-family: var(--font-secondary);
}

.reel-card__meta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.reel-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.reel-modal.is-open {
    display: flex;
}

.reel-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 22, 0.85);
}

.reel-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1000px, 96vw);
    margin: 0;
    max-height: 92vh;
}

.reel-modal__close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    border: 0;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2f40;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.reel-modal__dialog video {
    width: 100%;
    max-height: 90vh;
    background: #000;
    border-radius: 10px;
}

.about-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: none;
    background: rgba(6, 12, 22, 0.93);
    align-items: center;
    justify-content: center;
}

.about-gallery-lightbox.is-open {
    display: flex;
}

.about-gallery-lightbox__stage {
    width: min(90vw, 1300px);
    max-height: 86vh;
    overflow: hidden;
    touch-action: none;
}

.about-gallery-lightbox__stage img {
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
    transform-origin: center;
}

.about-gallery-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    cursor: pointer;
}

.about-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    cursor: pointer;
}

.about-gallery-lightbox__nav--prev {
    left: 1rem;
}

.about-gallery-lightbox__nav--next {
    right: 1rem;
}

.about-gallery-lightbox__zoom {
    position: absolute;
    bottom: 1.2rem;
    display: inline-flex;
    gap: 0.45rem;
}

.about-gallery-lightbox__zoom button {
    border: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    cursor: pointer;
}

.about-review-card {
    background: #fff;
    border: 1px solid #ebe3d8;
    border-radius: 12px;
    padding: 0.9rem;
}

.about-review-card h3 {
    margin: 0 0 0.35rem;
    color: #23374a;
}

.about-review-card p {
    margin: 0;
    color: #5d6d7d;
}

.activity-hero {
    position: relative;
    min-height: 360px;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

/* Restore grid (activity-hero sets display:flex later in the file and would force side-by-side flex children on small screens) */
.activity-hero.packages-hero--split {
    display: grid;
}

@media (min-width: 1025px) {
    .activity-hero.packages-hero--split {
        grid-template-columns: 1fr 1fr;
    }
}

.activity-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-hero > .activity-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5, 20, 36, 0.82), rgba(11, 60, 105, 0.42));
}

.activity-hero > .activity-hero__content {
    position: relative;
    z-index: 1;
    padding: 1.25rem 0 2rem;
}

.activity-hero__content .packages-breadcrumb a,
.activity-hero__content .packages-breadcrumb span {
    color: rgba(255, 255, 255, 0.92);
}

.activity-hero__content h1 {
    margin: 0.85rem 0 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-secondary);
}

.activity-intro {
    padding-bottom: 2rem;
}

.activity-seasons {
    padding-bottom: 1.2rem;
}

.activity-seasons__row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.activity-season-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 170px;
    isolation: isolate;
    transform-origin: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.activity-season-card:hover,
.activity-season-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgba(7, 21, 37, 0.22);
}

.activity-season-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.activity-season-card:hover img,
.activity-season-card:focus-within img {
    transform: scale(1.06);
}

.activity-season-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 19, 32, 0.78), rgba(8, 19, 32, 0.16));
    transition: opacity 0.35s ease;
}

.activity-season-card:hover .activity-season-card__overlay,
.activity-season-card:focus-within .activity-season-card__overlay {
    opacity: 0.88;
}

.activity-season-card span {
    position: absolute;
    left: 0.85rem;
    bottom: 0.7rem;
    z-index: 1;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.activity-trips {
    padding-top: 1.6rem;
}

.activity-trips .section-title {
    margin-bottom: 1rem;
}

.activity-trips__item {
    height: 100%;
}

.activity-trips__item .package-card {
    height: 100%;
}

.activity-trips__empty {
    margin: 0;
    color: #5a6876;
    font-size: 0.98rem;
}

@media (max-width: 1024px) {
    .package-stats__grid,
    .package-overview,
    .itinerary-layout,
    .package-ship,
    .dates-prices-layout,
    .dates-prices-info__columns {
        grid-template-columns: 1fr;
    }

    .itinerary-layout--full-bleed-map {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .itinerary-days-column {
        padding-right: 0;
    }

    .itinerary-days-column > .container {
        width: min(1200px, 92%);
        margin-inline: auto;
    }

    .itinerary-map {
        position: static;
        height: auto;
    }

    .itinerary-map__viewer {
        flex: none;
        min-height: min(420px, 55vh);
        height: min(55vh, 520px);
        border-right: none;
        border-radius: 10px;
        border: 1px solid #dcd5ce;
        margin-inline: max(0px, calc((100vw - min(1200px, 92vw)) / 2));
    }

    .dates-prices-month__summary {
        grid-template-columns: 1fr auto;
        row-gap: 0.5rem;
    }

    .dates-prices-month__price {
        grid-column: 1 / 2;
    }

    .dates-prices-month__badge {
        grid-column: 2 / 3;
        justify-self: end;
    }

    .dates-prices-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .dates-prices-row__availability {
        justify-self: start;
    }

    .booking-selection-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-layout,
    .booking-form__grid {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        position: static;
    }

    .package-reviews__grid,
    .package-reviews__grid--full {
        grid-template-columns: 1fr;
    }

    .expert-modal__form-side {
        padding: 1.5rem 1.15rem 1.25rem;
    }

    .expert-form__grid {
        grid-template-columns: 1fr;
    }

    .expert-floating-bar {
        width: calc(100vw - 1rem);
        left: 50%;
    }

    .expert-floating-bar__summary {
        flex: 1;
        min-width: 0;
        overflow-x: auto;
    }

    .itinerary-hotel-modal__dialog {
        grid-template-columns: 1fr;
        margin-top: 1.2rem;
        max-height: calc(100vh - 2.4rem);
    }

    .itinerary-hotel-modal__left {
        border-right: 0;
        border-bottom: 1px solid #ece7df;
    }

    .about-welcome__grid,
    .about-services__grid,
    .about-gallery__grid,
    .about-reviews__grid {
        grid-template-columns: 1fr;
    }

    .about-blog-card,
    .about-blog-card--reverse {
        grid-template-columns: 1fr;
    }

    .about-blog-card--reverse .about-blog-card__image {
        order: initial;
    }

    .activity-seasons__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .activity-season-card {
        min-height: 150px;
    }

    .journeys-featured__card {
        grid-template-columns: 1fr;
    }

    .journeys-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-slider__viewport,
    .journey-slider__slide img {
        min-height: 340px;
        height: 340px;
    }

    .reel-card {
        min-width: 86vw;
    }

    .about-reels__floating-nav {
        width: 36px;
        height: 36px;
    }

    .about-reels__floating-nav--left {
        left: -10px;
    }

    .about-reels__floating-nav--right {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .home-last-minute-packages__grid {
        grid-template-columns: 1fr;
    }

    .home-tours__grid {
        grid-template-columns: 1fr;
    }

    .home-tours__card {
        min-height: 220px;
    }

    .home-tours__card img {
        min-height: 220px;
    }

    .home-stories__card,
    .home-stories__card img {
        min-height: 230px;
    }

    .home-why-poema__grid {
        grid-template-columns: 1fr;
    }

    .home-why-poema__item p {
        max-width: 42ch;
    }

    .package-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .packages-filters__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 42px;
        border: 1px solid #dce2e9;
        border-radius: 10px;
        background: #fff;
        color: #274058;
        font-weight: 700;
        cursor: pointer;
        margin-bottom: 0.8rem;
    }

    .packages-filters__panel {
        display: none;
    }

    .packages-filters__panel.is-open {
        display: block;
        margin-bottom: 0.8rem;
    }

    .journeys-grid__list {
        grid-template-columns: 1fr;
    }

    .journey-slider__viewport,
    .journey-slider__slide img {
        min-height: 250px;
        height: 250px;
    }

    .site-footer__top,
    .site-footer__main {
        grid-template-columns: 1fr;
    }

    .site-footer__form {
        grid-template-columns: 1fr;
    }

    .site-footer__form input[name="email"] {
        grid-column: span 1;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .chat-widget {
        right: 0.8rem;
        bottom: 0.8rem;
    }

}

.auth-page {
    --auth-paper: #f8f1e3;
    --auth-paper-deep: #f2e5d1;
    --auth-ink: #1f1a14;
    --auth-muted: #6b5f51;
    --auth-gold: #a37a43;
    --auth-border: rgba(128, 96, 55, 0.22);
    --auth-shadow: 0 26px 48px rgba(27, 19, 10, 0.12);
    padding: calc(var(--header-offset) + 1.4rem) 0 1.2rem;
    background:
        radial-gradient(circle at 12% 8%, rgba(163, 122, 67, 0.1), transparent 30%),
        linear-gradient(180deg, #f6efe1 0%, #f9f4ea 56%, #fcfaf5 100%);
    min-height: 100vh;
}

.auth-page__container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-offset) - 2.6rem);
}

.auth-card {
    width: min(1040px, 100%);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 251, 244, 0.92));
    border: 1px solid var(--auth-border);
    border-radius: 4px;
    box-shadow: var(--auth-shadow);
    overflow: hidden;
}

.auth-card--compact {
    width: min(920px, 100%);
}

.auth-card__layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.95fr) minmax(330px, 1.05fr);
}

.auth-card__intro {
    position: relative;
    padding: 2rem 1.7rem;
    background:
        linear-gradient(160deg, rgba(45, 33, 18, 0.92), rgba(27, 20, 12, 0.9)),
        linear-gradient(120deg, #70522e, #3c2b16);
    color: #f7f0e5;
}

.auth-card__intro::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 238, 208, 0.22);
    pointer-events: none;
}

.auth-card__body {
    padding: 2rem 1.8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 251, 244, 0.92));
}

.auth-card__eyebrow {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.73rem;
    color: #e1c38f;
    font-weight: 700;
}

.auth-card__intro h1 {
    margin: 0 0 0.75rem;
    color: #fff5e5;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
}

.auth-card__intro > p {
    margin: 0;
    color: rgba(247, 238, 224, 0.9);
    line-height: 1.8;
}

.auth-card__highlights {
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.auth-card__highlights li {
    position: relative;
    padding-left: 1.1rem;
    color: rgba(247, 238, 224, 0.88);
    line-height: 1.65;
}

.auth-card__highlights li::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e7c58d;
}

.auth-form {
    display: grid;
    gap: 0.78rem;
}

.auth-form label {
    color: #3f3428;
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.auth-form input {
    width: 100%;
    border: 1px solid rgba(138, 104, 62, 0.28);
    border-radius: 2px;
    min-height: 48px;
    padding: 0 0.85rem;
    font: inherit;
    color: #2c2319;
    background: rgba(255, 255, 255, 0.88);
}

.auth-form input:focus-visible {
    outline: none;
    border-color: var(--auth-gold);
    box-shadow: 0 0 0 3px rgba(163, 122, 67, 0.16);
}

.auth-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.auth-form__grid > div {
    display: grid;
    gap: 0.45rem;
}

.auth-form__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-top: 0.45rem;
}

.auth-form__submit {
    min-width: 160px;
    border-radius: 2px;
    border: 1px solid transparent;
    background: linear-gradient(120deg, #b08a52, #8b6536);
    color: #fff7e8;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.auth-form__submit:hover,
.auth-form__submit:focus-visible {
    background: linear-gradient(120deg, #b99259, #946d3c);
    box-shadow: 0 10px 24px rgba(77, 52, 20, 0.24);
}

.auth-form__link {
    color: #65492a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(101, 73, 42, 0.35);
}

.auth-form__link:hover,
.auth-form__link:focus-visible {
    color: #8b6536;
    border-bottom-color: rgba(139, 101, 54, 0.5);
}

.auth-form__preferences {
    margin: 0.25rem 0 0;
    border: 1px solid rgba(138, 104, 62, 0.24);
    border-radius: 2px;
    padding: 0.95rem;
    display: grid;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.62);
}

.auth-form__preferences legend {
    color: #4d3f31;
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    padding: 0 0.25rem;
    line-height: 1.6;
}

.auth-form__check {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #4e4337;
}

.auth-form__check input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: #8c6535;
}

.auth-card__footer {
    margin: 1rem 0 0;
    color: var(--auth-muted);
    font-size: 0.95rem;
}

.auth-card__footer a {
    color: #5f4224;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(95, 66, 36, 0.3);
}

.auth-card__footer a:hover,
.auth-card__footer a:focus-visible {
    color: #8b6536;
    border-bottom-color: rgba(139, 101, 54, 0.5);
}

@media (max-width: 768px) {
    .auth-page {
        padding-top: calc(var(--header-offset) + 1rem);
        padding-bottom: 1rem;
    }

    .auth-page__container {
        min-height: auto;
        align-items: flex-start;
    }

    .auth-card {
        border-radius: 2px;
    }

    .auth-card__layout {
        grid-template-columns: 1fr;
    }

    .auth-card__intro,
    .auth-card__body {
        padding: 1.25rem 1rem;
    }

    .auth-form__grid {
        grid-template-columns: 1fr;
    }

    .auth-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-form__submit {
        width: 100%;
    }
}

/* Home page visual unification: Luxury Heritage Travel */
body.is-homepage {
    background: #f4f1ea;
}

body.is-homepage .home-section-head {
    text-align: center;
    margin: 0 auto 1.25rem;
}

body.is-homepage .home-section-head p:not(.home-section-head__lede) {
    margin: 0;
    color: #303a43;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.78rem;
    font-weight: 700;
}

body.is-homepage .home-section-head h2 {
    margin: 0.45rem 0 0;
    color: #1f2730;
    font-family: var(--font-secondary);
    font-size: clamp(1.9rem, 3.3vw, 2.9rem);
    line-height: 1.15;
}

body.is-homepage .home-section-head--left {
    text-align: left;
    margin: 0 0 1.1rem;
}

body.is-homepage .home-last-minute-packages,
body.is-homepage .home-tours,
body.is-homepage .home-stories,
body.is-homepage .home-google-reviews,
body.is-homepage .home-why-poema {
    background: transparent;
}

body.is-homepage .home-google-reviews__shell {
    border-color: var(--home-rule);
    box-shadow: 0 16px 36px rgba(12, 28, 42, 0.07);
}

body.is-homepage .home-google-reviews__card {
    border-color: var(--home-rule);
}

body.is-homepage .home-google-reviews__card.is-active {
    border-color: transparent;
}

body.is-homepage .home-tours {
    padding-top: 1.2rem;
}

body.is-homepage .home-tours__card {
    height: 230px;
    border-radius: 8px;
    border: 1px solid #d6cfc2;
}

body.is-homepage .home-tours__card span {
    font-size: clamp(1.25rem, 2.2vw, 2rem);
}

body.is-homepage .home-stories__card {
    border-radius: 10px;
    border: 1px solid #ddd4c8;
    box-shadow: 0 10px 18px rgba(12, 28, 42, 0.07);
}

body.is-homepage .home-why-poema__item {
    border-color: #ddd4c8;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 16px rgba(12, 28, 42, 0.05);
}

body.is-homepage .home-why-poema__item:hover,
body.is-homepage .home-why-poema__item:focus-within {
    box-shadow: 0 12px 22px rgba(12, 28, 42, 0.08);
}

body.is-homepage .home-last-minute-packages .package-card--grid {
    background: #f5f1e8;
}

body.is-homepage .home-last-minute-packages .package-card--grid .package-card__body h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

/* ── Homepage luxury layout system ── */
.home-page--hero-header {
    margin-top: calc(-1 * var(--header-offset));
}

body.is-hero-header-integrated .home-page--hero-header {
    margin-top: calc(-1 * var(--header-bar-offset, var(--header-offset)));
}

.home-page__hero {
    position: relative;
}

.home-page {
    --home-gold: #c8a45d;
    --home-gold-soft: rgba(200, 164, 93, 0.35);
    --home-ink: #1c2430;
    --home-cream: #f4f1ea;
    --home-cream-elevated: #faf7f1;
    --home-rule: #ddd4c8;
}

.home-page__band {
    position: relative;
}

.home-page__band--elevated {
    background: var(--home-cream-elevated);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.home-page__band--closing {
    padding-bottom: 0.5rem;
}

.home-page__band--cta {
    padding-top: 0.5rem;
    padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

.home-page__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: clamp(1.75rem, 4vw, 2.75rem) 0;
    background: var(--home-cream);
}

.home-page__divider--subtle {
    padding: clamp(1rem, 2.5vw, 1.5rem) 0;
}

.home-page__divider-line {
    flex: 1;
    max-width: 7.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--home-gold-soft), transparent);
}

.home-page__divider--subtle .home-page__divider-line {
    max-width: 12rem;
}

.home-page__divider-mark {
    width: 0.45rem;
    height: 0.45rem;
    border: 1px solid var(--home-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

body.is-homepage .home-section-head--editorial {
    max-width: 42rem;
    margin-inline: auto;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
    text-align: center;
}

body.is-homepage .home-section-head--editorial::after {
    content: "";
    display: block;
    width: 3.25rem;
    height: 1px;
    margin: 1.15rem auto 0;
    background: linear-gradient(90deg, transparent, var(--home-gold), transparent);
}

body.is-homepage .home-section-head__eyebrow,
body.is-homepage .home-section-head p.home-section-head__eyebrow {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #8f6a32;
}

body.is-homepage .home-section-head--editorial h2 {
    margin: 0.65rem 0 0;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.015em;
    color: var(--home-ink);
}

body.is-homepage .home-section-head__lede,
body.is-homepage .home-section-head p.home-section-head__lede {
    margin: 1rem auto 0;
    max-width: 36ch;
    text-align: center;
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.7;
    color: #5c6975;
    font-style: italic;
}

body.is-homepage .home-why-poema__intro.home-section-head--editorial {
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
}

body.is-homepage .home-why-poema__intro .home-why-poema__lede {
    margin: 1rem auto 0;
    text-align: center;
}

body.is-homepage .section {
    padding: clamp(3.25rem, 7vw, 5.25rem) 0;
}

body.is-homepage .home-spirit {
    background: transparent;
    border-top: none;
    padding-top: 0;
}

body.is-homepage .home-spirit__text {
    font-size: clamp(1.05rem, 1.85vw, 1.28rem);
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #3e4954;
    max-width: min(68rem, 100%);
}

body.is-homepage .experiences-section {
    padding-top: 0;
}

body.is-homepage .experiences-section__empty,
body.is-homepage .home-tours__empty,
body.is-homepage .home-stories__empty {
    grid-column: 1 / -1;
    margin: 0;
    text-align: center;
    color: #5c6975;
    font-style: italic;
}

body.is-homepage .experience-card {
    border: 1px solid var(--home-rule);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.2, 0.75, 0.2, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

body.is-homepage .experience-card:hover,
body.is-homepage .experience-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(200, 164, 93, 0.55);
    box-shadow: 0 18px 36px rgba(12, 28, 42, 0.1);
}

body.is-homepage .experience-card__media {
    position: relative;
    overflow: hidden;
}

body.is-homepage .experience-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(12, 20, 28, 0.35), transparent);
    pointer-events: none;
}

body.is-homepage .experience-card img {
    height: clamp(180px, 22vw, 220px);
    transition: transform 0.5s ease;
}

body.is-homepage .experience-card:hover img,
body.is-homepage .experience-card:focus-within img {
    transform: scale(1.06);
}

body.is-homepage .experience-card__body {
    padding: 1rem 1.05rem 1.15rem;
}

body.is-homepage .experience-card__location {
    color: #8f6a32;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
}

body.is-homepage .experience-card__body h3 {
    font-family: var(--font-secondary);
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: 400;
    margin: 0.35rem 0 0.85rem;
}

body.is-homepage .experience-card__button {
    border-radius: 999px;
    border-color: #c9c0b3;
    background: transparent;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    min-height: 38px;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

body.is-homepage .experience-card__button:hover,
body.is-homepage .experience-card__button:focus-visible {
    background: var(--home-ink);
    border-color: var(--home-ink);
    color: #fff;
}

body.is-homepage .home-tours__card {
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(12, 28, 42, 0.08);
}

body.is-homepage .home-tours__card::before {
    background: linear-gradient(
        to top,
        rgba(8, 14, 22, 0.82) 0%,
        rgba(8, 14, 22, 0.25) 55%,
        rgba(8, 14, 22, 0.08) 100%
    );
}

body.is-homepage .home-tours__card-label {
    position: absolute;
    left: 1.15rem;
    bottom: 2.35rem;
    z-index: 2;
    color: #fff;
    font-family: var(--font-secondary);
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    font-weight: 400;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

body.is-homepage .home-tours__card-cta {
    position: absolute;
    left: 1.15rem;
    bottom: 0.95rem;
    z-index: 2;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

body.is-homepage .home-tours__card:hover .home-tours__card-cta,
body.is-homepage .home-tours__card:focus-visible .home-tours__card-cta {
    opacity: 1;
    transform: translateY(0);
}

body.is-homepage .home-tours__card span:not(.home-tours__card-label):not(.home-tours__card-cta) {
    display: none;
}

body.is-homepage .home-stories__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(12, 20, 28, 0.78) 0%, transparent 55%);
    pointer-events: none;
}

body.is-homepage .home-stories__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 1.15rem 1.2rem 1.25rem;
    background: transparent;
    color: #fff;
    transform: none;
    opacity: 1;
}

body.is-homepage .home-stories__content h3 {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    color: #fff;
}

body.is-homepage .home-stories__content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

body.is-homepage .home-stories__card:hover .home-stories__content p,
body.is-homepage .home-stories__card:focus-visible .home-stories__content p {
    max-height: 6rem;
    opacity: 1;
    margin-top: 0.4rem;
}

body.is-homepage .home-stories__card {
    min-height: clamp(280px, 32vw, 340px);
}

body.is-homepage .home-stories__card img {
    min-height: clamp(280px, 32vw, 340px);
}

/* Homepage: full-viewport hero with dedicated vertical zones */
body.is-homepage .hero {
    --hero-trust-height: clamp(5.5rem, 12vh, 7rem);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: stretch;
}

body.is-homepage .hero__stage {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 3.5vh, 2.5rem);
    min-height: 0;
    padding: calc(var(--header-bar-offset, var(--header-offset)) + clamp(2.5rem, 7vh, 4.5rem)) clamp(1rem, 4vw, 2rem)
        clamp(2.5rem, 6vh, 4rem);
    box-sizing: border-box;
}

body.is-homepage .hero__content--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.5vh, 1.75rem);
    padding: clamp(1.5rem, 4vh, 3rem) 0;
    width: 100%;
    flex: 0 1 auto;
}

body.is-homepage .hero__eyebrow {
    margin: 0;
}

body.is-homepage .hero__title {
    margin: 0;
}

body.is-homepage .hero__cta {
    margin: clamp(0.35rem, 1vh, 0.75rem) 0 0;
}

body.is-homepage .hero__scroll-cue {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    flex-shrink: 0;
    margin-top: clamp(0.5rem, 1.5vh, 1rem);
}

body.is-homepage .hero__trust-bar {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    flex: 0 0 auto;
    min-height: var(--hero-trust-height);
    padding: clamp(0.85rem, 2vh, 1.1rem) 0;
}

/* Hero luxury refinements */
body.is-homepage .hero__overlay {
    background:
        linear-gradient(180deg, rgba(6, 18, 30, 0.55) 0%, rgba(6, 18, 30, 0.2) 22%, transparent 45%),
        linear-gradient(
            165deg,
            rgba(6, 18, 30, 0.68) 0%,
            rgba(12, 28, 42, 0.48) 42%,
            rgba(28, 36, 48, 0.35) 100%
        );
}

body.is-homepage .hero__eyebrow {
    color: var(--home-gold);
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    font-weight: 600;
}

body.is-homepage .hero__title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    max-width: min(22ch, 92vw);
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-align: center;
}

body.is-homepage .hero__title-part {
    color: #fff;
}

body.is-homepage .hero__title-accent {
    color: var(--accent);
    display: inline;
}

body.is-homepage .hero__title-part + .hero__title-accent::before,
body.is-homepage .hero__title-accent + .hero__title-part::before {
    content: " ";
}

body.is-homepage .hero__cta {
    padding: 0.55rem 2rem;
    background: rgba(200, 164, 93, 0.18);
    border-color: rgba(200, 164, 93, 0.75);
    letter-spacing: 0.2em;
}

@media (max-width: 860px) {
    body.is-homepage .hero__stage {
        padding-top: calc(var(--header-bar-offset, var(--header-offset)) + clamp(1.75rem, 5vh, 2.5rem));
        padding-bottom: clamp(1.75rem, 4vh, 2.5rem);
        gap: 1.25rem;
    }

    body.is-homepage .hero__content--centered {
        padding: clamp(1rem, 3vh, 1.75rem) 0;
    }

    body.is-homepage .hero__title {
        font-size: clamp(1.85rem, 8.5vw, 2.75rem);
        max-width: 100%;
    }

    body.is-homepage .hero__trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem 0.85rem;
    }
}

body.is-homepage .hero__cta:hover,
body.is-homepage .hero__cta:focus-visible {
    background: rgba(200, 164, 93, 0.38);
}

.hero__scroll-cue {
    position: absolute;
    left: 50%;
    bottom: clamp(6.75rem, 15vw, 9rem);
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.25s ease;
}

.hero__scroll-cue:hover,
.hero__scroll-cue:focus-visible {
    color: #fff;
    outline: none;
}

.hero__scroll-cue-text {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero__scroll-cue-arrow {
    display: inline-flex;
    width: 1.15rem;
    height: 1.15rem;
    animation: hero-scroll-arrow-bounce 1.8s ease-in-out infinite;
}

.hero__scroll-cue-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes hero-scroll-arrow-bounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.65;
    }

    50% {
        transform: translateY(0.35rem);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__scroll-cue-arrow {
        animation: none;
    }
}

body.is-homepage .hero__trust-bar {
    border-top-color: rgba(200, 164, 93, 0.28);
    background: linear-gradient(180deg, rgba(6, 18, 30, 0.15) 0%, rgba(6, 18, 30, 0.62) 100%);
}

body.is-homepage .hero__trust-icon {
    color: var(--home-gold);
}

/* Closing CTA panel */
.home-cta {
    padding-top: 0;
    padding-bottom: 0;
}

.home-cta__panel {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3.25rem);
    border-radius: 8px;
    border: 1px solid rgba(200, 164, 93, 0.35);
    background:
        linear-gradient(135deg, rgba(12, 28, 42, 0.94) 0%, rgba(28, 44, 58, 0.88) 55%, rgba(143, 106, 50, 0.22) 100%),
        #1c2430;
    color: #fff;
    box-shadow: 0 24px 48px rgba(12, 28, 42, 0.18);
}

.home-cta__panel::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 93, 0.18) 0%, transparent 68%);
    pointer-events: none;
}

.home-cta__eyebrow {
    margin: 0;
    position: relative;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--home-gold);
}

.home-cta__title {
    position: relative;
    margin: 0.65rem 0 0;
    font-family: var(--font-secondary);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.15;
    max-width: 18ch;
}

.home-cta__lede {
    position: relative;
    margin: 0.85rem 0 0;
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
}

.home-cta__actions {
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.35rem 1.5rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-cta__btn--primary {
    background: var(--home-gold);
    border: 1px solid var(--home-gold);
    color: #1f1b16;
}

.home-cta__btn--primary:hover,
.home-cta__btn--primary:focus-visible {
    background: #d4b06a;
    transform: translateY(-1px);
    outline: none;
}

.home-cta__btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    background: transparent;
}

.home-cta__btn--ghost:hover,
.home-cta__btn--ghost:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

@media (max-width: 767px) {
    .hero__scroll-cue {
        display: none;
    }

    body.is-homepage .home-cta__actions {
        flex-direction: column;
    }

    body.is-homepage .home-cta__btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__scroll-cue-line {
        animation: none;
    }
}

/* Our Journeys page visual system refresh */
.journeys-page {
    background: #f4f1ea;
}

/* Journeys index: offset handled by .journeys-page (flush main avoids double padding) */
body.is-inner-page .journeys-page {
    padding-top: var(--header-offset);
}

.journeys-page .journeys-section-head {
    text-align: center;
    margin: 0 auto 1.1rem;
}

.journeys-page .journeys-section-head p {
    margin: 0;
    color: #303a43;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.78rem;
    font-weight: 700;
}

.journeys-page .journeys-section-head h2 {
    margin: 0.4rem 0 0;
    color: #1f2730;
    font-family: var(--font-secondary);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    line-height: 1.15;
}

.journeys-page .journeys-featured {
    padding-top: 2.6rem;
}

.journeys-page .journeys-featured__card {
    background: #f8f4ec;
    border: 1px solid #ddd4c8;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(12, 28, 42, 0.07);
    overflow: hidden;
}

.journeys-page .journeys-featured__image img {
    min-height: 350px;
    object-fit: cover;
}

.journeys-page .journeys-featured__content {
    padding: 1.3rem;
}

.journeys-page .journeys-featured__content h3 {
    margin: 0.5rem 0 0.6rem;
    color: #1f2730;
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
    line-height: 1.12;
}

.journeys-page .journeys-featured__content p {
    color: #3e4954;
    font-size: 1rem;
    line-height: 1.7;
}

.journeys-page .journeys-featured__cta {
    margin-top: 1rem;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #bdb4a8;
    border-radius: 999px;
    padding: 0.2rem 1rem;
    color: #1f2730;
    background: #f8f4ec;
    font-weight: 700;
}

.journeys-page .journeys-featured__cta:hover,
.journeys-page .journeys-featured__cta:focus-visible {
    background: #eee8dd;
    outline: none;
}

.journeys-page .journeys-filter {
    justify-content: center;
    gap: 0.65rem;
}

.journeys-page .journeys-filter__btn {
    border-radius: 999px;
    background: #f4f1ea;
    border-color: #c9c0b3;
    color: #24303b;
}

.journeys-page .journeys-filter__btn:hover,
.journeys-page .journeys-filter__btn.is-active {
    background: #e3d8c3;
    border-color: #aa9a83;
    color: #1f2730;
}

.journeys-page .journeys-grid__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.journeys-page .journey-card {
    border: 1px solid #ddd4c8;
    border-radius: 10px;
    overflow: hidden;
    background: #f9f6ef;
    box-shadow: 0 8px 16px rgba(12, 28, 42, 0.06);
}

.journeys-page .journey-card__content {
    padding: 1rem;
}

.journeys-page .journey-card__content h3 {
    margin: 0.45rem 0;
    color: #1f2730;
    font-family: var(--font-secondary);
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
    line-height: 1.15;
}

.journeys-page .journey-card__content p {
    color: #3f4a55;
    line-height: 1.6;
}

.journeys-page .journey-card__link {
    margin-top: 0.9rem;
    min-height: 38px;
    border-radius: 999px;
    border: 1px solid #bdb4a8;
    color: #1f2730;
    background: #f9f6ef;
    padding: 0.2rem 0.9rem;
    display: inline-flex;
    align-items: center;
}

.journeys-page .journey-card__link:hover,
.journeys-page .journey-card__link:focus-visible {
    background: #eee8dd;
    outline: none;
}

@media (max-width: 1024px) {
    /*
     * Journey blocks start at opacity:0 until IntersectionObserver adds .is-visible.
     * On narrow viewports the observer often never intersects (short roots + threshold + negative rootMargin),
     * so the whole section stays invisible. Show content without waiting for JS.
     */
    .journeys-page [data-journey-animate] {
        opacity: 1;
        transform: none;
    }

    .journeys-page .journeys-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .journeys-page .journeys-grid__list {
        grid-template-columns: 1fr;
    }
}

/* --- Destinations gallery (Egypt) — staggered masonry --- */
.destinations-page {
    background: var(--color-005);
    min-height: 60vh;
}

.destinations-page__intro {
    padding-bottom: 0.5rem;
}

.destinations-page__eyebrow {
    margin: 0 0 0.5rem;
    color: #9a6c17;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
}

.destinations-page__lede {
    margin-top: 0.75rem;
}

.destinations-page__gallery-wrap {
    padding-top: 0.25rem;
    padding-bottom: 3rem;
}

.destinations-masonry {
    column-count: 4;
    column-gap: 0.75rem;
}

.destinations-masonry__card {
    position: relative;
    display: block;
    break-inside: avoid;
    margin-bottom: 0.75rem;
    overflow: hidden;
    border-radius: 0;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 0 rgba(31, 42, 53, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.destinations-masonry__card:hover,
.destinations-masonry__card:focus-visible {
    box-shadow: 0 12px 28px rgba(15, 24, 34, 0.12);
    transform: translateY(-2px);
    outline: none;
}

.destinations-masonry__card:focus-visible {
    box-shadow: 0 0 0 2px var(--color-008), 0 0 0 5px rgba(181, 106, 58, 0.55);
}

.destinations-masonry__card--short {
    min-height: 200px;
}

.destinations-masonry__card--medium {
    min-height: 260px;
}

.destinations-masonry__card--tall {
    min-height: 340px;
}

.destinations-masonry__card--xlarge {
    min-height: 420px;
}

.destinations-masonry__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.destinations-masonry__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.destinations-masonry__card:hover .destinations-masonry__img,
.destinations-masonry__card:focus-visible .destinations-masonry__img {
    transform: scale(1.04);
}

.destinations-masonry__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.34);
    transition: background 0.3s ease;
}

.destinations-masonry__card:hover .destinations-masonry__overlay,
.destinations-masonry__card:focus-visible .destinations-masonry__overlay {
    background: rgba(0, 0, 0, 0.46);
}

.destinations-masonry__label {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.1rem;
    text-align: center;
    color: #fff;
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem, 2.1vw, 1.95rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1200px) {
    .destinations-masonry {
        column-count: 3;
    }
}

@media (max-width: 900px) {
    .destinations-masonry {
        column-count: 2;
    }
}

@media (max-width: 520px) {
    .destinations-masonry {
        column-count: 1;
    }

    .destinations-masonry__card--short {
        min-height: 220px;
    }

    .destinations-masonry__card--medium {
        min-height: 240px;
    }

    .destinations-masonry__card--tall {
        min-height: 280px;
    }

    .destinations-masonry__card--xlarge {
        min-height: 300px;
    }
}

/* Package extensions (itinerary column + modal) */
.package-extensions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e2d8;
}

.package-extensions__heading {
    margin: 0 0 1.5rem;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 400;
    color: var(--primary-color);
}

.package-extensions__list {
    display: grid;
    gap: 1.25rem;
}

.package-extension-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(140px, 220px);
    align-items: stretch;
    background: #f3f1ed;
    border-radius: 4px;
    overflow: hidden;
    min-height: 180px;
}

.package-extension-card__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.55rem;
    border-radius: 3px;
}

.package-extension-card__body {
    padding: 2.5rem 1.25rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-extension-card__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-secondary);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2;
}

.package-extension-card__desc {
    margin: 0 0 1rem;
    color: #4f6070;
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 42ch;
}

.package-extension-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 0;
    background: transparent;
    padding: 0;
    color: #1f2730;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.package-extension-card__link:hover,
.package-extension-card__link:focus-visible {
    color: var(--accent);
}

.package-extension-card__media {
    min-height: 100%;
}

.package-extension-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-extension-modal {
    position: fixed;
    inset: 0;
    z-index: 190;
    display: none;
}

.package-extension-modal.is-open {
    display: block;
}

body.package-extension-modal-open {
    overflow: hidden;
}

.package-extension-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 28, 0.76);
}

.package-extension-modal__dialog {
    position: relative;
    width: min(1120px, 94vw);
    margin: 2.5rem auto;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 42%) 1fr;
    max-height: calc(100vh - 5rem);
    min-height: 0;
    align-items: stretch;
}

.package-extension-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    z-index: 3;
    border: 0;
    background: transparent;
    width: 36px;
    height: 36px;
    font-size: 1.75rem;
    line-height: 1;
    color: #1f2730;
    cursor: pointer;
}

.package-extension-modal__media {
    min-height: 0;
    background: #e8e2d8;
    overflow: hidden;
}

.package-extension-modal__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: calc(100vh - 5rem);
    object-fit: cover;
}

.package-extension-modal__content {
    min-height: 0;
    max-height: calc(100vh - 5rem);
    padding: 2rem 1.75rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.package-extension-modal__badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.55rem;
    border-radius: 3px;
    margin-bottom: 0.85rem;
}

.package-extension-modal__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-secondary);
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.15;
}

.package-extension-modal__summary {
    margin: 0 0 1rem;
    color: #4f6070;
    line-height: 1.75;
    font-size: 0.95rem;
}

.package-extension-modal__pricing {
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1f2730;
}

.package-extension-modal__inclusions {
    margin: 0 0 1.25rem;
    font-size: 0.82rem;
    color: #6a7785;
    line-height: 1.5;
}

.package-extension-modal__itinerary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ece7df;
}

.package-extension-modal__group + .package-extension-modal__group {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0ebe3;
}

.package-extension-modal__location {
    margin-bottom: 0.85rem;
}

.package-extension-modal__day {
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0ebe3;
}

.package-extension-modal__day:last-child {
    border-bottom: 0;
}

.package-extension-modal__day-title {
    margin: 0 0 0.45rem;
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    color: var(--primary-color);
}

.package-extension-modal__day-desc {
    margin: 0 0 0.55rem;
    color: #4f6070;
    line-height: 1.7;
    font-size: 0.92rem;
}

.package-extension-modal__day-hotel {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #1f2730;
}

.package-extension-modal__empty {
    margin: 0;
    color: #6a7785;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .package-extension-card {
        grid-template-columns: 1fr;
    }

    .package-extension-card__media {
        min-height: 200px;
        order: -1;
    }

    .package-extension-modal__dialog {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 2rem);
        margin: 1rem auto;
    }

    .package-extension-modal__media img {
        min-height: 220px;
        max-height: 36vh;
    }
}
