:root {
    --travel-ink: #182126;
    --travel-cloud: #f7faf8;
    --travel-mist: #dbe9e5;
    --travel-teal: #0f766e;
    --travel-coral: #e86f51;
    --travel-gold: #e0a84b;
    --travel-forest: #25423b;
    --travel-shadow: 0 24px 70px rgba(12, 31, 38, 0.22);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--travel-ink);
    background: var(--travel-cloud);
    font-family: Inter, Arial, sans-serif;
}

.travel-page {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(247, 250, 248, 0) 0, var(--travel-cloud) 42rem),
        radial-gradient(circle at top left, rgba(232, 111, 81, 0.16), transparent 24rem);
}

.travel-site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 20;
    width: min(1120px, calc(100% - 40px));
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 12px 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(18, 33, 38, 0.58);
    box-shadow: 0 18px 44px rgba(12, 31, 38, 0.22);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.travel-brand {
    color: #ffffff;
    font-family: Newsreader, Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.travel-menu-toggle {
    display: none;
}

.travel-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: nowrap;
}

.travel-nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.travel-nav__link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.travel-nav__link:hover,
.travel-nav__link:focus-visible,
.travel-nav__item.is-open .travel-nav__link,
.travel-nav__item:focus-within .travel-nav__link,
.travel-nav__item:hover .travel-nav__link {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    outline: none;
}

.travel-nav__item.is-active .travel-nav__link {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.travel-nav__toggle {
    width: 30px;
    height: 34px;
    margin-left: -10px;
    border: 0;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.travel-nav__toggle span {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
}

.travel-nav__toggle:hover,
.travel-nav__toggle:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    outline: none;
}

.travel-nav__item.is-open .travel-nav__toggle span,
.travel-nav__item:focus-within .travel-nav__toggle span,
.travel-nav__item:hover .travel-nav__toggle span {
    transform: translateY(2px) rotate(225deg);
}

.travel-nav__flyout {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(420px, calc(100vw - 40px));
    padding: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 70px rgba(12, 31, 38, 0.24);
    color: var(--travel-ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.travel-nav__flyout::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.travel-nav__item.is-open .travel-nav__flyout,
.travel-nav__item:focus-within .travel-nav__flyout,
.travel-nav__item:hover .travel-nav__flyout {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.travel-nav__flyout-head {
    padding: 4px 4px 14px;
    border-bottom: 1px solid var(--travel-mist);
}

.travel-nav__flyout-head span {
    display: block;
    color: var(--travel-teal);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.travel-nav__flyout-head p {
    margin: 8px 0 0;
    color: #4c5a5d;
    font-size: 0.9rem;
    line-height: 1.55;
}

.travel-nav__flyout-list {
    display: grid;
    gap: 6px;
    padding: 12px 0;
}

.travel-nav__flyout-link {
    display: block;
    padding: 12px;
    color: var(--travel-ink);
    text-decoration: none;
}

.travel-nav__flyout-link:hover,
.travel-nav__flyout-link:focus-visible {
    background: var(--travel-cloud);
    outline: none;
}

.travel-nav__flyout-link strong {
    display: block;
    color: var(--travel-forest);
    font-size: 0.96rem;
    line-height: 1.25;
}

.travel-nav__flyout-link span {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #5f6f73;
    font-size: 0.82rem;
    line-height: 1.45;
}

.travel-nav__flyout-all {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    color: var(--travel-coral);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.travel-nav__flyout-all:hover,
.travel-nav__flyout-all:focus-visible {
    color: var(--travel-teal);
    outline: none;
}

.travel-hero {
    position: relative;
    min-height: 82vh;
    display: grid;
    align-items: end;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.travel-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(15, 27, 31, 0.15), rgba(10, 19, 22, 0.72)),
        linear-gradient(90deg, rgba(10, 19, 22, 0.74), rgba(10, 19, 22, 0.08));
}

.travel-hero__content {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 96px 0 76px;
    color: #ffffff;
}

.travel-kicker,
.travel-section-heading p {
    margin: 0 0 16px;
    color: var(--travel-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.travel-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(3.2rem, 9vw, 7.4rem);
    line-height: 0.92;
    letter-spacing: 0;
}

.travel-hero__subtitle {
    max-width: 680px;
    margin: 26px 0 0;
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.travel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.travel-meta span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 700;
}

.travel-intro,
.travel-story,
.travel-carousel-section,
.travel-sections {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.travel-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 44px;
    padding: 72px 0 38px;
    align-items: start;
}

.travel-intro__copy,
.travel-story {
    font-size: 1.08rem;
    line-height: 1.8;
}

.travel-intro__copy p,
.travel-story p {
    margin: 0 0 1.25em;
}

.travel-intro__panel {
    border-left: 5px solid var(--travel-coral);
    padding: 26px 28px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(24, 33, 38, 0.08);
}

.travel-intro__panel span {
    display: block;
    margin-bottom: 10px;
    color: var(--travel-teal);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.travel-intro__panel strong {
    display: block;
    color: var(--travel-forest);
    font-family: Newsreader, Georgia, serif;
    font-size: 1.7rem;
    line-height: 1.1;
}

.travel-carousel-section {
    padding: 56px 0 62px;
}

.travel-sections {
    padding: 42px 0 62px;
    scroll-margin-top: 96px;
}

.travel-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.travel-section-heading h2,
.travel-story h2 {
    margin: 0;
    color: var(--travel-forest);
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 0;
}

.travel-section-heading h2 {
    max-width: 760px;
}

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

.travel-feature {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(24, 33, 38, 0.08);
    scroll-margin-top: 104px;
}

.travel-feature__content,
.travel-feature__footer {
    width: 100%;
}

.travel-feature:nth-child(2) {
    border-top: 5px solid var(--travel-teal);
}

.travel-feature:nth-child(3) {
    border-top: 5px solid var(--travel-coral);
}

.travel-feature:nth-child(4) {
    border-top: 5px solid var(--travel-gold);
}

.travel-feature:first-child {
    border-top: 5px solid var(--travel-forest);
}

.travel-feature__label {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--travel-teal);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.travel-feature h3 {
    margin: 0;
    color: var(--travel-forest);
    font-family: Newsreader, Georgia, serif;
    font-size: 1.72rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.travel-feature h3 a {
    display: inline;
    min-height: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    white-space: normal;
}

.travel-feature h3 a:hover,
.travel-feature h3 a:focus-visible {
    color: var(--travel-teal);
}

.travel-feature p {
    margin: 14px 0 0;
    color: #4c5a5d;
    font-size: 0.98rem;
    line-height: 1.65;
}

.travel-feature__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
}

.travel-feature__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: #68777b;
    font-size: 0.78rem;
    font-weight: 700;
}

.travel-feature__meta span + span::before {
    content: "/";
    margin-right: 6px;
    color: var(--travel-mist);
}

.travel-feature a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 0;
    color: var(--travel-coral);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.travel-feature a:hover,
.travel-feature a:focus-visible {
    color: var(--travel-teal);
    outline: none;
}

.travel-carousel {
    position: relative;
}

.travel-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(72%, 880px);
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 6px 0 22px;
}

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

.travel-carousel__slide {
    margin: 0;
    aspect-ratio: 16 / 9;
    scroll-snap-align: start;
    overflow: hidden;
    background: var(--travel-mist);
    box-shadow: var(--travel-shadow);
}

.travel-carousel__slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.travel-carousel__button {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ffffff;
    color: var(--travel-teal);
    box-shadow: 0 10px 24px rgba(24, 33, 38, 0.22);
    cursor: pointer;
    transform: translateY(-50%);
}

.travel-carousel__button span {
    display: block;
    margin-top: -3px;
    font-size: 2.2rem;
    line-height: 1;
}

.travel-carousel__button--prev {
    left: -18px;
}

.travel-carousel__button--next {
    right: -18px;
}

.travel-story {
    max-width: 820px;
    padding: 22px 0 96px;
}

.travel-story img {
    width: 100%;
    height: auto;
    margin: 28px 0;
}

/* ─── Blog Article ─────────────────────────────────────────────────────────── */

.article-hero {
    position: relative;
    min-height: 62vh;
    display: grid;
    align-items: end;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.article-hero__content {
    width: min(820px, calc(100% - 40px));
    margin: 0 auto;
    padding: 96px 0 56px;
    color: #ffffff;
}

.article-hero__content h1 {
    max-width: 820px;
    margin: 0;
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 0;
}

.article-byline {
    border-bottom: 1px solid var(--travel-mist);
    background: #ffffff;
}

.article-byline__inner {
    width: min(820px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.article-byline__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--travel-forest);
}

.article-byline__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.article-byline__meta span {
    font-size: 0.85rem;
    color: #4c5a5d;
}

.article-byline__meta span + span::before {
    content: "·";
    margin-right: 8px;
    color: var(--travel-mist);
}

.article-byline__category {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--travel-mist);
    color: var(--travel-teal) !important;
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
}

.article-byline__category::before {
    display: none !important;
}

.article-body {
    width: min(820px, calc(100% - 40px));
    margin: 0 auto;
    padding: 56px 0 80px;
}

.article-intro {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--travel-mist);
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    line-height: 1.65;
    color: var(--travel-forest);
}

.article-intro p {
    margin: 0;
}

.article-content {
    font-size: 1.08rem;
    line-height: 1.82;
    color: var(--travel-ink);
}

.article-content p {
    margin: 0 0 1.4em;
}

.article-content h2 {
    margin: 2em 0 0.6em;
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.1;
    color: var(--travel-forest);
}

.article-content h3 {
    margin: 1.6em 0 0.5em;
    font-family: Newsreader, Georgia, serif;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--travel-forest);
}

.article-content img {
    width: 100%;
    height: auto;
    margin: 32px 0;
}

.article-content blockquote {
    margin: 36px 0;
    padding: 24px 28px;
    border-left: 5px solid var(--travel-coral);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(24, 33, 38, 0.07);
    font-family: Newsreader, Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--travel-forest);
}

.article-content blockquote p {
    margin: 0;
}

.article-footer {
    width: min(820px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 64px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--travel-teal);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.article-back:hover,
.article-back:focus-visible {
    color: var(--travel-coral);
    outline: none;
}

/* ─── Responsive: article ───────────────────────────────────────────────────── */

@media (max-width: 780px) {
    .article-hero__content,
    .article-byline__inner,
    .article-body,
    .article-footer {
        width: min(100% - 28px, 820px);
    }

    .article-byline__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 780px) {
    .travel-site-header {
        top: 10px;
        width: min(100% - 20px, 1120px);
        min-height: 56px;
        align-items: center;
        gap: 10px;
        padding: 8px 10px 8px 14px;
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(18, 33, 38, 0.76);
    }

    .travel-brand {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.08rem;
    }

    .travel-menu-toggle {
        min-width: 84px;
        min-height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        font: inherit;
        font-size: 0.82rem;
        font-weight: 800;
        cursor: pointer;
    }

    .travel-menu-toggle i,
    .travel-menu-toggle i::before,
    .travel-menu-toggle i::after {
        width: 14px;
        height: 2px;
        border-radius: 999px;
        display: block;
        background: currentColor;
        transition: transform 160ms ease, opacity 160ms ease;
    }

    .travel-menu-toggle i {
        position: relative;
    }

    .travel-menu-toggle i::before,
    .travel-menu-toggle i::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .travel-menu-toggle i::before {
        top: -5px;
    }

    .travel-menu-toggle i::after {
        top: 5px;
    }

    .travel-site-header.is-menu-open .travel-menu-toggle i {
        background: transparent;
    }

    .travel-site-header.is-menu-open .travel-menu-toggle i::before {
        transform: translateY(5px) rotate(45deg);
    }

    .travel-site-header.is-menu-open .travel-menu-toggle i::after {
        transform: translateY(-5px) rotate(-45deg);
    }

    .travel-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        max-height: min(calc(100vh - 92px), 620px);
        overflow: auto;
        display: none;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(18, 33, 38, 0.96);
        box-shadow: 0 22px 54px rgba(10, 19, 22, 0.34);
        backdrop-filter: blur(20px);
    }

    .travel-site-header.is-menu-open .travel-nav {
        display: grid;
        gap: 4px;
    }

    .travel-nav__item {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .travel-nav__item:last-child {
        border-bottom: 0;
    }

    .travel-nav__link {
        min-height: 48px;
        border-radius: 0;
        padding: 12px 10px;
        font-size: 0.94rem;
    }

    .travel-nav__link:hover,
    .travel-nav__link:focus-visible,
    .travel-nav__item.is-open .travel-nav__link,
    .travel-nav__item:focus-within .travel-nav__link,
    .travel-nav__item:hover .travel-nav__link,
    .travel-nav__item.is-active .travel-nav__link {
        background: transparent;
    }

    .travel-nav__toggle {
        width: 44px;
        height: 48px;
        margin-left: 0;
        border-radius: 0;
    }

    .travel-nav__flyout {
        position: static;
        grid-column: 1 / -1;
        width: 100%;
        max-height: none;
        overflow: visible;
        display: none;
        padding: 0 0 12px;
        background: transparent;
        box-shadow: none;
        color: #ffffff;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .travel-nav__flyout::before {
        display: none;
    }

    .travel-nav__item:focus-within .travel-nav__flyout,
    .travel-nav__item:hover .travel-nav__flyout {
        display: none;
    }

    .travel-nav__item.is-open .travel-nav__flyout {
        display: block;
    }

    .travel-nav__flyout-head {
        display: none;
    }

    .travel-nav__flyout-list {
        gap: 2px;
        padding: 2px 8px 8px;
    }

    .travel-nav__flyout-link {
        padding: 10px 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.06);
    }

    .travel-nav__flyout-link:hover,
    .travel-nav__flyout-link:focus-visible {
        background: rgba(255, 255, 255, 0.1);
    }

    .travel-nav__flyout-link strong {
        color: rgba(255, 255, 255, 0.94);
        font-size: 0.9rem;
    }

    .travel-nav__flyout-link span {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.68);
        font-size: 0.78rem;
    }

    .travel-nav__flyout-all {
        min-height: 38px;
        margin: 0 8px;
        padding: 8px 12px;
        color: var(--travel-gold);
    }

    .travel-hero {
        min-height: 74vh;
    }

    .travel-hero__content {
        width: min(100% - 28px, 1120px);
        padding: 96px 0 48px;
    }

    .travel-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        width: min(100% - 28px, 1120px);
        padding-top: 48px;
    }

    .travel-carousel-section,
    .travel-story,
    .travel-sections {
        width: min(100% - 28px, 1120px);
    }

    .travel-section-heading {
        display: block;
    }

    .travel-section-grid {
        grid-template-columns: 1fr;
    }

    .travel-feature {
        min-height: 0;
    }

    .travel-feature__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .travel-carousel__track {
        grid-auto-columns: 88%;
        gap: 14px;
    }

    .travel-carousel__button {
        width: 40px;
        height: 40px;
    }

    .travel-carousel__button--prev {
        left: 8px;
    }

    .travel-carousel__button--next {
        right: 8px;
    }
}
