:root {
    --bg: #050805;
    --bg-soft: #081208;
    --bg-panel: #0a140d;
    --text: #eef6ec;
    --muted: rgba(238, 246, 236, 0.66);
    --faint: rgba(238, 246, 236, 0.38);
    --line: rgba(255, 255, 255, 0.12);
    --green: #10b981;
    --green-soft: #7ddfba;
    --green-strong: #059669;
    --green-dark: #063d2b;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

/* Amazonas Jungle Tours redesign foundation */
.nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
    color: rgba(238, 246, 236, 0.86);
    font-size: 0.95rem;
    font-weight: 700;
}

.nav a:hover {
    color: var(--green);
}

.nav-featured {
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--green);
    color: #02120b !important;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.18);
}

.nav-featured:hover {
    background: var(--green-soft);
    color: #02120b !important;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(16, 185, 129, 0.48);
    border-radius: 999px;
    background: rgba(5, 8, 5, 0.78);
    color: var(--text);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 3px;
    margin: 3.5px 0;
    border-radius: 999px;
    background: var(--green-soft);
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(860px, calc(100% - 32px));
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(16px, 4vw, 40px);
    background: linear-gradient(180deg, rgba(5, 8, 5, 0.88), rgba(5, 8, 5, 0));
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 50%;
    color: var(--green);
    font-size: 0.72rem;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.header-note {
    max-width: 270px;
    margin: 0 auto 0 18px;
    color: rgba(238, 246, 236, 0.72);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.45;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 34px);
    color: rgba(238, 246, 236, 0.78);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: var(--green);
}

.nav-cta {
    padding: 10px 18px;
    border: 1px solid rgba(16, 185, 129, 0.36);
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
    gap: clamp(32px, 6vw, 82px);
    align-items: center;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 150px 0 72px;
    overflow: hidden;
    text-align: left;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
    animation: heroReveal 1.1s ease both;
}

.hero-overlay {
    background:
        linear-gradient(0deg, var(--bg), rgba(5, 8, 5, 0.08) 42%, rgba(5, 8, 5, 0.5)),
        radial-gradient(circle at center, rgba(16, 185, 129, 0.08), transparent 46%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 32px));
    padding-top: 72px;
    animation: riseIn 0.9s ease 0.25s both;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 26px;
    font-size: clamp(2.5rem, 5.2vw, 4.9rem);
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy {
    width: min(650px, 100%);
    margin: 0;
    color: rgba(238, 246, 236, 0.76);
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-helper {
    margin: 16px auto 0;
    max-width: 620px;
    color: rgba(244, 248, 242, 0.82);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-helper a {
    color: #f2d173;
    font-weight: 700;
    text-decoration: none;
}

.hero-helper a:hover,
.hero-helper a:focus-visible {
    text-decoration: underline;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0 26px;
    cursor: pointer;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: var(--green-strong);
    color: white;
}

.button-primary:hover {
    background: var(--green);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.button.primary {
    background: var(--green-strong);
    color: white;
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.hero-media {
    position: relative;
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.compact-hero {
    min-height: 78vh;
}

.section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.section-heading {
    max-width: 780px;
}

.section-heading h2,
.page-intro h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
}

.section-heading h2 span,
.content-narrow h2 span,
.content-narrow h3 span,
.expedition-group__intro h3 span {
    color: var(--green-soft);
}

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

.tour-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.tour-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

.tag {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card-body h2,
.card-body h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    line-height: 1.1;
}

.card-body p,
.section p,
.feature-list p {
    color: var(--muted);
    line-height: 1.7;
}

.card-body strong {
    display: block;
    margin: 20px 0 14px;
    color: var(--text);
}

.text-link {
    color: var(--green);
    font-weight: 800;
}

.page-shell.tours-page-shell {
    padding-top: 0 !important;
    overflow-x: clip;
}

.tours-overview-hero {
    position: relative;
    overflow: hidden;
    min-height: min(760px, 88vh);
    display: grid;
    align-items: center;
    margin-top: 0;
    padding: clamp(28px, 4vw, 44px) 0 clamp(58px, 7vw, 92px);
    background: #030603;
}

.tours-overview-hero__bg,
.tours-overview-hero__overlay {
    position: absolute;
    inset: 0;
}

.tours-overview-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.tours-overview-hero__overlay {
    background:
        linear-gradient(0deg, rgba(2, 14, 8, 0.92), rgba(2, 14, 8, 0.26) 40%, rgba(2, 14, 8, 0.8)),
        radial-gradient(circle at 50% 36%, rgba(2, 14, 8, 0.12), rgba(2, 14, 8, 0.78) 74%);
}

.tours-overview-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: clamp(120px, 18vw, 210px);
    background: linear-gradient(180deg, rgba(3, 6, 3, 0) 0%, rgba(3, 6, 3, 0.86) 62%, #030603 100%);
    pointer-events: none;
}

.tours-overview-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tours-overview-hero__content h1 {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    line-height: 0.94;
    text-transform: uppercase;
}

.tours-overview-hero__content h1 span {
    color: var(--green-soft);
}

.tours-overview-hero__lead {
    max-width: 860px;
    margin: 22px auto 0;
    color: rgba(238, 246, 236, 0.84);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.78;
}

.tours-overview-hero__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.tours-overview-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--cream);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tours-overview-hero__actions {
    justify-content: center;
    margin-top: 28px;
}

.tours-start-section {
    padding-top: clamp(28px, 5vw, 42px);
}

.tours-compare-hero {
    padding-top: clamp(28px, 4vw, 44px);
    padding-bottom: clamp(8px, 1.6vw, 14px);
}

.tours-compare-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 370px);
    gap: clamp(24px, 5vw, 42px);
    align-items: start;
}

.tours-compare-hero__lead {
    max-width: 780px;
    margin-bottom: 22px;
}

.tours-compare-hero h2 span {
    color: var(--green-soft);
}

.tours-compare-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tours-compare-hero__chips span,
.compare-tour-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--cream);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tours-compare-spotlight {
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.18), transparent 38%),
        rgba(255, 255, 255, 0.04);
}

.tours-compare-spotlight h2 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 0.96;
    text-transform: uppercase;
}

.tours-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tours-compare-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tours-compare-cards-section {
    padding-top: 0;
}

.compare-tour-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.compare-tour-card--featured {
    border-color: rgba(16, 185, 129, 0.3);
    background:
        linear-gradient(180deg, rgba(16, 185, 129, 0.08), transparent 24%),
        rgba(255, 255, 255, 0.05);
}

.compare-tour-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    background: rgba(6, 18, 11, 0.9);
}

.compare-tour-card > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.compare-tour-card__body {
    display: grid;
    gap: 18px;
    padding: 26px;
}

.compare-tour-card__body h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2vw, 2.35rem);
    line-height: 0.96;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.compare-tour-card__body > p:not(.tag) {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.compare-tour-card__meta {
    display: grid;
    gap: 6px;
}

.compare-tour-card__meta strong {
    color: var(--text);
    font-size: 1.05rem;
}

.compare-tour-card__meta span {
    color: var(--faint);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.compare-tour-card__highlights span {
    min-height: 34px;
    font-size: 0.74rem;
}

.compare-tour-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.compare-tour-card__actions .button {
    flex: 1 1 190px;
    justify-content: center;
}

.tours-compare-table-section {
    padding-top: clamp(18px, 3vw, 26px);
}

.tours-compare-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.tours-compare-table-wrap--same-day {
    margin-top: 24px;
}

.tours-compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.tours-compare-table--two {
    min-width: 640px;
}

.tours-compare-table th,
.tours-compare-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.tours-compare-table thead th {
    color: var(--cream);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.025);
}

.tours-compare-table tbody th {
    color: var(--green-soft);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tours-compare-table tbody td {
    color: var(--muted);
    line-height: 1.65;
}

.tours-compare-table tbody tr:last-child th,
.tours-compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.tours-compare-guidance .tour-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tours-compare-guidance article p.eyebrow {
    margin-bottom: 8px;
}

.tours-start-guidance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
}

.split h2 {
    max-width: 620px;
    font-size: clamp(2rem, 3.6vw, 3.6rem);
    line-height: 1;
    text-transform: uppercase;
}

.feature-list {
    display: grid;
    gap: 14px;
}

.feature-list p,
.faq-list details {
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

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

.difference-carousel-shell {
    position: relative;
}

.difference-carousel-hint {
    display: none;
}

.difference-card {
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.difference-card h3 {
    margin-bottom: 14px;
    color: var(--green-soft);
    font-size: 1.05rem;
    line-height: 1.2;
}

.difference-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.difference-card:hover {
    border-color: rgba(16, 185, 129, 0.38);
    background: rgba(16, 185, 129, 0.06);
}

.content-section {
    padding-top: clamp(42px, 8vw, 92px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.content-narrow {
    width: min(940px, calc(100% - 40px));
}

.content-narrow h2 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.content-narrow h3 {
    margin: 44px 0 14px;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    line-height: 1.15;
}

.content-narrow p,
.content-narrow li {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.content-narrow ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 22px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 850;
}

.faq-list p {
    margin: 14px 0 0;
}

.page-intro {
    padding-top: 150px;
    padding-bottom: 60px;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 64px 0;
    border-top: 1px solid var(--line);
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #020602;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    gap: 24px;
    align-items: center;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 128px;
}

.site-footer p {
    margin: 0;
    color: var(--faint);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    color: rgba(238, 246, 236, 0.52);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--green);
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        min-height: 66px;
        padding-block: 8px;
        background: rgba(5, 8, 5, 0.94);
    }

    .brand {
        font-size: 0.88rem;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .nav {
        position: fixed;
        inset: 68px 16px auto;
        display: grid;
        gap: 4px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(3, 8, 4, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav a {
        padding: 14px 12px;
        border-radius: 6px;
    }

    .nav a:hover {
        background: rgba(16, 185, 129, 0.08);
    }

    .nav .nav-featured {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 16px;
        background: linear-gradient(135deg, var(--green), var(--green-soft));
        color: #02120b !important;
        font-weight: 950;
        box-shadow: 0 14px 34px rgba(16, 185, 129, 0.18);
    }

    .nav .nav-featured::after {
        content: "Most viewed";
        font-size: 0.64rem;
        font-weight: 950;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.78;
    }

    .nav .nav-cta {
        justify-content: center;
        margin-top: 8px;
        border-radius: 999px;
        background: var(--green-strong);
        color: white;
        text-align: center;
    }

    .menu-toggle {
        display: grid;
        position: relative;
        z-index: 30;
    }

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

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .hero,
    .split,
    .cards-grid,
    .difference-grid,
    .footer {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 60px;
    }

    .hero-media,
    .hero-media img {
        min-height: 340px;
    }

    .split h2 {
        font-size: clamp(2rem, 10vw, 3.4rem);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 34px 0;
    }

    .site-footer p {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

.hero.hero-immersive {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.hero.hero-immersive .hero-content {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 32px));
    padding-top: 72px;
    animation: riseIn 0.9s ease 0.25s both;
}

.hero.hero-immersive .hero-copy {
    width: min(660px, 100%);
    margin: 0 auto 22px;
}

.hero.hero-immersive .hero-actions {
    justify-content: center;
}

.hero.hero-immersive .hero-helper {
    text-align: center;
}

.hero.hero-immersive h1 {
    font-size: clamp(3.1rem, 8.2vw, 6.8rem);
    line-height: 0.9;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 30px;
}

.hero-trust span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(5, 8, 5, 0.34);
    color: rgba(238, 246, 236, 0.82);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .hero.hero-immersive h1 {
        font-size: clamp(2.5rem, 14vw, 4.8rem);
    }

    .hero.hero-immersive {
        min-height: 88vh;
    }

    .hero-trust {
        gap: 8px;
    }

    .hero-trust span {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.64rem;
    }
}

.stats {
    padding: 72px 0;
    background: #061006;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text);
    font-size: clamp(2.7rem, 5vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.stat-item span {
    color: var(--faint);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.section {
    padding: clamp(64px, 9vw, 104px) 0;
}

.faq-section {
    padding-top: clamp(48px, 7vw, 78px);
}

.section-muted {
    background: rgba(6, 61, 43, 0.2);
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: 34px;
    align-items: end;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    line-height: 0.94;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.feature-copy > p,
.quote-section p {
    color: var(--muted);
    line-height: 1.75;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tour-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: var(--bg-panel);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

a.tour-card {
    display: flex;
    color: inherit;
    text-decoration: none;
}

.tour-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.28);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.tour-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 400ms ease;
    color: inherit;
}

.tour-card:hover img {
    transform: scale(1.04);
}

.tour-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--cream);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tour-content {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
    flex: 1;
}

.tour-content h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.tour-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.tour-card__price {
    display: block;
    color: var(--cream);
    font-size: 1.08rem;
    font-weight: 950;
}

.tour-card__schedule {
    display: block;
    color: rgba(238, 246, 236, 0.54);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.tour-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    margin-top: auto;
    padding: 0 20px;
    border: 1px solid rgba(16, 185, 129, 0.36);
    border-radius: 999px;
    color: var(--cream);
    background: rgba(16, 185, 129, 0.1);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tour-card__link::after {
    content: " >";
    color: var(--green-soft);
    font-size: 0.92rem;
}

.tour-card:hover .tour-card__link {
    background: var(--green);
    color: #031008;
}

.tour-card:hover .tour-card__link::after {
    color: #031008;
}

.expedition-stack {
    display: grid;
    gap: 28px;
}

.expedition-group {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(22px, 4vw, 34px);
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.08), transparent 34%),
        rgba(255, 255, 255, 0.025);
}

.expedition-group::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, black, transparent 72%);
}

.expedition-group__intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 28px;
    align-items: end;
    margin-bottom: 26px;
}

.expedition-group__intro h3 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.8rem, 3.4vw, 3.4rem);
    line-height: 1;
    text-transform: uppercase;
}

.expedition-group__intro p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

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

.expedition-group .tour-card {
    min-height: 100%;
    border-radius: 24px;
}

.expedition-group .tour-content h3 {
    margin-bottom: 0;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.feature-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(42px, 8vw, 88px);
    align-items: center;
}

.feature-media {
    overflow: hidden;
    border-radius: 32px;
    aspect-ratio: 4 / 5;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-copy h2 {
    margin-bottom: 28px;
}

.benefit-list {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.benefit-list article {
    display: flex;
    gap: 16px;
}

.benefit-list span {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.28);
}

.benefit-list h3 {
    margin-bottom: 6px;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.benefit-list p {
    margin-bottom: 0;
    color: var(--faint);
    line-height: 1.6;
}

.quote-section {
    padding: clamp(86px, 12vw, 132px) 0;
    text-align: center;
}

blockquote {
    margin: 0 0 34px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-style: italic;
    line-height: 1.12;
}

.quote-label {
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.contact-section {
    padding: clamp(86px, 12vw, 132px) 0;
    background: var(--bg-soft);
}

.contact-grid {
    align-items: start;
}

.contact-grid h2 {
    margin-bottom: 44px;
}

.contact-list {
    display: grid;
    gap: 24px;
}

.contact-list p {
    margin: 0;
    font-weight: 800;
}

.contact-list span {
    display: block;
    margin-bottom: 6px;
    color: var(--faint);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-form {
    display: grid;
    gap: 24px;
    padding: clamp(24px, 5vw, 42px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

label {
    display: grid;
    gap: 9px;
    color: rgba(238, 246, 236, 0.55);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    letter-spacing: 0;
    text-transform: none;
}

input,
select {
    height: 42px;
}

textarea {
    resize: vertical;
    min-height: 110px;
}

select option {
    background: var(--bg-soft);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
}

.site-footer {
    padding: 46px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.page-shell {
    padding-top: 82px;
}

.tour-page-shell {
    padding-top: 0;
    overflow-x: clip;
}

.back-link {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.breadcrumbs {
    margin-bottom: 22px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li {
    color: var(--faint);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.breadcrumbs li + li::before {
    margin-right: 8px;
    color: rgba(125, 223, 186, 0.55);
    content: "/";
}

.breadcrumbs a {
    color: var(--green-soft);
}

.breadcrumbs a:hover {
    color: var(--green);
}

.tour-detail-hero {
    position: relative;
    overflow: hidden;
    overflow-x: clip;
    padding: clamp(64px, 10vw, 118px) 0;
    background: radial-gradient(circle at 75% 20%, rgba(16, 185, 129, 0.16), transparent 34%), #030603;
}

.tour-detail-hero--image {
    min-height: min(760px, 86vh);
    display: grid;
    align-items: center;
    padding: clamp(92px, 11vw, 132px) 0 clamp(54px, 7vw, 88px);
}

.tour-detail-hero--image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: clamp(120px, 18vw, 210px);
    background: linear-gradient(180deg, rgba(3, 6, 3, 0) 0%, rgba(3, 6, 3, 0.86) 62%, #030603 100%);
    pointer-events: none;
    z-index: 1;
}

.tour-detail-hero-bg,
.tour-detail-hero-overlay {
    position: absolute;
    inset: 0;
}

.tour-detail-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    animation: tourHeroImageDrift 14s ease-out both;
}

.tour-detail-hero-overlay {
    background:
        linear-gradient(0deg, rgba(2, 14, 8, 0.92), rgba(2, 14, 8, 0.18) 42%, rgba(2, 14, 8, 0.78)),
        radial-gradient(circle at 50% 45%, rgba(2, 14, 8, 0.18), rgba(2, 14, 8, 0.74) 70%);
}

.tour-detail-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(260px, 0.55fr);
    gap: clamp(36px, 7vw, 82px);
    align-items: center;
}

.tour-detail-grid > *,
.detail-layout > *,
.detail-main > *,
.media-panel > *,
.tour-media-strip > *,
.tour-info-grid > *,
.packing-grid > * {
    min-width: 0;
}

.tour-detail-hero--image .tour-detail-grid {
    grid-template-columns: minmax(0, 980px);
    justify-content: center;
    text-align: center;
}

.tour-detail-hero--image .breadcrumbs ol,
.tour-detail-hero--image .hero-actions,
.tour-detail-hero--image .tour-hero-trust {
    justify-content: center;
}

.tour-detail-hero--image .breadcrumbs {
    animation: tourHeroContentIn 0.72s ease 0.05s both;
}

.tour-detail-hero--image .eyebrow {
    animation: tourHeroContentIn 0.72s ease 0.14s both;
}

.tour-detail-hero--image .tour-detail-copy h1 {
    animation: tourHeroContentIn 0.82s ease 0.22s both;
}

.tour-detail-hero--image .tour-detail-copy p:not(.eyebrow) {
    animation: tourHeroContentIn 0.82s ease 0.34s both;
}

.tour-detail-hero--image .tour-hero-trust {
    animation: tourHeroContentIn 0.72s ease 0.44s both;
}

.tour-detail-hero--image .hero-actions {
    animation: tourHeroContentIn 0.72s ease 0.54s both;
}

.tour-detail-copy h1,
.blog-hero h1,
.blog-article h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.tour-detail-hero--image .tour-detail-copy h1 {
    max-width: 940px;
    margin-inline: auto;
    font-size: clamp(3.2rem, 7.2vw, 6.1rem);
}

.tour-detail-copy p:not(.eyebrow),
.blog-hero p,
.blog-article .lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.tour-detail-hero--image .tour-detail-copy p:not(.eyebrow) {
    max-width: 690px;
    margin-inline: auto;
    color: rgba(238, 246, 236, 0.84);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.tour-hero-trust {
    margin-top: 22px;
    margin-bottom: 26px;
    overflow-x: clip;
}

.tour-detail-image {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
}

.tour-detail-image img,
.media-panel img,
.article-image img,
.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compact-section {
    padding-top: 70px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 28px;
}

.tour-mobile-only {
    display: none;
}

.content-panel,
.booking-card,
.blog-card,
.article-cta {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.045);
}

.content-panel {
    padding: clamp(24px, 5vw, 42px);
    overflow-x: clip;
}

.content-panel h2,
.article-body h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 0.96;
}

.content-panel p,
.timeline-item p,
.article-body p {
    color: var(--muted);
    line-height: 1.72;
}

.tour-highlights-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-highlights-list span {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 38px;
    padding: 9px 13px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--cream);
    font-size: 0.82rem;
    font-weight: 850;
}

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

.season-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.2);
}

.season-card h3 {
    margin-bottom: 14px;
    color: var(--green-soft);
    font-size: 1.12rem;
}

.season-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.55;
}

.season-date {
    margin: 0 0 8px;
    color: var(--faint);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.media-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    align-items: center;
}

.media-panel img {
    border-radius: 20px;
    aspect-ratio: 1;
}

.panel-lead {
    max-width: 820px;
    margin-bottom: 24px;
}

.tour-media-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.tour-media-strip figure {
    position: relative;
    overflow: hidden;
    min-height: 184px;
    margin: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.tour-media-strip img {
    width: 100%;
    height: 100%;
    min-height: 184px;
    object-fit: cover;
}

.tour-media-strip figure::after {
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent);
    content: "";
}

.tour-media-strip figcaption {
    position: absolute;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 1;
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-info-grid,
.packing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.tour-info-grid article {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.18);
}

.tour-info-grid h3,
.packing-list li::marker {
    color: var(--green-soft);
}

.tour-info-grid h3 {
    margin-bottom: 10px;
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.packing-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.55;
}

.packing-note {
    margin: 22px 0 0;
    padding: 16px 18px;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 18px;
    background: rgba(16, 185, 129, 0.07);
}

.tour-faq-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.tour-faq-list details {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
}

.tour-faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--cream);
    font-weight: 900;
}

.tour-faq-list p {
    margin: 0;
    padding: 0 20px 20px;
}

.itinerary-list {
    display: grid;
    gap: 26px;
    margin-top: 30px;
}

.itinerary-intro {
    max-width: 720px;
    margin-bottom: 24px;
}

.itinerary-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
}

.itinerary-tab {
    min-height: 42px;
    min-width: 0;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.itinerary-tab.is-active {
    background: var(--green);
    color: #02120b;
}

.itinerary-season {
    display: none;
}

.itinerary-season.is-active {
    display: block;
}

.itinerary-season-header {
    padding: 22px;
    border: 1px solid rgba(16, 185, 129, 0.24);
    border-radius: 22px;
    background: rgba(16, 185, 129, 0.07);
}

.itinerary-season-header h3 {
    margin-bottom: 8px;
    color: var(--green-soft);
    font-size: 1.2rem;
}

.itinerary-season-header p {
    margin: 0;
}

.itinerary-day {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.itinerary-day-header {
    display: flex;
    gap: 18px;
    align-items: start;
    margin-bottom: 24px;
}

.itinerary-day-header > span {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.14);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.itinerary-day h3 {
    margin-bottom: 4px;
    font-size: 1.35rem;
    text-transform: uppercase;
}

.itinerary-day-header p {
    margin: 0;
    color: var(--faint);
}

.timeline {
    display: grid;
    gap: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(16, 185, 129, 0.28);
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    position: absolute;
    top: 4px;
    left: -27px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--green);
    border-radius: 50%;
    background: var(--bg);
    content: "";
}

.timeline-item time {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.timeline-item h4 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.booking-card {
    position: sticky;
    top: 100px;
    padding: 28px;
}

.price {
    margin-bottom: 22px;
    font-size: 3rem;
    font-weight: 950;
    line-height: 1;
}

.price span {
    display: block;
    margin-top: 6px;
    color: var(--faint);
    font-size: 0.8rem;
    font-weight: 700;
}

.price-tiers {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.price-tier {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 12px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-tier span {
    color: var(--cream);
    font-weight: 900;
}

.price-tier strong {
    color: var(--green-soft);
    font-size: 0.94rem;
    text-align: right;
}

.price-tier small {
    grid-column: 1 / -1;
    color: var(--faint);
    font-size: 0.74rem;
    font-weight: 750;
}

.tour-stay-panel--compact {
    margin: 0 0 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.tour-stay-panel--compact h2 {
    font-size: 1.35rem;
    line-height: 1.15;
}

.tour-stay-panel--compact .panel-lead {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.tour-stay-panel--compact .tour-media-strip,
.tour-stay-panel--compact .tour-info-grid {
    grid-template-columns: 1fr;
}

.tour-stay-panel--compact .tour-media-strip {
    display: grid;
    gap: 12px;
}

.tour-stay-panel--compact .tour-media-strip figure,
.tour-stay-panel--compact .tour-media-strip img {
    min-height: 160px;
}

.hubspot-booking-module {
    margin-bottom: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.hubspot-booking-copy {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hubspot-booking-module .hs-form-frame {
    width: 100%;
}

.included-list {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.included-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.included-list p::before {
    color: var(--green);
    content: "✓ ";
}

.included-list .list-title::before {
    content: "";
}

.list-title {
    color: var(--green-soft) !important;
    font-size: 0.72rem !important;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.not-included-list {
    display: grid;
    gap: 9px;
    margin: -8px 0 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.not-included-list p {
    margin: 0;
    color: var(--faint);
    font-size: 0.86rem;
    line-height: 1.45;
}

.booking-request-panel {
    scroll-margin-top: 92px;
}

.booking-request-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.booking-request-form {
    display: grid;
    gap: 22px;
}

.form-hidden {
    position: absolute;
    left: -9999px;
}

.phone-row {
    display: grid;
    grid-template-columns: minmax(118px, 0.32fr) minmax(0, 1fr);
    gap: 14px;
}

fieldset {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: 0;
}

legend {
    margin-bottom: 3px;
    color: rgba(238, 246, 236, 0.55);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.check-option {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: none;
}

.check-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
}

.booking-request-form .button {
    justify-self: start;
}

.thank-you-page {
    background: radial-gradient(circle at 80% 0%, rgba(16, 185, 129, 0.14), transparent 34%), var(--bg);
}

.thank-you-panel + .thank-you-panel {
    margin-top: 22px;
}

.thank-you-panel h1 {
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 7vw, 5.4rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.thank-you-panel .lead {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.thank-you-panel a:not(.button) {
    color: var(--green-soft);
    font-weight: 850;
}

.clean-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.65;
}

.clean-list li::marker {
    color: var(--green);
}

.mini-form {
    display: grid;
    gap: 18px;
}

.mini-form .button {
    width: 100%;
}

.blog-hero {
    padding: clamp(70px, 12vw, 124px) 0 44px;
    background: radial-gradient(circle at 20% 5%, rgba(16, 185, 129, 0.14), transparent 36%), #030603;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.32);
}

.blog-card a {
    display: grid;
    min-height: 100%;
}

.blog-card img {
    height: 230px;
}

.blog-card div {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.blog-card h2 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.12;
    text-transform: uppercase;
}

.blog-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.blog-card span {
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-card-meta,
.article-meta {
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-article {
    padding: clamp(64px, 10vw, 112px) 0;
}

.article-image {
    height: min(430px, 48vw);
    min-height: 260px;
    overflow: hidden;
    margin-top: 34px;
    margin-bottom: 44px;
    border-radius: 30px;
}

.article-body {
    display: grid;
    gap: 22px;
}

.article-body .lead {
    margin-bottom: 8px;
    padding-left: 18px;
    border-left: 2px solid var(--green);
}

.article-body h2 {
    margin-top: 22px;
}

.article-cta {
    margin-top: 26px;
    padding: 30px;
}

.article-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.blog-preview-section {
    padding-top: 40px;
    background: #030603;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.faq-section {
    background: #050805;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    cursor: pointer;
    color: var(--text);
    font-size: clamp(1rem, 2vw, 1.18rem);
    font-weight: 850;
    line-height: 1.3;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(16, 185, 129, 0.36);
    border-radius: 50%;
    color: var(--green);
    content: "+";
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.75;
}

.plans-hero {
    padding: clamp(70px, 12vw, 124px) 0 48px;
    background: radial-gradient(circle at 18% 4%, rgba(16, 185, 129, 0.15), transparent 34%), #030603;
}

.plans-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.92;
}

.plans-hero p,
.answer-box p,
.operator-note p,
.plan-card p {
    color: var(--muted);
    line-height: 1.75;
}

.answer-box,
.operator-note {
    margin-bottom: 28px;
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.045);
}

.answer-box h2,
.operator-note h2 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 34px 0;
}

.plan-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.05);
}

.plan-card h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.plan-card strong {
    color: var(--green);
    font-size: 1.35rem;
}

.plan-duration,
.plan-best span {
    margin: 0;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.plan-best {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.plan-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.plan-card li {
    color: rgba(238, 246, 236, 0.78);
    line-height: 1.45;
}

.plan-card li::before {
    color: var(--green);
    content: "✓ ";
}

.plan-card .button {
    margin-top: auto;
}

.trust-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.trust-profile-card {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.06);
}

.trust-profile-card h3 {
    color: var(--cream);
    font-size: clamp(1.55rem, 4vw, 2.4rem);
}

.trust-profile-card p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.65;
}

.trust-profile-card .button {
    width: fit-content;
    margin-top: 4px;
}

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

.office-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.office-card__media {
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.office-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-card__media span {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--green);
    color: #02120b;
    font-size: 0.78rem;
    font-weight: 950;
}

.office-card__body {
    display: grid;
    gap: 20px;
    padding: clamp(24px, 4vw, 34px);
}

.office-card h3 {
    color: var(--green-soft);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.office-detail {
    display: grid;
    gap: 7px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.office-detail span {
    color: var(--faint);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.office-detail p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.office-detail a {
    color: var(--green-soft);
    font-weight: 850;
}

.review-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.07);
}

.review-strip h3 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer p,
.social-links {
    color: var(--faint);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 18px;
}

.promo-float-wrap {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    max-width: calc(100vw - 44px);
}

.promo-float {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    width: auto;
    max-width: min(320px, calc(100vw - 86px));
    min-height: 62px;
    padding: 6px 16px 6px 6px;
    border: 1px solid rgba(125, 223, 186, 0.55);
    border-radius: 999px;
    background: rgba(6, 16, 11, 0.92);
    color: var(--cream);
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
    text-transform: uppercase;
    transition: padding 220ms ease, gap 220ms ease, width 220ms ease, min-height 220ms ease, border-radius 220ms ease;
}

.promo-teaser-wrap {
    position: fixed;
    right: 22px;
    bottom: 94px;
    z-index: 69;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: auto;
    max-width: calc(100vw - 44px);
}

.promo-teaser {
    width: auto;
    max-width: min(290px, calc(100vw - 86px));
    padding: 12px 15px;
    border: 1px solid rgba(125, 223, 186, 0.22);
    border-radius: 16px 16px 4px 16px;
    background: #f8f8f3;
    color: #062416;
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.3;
    opacity: 0;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
    transform: translateY(10px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.promo-teaser::after {
    position: absolute;
    right: 24px;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: #f8f8f3;
    content: "";
    transform: rotate(45deg);
}

.promo-teaser.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.promo-open .promo-float {
    z-index: 82;
}

.promo-float img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(125, 223, 186, 0.18);
    transition: width 220ms ease, height 220ms ease;
}

.promo-float span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: opacity 180ms ease, max-width 220ms ease;
}

.promo-widget.is-minimized .promo-float {
    gap: 0;
    min-height: 64px;
    padding: 6px;
}

.promo-widget.is-minimized .promo-float span {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
}

.promo-widget.is-minimized .promo-dismiss--float {
    display: none;
}

.promo-dismiss {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(125, 223, 186, 0.3);
    border-radius: 50%;
    background: rgba(6, 16, 11, 0.92);
    color: var(--cream);
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.promo-popup {
    position: fixed;
    right: 22px;
    bottom: 96px;
    z-index: 80;
    width: min(360px, calc(100vw - 32px));
    max-height: min(640px, calc(100dvh - 126px));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: #f8f8f3;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.promo-popup[hidden],
.promo-teaser-wrap[hidden] {
    display: none !important;
}

.promo-popup::after {
    position: absolute;
    right: 34px;
    bottom: -10px;
    width: 22px;
    height: 22px;
    background: #f8f8f3;
    content: "";
    transform: rotate(45deg);
}

.promo-chat-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 46px 12px 16px;
    border-bottom: 1px solid rgba(6, 36, 22, 0.1);
}

.promo-chat-head img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.promo-chat-head strong,
.promo-chat-head span {
    display: block;
}

.promo-chat-head strong {
    color: #062416;
    font-size: 0.96rem;
}

.promo-chat-head span {
    color: rgba(6, 36, 22, 0.58);
    font-size: 0.78rem;
    font-weight: 750;
}

.promo-popup__body {
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.promo-popup h2 {
    margin-bottom: 14px;
    color: #062416;
    font-size: clamp(1.25rem, 5vw, 1.7rem);
    line-height: 1.02;
}

.promo-popup .eyebrow {
    color: var(--green-strong);
}

.promo-messages {
    display: grid;
    gap: 8px;
}

.promo-messages p {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 11px 13px;
    border-radius: 15px 15px 15px 4px;
    background: #ffffff;
    color: #1a2e23;
    line-height: 1.5;
    opacity: 0;
    box-shadow: 0 8px 22px rgba(6, 36, 22, 0.1);
    transform: translateY(8px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.promo-messages p.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.promo-typing {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 15px 15px 15px 4px;
    background: #ffffff;
    color: rgba(6, 36, 22, 0.64);
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(6, 36, 22, 0.1);
}

.promo-typing i {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green-strong);
    animation: typingDot 900ms infinite ease-in-out;
}

.promo-typing i:nth-child(3) {
    animation-delay: 130ms;
}

.promo-typing i:nth-child(4) {
    animation-delay: 260ms;
}

.promo-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.promo-actions .button-secondary {
    border-color: rgba(5, 150, 105, 0.36);
    background: #ffffff;
    color: #062416;
}

.promo-actions.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.promo-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(6, 36, 22, 0.12);
    border-radius: 50%;
    background: rgba(6, 36, 22, 0.06);
    color: #062416;
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: scale(1.04);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
}

@keyframes tourHeroContentIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tourHeroImageDrift {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tour-detail-hero-bg,
    .tour-detail-hero--image .breadcrumbs,
    .tour-detail-hero--image .eyebrow,
    .tour-detail-hero--image .tour-detail-copy h1,
    .tour-detail-hero--image .tour-detail-copy p:not(.eyebrow),
    .tour-detail-hero--image .tour-hero-trust,
    .tour-detail-hero--image .hero-actions {
        animation: none;
    }
}

@keyframes typingDot {
    0%,
    80%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .header-note {
        display: none;
    }

    .stats-grid,
    .tour-grid,
    .tour-grid--two,
    .tours-compare-hero__grid,
    .tours-compare-grid,
    .expedition-group__intro,
    .section-heading.split,
    .feature-grid,
    .contact-grid,
    .footer-inner,
    .tour-detail-grid,
    .detail-layout,
    .media-panel,
    .blog-grid,
    .trust-profile-grid,
    .offices-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .tour-detail-hero--image {
        min-height: calc(88vh - 62px);
        align-items: center;
        padding-top: 28px;
        padding-bottom: 44px;
    }

    .detail-main {
        display: contents;
    }

    .tour-desktop-only {
        display: none;
    }

    .tour-mobile-only {
        display: block;
    }

    .tour-best-panel {
        order: 0;
    }

    #itinerary {
        order: 1;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .season-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        display: grid;
        justify-items: start;
    }

    .booking-card {
        position: static;
        order: 2;
    }

    .tour-stay-panel--compact.tour-mobile-only {
        order: 3;
    }

    .tour-highlights-panel,
    .tour-seasons-panel,
    .tour-stay-panel,
    .tour-packing-panel,
    .tour-faq-panel,
    .tour-logistics-panel,
    .booking-request-panel {
        order: 4;
    }

    .media-panel img {
        aspect-ratio: 16 / 10;
    }

    .tour-media-strip,
    .tour-info-grid,
    .packing-grid {
        grid-template-columns: 1fr;
    }

    .tours-compare-guidance .tour-info-grid {
        grid-template-columns: 1fr;
    }

    .compare-tour-card__actions .button {
        flex-basis: 100%;
    }

    .tours-compare-table th,
    .tours-compare-table td {
        padding: 16px 14px;
    }

    .review-strip {
        display: grid;
    }
}

@media (max-width: 560px) {
    .site-header {
        min-height: 62px;
        padding: 7px 14px;
    }

    .brand {
        gap: 8px;
        font-size: 0.82rem;
    }

    .brand-logo {
        width: 34px;
        height: 34px;
    }

    .menu-toggle {
        width: 46px;
        height: 46px;
    }

    .nav {
        inset: 64px 12px auto;
    }

    .tour-detail-hero--image {
        min-height: calc(86vh - 60px);
        padding-top: 24px;
        padding-bottom: 38px;
    }

    .tour-detail-hero--image .tour-detail-copy h1 {
        font-size: clamp(2.7rem, 12vw, 4.25rem);
        overflow-wrap: anywhere;
    }

    .tour-detail-hero--image .tour-detail-copy p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.65;
    }

    .tour-hero-trust {
        margin-top: 18px;
        margin-bottom: 20px;
    }

    .tour-hero-trust,
    .tour-highlights-list {
        gap: 8px;
    }

    .tour-hero-trust span,
    .tour-highlights-list span {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .breadcrumbs {
        margin-bottom: 16px;
    }

    .hero {
        min-height: 92vh;
    }

    .hero-actions,
    .form-row,
    .phone-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .content-panel,
    .booking-card {
        overflow-x: clip;
    }

    .hero-helper {
        font-size: 0.92rem;
    }

    .button,
    .booking-request-form .button {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .stat-item strong {
        font-size: clamp(2.3rem, 13vw, 3.4rem);
    }

    .tour-card {
        min-height: 430px;
        border-radius: 18px;
    }

    .tours-page-shell {
        overflow-x: clip;
    }

    .compare-tour-card {
        border-radius: 22px;
    }

    .compare-tour-card > img {
        aspect-ratio: 4 / 4.6;
    }

    .compare-tour-card__body {
        gap: 14px;
        padding: 20px;
    }

    .compare-tour-card__body h2 {
        font-size: clamp(1.35rem, 8vw, 1.8rem);
        line-height: 1.02;
    }

    .compare-tour-card__body > p:not(.tag) {
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .compare-tour-card__meta span {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
        line-height: 1.45;
    }

    .difference-carousel-shell {
        margin-right: -16px;
        margin-left: -16px;
        padding: 0 16px;
    }

    .difference-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 24px 12px 0;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .difference-grid::-webkit-scrollbar {
        display: none;
    }

    .difference-card {
        flex: 0 0 min(82vw, 300px);
        width: min(82vw, 300px);
        min-width: min(82vw, 300px);
        min-height: 100%;
        scroll-snap-align: start;
    }

    .difference-carousel-hint {
        position: absolute;
        top: -18px;
        right: 16px;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 10px;
        border: 1px solid rgba(16, 185, 129, 0.24);
        border-radius: 999px;
        background: rgba(6, 16, 11, 0.88);
        color: rgba(238, 246, 236, 0.72);
        font-size: 0.64rem;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
    }

    .difference-carousel-hint__icon {
        display: inline-grid;
        width: 20px;
        height: 20px;
        place-items: center;
        border-radius: 50%;
        background: rgba(16, 185, 129, 0.16);
        color: var(--green-soft);
        font-size: 0.82rem;
        line-height: 1;
    }

    .itinerary-tabs {
        display: grid;
        border-radius: 22px;
    }

    .itinerary-tab {
        width: 100%;
    }

    .tour-title-row {
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .promo-float-wrap {
        right: 14px;
        bottom: 14px;
        max-width: calc(100vw - 28px);
    }

    .promo-teaser-wrap {
        right: 14px;
        bottom: 86px;
        max-width: calc(100vw - 28px);
    }

    .promo-float {
        max-width: min(260px, calc(100vw - 78px));
    }

    .promo-teaser {
        max-width: min(250px, calc(100vw - 78px));
    }

    .promo-popup {
        right: 14px;
        bottom: 86px;
        width: calc(100vw - 28px);
        max-height: calc(100dvh - 104px);
        border-radius: 20px;
    }
}
