: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-account-link,
.travel-account-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.travel-account-link {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    max-width: 180px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    padding: 2px 2px 2px 16px;
    line-height: 1.1;
}

.travel-account-link.is-signed-in {
    border-left-color: rgba(224, 168, 75, 0.6);
}

.travel-account-link span {
    color: var(--travel-gold);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.travel-account-link.is-signed-in span {
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.95);
    color: #ffffff;
    padding: 3px 8px;
}

.travel-account-link strong {
    max-width: 100%;
    overflow: hidden;
    color: #ffffff;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.travel-account-link:hover,
.travel-account-link:focus-visible,
.travel-account-nav a:hover,
.travel-account-nav a:focus-visible {
    color: #ffffff;
    outline: none;
}

.travel-account-link:hover strong,
.travel-account-link:focus-visible strong {
    color: var(--travel-gold);
}

.travel-account-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.travel-account-nav a {
    padding: 8px 12px;
}

.account-profile {
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 128px 0 72px;
}

.account-profile__inner {
    width: min(820px, calc(100% - 40px));
    margin: 0 auto;
}

.account-profile h1 {
    max-width: 720px;
    margin: 0 0 28px;
    color: var(--travel-forest);
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(2.35rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.account-profile__signed-in {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 6px;
    border: 1px solid rgba(15, 118, 110, 0.22);
    background: rgba(15, 118, 110, 0.1);
    padding: 10px 14px;
    color: var(--travel-forest);
    font-weight: 800;
}

.account-profile__signed-in span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--travel-teal);
    box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.14);
}

.account-profile__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 22px;
    padding: 26px;
    border-left: 5px solid var(--travel-coral);
    background:
        linear-gradient(135deg, rgba(232, 111, 81, 0.12), rgba(15, 118, 110, 0.08)),
        #ffffff;
    box-shadow: 0 16px 42px rgba(24, 33, 38, 0.08);
}

.account-profile__panel span,
.account-profile__status span {
    color: var(--travel-teal);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.account-profile__panel strong {
    display: block;
    margin-top: 8px;
    color: var(--travel-forest);
    font-family: Newsreader, Georgia, serif;
    font-size: 2rem;
    line-height: 1.05;
}

.account-profile__panel p {
    margin: 10px 0 0;
    color: rgba(24, 33, 38, 0.72);
    line-height: 1.65;
}

.account-profile__status {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.account-profile__status span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--travel-mist);
    border-radius: 999px;
    padding: 7px 12px;
    background: #ffffff;
    color: var(--travel-forest);
}

.account-profile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.account-profile__actions a,
.account-profile__actions button {
    min-height: 44px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--travel-teal);
    color: #ffffff;
    padding: 11px 18px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.2);
}

.account-profile__actions button {
    background: var(--travel-ink);
}

.account-profile__actions a:hover,
.account-profile__actions a:focus-visible,
.account-profile__actions button:hover,
.account-profile__actions button:focus-visible {
    background: var(--travel-coral);
    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-hero__credit {
    position: absolute;
    right: 16px;
    bottom: 12px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
}

.travel-hero__credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.travel-hero__credit a:hover,
.travel-hero__credit a:focus-visible {
    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-intro__panel p {
    margin: 14px 0 0;
}

.travel-intro__panel a {
    color: var(--travel-coral);
    font-weight: 800;
    text-decoration: none;
}

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

.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 {
    position: relative;
    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;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Extends a card's one real link (.travel-feature__stretched-link) to cover the
   whole card, so the entire card is clickable instead of just the link text --
   the standard "stretched link" pattern. Scoped to cards that opt in via that
   class so guide/article cards (whose h3 title is already its own link) are
   unaffected. */
.travel-feature:has(.travel-feature__stretched-link) {
    cursor: pointer;
}

.travel-feature:has(.travel-feature__stretched-link):hover,
.travel-feature:has(.travel-feature__stretched-link):focus-within {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(24, 33, 38, 0.14);
}

.travel-feature__stretched-link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: pointer;
}

.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;
}

.article-comments {
    width: min(820px, calc(100% - 40px));
    margin: -32px auto 56px;
    padding: 36px 0 0;
    border-top: 1px solid var(--travel-mist);
    scroll-margin-top: 104px;
}

.article-comments__heading {
    margin-bottom: 24px;
}

.article-comments__heading p,
.comment-moderation__heading p {
    margin: 0 0 8px;
    color: var(--travel-coral);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.article-comments__heading h2,
.comment-moderation__heading h1 {
    margin: 0;
    color: var(--travel-forest);
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.1;
}

.article-comments__notice,
.article-comments__empty {
    margin: 0 0 24px;
    padding: 16px 18px;
    border-left: 4px solid var(--travel-teal);
    background: #ffffff;
    color: var(--travel-ink);
    line-height: 1.6;
    box-shadow: 0 10px 26px rgba(24, 33, 38, 0.06);
}

.article-comments__notice--error {
    border-left-color: var(--travel-coral);
}

.article-comments__list {
    display: grid;
    gap: 16px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.article-comment {
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(219, 233, 229, 0.9);
    box-shadow: 0 10px 26px rgba(24, 33, 38, 0.06);
}

.article-comment__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 12px;
}

.article-comment__meta strong {
    color: var(--travel-forest);
}

.article-comment__meta time {
    color: rgba(24, 33, 38, 0.62);
    font-size: 0.88rem;
}

.article-comment p {
    margin: 0 0 1em;
    line-height: 1.7;
}

.article-comment p:last-child {
    margin-bottom: 0;
}

.article-comments__form {
    display: grid;
    gap: 18px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(219, 233, 229, 0.9);
    box-shadow: 0 16px 38px rgba(24, 33, 38, 0.08);
}

.article-comments__form h3 {
    margin: 0;
    color: var(--travel-forest);
    font-family: Newsreader, Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.1;
}

.article-comments__auth {
    display: grid;
    gap: 20px;
}

.article-comments__auth-heading {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-left: 5px solid var(--travel-coral);
    background:
        linear-gradient(135deg, rgba(232, 111, 81, 0.12), rgba(15, 118, 110, 0.08)),
        #ffffff;
    box-shadow: 0 16px 38px rgba(24, 33, 38, 0.08);
}

.article-comments__auth-heading h3 {
    margin: 0;
    color: var(--travel-forest);
    font-family: Newsreader, Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.1;
}

.article-comments__auth-heading p {
    margin: 0;
    color: rgba(24, 33, 38, 0.72);
    line-height: 1.65;
}

.article-comments__auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.article-comments__remember {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px !important;
    font-weight: 700 !important;
}

.article-comments__remember input {
    width: 18px !important;
    min-height: 18px !important;
    margin: 0;
    accent-color: var(--travel-teal);
}

.article-comments__google {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(219, 233, 229, 0.9);
    box-shadow: 0 10px 26px rgba(24, 33, 38, 0.06);
}

.article-comments__google a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    background: var(--travel-ink);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.article-comments__google a:hover,
.article-comments__google a:focus-visible {
    background: var(--travel-coral);
    outline: none;
}

.article-comments__google span {
    display: block;
    color: rgba(24, 33, 38, 0.68);
    font-size: 0.92rem;
    line-height: 1.55;
}

.article-comments__member {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid rgba(219, 233, 229, 0.9);
    box-shadow: 0 10px 26px rgba(24, 33, 38, 0.06);
}

.article-comments__member p {
    margin: 0;
    color: rgba(24, 33, 38, 0.72);
}

.article-comments__member button {
    min-height: 38px;
    border: 0;
    background: var(--travel-ink);
    color: #ffffff;
    padding: 8px 12px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.article-comments__member button:hover,
.article-comments__member button:focus-visible {
    background: var(--travel-coral);
    outline: none;
}

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

.article-comments__form label {
    display: grid;
    gap: 8px;
    color: var(--travel-forest);
    font-weight: 800;
}

.article-comments__form input,
.article-comments__form textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--travel-mist);
    border-radius: 6px;
    background: var(--travel-cloud);
    padding: 13px 14px;
    color: var(--travel-ink);
    font: inherit;
}

.article-comments__form input {
    min-height: 48px;
}

.article-comments__form textarea {
    min-height: 150px;
    resize: vertical;
}

.article-comments__form input:focus,
.article-comments__form textarea:focus {
    border-color: var(--travel-teal);
    outline: 3px solid rgba(15, 118, 110, 0.16);
}

.article-comments__trap {
    position: fixed !important;
    inset: auto auto 0 -100vw !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.article-comments__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.article-comments__actions p {
    margin: 0;
    color: rgba(24, 33, 38, 0.68);
    font-size: 0.92rem;
}

.article-comments__actions button,
.comment-moderation__item button {
    min-height: 44px;
    border: 0;
    background: var(--travel-teal);
    color: #ffffff;
    padding: 11px 18px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.2);
}

.article-comments__actions button:hover,
.article-comments__actions button:focus-visible,
.comment-moderation__item button:hover,
.comment-moderation__item button:focus-visible {
    background: var(--travel-coral);
    outline: none;
}

.comment-moderation {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
    padding: 140px 0 72px;
}

.comment-moderation__heading {
    margin-bottom: 40px;
}

.comment-moderation__section {
    margin-top: 36px;
}

.comment-moderation__section h2 {
    margin: 0 0 18px;
    color: var(--travel-forest);
    font-family: Newsreader, Georgia, serif;
    font-size: 1.8rem;
}

.comment-moderation__list {
    display: grid;
    gap: 16px;
}

.comment-moderation__item {
    display: grid;
    gap: 14px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(219, 233, 229, 0.9);
}

.comment-moderation__item div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: rgba(24, 33, 38, 0.68);
    font-size: 0.9rem;
}

.comment-moderation__item strong {
    color: var(--travel-forest);
}

.comment-moderation__item p {
    margin: 0;
    line-height: 1.7;
}

.comment-moderation__item form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

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

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

    .article-comments__fields {
        grid-template-columns: 1fr;
    }

    .article-comments__auth-grid {
        grid-template-columns: 1fr;
    }

    .article-comments {
        scroll-margin-top: 88px;
    }

    .article-comments__heading {
        margin-bottom: 18px;
    }

    .article-comments__auth-heading,
    .article-comments__form {
        padding: 18px;
    }

    .article-comments__form h3,
    .article-comments__auth-heading h3 {
        font-size: 1.34rem;
    }

    .article-comments__form label {
        gap: 7px;
    }

    .article-comments__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .article-comments__actions button,
    .article-comments__google a,
    .article-comments__member button {
        width: 100%;
    }

    .article-comments__google {
        align-items: stretch;
    }
}

@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-account-link {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
        min-height: 42px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
        padding: 9px 2px 0;
    }

    .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-account-nav {
        display: none;
    }

    .account-profile {
        align-items: start;
        padding: 132px 0 56px;
    }

    .account-profile__inner {
        width: min(100% - 28px, 820px);
    }

    .account-profile__panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
    }

    .account-profile__panel strong {
        font-size: 1.62rem;
    }

    .account-profile__status {
        justify-items: start;
    }

    .account-profile__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .account-profile__actions a,
    .account-profile__actions button,
    .account-profile__actions form {
        width: 100%;
    }

    .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;
    }
}

.travel-site-footer {
    background: var(--travel-forest);
    color: rgba(255, 255, 255, 0.82);
    margin-top: 64px;
}

.travel-site-footer__inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: 56px 0 40px;
}

.travel-site-footer__brand {
    display: grid;
    gap: 10px;
    max-width: 360px;
}

.travel-site-footer__brand-link {
    color: #ffffff;
    font-family: Newsreader, Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

.travel-site-footer__tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.6;
}

.travel-site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.travel-site-footer__nav a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
}

.travel-site-footer__nav a:hover,
.travel-site-footer__nav a:focus-visible {
    color: var(--travel-gold);
    outline: none;
}

.travel-site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.travel-site-footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
}

.travel-site-footer__social-link:hover,
.travel-site-footer__social-link:focus-visible {
    border-color: var(--travel-coral);
    color: #ffffff;
    outline: none;
}

.travel-site-footer__social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.travel-site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.travel-site-footer__bottom p {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
}

@media (max-width: 780px) {
    .travel-site-footer__inner {
        flex-direction: column;
        gap: 24px;
        padding: 40px 0 32px;
    }
}
