:root {
    --ivory: #f5f0e6;
    --ivory-strong: #fffdfa;
    --sand: #e8dcc7;
    --sand-deep: #d3c1a1;
    --forest: #445c2f;
    --forest-deep: #22311d;
    --forest-rich: #1c2819;
    --forest-soft: #758869;
    --gold: #d2a339;
    --gold-deep: #b27c14;
    --ink: #24301d;
    --muted: #5e6558;
    --muted-light: #b6bcae;
    --line: rgba(68, 92, 47, 0.12);
    --panel: rgba(255, 252, 247, 0.92);
    --panel-strong: #fffefa;
    --shadow: 0 24px 58px rgba(24, 35, 22, 0.1);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shell: min(1200px, calc(100% - 2rem));
    --heading-font: "Baskerville Old Face", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --body-font: "Trebuchet MS", "Gill Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 10.5rem;
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.12), transparent 26%),
        radial-gradient(circle at top left, rgba(68, 92, 47, 0.08), transparent 24%),
        linear-gradient(180deg, #fbf8f2 0%, #f5efe5 44%, #fbf8f3 100%);
}

#overview,
#itinerary,
#gallery,
#activities,
#prices,
#book-now {
    scroll-margin-top: 10.5rem;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.page-aurora {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(135deg, rgba(210, 163, 57, 0.035), transparent 40%),
        url("../images/route-lines.svg");
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.08;
    z-index: -1;
}

.topbar {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, var(--forest-rich), var(--forest));
}

.topbar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
    color: rgba(255, 250, 241, 0.82);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(250, 246, 239, 0.92);
    border-bottom: 1px solid rgba(68, 92, 47, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.78rem 0;
    position: relative;
}

.brand {
    flex-shrink: 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    padding: 0.46rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(24, 35, 22, 0.08);
    border: 1px solid rgba(68, 92, 47, 0.08);
}

.brand-lockup img {
    width: clamp(210px, 20vw, 250px);
    height: auto;
}

.brand-lockup--footer img {
    width: clamp(330px, 30vw, 390px);
}

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

.site-nav a {
    padding: 0.7rem 0.78rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    white-space: nowrap;
    transition: background-color 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--forest-deep);
    background: rgba(68, 92, 47, 0.08);
    box-shadow: inset 0 0 0 1px rgba(68, 92, 47, 0.05);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.45rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold) 0%, #e0b554 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 32px rgba(210, 163, 57, 0.28);
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(210, 163, 57, 0.32);
    filter: saturate(1.05);
}

.button--ghost {
    background: transparent;
    color: var(--forest);
    border: 1px solid rgba(69, 95, 49, 0.18);
    box-shadow: none;
}

.button--panel {
    color: var(--forest-deep);
    background: rgba(68, 92, 47, 0.08);
    border-color: rgba(68, 92, 47, 0.14);
}

.hero .button--ghost {
    color: var(--ivory-strong);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.hero .button--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 34px rgba(17, 24, 15, 0.16);
}

.button--light {
    background: #fff;
    color: var(--forest-deep);
    box-shadow: none;
}

.button--small {
    padding: 0.78rem 1.05rem;
    font-size: 0.9rem;
}

.button--nav {
    margin-left: 0.45rem;
    padding-inline: 1.12rem;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(69, 95, 49, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--forest);
    border-radius: 999px;
}

.hero,
.section,
.page-hero {
    padding: 4.5rem 0;
}

.section--compact-top {
    padding-top: 0;
}

.section--soft {
    background:
        linear-gradient(180deg, rgba(68, 92, 47, 0.05), rgba(255, 255, 255, 0)),
        linear-gradient(90deg, rgba(210, 163, 57, 0.02), transparent);
}

.hero-layout,
.page-hero__grid,
.contact-grid,
.split-story {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.footer-cta h2,
.story-card h2,
.sidebar-shell h2 {
    margin: 0;
    font-family: var(--heading-font);
    letter-spacing: 0;
    line-height: 0.96;
}

.hero-copy h1 {
    font-size: 4.55rem;
}

.page-hero h1,
.section-heading h2,
.footer-cta h2,
.story-card h2,
.sidebar-shell h2 {
    font-size: 3.1rem;
    line-height: 1.02;
}

.lead,
.hero-copy p,
.page-hero p,
.section-heading p,
.tour-card p,
.info-card p,
.destination-card p,
.guide-card p,
.review-card p,
.season-card p,
.activity-card p,
.story-card p,
.sidebar-card small,
.payment-card p,
.faq-card p,
.footer-copy,
.process-card p {
    color: var(--muted);
    line-height: 1.72;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero {
    padding-top: 1.7rem;
    padding-bottom: 3.8rem;
}

.hero-layout {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 560px) 1fr;
    min-height: 590px;
    align-items: end;
    padding: 3.4rem;
}

.hero-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    min-height: 590px;
    background: #1a2415;
    box-shadow: 0 38px 80px rgba(24, 35, 22, 0.18);
}

.hero-showcase__image,
.hero-showcase__shade,
.hero-showcase__glow {
    position: absolute;
    inset: 0;
}

.hero-showcase__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-showcase__shade {
    background:
        linear-gradient(92deg, rgba(17, 24, 15, 0.88) 0%, rgba(20, 28, 18, 0.74) 42%, rgba(21, 29, 19, 0.42) 70%, rgba(21, 29, 19, 0.22) 100%),
        linear-gradient(180deg, rgba(17, 24, 15, 0.18), rgba(17, 24, 15, 0.5));
}

.hero-showcase__glow {
    background:
        radial-gradient(circle at 16% 14%, rgba(210, 163, 57, 0.34), transparent 28%),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12), transparent 22%);
}

.hero-copy {
    align-self: end;
    max-width: 35rem;
}

.hero-copy h1 {
    color: var(--ivory-strong);
}

.hero-copy .lead,
.hero-copy p {
    color: rgba(255, 250, 241, 0.8);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.trust-chip {
    padding: 0.62rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 250, 241, 0.88);
    box-shadow: 0 12px 26px rgba(17, 24, 15, 0.12);
}

.hero-aside {
    display: grid;
    gap: 1rem;
}

.hero-planning-card,
.hero-photo-card,
.metric-card,
.tour-card,
.collection-card,
.info-card,
.destination-card,
.guide-card,
.review-card,
.activity-card,
.season-card,
.story-card,
.process-card,
.faq-card,
.payment-card,
.page-card,
.form-shell,
.sidebar-shell {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-planning-card {
    display: grid;
    gap: 1.1rem;
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 250, 241, 0.18), rgba(255, 250, 241, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.hero-planning-card h3 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 1.92rem;
    line-height: 1.04;
    color: #fff;
}

.hero-planning-card p,
.hero-planning-card .tick-list li {
    color: rgba(255, 250, 241, 0.82);
}

.hero-planning-card .tick-list li::before {
    background: linear-gradient(135deg, #f0c76b, #fff2ca);
}

.hero-photo-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-photo-card {
    overflow: hidden;
    background: rgba(255, 253, 249, 0.96);
}

.hero-photo-card img {
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
}

.hero-photo-card__body {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1rem 1.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 231, 0.98));
}

.hero-photo-card__title {
    color: var(--forest-deep);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-photo-card__body p {
    margin: 0;
    line-height: 1.6;
}

.panel-label,
.tour-card__comfort,
.destination-card__note,
.review-card__title,
.payment-card span,
.sidebar-card span {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(210, 163, 57, 0.14);
    color: var(--gold-deep);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
}

.metric-grid,
.collection-grid,
.tour-grid,
.assurance-grid,
.confidence-card-grid,
.payment-intro-grid,
.payment-safety-grid,
.payment-support-grid,
.info-grid,
.destination-grid,
.guide-grid,
.review-grid,
.activity-grid,
.season-grid,
.process-grid,
.faq-grid,
.payment-grid {
    display: grid;
    gap: 1.2rem;
}

.metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -3rem;
}

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

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

.payment-intro-grid,
.payment-safety-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
}

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

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

.collection-grid--featured .collection-card:first-child {
    grid-column: span 2;
}

.section--trust {
    padding-bottom: 2.3rem;
}

.trust-ribbon {
    display: grid;
    grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 1px;
    overflow: hidden;
    margin-top: -2rem;
    border-radius: var(--radius-lg);
    background: rgba(68, 92, 47, 0.12);
    box-shadow: var(--shadow);
}

.trust-ribbon__label,
.trust-ribbon__item {
    min-height: 88px;
    padding: 1.15rem 1.25rem;
    background: rgba(255, 253, 248, 0.96);
}

.trust-ribbon__label {
    display: flex;
    align-items: center;
    color: var(--forest);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-ribbon__item strong {
    display: block;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    line-height: 1;
}

.trust-ribbon__item span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.metric-card,
.payment-card {
    padding: 1.35rem;
}

.metric-card strong,
.review-card strong {
    display: block;
    font-size: 1.24rem;
    color: var(--forest-deep);
    margin-bottom: 0.45rem;
}

.metric-card {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
}

.metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.35rem;
    right: 1.35rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(210, 163, 57, 0));
}

.section-heading {
    max-width: 620px;
    margin-bottom: 1.55rem;
}

.finder-panel {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.4rem;
    padding: 1.45rem;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(238, 229, 209, 0.92));
    border: 1px solid rgba(68, 92, 47, 0.1);
    box-shadow: var(--shadow);
}

.finder-panel h2 {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 2.65rem;
    line-height: 1;
    color: var(--forest-deep);
}

.finder-panel p {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.7;
}

.finder-search {
    display: grid;
    gap: 0.55rem;
}

.finder-search label {
    color: var(--forest-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.finder-search input {
    width: 100%;
    border: 1px solid rgba(68, 92, 47, 0.13);
    border-radius: 999px;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.finder-search input:focus {
    outline: 2px solid rgba(210, 163, 57, 0.28);
    border-color: rgba(210, 163, 57, 0.5);
}

.finder-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0.78rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 26px;
    background:
        radial-gradient(circle at 4% 0%, rgba(68, 92, 47, 0.08), transparent 28%),
        rgba(255, 255, 255, 0.48);
}

.finder-filter-grid label {
    display: grid;
    gap: 0.42rem;
}

.finder-filter-grid span {
    color: var(--forest-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.finder-filter-grid select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(68, 92, 47, 0.13);
    border-radius: 16px;
    padding: 0.7rem 0.82rem;
    background: rgba(255, 253, 248, 0.9);
    color: var(--forest-deep);
    font: inherit;
    font-weight: 800;
}

.finder-filter-grid select:focus {
    outline: 2px solid rgba(210, 163, 57, 0.28);
    border-color: rgba(210, 163, 57, 0.5);
}

.finder-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 999px;
    padding: 0.72rem 0.95rem;
    background: rgba(255, 255, 255, 0.68);
    color: var(--forest);
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    transform: translateY(-1px);
    background: var(--forest-deep);
    color: #fff;
    box-shadow: 0 12px 28px rgba(34, 49, 29, 0.16);
}

.finder-active-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.78rem 0.9rem;
    border: 1px solid rgba(210, 163, 57, 0.2);
    border-radius: 20px;
    background: rgba(210, 163, 57, 0.1);
}

.finder-active-row p {
    margin: 0;
    color: var(--forest-deep);
    font-weight: 800;
    line-height: 1.45;
}

.finder-active-row button {
    border: 1px solid rgba(68, 92, 47, 0.14);
    border-radius: 999px;
    padding: 0.58rem 0.78rem;
    background: rgba(255, 253, 248, 0.82);
    color: var(--forest-deep);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
}

.finder-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(68, 92, 47, 0.12);
}

.finder-proof article {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(255, 253, 248, 0.82);
}

.finder-proof strong {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 1.35rem;
    line-height: 1.05;
}

.finder-proof span {
    color: var(--muted);
    line-height: 1.55;
}

.finder-count {
    margin: 0;
    color: var(--forest-deep) !important;
    font-weight: 800;
}

.tour-grid--finder [hidden],
.no-results[hidden] {
    display: none !important;
}

.tour-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tour-card__tags span {
    width: fit-content;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    background: rgba(210, 163, 57, 0.12);
    color: var(--gold-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-card--featured .tour-card__tags span {
    background: rgba(255, 255, 255, 0.12);
    color: #fff2ca;
}

.no-results {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.1rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.15), transparent 24%),
        rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(68, 92, 47, 0.1);
    box-shadow: var(--shadow);
}

.no-results h3 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 2rem;
    line-height: 1.05;
}

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

.assurance-card,
.confidence-panel,
.confidence-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.assurance-card {
    display: grid;
    align-content: start;
    gap: 0.8rem;
    min-height: 240px;
    padding: 1.45rem;
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 230, 0.98));
    border: 1px solid rgba(68, 92, 47, 0.09);
}

.assurance-card::before,
.confidence-card::before {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(210, 163, 57, 0));
}

.assurance-card span {
    width: fit-content;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.assurance-card h3,
.confidence-panel h2,
.confidence-card h3 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    line-height: 1.05;
}

.assurance-card h3 {
    font-size: 1.72rem;
}

.assurance-card p,
.confidence-card p,
.booking-panel__checklist li {
    color: var(--muted);
    line-height: 1.68;
}

.confidence-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.2rem;
    align-items: stretch;
}

.confidence-panel {
    display: grid;
    align-content: center;
    gap: 1.1rem;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.2), transparent 28%),
        linear-gradient(135deg, #22311d 0%, #31462b 100%);
    color: #fff;
}

.confidence-panel h2,
.confidence-panel p,
.confidence-panel .tick-list li {
    color: #fff;
}

.confidence-panel .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.confidence-panel .tick-list li::before {
    background: linear-gradient(135deg, #f0c76b, #fff2ca);
}

.confidence-panel h2 {
    font-size: 2.65rem;
}

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

.assurance-card--compact {
    min-height: auto;
    padding: 1.2rem;
}

.assurance-card--compact h3 {
    font-size: 1.45rem;
}

.detail-panel--confidence {
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.12), transparent 24%),
        rgba(255, 253, 248, 0.96);
}

.confidence-card {
    display: grid;
    gap: 0.8rem;
    min-height: 186px;
    padding: 1.15rem;
    background: rgba(68, 92, 47, 0.055);
}

.confidence-card h3 {
    font-size: 1.38rem;
}

.booking-panel__checklist {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(210, 163, 57, 0.1);
}

.booking-panel__checklist strong {
    color: var(--forest-deep);
}

.booking-panel__checklist .tick-list {
    gap: 0.6rem;
}

.payment-summary,
.payment-safety-panel,
.payment-step,
.payment-support-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.payment-summary {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(239, 231, 214, 0.94));
    border: 1px solid rgba(68, 92, 47, 0.1);
}

.payment-summary h2,
.payment-safety-panel h2,
.payment-step h3,
.payment-support-card h3 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    line-height: 1.05;
}

.payment-summary h2,
.payment-safety-panel h2 {
    font-size: 2.65rem;
}

.payment-summary p,
.payment-step p,
.payment-support-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.payment-timeline {
    display: grid;
    gap: 1rem;
}

.payment-step {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.15rem;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(68, 92, 47, 0.09);
}

.payment-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--forest-deep);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.payment-step h3,
.payment-support-card h3 {
    font-size: 1.45rem;
}

.payment-safety-panel {
    display: grid;
    align-content: center;
    gap: 1.1rem;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.2), transparent 28%),
        linear-gradient(135deg, #22311d 0%, #31462b 100%);
    color: #fff;
}

.payment-safety-panel h2,
.payment-safety-panel p,
.payment-safety-panel .tick-list li {
    color: #fff;
}

.payment-safety-panel .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.payment-safety-panel .tick-list li::before {
    background: linear-gradient(135deg, #f0c76b, #fff2ca);
}

.payment-support-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.2rem;
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.12), transparent 24%),
        rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(68, 92, 47, 0.1);
}

.payment-support-card::before {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(210, 163, 57, 0));
}

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

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

.guide-grid,
.review-grid,
.faq-grid,
.payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid,
.season-grid,
.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tour-card,
.info-card,
.destination-card,
.guide-card,
.review-card,
.activity-card,
.season-card,
.process-card,
.faq-card {
    padding: 1.6rem;
}

.tour-card {
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 235, 0.98));
    border-color: rgba(68, 92, 47, 0.1);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 430px;
    padding: 0;
    background: #182514;
    border: 0;
    color: #fff;
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(19, 28, 16, 0.08), rgba(19, 28, 16, 0.84)),
        radial-gradient(circle at top left, rgba(210, 163, 57, 0.28), transparent 30%);
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 38px 82px rgba(24, 35, 22, 0.18);
}

.collection-card__media,
.collection-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.collection-card__media img {
    object-fit: cover;
    transition: transform 520ms ease;
}

.collection-card:hover .collection-card__media img {
    transform: scale(1.06);
}

.collection-card__body {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: end;
    gap: 0.8rem;
    min-height: 430px;
    padding: 1.5rem;
}

.collection-card__body span {
    width: fit-content;
    padding: 0.4rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 250, 241, 0.88);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.collection-card h3 {
    margin: 0;
    max-width: 16rem;
    font-family: var(--heading-font);
    font-size: 2.05rem;
    line-height: 1;
}

.collection-card p {
    margin: 0;
    color: rgba(255, 250, 241, 0.82);
    line-height: 1.62;
}

.collection-card__route {
    width: fit-content;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    font-size: 0.86rem;
    font-weight: 700;
}

.collection-card--compact,
.collection-card--compact .collection-card__body {
    min-height: 330px;
}

.tour-card:hover,
.guide-card:hover,
.destination-card:hover,
.info-card:hover,
.review-card:hover,
.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 74px rgba(24, 35, 22, 0.14);
    border-color: rgba(210, 163, 57, 0.24);
}

.tour-card--featured {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.22), transparent 24%),
        linear-gradient(135deg, #25351f 0%, #344a2b 62%, #425a31 100%);
    border: 0;
}

.tour-card__media {
    position: relative;
    overflow: hidden;
    min-height: 252px;
}

.tour-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 28, 18, 0.04), rgba(20, 28, 18, 0.34));
    pointer-events: none;
}

.tour-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

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

.tour-card__labels {
    position: absolute;
    z-index: 1;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 0.65rem;
    align-items: end;
}

.tour-card__content,
.destination-card__body {
    display: grid;
    gap: 0.8rem;
    padding: 1.6rem;
}

.tour-card--featured .tour-card__content {
    align-content: start;
    padding: 2rem;
}

.tour-card--featured h3,
.tour-card--featured p,
.tour-card--featured .tour-card__route,
.tour-card--featured .tour-card__meta,
.tour-card--featured .tick-list li,
.tour-card--featured .text-link {
    color: rgba(255, 250, 241, 0.92);
}

.tour-card--featured .tour-card__comfort,
.tour-card--featured .card-badge {
    background: rgba(255, 255, 255, 0.88);
    color: var(--forest-deep);
}

.tour-card .card-badge,
.tour-card .tour-card__comfort {
    box-shadow: 0 12px 28px rgba(17, 24, 15, 0.15);
}

.tour-card__summary {
    margin: 0;
}

.tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.25rem;
}

.tour-card:not(.tour-card--featured) .tour-card__meta span {
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
}

.tour-card--featured .tour-card__meta span {
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tour-card--featured .tick-list li::before {
    background: linear-gradient(135deg, #f0c76b, #fff2ca);
}

.tour-card--featured .tour-card__media {
    min-height: 100%;
}

.tour-card h3,
.info-card h3,
.destination-card h3,
.guide-card h3,
.activity-card h3,
.season-card h3,
.process-card h3,
.faq-card h3,
.payment-card h3 {
    margin-top: 0;
    font-family: var(--heading-font);
    font-size: 1.62rem;
    line-height: 1.08;
}

.tour-card__top,
.tour-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.card-badge {
    display: inline-flex;
    margin: 0;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(69, 95, 49, 0.08);
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    font-weight: 700;
}

.tour-card__route {
    margin: 0.15rem 0 0.8rem;
    color: var(--forest);
    font-weight: 700;
}

.tour-card__meta {
    color: var(--forest-deep);
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.tick-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tick-list {
    display: grid;
    gap: 0.8rem;
}

.tick-list li {
    position: relative;
    padding-left: 1.4rem;
}

.tick-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--forest));
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--forest-deep);
    font-weight: 700;
}

.text-link::after {
    content: "\2192";
    transition: transform 180ms ease;
}

.text-link:hover::after {
    transform: translateX(2px);
}

.destination-card__subtitle {
    margin: 0;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 700;
}

.destination-card {
    display: grid;
    padding: 0;
    overflow: hidden;
}

.destination-card__media {
    overflow: hidden;
    aspect-ratio: 1.18;
}

.destination-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.info-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 230, 0.96));
}

.info-card::before,
.activity-card::before,
.season-card::before,
.process-card::before,
.payment-card::before,
.faq-card::before {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(210, 163, 57, 0));
}

.guide-card,
.review-card,
.season-card,
.activity-card,
.payment-card,
.faq-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 238, 0.96));
}

.activity-card {
    display: grid;
    align-content: start;
    gap: 0.75rem;
}

.activity-card__link {
    width: fit-content;
    margin-top: auto;
    color: var(--forest-deep);
    font-weight: 800;
}

.activity-card__link::after {
    content: "\2192";
    display: inline-block;
    margin-left: 0.35rem;
    transition: transform 180ms ease;
}

.activity-card:hover .activity-card__link::after {
    transform: translateX(2px);
}

.review-card strong {
    font-size: 1.9rem;
    font-family: var(--heading-font);
}

.page-card {
    overflow: hidden;
    padding: 1.2rem;
}

.page-card img {
    width: 100%;
    border-radius: 22px;
}

.page-card--logo img {
    background: #fff;
}

.page-card--photo {
    padding: 0;
    min-height: 320px;
    background: #23311d;
}

.page-card--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.immersive-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 690px;
    overflow: hidden;
    color: #fff;
    background: var(--forest-rich);
}

.immersive-hero__image,
.immersive-hero__shade {
    position: absolute;
    inset: 0;
}

.immersive-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.immersive-hero__shade {
    background:
        radial-gradient(circle at 18% 22%, rgba(210, 163, 57, 0.36), transparent 28%),
        linear-gradient(90deg, rgba(18, 26, 14, 0.9) 0%, rgba(20, 29, 17, 0.74) 46%, rgba(20, 29, 17, 0.34) 100%),
        linear-gradient(180deg, rgba(18, 26, 14, 0.12), rgba(18, 26, 14, 0.72));
}

.immersive-hero--activity .immersive-hero__shade {
    background:
        radial-gradient(circle at 78% 18%, rgba(210, 163, 57, 0.28), transparent 30%),
        linear-gradient(90deg, rgba(17, 25, 14, 0.88), rgba(17, 25, 14, 0.62) 56%, rgba(17, 25, 14, 0.32)),
        linear-gradient(180deg, rgba(17, 25, 14, 0.08), rgba(17, 25, 14, 0.76));
}

.immersive-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.15rem;
    max-width: 1040px;
    padding: 7rem 0 3.2rem;
}

.immersive-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 5.2rem;
    line-height: 0.94;
    letter-spacing: -0.02em;
}

.immersive-hero .lead {
    max-width: 700px;
    color: rgba(255, 250, 241, 0.86);
    font-size: 1.08rem;
}

.hero-fact-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    max-width: 1030px;
    margin-top: 1.35rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 70px rgba(17, 24, 15, 0.22);
}

.hero-fact-strip article {
    display: grid;
    align-content: center;
    gap: 0.5rem;
    min-height: 126px;
    padding: 1.25rem;
    background: rgba(255, 250, 241, 0.13);
    backdrop-filter: blur(14px);
}

.hero-fact-strip span {
    color: rgba(255, 242, 202, 0.86);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-fact-strip strong {
    color: #fffdfa;
    font-family: var(--heading-font);
    font-size: 1.45rem;
    line-height: 1.05;
}

.detail-layout--editorial {
    grid-template-columns: minmax(0, 1fr) 340px;
}

.detail-tags--large span {
    padding: 0.72rem 0.88rem;
    background:
        radial-gradient(circle at top left, rgba(210, 163, 57, 0.14), transparent 34%),
        rgba(68, 92, 47, 0.08);
}

.route-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.route-chip-list span {
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest-deep);
    font-size: 0.84rem;
    font-weight: 800;
}

.destination-aside {
    align-content: start;
}

.timeline--soft .timeline-item {
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.1), transparent 28%),
        rgba(68, 92, 47, 0.055);
}

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

.tour-card--mini .tour-card__media {
    min-height: 210px;
}

.tour-card--mini .tour-card__content {
    padding: 1.25rem;
}

.tour-card--mini h3 {
    font-size: 1.45rem;
}

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

.safari-detail-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 640px;
    overflow: hidden;
    color: #fff;
}

.safari-detail-hero__image,
.safari-detail-hero__shade {
    position: absolute;
    inset: 0;
}

.safari-detail-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safari-detail-hero__shade {
    background:
        linear-gradient(90deg, rgba(17, 24, 15, 0.88), rgba(17, 24, 15, 0.52), rgba(17, 24, 15, 0.2)),
        linear-gradient(180deg, rgba(17, 24, 15, 0.16), rgba(17, 24, 15, 0.62));
}

.safari-detail-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 2rem;
    align-items: end;
    padding: 5rem 0;
}

.safari-detail-copy {
    max-width: 760px;
}

.safari-detail-copy h1,
.detail-panel h2,
.booking-panel h2 {
    margin: 0;
    font-family: var(--heading-font);
    letter-spacing: 0;
}

.safari-detail-copy h1 {
    font-size: 4.6rem;
    line-height: 0.96;
}

.safari-detail-copy p {
    max-width: 620px;
    color: rgba(255, 250, 241, 0.84);
    line-height: 1.7;
}

.safari-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.safari-facts article {
    min-height: 116px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.09);
}

.safari-facts span,
.related-card span {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 250, 241, 0.7);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.safari-facts strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.35;
}

.safari-anchor-nav {
    position: sticky;
    top: 6.9rem;
    z-index: 12;
    background: rgba(250, 246, 239, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(68, 92, 47, 0.08);
}

.safari-anchor-nav__inner {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.85rem 0;
}

.safari-anchor-nav a {
    flex: 0 0 auto;
    padding: 0.58rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--forest);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(68, 92, 47, 0.08);
}

.safari-anchor-nav a:hover {
    background: var(--forest-deep);
    color: #fff;
}

.safari-anchor-nav a.is-active {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest));
    color: #fff;
    box-shadow: 0 12px 28px rgba(34, 49, 29, 0.16);
}

.signature-strip {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(68, 92, 47, 0.12);
    box-shadow: var(--shadow);
}

.signature-strip__copy,
.signature-strip__facts article {
    background: rgba(255, 253, 248, 0.96);
}

.signature-strip__copy {
    display: grid;
    align-content: center;
    gap: 0.9rem;
    padding: 1.7rem;
}

.signature-strip__copy h2 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 2.45rem;
    line-height: 1;
}

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

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

.signature-strip__facts article {
    display: grid;
    align-content: center;
    gap: 0.55rem;
    min-height: 168px;
    padding: 1.25rem;
}

.signature-strip__facts span,
.concierge-note span {
    color: var(--gold-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signature-strip__facts strong {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 1.62rem;
    line-height: 1.05;
}

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

.detail-main {
    display: grid;
    gap: 1.3rem;
}

.detail-panel,
.booking-panel,
.related-card {
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.detail-panel {
    padding: 2rem;
}

.detail-panel--intro {
    background:
        linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(239, 230, 210, 0.9));
}

.detail-panel h2,
.booking-panel h2 {
    color: var(--forest-deep);
    font-size: 2.2rem;
    line-height: 1.02;
}

.detail-panel p,
.booking-panel p,
.timeline-item p {
    color: var(--muted);
    line-height: 1.72;
}

.section-heading--tight {
    margin-bottom: 1.2rem;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.1rem;
}

.detail-tags span {
    padding: 0.62rem 0.78rem;
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest);
    font-weight: 700;
}

.overview-note {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.7rem;
    padding: 1rem;
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(255, 255, 255, 0.58);
}

.overview-note strong {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 1.35rem;
}

.overview-note p {
    margin: 0;
}

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

.include-card {
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(68, 92, 47, 0.055);
}

.include-card--muted {
    background: rgba(210, 163, 57, 0.09);
}

.include-card h3 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 1.55rem;
}

.tick-list--muted li::before {
    background: linear-gradient(135deg, var(--gold), #d58b30);
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(68, 92, 47, 0.055);
}

.timeline-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--forest-deep);
    color: #fff;
    font-weight: 700;
}

.timeline-item h3,
.detail-mini-card h3,
.related-card h3 {
    margin: 0;
    font-family: var(--heading-font);
    color: var(--forest-deep);
    letter-spacing: 0;
    line-height: 1.1;
}

.timeline-item p {
    margin-bottom: 0;
}

.itinerary-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 1rem 0 0;
}

.itinerary-meta div {
    display: grid;
    gap: 0.25rem;
    padding: 0.7rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.58);
}

.itinerary-meta dt {
    color: var(--gold-deep);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.itinerary-meta dd {
    margin: 0;
    color: var(--forest-deep);
    font-weight: 700;
    line-height: 1.35;
}

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

.detail-mini-card {
    display: grid;
    gap: 0.9rem;
    min-height: 148px;
    padding: 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(68, 92, 47, 0.055);
}

.detail-mini-card span {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: var(--gold);
}

.detail-mini-card--text p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.detail-panel--gallery,
.detail-panel--prices {
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.12), transparent 24%),
        rgba(255, 253, 248, 0.96);
}

.safari-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-auto-rows: 180px;
    gap: 0.8rem;
}

.safari-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #1d2818;
}

.safari-gallery figure:first-child {
    grid-row: span 2;
}

.safari-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.safari-gallery figure:hover img {
    transform: scale(1.04);
}

.price-table {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(68, 92, 47, 0.12);
    margin-bottom: 1.2rem;
}

.price-table article {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.72);
}

.price-table span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-table strong {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 1.8rem;
    line-height: 1;
}

.price-matrix-card {
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(68, 92, 47, 0.14);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 248, 234, 0.94), rgba(255, 255, 255, 0.9)),
        var(--paper);
    box-shadow: 0 22px 55px rgba(34, 49, 29, 0.1);
}

.price-matrix-card__head,
.price-matrix-card__row {
    display: grid;
    grid-template-columns: 0.75fr 1fr 1fr;
    align-items: center;
    gap: 1px;
}

.price-matrix-card__head {
    background: var(--forest-deep);
    color: #fff8ea;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.price-matrix-card__head span,
.price-matrix-card__row span,
.price-matrix-card__row strong {
    padding: 0.9rem 1rem;
}

.price-matrix-card__row {
    border-bottom: 1px solid rgba(68, 92, 47, 0.1);
}

.price-matrix-card__row:last-of-type {
    border-bottom: 0;
}

.price-matrix-card__row strong {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 1.35rem;
}

.price-matrix-card__row span {
    color: var(--forest-deep);
    font-weight: 900;
}

.price-matrix-card p {
    margin: 0;
    padding: 1rem;
    color: var(--muted);
    background: rgba(210, 163, 57, 0.1);
    font-size: 0.92rem;
}

.price-notes {
    margin-top: 1rem;
}

.booking-panel {
    position: sticky;
    top: 7.5rem;
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.13), transparent 28%),
        rgba(255, 253, 248, 0.98);
}

.booking-panel::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(210, 163, 57, 0));
}

.booking-panel__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(68, 92, 47, 0.08);
}

.booking-panel__price span {
    color: var(--muted);
    font-weight: 700;
}

.booking-panel__price strong {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 1.7rem;
}

.concierge-note {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.12), transparent 30%),
        rgba(68, 92, 47, 0.065);
}

.concierge-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

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

.related-card {
    overflow: hidden;
}

.related-card img {
    width: 100%;
    aspect-ratio: 1.45;
    object-fit: cover;
}

.related-card div {
    display: grid;
    gap: 0.75rem;
    padding: 1.1rem;
}

.related-card span {
    color: var(--gold-deep);
    margin-bottom: 0;
}

.page-hero {
    padding-top: 2.4rem;
}

.page-hero__grid {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 238, 226, 0.96));
    box-shadow: var(--shadow);
}

.split-story {
    align-items: stretch;
}

.story-card {
    padding: 1.8rem;
}

.story-card--accent {
    background: linear-gradient(180deg, rgba(210, 163, 57, 0.16), rgba(255, 255, 255, 0.94));
}

.process-card span {
    color: var(--gold-deep);
    font-weight: 700;
    letter-spacing: 0.16em;
}

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

.form-shell,
.sidebar-shell {
    padding: 1.7rem;
}

.form-shell {
    background: rgba(255, 255, 255, 0.98);
}

.sidebar-shell {
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.22), transparent 22%),
        linear-gradient(180deg, #23311d, #31462b);
    color: #fff;
    border: 0;
}

.sidebar-shell p,
.sidebar-shell h2,
.sidebar-shell .faq-card p,
.sidebar-shell .faq-card h3 {
    color: #fff;
}

.contact-form {
    display: grid;
    gap: 1.1rem;
}

.request-type-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.request-type-switch a {
    display: grid;
    gap: 0.32rem;
    min-height: 100%;
    padding: 1rem;
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 22px;
    background:
        radial-gradient(circle at 95% 8%, rgba(210, 163, 57, 0.12), transparent 30%),
        rgba(255, 253, 248, 0.82);
    color: var(--forest-deep);
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(24, 35, 22, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.request-type-switch a:hover,
.request-type-switch a.is-active {
    transform: translateY(-2px);
    border-color: rgba(210, 163, 57, 0.48);
    background:
        radial-gradient(circle at 95% 8%, rgba(210, 163, 57, 0.24), transparent 30%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(248, 240, 225, 0.94));
}

.request-type-switch span {
    color: var(--gold-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.request-type-switch strong {
    font-family: var(--heading-font);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.request-type-switch small {
    color: rgba(57, 67, 50, 0.7);
    font-weight: 700;
    line-height: 1.45;
}

.custom-request-travelers {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 95% 10%, rgba(68, 92, 47, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(248, 240, 225, 0.82));
}

.custom-request-travelers h3 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.45rem, 2.5vw, 2.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.custom-request-travelers p {
    margin: 0.4rem 0 0;
    color: rgba(57, 67, 50, 0.74);
    line-height: 1.55;
}

.selected-safari-summary {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 22px;
    background:
        radial-gradient(circle at 95% 10%, rgba(210, 163, 57, 0.13), transparent 28%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(248, 240, 225, 0.86));
}

.selected-safari-summary h3 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.selected-safari-summary p:not(.eyebrow) {
    margin: 0.42rem 0 0;
    color: rgba(57, 67, 50, 0.74);
    line-height: 1.55;
}

.selected-safari-summary__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.selected-safari-summary__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.36rem 0.58rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--forest-deep);
    font-size: 0.74rem;
    font-weight: 900;
}

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

.form-field--full {
    grid-column: 1 / -1;
}

.contact-form label {
    display: grid;
    gap: 0.55rem;
    color: var(--forest-deep);
    font-weight: 700;
}

.contact-form span {
    font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(69, 95, 49, 0.14);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(216, 173, 69, 0.35);
    border-color: rgba(216, 173, 69, 0.5);
}

.contact-form small {
    color: #9b4b1f;
    font-weight: 600;
}

.contact-form .request-type-switch span {
    color: var(--gold-deep);
    font-size: 0.72rem;
}

.contact-form .request-type-switch small {
    color: rgba(57, 67, 50, 0.7);
    font-weight: 700;
    line-height: 1.45;
}

.form-alert {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    font-weight: 700;
}

.form-alert--success {
    background: rgba(84, 132, 79, 0.12);
    color: #2e6233;
}

.form-alert--error {
    background: rgba(185, 108, 39, 0.12);
    color: #8c471b;
}

.sidebar-stack {
    display: grid;
    gap: 1rem;
    margin: 1.6rem 0;
}

.sidebar-card {
    display: grid;
    gap: 0.45rem;
    padding: 1.2rem 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-card strong {
    color: #fff;
    font-size: 1.05rem;
}

.sidebar-card small {
    color: rgba(255, 250, 241, 0.76);
}

.sidebar-card a {
    color: #fff2ca;
    font-weight: 700;
}

.sidebar-shell .faq-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-grid--sidebar {
    grid-template-columns: 1fr;
}

.footer-cta {
    padding: 0 0 2.5rem;
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2.4rem;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.2), transparent 26%),
        linear-gradient(135deg, #22311d 0%, #31462b 100%);
    color: #fff;
    box-shadow: var(--shadow);
}

.footer-cta .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer {
    padding: 2rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 1fr;
    gap: 2rem;
    padding: 1rem 0 2rem;
}

.brand--footer {
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    gap: 0.8rem;
    color: var(--muted);
}

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

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.floating-whatsapp {
    position: fixed;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 30;
    display: inline-grid;
    gap: 0.12rem;
    min-width: 154px;
    padding: 0.9rem 1rem 0.95rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.26), transparent 34%),
        linear-gradient(135deg, #1f7f4c, #28a861);
    color: #fff;
    box-shadow: 0 18px 42px rgba(31, 127, 76, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(31, 127, 76, 0.42);
}

.floating-whatsapp span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.82;
}

.floating-whatsapp strong {
    font-size: 1rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal]:target {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 253, 248, 0.99);
        box-shadow: var(--shadow);
        border: 1px solid rgba(68, 92, 47, 0.08);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a,
    .button--nav {
        width: 100%;
        text-align: center;
    }

    .brand-lockup img {
        width: min(225px, 56vw);
    }

    .brand-lockup--footer img {
        width: min(350px, 78vw);
    }

    .tour-grid,
    .collection-grid,
    .assurance-grid,
    .confidence-card-grid,
    .payment-support-grid,
    .destination-grid,
    .activity-grid,
    .guide-grid,
    .review-grid,
    .faq-grid,
    .payment-grid,
    .info-grid,
    .season-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-layout {
        min-height: 520px;
    }

    .tour-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .safari-detail-hero__inner,
    .detail-layout,
    .signature-strip {
        grid-template-columns: 1fr;
    }

    .include-exclude-grid,
    .itinerary-meta,
    .price-table,
    .signature-strip__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-panel {
        position: static;
    }

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

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

    .hero-fact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .immersive-hero h1 {
        font-size: 4.35rem;
    }

    .confidence-split {
        grid-template-columns: 1fr;
    }

    .payment-intro-grid,
    .payment-safety-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 253, 248, 0.99);
        box-shadow: var(--shadow);
        border: 1px solid rgba(68, 92, 47, 0.08);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a,
    .button--nav {
        width: 100%;
        text-align: center;
    }

    .hero-layout,
    .page-hero__grid,
    .contact-grid,
    .split-story,
    .footer-grid,
    .footer-cta__inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .metric-grid,
    .tour-grid,
    .collection-grid,
    .assurance-grid,
    .confidence-card-grid,
    .payment-intro-grid,
    .payment-safety-grid,
    .payment-support-grid,
    .destination-grid,
    .activity-grid,
    .guide-grid,
    .review-grid,
    .faq-grid,
    .payment-grid,
    .info-grid,
    .season-grid,
    .process-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .assurance-stack {
        grid-template-columns: 1fr;
    }

    .finder-proof {
        grid-template-columns: 1fr;
    }

    .collection-grid--featured .collection-card:first-child {
        grid-column: span 1;
    }

    .brand-lockup img {
        width: min(220px, 56vw);
    }

    .brand-lockup--footer img {
        width: min(340px, 78vw);
    }

    .hero-showcase,
    .hero-layout {
        min-height: auto;
    }

    .hero-layout,
    .page-hero__grid {
        padding: 2rem;
    }

    .safari-detail-hero {
        min-height: auto;
    }

    .immersive-hero {
        min-height: auto;
    }

    .immersive-hero__content {
        padding: 5.6rem 0 2.6rem;
    }

    .safari-detail-hero__inner {
        padding: 4rem 0 2rem;
    }

    .safari-detail-copy h1 {
        font-size: 3.5rem;
    }

    .safari-anchor-nav {
        top: 5.8rem;
    }

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

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

    .trust-ribbon__label {
        grid-column: 1 / -1;
        min-height: auto;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 5.4rem;
    }

    .topbar {
        display: none;
    }

    .hero,
    .section,
    .page-hero {
        padding: 3.3rem 0;
    }

    .hero-copy h1 {
        font-size: 2.8rem;
        line-height: 1;
    }

    .page-hero h1,
    .section-heading h2,
    .finder-panel h2,
    .footer-cta h2,
    .story-card h2,
    .sidebar-shell h2 {
        font-size: 2.25rem;
    }

    .safari-detail-copy h1 {
        font-size: 2.8rem;
    }

    .immersive-hero h1 {
        font-size: 3rem;
    }

    .immersive-hero__content {
        padding: 4.4rem 0 2rem;
    }

    .hero-fact-strip article {
        min-height: auto;
    }

    .detail-panel h2,
    .booking-panel h2 {
        font-size: 2rem;
    }

    .safari-facts {
        grid-template-columns: 1fr;
    }

    .safari-anchor-nav {
        top: 4.8rem;
    }

    .safari-facts article {
        min-height: auto;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item span {
        width: fit-content;
        height: auto;
        min-height: 0;
        padding: 0.45rem 0.7rem;
        border-radius: 999px;
    }

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

    .tour-grid--compact,
    .destination-grid--featured,
    .hero-fact-strip {
        grid-template-columns: 1fr;
    }

    .include-exclude-grid,
    .itinerary-meta,
    .price-table,
    .safari-gallery,
    .signature-strip__facts {
        grid-template-columns: 1fr;
    }

    .safari-gallery {
        grid-auto-rows: 210px;
    }

    .safari-gallery figure:first-child {
        grid-row: span 1;
    }

    .signature-strip__copy h2 {
        font-size: 2rem;
    }

    .signature-strip__facts article {
        min-height: auto;
    }

    .nav-shell {
        padding: 0.9rem 0;
    }

    .footer-cta__inner,
    .confidence-panel,
    .payment-summary,
    .payment-safety-panel,
    .payment-step,
    .payment-support-card,
    .assurance-card,
    .confidence-card,
    .info-card,
    .guide-card,
    .review-card,
    .activity-card,
    .season-card,
    .story-card,
    .process-card,
    .faq-card,
    .payment-card,
    .form-shell,
    .sidebar-shell {
        padding: 1.3rem;
    }

    .hero-planning-card,
    .tour-card__content,
    .destination-card__body,
    .detail-panel,
    .booking-panel,
    .page-hero__grid {
        padding: 1.3rem;
    }

    .hero-photo-strip {
        grid-template-columns: 1fr;
    }

    .brand-lockup img {
        width: min(196px, 62vw);
    }

    .brand-lockup--footer img {
        width: min(300px, 78vw);
    }

    .hero-layout,
    .page-hero__grid {
        border-radius: 28px;
        padding: 1.5rem;
    }

    .trust-ribbon {
        grid-template-columns: 1fr;
        margin-top: -1.2rem;
    }

    .trust-ribbon__item,
    .trust-ribbon__label {
        min-height: auto;
    }

    .finder-panel {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .filter-chip {
        flex: 1 1 auto;
    }

    .floating-whatsapp {
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
        justify-content: center;
        text-align: center;
    }

    .payment-step {
        grid-template-columns: 1fr;
    }

    .payment-step span {
        width: fit-content;
        height: auto;
        padding: 0.45rem 0.7rem;
        border-radius: 999px;
    }
}

/* Booking-focused public polish */
.hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(1.4rem, 3vw, 3rem);
}

.hero-concierge-card {
    align-self: end;
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.32), transparent 30%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.2), rgba(255, 253, 248, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 60px rgba(17, 24, 15, 0.22);
    backdrop-filter: blur(16px);
}

.hero-concierge-card h2 {
    margin: 0;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 2.35rem;
    line-height: 1;
}

.hero-route-stack {
    display: grid;
    gap: 0.7rem;
}

.hero-route-stack a {
    display: grid;
    gap: 0.35rem;
    padding: 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition: transform 200ms ease, background-color 200ms ease;
}

.hero-route-stack a:hover {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.16);
}

.hero-route-stack span,
.hero-concierge-card__footer span {
    color: rgba(255, 242, 202, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-route-stack strong {
    color: rgba(255, 250, 241, 0.94);
    line-height: 1.35;
}

.hero-concierge-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.booking-path-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: -1.5rem;
    border-radius: var(--radius-xl);
    background: rgba(68, 92, 47, 0.14);
    box-shadow: 0 24px 56px rgba(24, 35, 22, 0.12);
}

.booking-path-strip article {
    display: grid;
    gap: 0.55rem;
    padding: 1.25rem;
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.12), transparent 28%),
        rgba(255, 253, 248, 0.96);
}

.booking-path-strip span,
.tour-card__planner-row span,
.finder-cta-row span,
.journeys-hero-card__overlay span,
.safari-hero-quote span,
.booking-panel__signals span {
    color: var(--gold-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.booking-path-strip strong {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: 1.42rem;
    line-height: 1.05;
}

.booking-path-strip p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
}

.journeys-hero-card {
    position: relative;
}

.journeys-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(17, 24, 15, 0.72));
    pointer-events: none;
}

.journeys-hero-card__overlay {
    position: absolute;
    z-index: 1;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.journeys-hero-card__overlay span {
    color: #fff2ca;
}

.journeys-hero-card__overlay strong {
    color: #fff;
    line-height: 1.35;
}

.finder-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(68, 92, 47, 0.08);
    border: 1px solid rgba(68, 92, 47, 0.08);
}

.tour-card {
    isolation: isolate;
}

.tour-card__planner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(68, 92, 47, 0.1);
}

.tour-card--featured .tour-card__planner-row {
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.tour-card--featured .tour-card__planner-row span {
    color: #fff2ca;
}

.tour-card__planner-row a {
    display: inline-flex;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(210, 163, 57, 0.14);
    color: var(--gold-deep);
    font-weight: 800;
}

.tour-card--featured .tour-card__planner-row a {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.safari-hero-side {
    display: grid;
    gap: 1rem;
}

.safari-hero-quote {
    display: grid;
    gap: 0.9rem;
    padding: 1.15rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.32), transparent 28%),
        rgba(255, 253, 248, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.safari-hero-quote span {
    color: #fff2ca;
}

.safari-hero-quote strong {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 1.55rem;
    line-height: 1.05;
}

.booking-panel__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.booking-panel__signals span {
    width: fit-content;
    padding: 0.45rem 0.62rem;
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest);
    letter-spacing: 0.09em;
}

.mobile-booking-bar {
    display: none;
}

@media (max-width: 960px) {
    .hero-layout,
    .safari-detail-hero__inner {
        grid-template-columns: 1fr;
    }

    .hero-concierge-card {
        max-width: none;
    }

    .booking-path-strip {
        grid-template-columns: 1fr;
        margin-top: -0.8rem;
    }
}

@media (max-width: 640px) {
    .hero-concierge-card h2 {
        font-size: 2rem;
    }

    .hero-concierge-card,
    .booking-path-strip article,
    .journeys-hero-card__overlay {
        border-radius: 22px;
    }

    .tour-card__planner-row,
    .finder-cta-row,
    .hero-concierge-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-booking-bar {
        position: fixed;
        right: 1rem;
        bottom: 5.65rem;
        left: 1rem;
        z-index: 29;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        padding: 0.6rem;
        border-radius: 999px;
        background: rgba(255, 253, 248, 0.94);
        border: 1px solid rgba(68, 92, 47, 0.12);
        box-shadow: 0 18px 46px rgba(24, 35, 22, 0.18);
        backdrop-filter: blur(14px);
    }

    .mobile-booking-bar .button {
        width: 100%;
        padding: 0.78rem 0.8rem;
        font-size: 0.86rem;
    }
}

/* Premium card and itinerary refinements */
.site-header .brand-lockup {
    padding: 0.38rem 0.66rem;
}

.site-header .brand-lockup img {
    width: clamp(142px, 14vw, 178px);
}

.tour-card {
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(68, 92, 47, 0.1);
    background:
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 254, 250, 0.99), rgba(246, 239, 225, 0.98));
    box-shadow: 0 22px 58px rgba(24, 35, 22, 0.1);
}

.tour-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.3rem;
    right: 1.3rem;
    z-index: 2;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(210, 163, 57, 0.88), transparent);
}

.tour-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 36px 84px rgba(24, 35, 22, 0.18);
}

.tour-card--featured {
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 82px rgba(24, 35, 22, 0.18);
}

.tour-card--featured::before {
    background: linear-gradient(90deg, transparent, rgba(255, 226, 156, 0.95), transparent);
}

.tour-card__media {
    min-height: 286px;
}

.tour-card:not(.tour-card--featured) .tour-card__media {
    aspect-ratio: 1.24;
    min-height: 0;
}

.tour-card__media::after {
    background:
        linear-gradient(180deg, rgba(20, 28, 18, 0.08), rgba(20, 28, 18, 0.42)),
        radial-gradient(circle at top left, rgba(210, 163, 57, 0.2), transparent 34%);
}

.tour-card__labels {
    top: 1rem;
    bottom: auto;
    align-items: flex-start;
}

.tour-card .card-badge,
.tour-card .tour-card__comfort {
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.58);
    color: var(--forest-deep);
    backdrop-filter: blur(12px);
}

.tour-card__content {
    gap: 0.95rem;
    padding: 1.45rem;
}

.tour-card--featured .tour-card__content {
    padding: 2rem;
}

.tour-card h3 {
    max-width: 18rem;
    font-size: clamp(1.5rem, 2vw, 1.95rem);
}

.tour-card__route {
    margin: 0;
    color: var(--gold-deep);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tour-card__summary {
    line-height: 1.64;
}

.tour-card__meta {
    margin: 0;
    padding: 0.62rem;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(68, 92, 47, 0.08);
}

.tour-card:not(.tour-card--featured) .tour-card__meta span {
    background: rgba(68, 92, 47, 0.075);
}

.tour-card__footer {
    align-items: center;
    padding-top: 0.92rem;
    border-top: 1px solid rgba(68, 92, 47, 0.1);
}

.tour-card__footer .text-link {
    font-weight: 900;
}

.timeline-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 1.15rem;
    padding: 1.25rem;
    border: 1px solid rgba(68, 92, 47, 0.09);
    background:
        radial-gradient(circle at top left, rgba(210, 163, 57, 0.12), transparent 28%),
        rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 46px rgba(24, 35, 22, 0.07);
}

.timeline-item .timeline-day-badge {
    width: 78px;
    height: 78px;
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 226, 156, 0.24), transparent 34%),
        linear-gradient(135deg, var(--forest-deep), #4b6736);
    box-shadow: 0 16px 32px rgba(24, 35, 22, 0.16);
}

.itinerary-day-body,
.itinerary-copy {
    display: grid;
    gap: 0.62rem;
}

.itinerary-field-label {
    margin: 0;
    color: var(--gold-deep);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.itinerary-copy h3 {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.itinerary-copy p:not(.itinerary-field-label) {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.itinerary-meta--database {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.7rem;
}

.itinerary-meta--database div {
    padding: 0.85rem;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(248, 241, 226, 0.9));
    border: 1px solid rgba(68, 92, 47, 0.08);
}

.itinerary-meta--database dd {
    font-size: 0.98rem;
}

@media (max-width: 1080px) {
    .site-header .brand-lockup img {
        width: min(168px, 42vw);
    }
}

@media (max-width: 720px) {
    .site-header .brand-lockup {
        padding: 0.34rem 0.56rem;
    }

    .site-header .brand-lockup img {
        width: min(150px, 48vw);
    }

    .tour-card {
        border-radius: 24px;
    }

    .tour-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-item .timeline-day-badge {
        width: fit-content;
        height: auto;
        padding: 0.48rem 0.78rem;
        border-radius: 999px;
    }

    .itinerary-meta--database {
        grid-template-columns: 1fr;
    }
}

/* Extra height reduction for booking-card scanability */
.tour-card__media {
    min-height: 210px;
}

.tour-card:not(.tour-card--featured) .tour-card__media {
    aspect-ratio: 1.78;
}

.tour-card--mini .tour-card__media {
    min-height: 148px;
}

.tour-card__content {
    gap: 0.52rem;
    padding: 1rem;
}

.tour-card--featured .tour-card__content {
    padding: 1.3rem;
}

.tour-card h3 {
    font-size: clamp(1.26rem, 1.6vw, 1.58rem);
}

.tour-card__route {
    font-size: 0.74rem;
}

.tour-card .card-badge,
.tour-card .tour-card__comfort {
    padding: 0.3rem 0.56rem;
    font-size: 0.68rem;
}

.tour-card:not(.tour-card--featured) .tick-list,
.tour-card--mini .tour-card__summary {
    display: none;
}

.tour-card--featured .tick-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-card__summary {
    font-size: 0.95rem;
    line-clamp: 2;
}

.tour-card__footer .button {
    padding: 0.7rem 0.86rem;
}

@media (max-width: 720px) {
    .tour-card__media,
    .tour-card--mini .tour-card__media {
        min-height: 170px;
    }
}

/* Final compact pass for safari package previews */
.tour-card__media {
    min-height: 190px;
}

.tour-card:not(.tour-card--featured) .tour-card__media {
    aspect-ratio: 2.05;
}

.tour-card--mini .tour-card__media {
    min-height: 136px;
}

.tour-card h3 {
    margin: 0;
}

.tour-card:not(.tour-card--featured) .tour-card__summary {
    display: none;
}

.tour-card__footer {
    flex-wrap: nowrap;
    padding-top: 0.48rem;
}

.tour-card__footer .button {
    padding: 0.58rem 0.72rem;
    font-size: 0.82rem;
    white-space: nowrap;
}

.tour-card__footer .text-link {
    font-size: 0.86rem;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .tour-card__media,
    .tour-card--mini .tour-card__media {
        min-height: 160px;
    }

    .tour-card__footer {
        flex-wrap: wrap;
    }
}

/* Compact clickable safari cards and accommodation day previews */
.tour-card {
    cursor: pointer;
}

.tour-card__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: inherit;
}

.tour-card__stretched-link:focus-visible {
    outline: 3px solid rgba(210, 163, 57, 0.8);
    outline-offset: 4px;
}

.tour-card a:not(.tour-card__stretched-link),
.tour-card button {
    position: relative;
    z-index: 6;
}

.tour-card__media {
    min-height: 236px;
}

.tour-card:not(.tour-card--featured) .tour-card__media {
    aspect-ratio: 1.58;
}

.tour-card__content {
    gap: 0.62rem;
    padding: 1.12rem;
}

.tour-card--featured .tour-card__content {
    padding: 1.55rem;
}

.tour-card h3 {
    max-width: none;
    font-size: clamp(1.34rem, 1.8vw, 1.72rem);
}

.tour-card__summary {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.52;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tour-card__meta {
    gap: 0.42rem;
    padding: 0.46rem;
    margin-bottom: 0;
}

.tour-card .tick-list {
    gap: 0.46rem;
    font-size: 0.92rem;
    line-height: 1.42;
}

.tour-card .tick-list li {
    padding-left: 1.1rem;
}

.tour-card .tick-list li::before {
    top: 0.42rem;
    width: 0.45rem;
    height: 0.45rem;
}

.tour-card__footer {
    gap: 0.7rem;
    padding-top: 0.65rem;
    margin-top: 0;
}

.tour-card__planner-row {
    padding-bottom: 0.55rem;
}

.tour-card--mini .tour-card__media {
    min-height: 168px;
}

.itinerary-stay {
    display: grid;
    grid-template-columns: minmax(170px, 0.72fr) minmax(280px, 1.28fr);
    gap: 0.85rem;
    align-items: center;
    margin-top: 0.9rem;
    padding: 0.78rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(210, 163, 57, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(245, 238, 224, 0.92));
    border: 1px solid rgba(68, 92, 47, 0.09);
}

.itinerary-stay__copy {
    display: grid;
    gap: 0.34rem;
}

.itinerary-stay__copy h4 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 1.7vw, 1.55rem);
    line-height: 1.05;
}

.itinerary-stay__copy .text-link {
    width: fit-content;
    margin-top: 0.12rem;
}

.itinerary-stay__images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.itinerary-stay__images img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 14px 34px rgba(24, 35, 22, 0.12);
}

@media (max-width: 920px) {
    .itinerary-stay {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .tour-card__media,
    .tour-card--mini .tour-card__media {
        min-height: 190px;
    }

    .tour-card__content {
        padding: 1rem;
    }

    .itinerary-stay__images {
        display: flex;
        overflow-x: auto;
        padding-bottom: 0.15rem;
        scroll-snap-type: x proximity;
    }

    .itinerary-stay__images img {
        min-width: 148px;
        height: 94px;
        scroll-snap-align: start;
    }
}

/* Guide/blog detail pages and final safari card polish */
.guide-card--link {
    display: grid;
    align-content: start;
    gap: 0.72rem;
    color: inherit;
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.guide-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 68px rgba(24, 35, 22, 0.13);
    border-color: rgba(210, 163, 57, 0.24);
}

.guide-card__read-more {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest-deep);
    font-weight: 900;
}

.guide-card__read-more::after {
    content: "\2192";
    margin-left: 0.4rem;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
    gap: 1.2rem;
    align-items: start;
}

.blog-article,
.blog-sidebar {
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(210, 163, 57, 0.12), transparent 28%),
        rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(68, 92, 47, 0.08);
    box-shadow: 0 24px 62px rgba(24, 35, 22, 0.08);
}

.blog-article {
    display: grid;
    gap: 1rem;
    padding: clamp(1.3rem, 3vw, 2.2rem);
}

.blog-article h2,
.blog-article h3,
.blog-sidebar h2 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
}

.blog-article__lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.78;
}

.blog-article__section {
    display: grid;
    gap: 0.42rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(68, 92, 47, 0.1);
}

.blog-article__section p,
.blog-sidebar p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.blog-sidebar {
    position: sticky;
    top: 8rem;
    display: grid;
    gap: 0.85rem;
    padding: 1.15rem;
}

.tour-card__media {
    min-height: 198px;
}

.tour-card:not(.tour-card--featured) .tour-card__media {
    aspect-ratio: 1.78;
    min-height: 0;
}

.tour-card--mini .tour-card__media {
    min-height: 154px;
}

.tour-card__content {
    gap: 0.7rem;
}

.tour-card:not(.tour-card--featured) .tour-card__summary {
    display: none;
}

.tour-card__route {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 0.42rem 0.62rem;
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
    border: 1px solid rgba(68, 92, 47, 0.08);
    color: var(--forest-deep);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-transform: none;
}

.tour-card__route::before {
    content: "Route";
    padding: 0.22rem 0.42rem;
    border-radius: 999px;
    background: rgba(210, 163, 57, 0.18);
    color: var(--gold-deep);
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tour-card--featured .tour-card__route {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.tour-card--featured .tour-card__route::before {
    background: rgba(255, 226, 156, 0.18);
    color: #fff2ca;
}

.tour-card .tick-list {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.08rem;
    padding: 0.72rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(68, 92, 47, 0.08);
    font-size: 0.92rem;
    line-height: 1.42;
}

.tour-card .tick-list::before {
    content: "Highlights";
    display: block;
    margin-bottom: 0.05rem;
    color: var(--gold-deep);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tour-card--featured .tick-list {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.tour-card--featured .tick-list::before {
    color: #fff2ca;
}

.tour-card__footer {
    display: grid;
    grid-template-columns: minmax(124px, 0.95fr) minmax(104px, 0.72fr);
    gap: 0.55rem;
    align-items: center;
    padding-top: 0.72rem;
}

.tour-card__footer .button,
.tour-card__footer .text-link {
    justify-content: center;
    width: 100%;
    min-height: 42px;
    text-align: center;
    white-space: nowrap;
}

.tour-card__footer .button {
    padding: 0.68rem 0.78rem;
}

.tour-card__footer .text-link {
    padding: 0.62rem 0.76rem;
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
}

.tour-card--featured .tour-card__footer .text-link {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 920px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 720px) {
    .tour-card__media,
    .tour-card--mini .tour-card__media {
        min-height: 178px;
    }

    .tour-card__footer {
        grid-template-columns: 1fr;
    }

    .tour-card__route {
        width: 100%;
    }
}

/* Full-width home hero and compact WhatsApp icon */
.hero {
    padding-top: 0;
}

.hero .hero-shell {
    width: 100%;
    max-width: none;
}

.hero-showcase {
    min-height: clamp(640px, 86vh, 860px);
    border-radius: 0 0 44px 44px;
}

.hero-layout {
    width: var(--shell);
    min-height: clamp(640px, 86vh, 860px);
    margin-inline: auto;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.floating-whatsapp {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    place-items: center;
    width: 62px;
    min-width: 0;
    height: 62px;
    padding: 0;
    border-radius: 50%;
}

.floating-whatsapp::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        10px 14px 0 -10px #fff,
        inset 0 0 0 7px #fff;
    clip-path: polygon(50% 0, 64% 3%, 78% 11%, 89% 24%, 96% 39%, 98% 55%, 94% 70%, 86% 83%, 73% 93%, 57% 99%, 42% 98%, 29% 93%, 4% 100%, 12% 76%, 4% 62%, 2% 47%, 5% 32%, 14% 18%, 27% 8%);
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 18px;
    border: solid #28a861;
    border-width: 0 0 4px 4px;
    border-radius: 0 0 0 12px;
    transform: rotate(-34deg) translate(1px, 1px);
}

.floating-whatsapp span,
.floating-whatsapp strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

@media (max-width: 720px) {
    .hero-showcase {
        min-height: 720px;
        border-radius: 0 0 30px 30px;
    }

    .hero-layout {
        width: min(100% - 1.4rem, 1200px);
        min-height: 720px;
        padding-block: 3rem;
    }

    .floating-whatsapp {
        right: auto;
        left: 1rem;
        bottom: 1rem;
        width: 56px;
        min-width: 0;
        height: 56px;
        text-align: left;
    }
}

/* Compact sticky header */
.topbar {
    padding: 0.36rem 0;
}

.topbar__inner {
    gap: 0.45rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.nav-shell {
    padding: 0.36rem 0;
}

.site-header .brand-lockup {
    padding: 0.28rem 0.52rem;
    box-shadow: 0 10px 24px rgba(24, 35, 22, 0.07);
}

.site-header .brand-lockup img {
    width: clamp(126px, 12vw, 154px);
}

.site-nav {
    gap: 0.18rem;
}

.site-nav a {
    padding: 0.46rem 0.58rem;
    font-size: 0.84rem;
}

.button--nav {
    margin-left: 0.2rem;
    padding: 0.58rem 0.84rem;
    font-size: 0.84rem;
}

.nav-toggle {
    width: 40px;
    height: 40px;
}

.safari-anchor-nav {
    top: 4.85rem;
}

@media (max-width: 1080px) {
    .site-header .brand-lockup img {
        width: min(146px, 38vw);
    }
}

@media (max-width: 720px) {
    .topbar {
        padding: 0.28rem 0;
    }

    .topbar__inner {
        gap: 0.28rem 0.7rem;
        font-size: 0.62rem;
    }

    .nav-shell {
        padding: 0.3rem 0;
    }

    .site-header .brand-lockup {
        padding: 0.24rem 0.46rem;
    }

    .site-header .brand-lockup img {
        width: min(134px, 42vw);
    }

    .safari-anchor-nav {
        top: 4.05rem;
    }
}

/* Premium home hero alignment */
.hero-showcase {
    min-height: clamp(690px, 88vh, 920px);
    border-radius: 0 0 54px 54px;
}

.hero-showcase__image {
    transform: scale(1.03);
    transform-origin: center;
}

.hero-showcase__shade {
    background:
        linear-gradient(90deg, rgba(12, 18, 10, 0.92) 0%, rgba(16, 23, 13, 0.82) 36%, rgba(19, 28, 15, 0.42) 64%, rgba(19, 28, 15, 0.18) 100%),
        radial-gradient(circle at 18% 48%, rgba(210, 163, 57, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(17, 24, 15, 0.08), rgba(17, 24, 15, 0.72));
}

.hero-showcase__glow {
    background:
        radial-gradient(circle at 17% 20%, rgba(210, 163, 57, 0.36), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 42%);
}

.hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    align-items: center;
    gap: clamp(1.4rem, 4vw, 4rem);
    min-height: clamp(690px, 88vh, 920px);
    padding-block: clamp(4.8rem, 7vw, 7.6rem);
}

.hero-copy {
    align-self: center;
    max-width: 760px;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.15rem;
}

.hero-badge-row span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.52rem 0.76rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 242, 202, 0.92);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 1.05rem;
    font-size: clamp(4.3rem, 8vw, 7.7rem);
    line-height: 0.84;
    letter-spacing: -0.055em;
    text-wrap: balance;
    text-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.hero-copy .lead {
    max-width: 610px;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid rgba(210, 163, 57, 0.88);
    color: rgba(255, 250, 241, 0.9);
    font-size: clamp(1.08rem, 1.7vw, 1.36rem);
    line-height: 1.62;
}

.hero-actions {
    margin-top: 1.45rem;
}

.hero-actions .button {
    min-height: 50px;
}

.trust-list {
    margin-top: 1.05rem;
}

.trust-chip {
    padding: 0.5rem 0.72rem;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    backdrop-filter: blur(10px);
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    max-width: 620px;
    margin-top: 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 46px rgba(17, 24, 15, 0.18);
}

.hero-proof-grid article {
    display: grid;
    gap: 0.18rem;
    padding: 0.82rem 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero-proof-grid strong {
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(1.24rem, 2vw, 1.62rem);
    line-height: 1;
}

.hero-proof-grid span {
    color: rgba(255, 242, 202, 0.82);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-concierge-card {
    align-self: center;
    position: relative;
    gap: 0.85rem;
    padding: 1.15rem;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.22), rgba(255, 253, 248, 0.12)),
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.28), transparent 28%);
}

.hero-concierge-card::before {
    content: "";
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fff2ca, rgba(255, 242, 202, 0));
}

.hero-concierge-card .eyebrow {
    margin-bottom: 0;
}

.hero-concierge-card h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.hero-concierge-card__copy {
    margin: 0;
    color: rgba(255, 250, 241, 0.8);
    line-height: 1.58;
}

.hero-route-stack {
    gap: 0.55rem;
}

.hero-route-stack a {
    grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    padding: 0.82rem;
    border-radius: 20px;
}

.hero-route-stack span {
    color: #fff2ca;
}

.hero-concierge-card__footer {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 960px) {
    .hero-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-concierge-card {
        align-self: stretch;
    }
}

@media (max-width: 720px) {
    .hero-showcase {
        min-height: auto;
        border-radius: 0 0 32px 32px;
    }

    .hero-showcase__shade {
        background:
            linear-gradient(180deg, rgba(12, 18, 10, 0.84) 0%, rgba(12, 18, 10, 0.66) 54%, rgba(12, 18, 10, 0.9) 100%),
            radial-gradient(circle at 20% 15%, rgba(210, 163, 57, 0.24), transparent 36%);
    }

    .hero-layout {
        width: min(100% - 1.2rem, 1200px);
        min-height: auto;
        gap: 0.85rem;
        padding-block: 2.1rem 1.45rem;
    }

    .hero-badge-row {
        margin-bottom: 0.85rem;
    }

    .hero-badge-row span {
        padding: 0.42rem 0.58rem;
        font-size: 0.62rem;
        letter-spacing: 0.1em;
    }

    .hero-copy h1 {
        font-size: clamp(2.9rem, 13vw, 4rem);
        line-height: 0.9;
        letter-spacing: -0.045em;
    }

    .hero-copy .lead {
        padding-left: 0.78rem;
        font-size: 0.96rem;
    }

    .hero-actions {
        gap: 0.6rem;
    }

    .hero-actions .button {
        flex: 1 1 100%;
        min-height: 48px;
    }

    .trust-list {
        display: none;
    }

    .hero-proof-grid {
        display: none;
    }

    .hero-concierge-card {
        display: none;
    }
}

/* Safari detail cleanup: mobile CTA clarity and fewer nested cards */
.page-safari .timeline {
    overflow: hidden;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 26px;
    background: rgba(255, 253, 248, 0.72);
}

.page-safari .timeline-item {
    border: 0;
    border-bottom: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-safari .timeline-item:last-child {
    border-bottom: 0;
}

.page-safari .itinerary-meta--database {
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(68, 92, 47, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.44);
}

.page-safari .itinerary-meta--database div {
    padding: 0.78rem;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.page-safari .itinerary-meta--database div + div {
    border-left: 1px solid rgba(68, 92, 47, 0.08);
}

.page-safari .itinerary-stay {
    margin-top: 0.85rem;
    padding: 0.9rem 0 0;
    border: 0;
    border-top: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-safari .itinerary-stay__images img {
    border-color: rgba(68, 92, 47, 0.1);
    box-shadow: none;
}

.page-safari .booking-panel__price,
.page-safari .concierge-note,
.page-safari .booking-panel__checklist {
    padding: 0.85rem 0;
    border-top: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 0;
    background: transparent;
}

.page-safari .booking-panel__price {
    align-items: flex-start;
}

.page-safari .booking-panel__checklist {
    gap: 0.55rem;
}

@media (max-width: 720px) {
    .page-safari .floating-whatsapp {
        display: none;
    }

    .page-safari .mobile-booking-bar {
        bottom: calc(0.85rem + env(safe-area-inset-bottom));
    }

    .page-safari .itinerary-meta--database div + div {
        border-top: 1px solid rgba(68, 92, 47, 0.08);
        border-left: 0;
    }
}

/* Premium home booking path and review ribbon */
.booking-path-section {
    position: relative;
    z-index: 4;
    padding-top: 0;
    padding-bottom: 0.85rem;
}

.booking-path-section::before {
    content: "";
    position: absolute;
    inset: -4.4rem 0 auto;
    height: 12rem;
    background:
        radial-gradient(circle at 18% 22%, rgba(210, 163, 57, 0.2), transparent 24%),
        linear-gradient(180deg, rgba(248, 241, 224, 0), rgba(248, 241, 224, 0.96) 58%, rgba(248, 241, 224, 0));
    pointer-events: none;
}

.booking-path-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    overflow: visible;
    margin-top: -2.2rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.booking-path-strip::before {
    content: "";
    position: absolute;
    top: 2.05rem;
    right: 9%;
    left: 9%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(210, 163, 57, 0), rgba(210, 163, 57, 0.72), rgba(210, 163, 57, 0));
    pointer-events: none;
}

.booking-path-strip article {
    position: relative;
    isolation: isolate;
    min-height: 178px;
    gap: 0.62rem;
    overflow: hidden;
    padding: 1.22rem;
    border: 1px solid rgba(68, 92, 47, 0.11);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(250, 241, 218, 0.9)),
        radial-gradient(circle at 90% 8%, rgba(210, 163, 57, 0.18), transparent 30%);
    box-shadow: 0 22px 55px rgba(24, 35, 22, 0.1);
}

.booking-path-strip article::before {
    content: "";
    position: absolute;
    inset: auto -1.8rem -2.5rem auto;
    width: 7rem;
    height: 7rem;
    border: 1px solid rgba(210, 163, 57, 0.22);
    border-radius: 50%;
    opacity: 0.78;
    pointer-events: none;
    z-index: -1;
}

.booking-path-strip article::after {
    content: "";
    position: absolute;
    top: 1.95rem;
    right: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
    border: 3px solid rgba(248, 241, 224, 0.98);
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(210, 163, 57, 0.16);
}

.booking-path-strip article:last-child::after {
    display: none;
}

.booking-path-strip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border: 1px solid rgba(255, 242, 202, 0.46);
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 242, 202, 0.34), transparent 34%),
        linear-gradient(145deg, var(--forest), var(--forest-deep));
    color: #fff7e6;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(24, 35, 22, 0.18);
}

.booking-path-strip strong {
    max-width: 11rem;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.booking-path-strip p {
    max-width: 22rem;
    margin: 0;
    color: rgba(57, 67, 50, 0.78);
    font-size: 0.94rem;
    line-height: 1.52;
}

.review-strip-section {
    position: relative;
    z-index: 3;
    padding-top: 0.55rem;
    padding-bottom: 3rem;
}

.trust-ribbon {
    display: grid;
    grid-template-columns: minmax(220px, 1.18fr) repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.9rem;
    overflow: visible;
    margin-top: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.trust-ribbon__label,
.trust-ribbon__item {
    min-height: 126px;
    border-radius: 26px;
}

.trust-ribbon__label {
    position: relative;
    display: grid;
    align-content: center;
    gap: 0.35rem;
    overflow: hidden;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(255, 242, 202, 0.18);
    background:
        radial-gradient(circle at 100% 0%, rgba(210, 163, 57, 0.32), transparent 34%),
        linear-gradient(135deg, #172312, #3f562d);
    color: #fff7e6;
    font-family: var(--heading-font);
    font-size: clamp(1.75rem, 2.6vw, 2.55rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-transform: none;
    box-shadow: 0 22px 50px rgba(24, 35, 22, 0.14);
}

.trust-ribbon__label::after {
    content: "Public proof for confident safari planning";
    color: rgba(255, 250, 241, 0.72);
    font-family: var(--body-font);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.trust-ribbon__item {
    position: relative;
    display: grid;
    align-content: center;
    overflow: hidden;
    padding: 1.1rem 1.15rem;
    border: 1px solid rgba(68, 92, 47, 0.11);
    background:
        radial-gradient(circle at 86% 14%, rgba(210, 163, 57, 0.14), transparent 30%),
        rgba(255, 253, 248, 0.96);
    box-shadow: 0 20px 46px rgba(24, 35, 22, 0.08);
}

.trust-ribbon__item::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(210, 163, 57, 0.95), rgba(255, 242, 202, 0.92));
    opacity: 0.62;
}

.trust-ribbon__item::after {
    content: "Rated excellent";
    margin-top: 0.7rem;
    color: var(--gold-deep);
    font-size: 0.76rem;
    letter-spacing: 0.18em;
}

.trust-ribbon__item strong {
    display: block;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(2.15rem, 3.1vw, 3rem);
    line-height: 0.88;
    letter-spacing: -0.05em;
}

.trust-ribbon__item span {
    display: block;
    margin-top: 0.45rem;
    color: rgba(57, 67, 50, 0.7);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .booking-path-strip,
    .trust-ribbon {
        grid-template-columns: 1fr;
    }

    .booking-path-strip {
        margin-top: -1.25rem;
    }

    .booking-path-strip::before,
    .booking-path-strip article::after {
        display: none;
    }

    .booking-path-strip article {
        min-height: auto;
    }

    .trust-ribbon__label,
    .trust-ribbon__item {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .booking-path-section {
        padding-top: 1rem;
    }

    .booking-path-section::before {
        inset: -2rem 0 auto;
        height: 8rem;
    }

    .booking-path-strip,
    .trust-ribbon {
        gap: 0.7rem;
    }

    .booking-path-strip {
        margin-top: 0;
    }

    .booking-path-strip article {
        grid-template-columns: auto 1fr;
        column-gap: 0.9rem;
        padding: 1rem;
        border-radius: 22px;
    }

    .booking-path-strip span {
        grid-row: span 2;
        width: 3.05rem;
        height: 3.05rem;
        font-size: 0.72rem;
    }

    .booking-path-strip strong {
        max-width: none;
        font-size: 1.36rem;
    }

    .booking-path-strip p {
        grid-column: 2;
        font-size: 0.9rem;
    }

    .review-strip-section {
        padding-bottom: 2.2rem;
    }

    .trust-ribbon__label,
    .trust-ribbon__item {
        border-radius: 22px;
    }

    .trust-ribbon__label {
        padding: 1rem;
        font-size: 1.55rem;
    }

    .trust-ribbon__item {
        grid-template-columns: auto 1fr;
        align-items: center;
        align-content: center;
        column-gap: 0.95rem;
        padding: 0.95rem 1rem;
    }

    .trust-ribbon__item::before {
        width: 1.55rem;
        height: 1.55rem;
    }

    .trust-ribbon__item::after {
        grid-column: 2;
        margin-top: 0.35rem;
    }

    .trust-ribbon__item strong {
        font-size: 2rem;
    }

    .trust-ribbon__item span {
        margin-top: 0;
    }
}

/* Unified home safari sections */
.page-home .home-collections-section {
    position: relative;
    overflow: hidden;
    padding-top: 3.4rem;
    background:
        radial-gradient(circle at 8% 12%, rgba(210, 163, 57, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(248, 241, 224, 0), rgba(255, 253, 248, 0.58) 48%, rgba(248, 241, 224, 0));
}

.page-home .home-collections-section .section-heading {
    max-width: 760px;
    margin-bottom: 1.2rem;
}

.page-home .home-collections-section [data-reveal],
.page-home .home-tours-section [data-reveal] {
    opacity: 1;
    transform: none;
}

.page-home .home-collections-section .section-heading h2,
.page-home .home-tours-section .section-heading h2 {
    max-width: 720px;
    font-size: clamp(2.25rem, 5vw, 4.65rem);
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.page-home .collection-grid--featured {
    gap: clamp(0.85rem, 1.6vw, 1.1rem);
}

.page-home .collection-card {
    position: relative;
    display: grid;
    min-height: auto;
    padding: 0;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 30px;
    background:
        radial-gradient(circle at 96% 8%, rgba(210, 163, 57, 0.11), transparent 30%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(247, 239, 224, 0.96));
    color: var(--forest-deep);
    box-shadow: 0 24px 62px rgba(24, 35, 22, 0.11);
}

.page-home .collection-card::after {
    display: none;
}

.page-home .collection-card::before {
    content: "";
    position: absolute;
    inset: 0.65rem;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    pointer-events: none;
}

.page-home .collection-card__media {
    position: relative;
    inset: auto;
    overflow: hidden;
    width: 100%;
    height: 184px;
    border-radius: 0;
    background: #d8cba9;
}

.page-home .collection-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(17, 24, 15, 0.02), rgba(17, 24, 15, 0.24)),
        radial-gradient(circle at 16% 12%, rgba(210, 163, 57, 0.18), transparent 32%);
    pointer-events: none;
}

.page-home .collection-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-home .collection-card__body {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: start;
    gap: 0.58rem;
    min-height: auto;
    padding: 1.1rem;
}

.page-home .collection-card__body span {
    width: fit-content;
    padding: 0.38rem 0.64rem;
    border: 1px solid rgba(210, 163, 57, 0.2);
    border-radius: 999px;
    background: rgba(210, 163, 57, 0.11);
    color: var(--gold-deep);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-home .collection-card h3 {
    max-width: none;
    margin: 0;
    color: var(--forest-deep);
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.page-home .collection-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: rgba(57, 67, 50, 0.76);
    font-size: 0.93rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.page-home .collection-grid--featured .collection-card:first-child {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
    min-height: 382px;
    border-color: rgba(68, 92, 47, 0.12);
    background:
        radial-gradient(circle at 88% 12%, rgba(210, 163, 57, 0.14), transparent 32%),
        linear-gradient(135deg, rgba(255, 253, 248, 1), rgba(245, 236, 217, 0.98));
}

.page-home .collection-grid--featured .collection-card:first-child::after {
    display: none;
}

.page-home .collection-grid--featured .collection-card:first-child .collection-card__media {
    height: 100%;
    min-height: 382px;
}

.page-home .collection-grid--featured .collection-card:first-child .collection-card__media::after {
    background:
        linear-gradient(90deg, rgba(17, 24, 15, 0.06), rgba(17, 24, 15, 0.28)),
        radial-gradient(circle at 18% 15%, rgba(210, 163, 57, 0.2), transparent 34%);
}

.page-home .collection-grid--featured .collection-card:first-child .collection-card__body {
    align-content: center;
    min-height: 382px;
    padding: clamp(1.35rem, 3vw, 2.2rem);
}

.page-home .collection-grid--featured .collection-card:first-child .collection-card__body::before {
    content: "Featured route family";
    width: fit-content;
    margin-bottom: 0.22rem;
    color: rgba(57, 67, 50, 0.54);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-home .collection-grid--featured .collection-card:first-child .collection-card__body span {
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest);
}

.page-home .collection-grid--featured .collection-card:first-child h3 {
    max-width: 25rem;
    color: var(--forest-deep);
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    line-height: 0.93;
}

.page-home .collection-grid--featured .collection-card:first-child p {
    max-width: 28rem;
    color: rgba(57, 67, 50, 0.8);
    font-size: 1.01rem;
    -webkit-line-clamp: 4;
}

.page-home .collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 38px 86px rgba(24, 35, 22, 0.17);
}

.page-home .home-tours-section {
    padding-top: 2.2rem;
}

.page-home .home-tours-section .tour-grid {
    gap: clamp(0.85rem, 1.6vw, 1.1rem);
}

.page-home .home-tours-section .tour-card {
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 30px;
    background:
        radial-gradient(circle at 96% 8%, rgba(210, 163, 57, 0.11), transparent 30%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(247, 239, 224, 0.96));
    color: var(--forest-deep);
    box-shadow: 0 24px 62px rgba(24, 35, 22, 0.11);
}

.page-home .home-tours-section .tour-card::before {
    left: 1.2rem;
    right: 1.2rem;
    background: linear-gradient(90deg, transparent, rgba(210, 163, 57, 0.86), transparent);
}

.page-home .home-tours-section .tour-card__media {
    min-height: 206px;
}

.page-home .home-tours-section .tour-card:not(.tour-card--featured) .tour-card__media {
    aspect-ratio: 1.42;
}

.page-home .home-tours-section .tour-card__labels {
    top: auto;
    bottom: 0.85rem;
}

.page-home .home-tours-section .tour-card .card-badge,
.page-home .home-tours-section .tour-card .tour-card__comfort {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 253, 248, 0.92);
    color: var(--forest-deep);
}

.page-home .home-tours-section .tour-card__content {
    gap: 0.74rem;
    padding: 1.05rem;
}

.page-home .home-tours-section .tour-card h3 {
    max-width: none;
    color: var(--forest-deep);
    font-size: clamp(1.38rem, 1.9vw, 1.82rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.page-home .home-tours-section .tour-card__route {
    width: fit-content;
    max-width: 100%;
    padding: 0.42rem 0.62rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: none;
}

.page-home .home-tours-section .tour-card__route::before {
    background: rgba(210, 163, 57, 0.18);
    color: var(--gold-deep);
}

.page-home .home-tours-section .tour-card__meta {
    width: fit-content;
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(68, 92, 47, 0.1);
}

.page-home .home-tours-section .tour-card__meta span {
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest-deep);
}

.page-home .home-tours-section .tick-list {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(68, 92, 47, 0.1);
}

.page-home .home-tours-section .tick-list::before {
    color: var(--gold-deep);
}

.page-home .home-tours-section .tick-list li {
    color: rgba(57, 67, 50, 0.84);
}

.page-home .home-tours-section .tick-list li::before {
    background: linear-gradient(135deg, var(--gold), var(--forest));
}

.page-home .home-tours-section .tour-card__footer {
    border-top-color: rgba(68, 92, 47, 0.1);
}

.page-home .home-tours-section .tour-card__footer .text-link {
    border: 1px solid rgba(68, 92, 47, 0.1);
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest-deep);
}

.page-home .home-tours-section .tour-card--featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
    min-height: 350px;
    background:
        radial-gradient(circle at 92% 12%, rgba(210, 163, 57, 0.15), transparent 30%),
        linear-gradient(135deg, rgba(255, 253, 248, 0.99), rgba(246, 238, 222, 0.98));
}

.page-home .home-tours-section .tour-card--featured .tour-card__media {
    min-height: 332px;
    margin: 0.72rem;
    border-radius: 24px;
}

.page-home .home-tours-section .tour-card--featured .tour-card__content {
    align-content: center;
    gap: 0.82rem;
    padding: clamp(1.35rem, 2.6vw, 2.2rem);
}

.page-home .home-tours-section .tour-card--featured h3 {
    max-width: 35rem;
    font-size: clamp(2.05rem, 3.6vw, 3.6rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.page-home .home-tours-section .tour-card--featured .tour-card__summary {
    max-width: 42rem;
    color: rgba(57, 67, 50, 0.78);
    -webkit-line-clamp: 3;
}

.page-home .home-tours-section .tour-card--featured .tick-list {
    max-width: 34rem;
}

.page-home .home-tours-section .tour-card--featured .tour-card__footer {
    max-width: 30rem;
}

@media (max-width: 980px) {
    .page-home .collection-grid--featured .collection-card:first-child {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .page-home .collection-grid--featured .collection-card:first-child .collection-card__media {
        height: 245px;
        min-height: 0;
    }

    .page-home .collection-grid--featured .collection-card:first-child .collection-card__body {
        min-height: auto;
    }

    .page-home .home-tours-section .tour-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .page-home .home-tours-section .tour-card--featured .tour-card__media {
        min-height: 245px;
    }
}

@media (max-width: 720px) {
    .page-home .home-collections-section {
        padding-top: 2.2rem;
    }

    .page-home .home-collections-section .section-heading h2,
    .page-home .home-tours-section .section-heading h2 {
        font-size: clamp(2rem, 11vw, 3.15rem);
    }

    .page-home .collection-card,
    .page-home .collection-grid--featured .collection-card:first-child {
        border-radius: 24px;
    }

    .page-home .collection-card::before {
        inset: 0.5rem;
        border-radius: 19px;
    }

    .page-home .collection-card__media,
    .page-home .collection-grid--featured .collection-card:first-child .collection-card__media {
        height: 190px;
    }

    .page-home .collection-card__body,
    .page-home .collection-grid--featured .collection-card:first-child .collection-card__body {
        padding: 0.95rem;
    }

    .page-home .collection-grid--featured .collection-card:first-child .collection-card__body::before {
        display: none;
    }

    .page-home .collection-grid--featured .collection-card:first-child h3,
    .page-home .collection-card h3 {
        font-size: clamp(1.65rem, 8vw, 2.25rem);
    }

    .page-home .home-tours-section .tour-card__media,
    .page-home .home-tours-section .tour-card--featured .tour-card__media {
        min-height: 205px;
        margin: 0.55rem;
        border-radius: 22px;
    }

    .page-home .home-tours-section .tour-card__content,
    .page-home .home-tours-section .tour-card--featured .tour-card__content {
        padding: 1rem;
    }

    .page-home .home-tours-section .tour-card--featured h3 {
        font-size: clamp(1.75rem, 9vw, 2.45rem);
    }

    .page-home .home-tours-section .tour-card__meta,
    .page-home .home-tours-section .tour-card__footer,
    .page-home .home-tours-section .tour-card--featured .tour-card__footer {
        width: 100%;
        max-width: none;
    }
}

/* Unified public website UI system */
:root {
    --ui-bg: #f8f1e4;
    --ui-surface: rgba(255, 253, 248, 0.96);
    --ui-surface-strong: #fffdf8;
    --ui-surface-soft: rgba(247, 239, 224, 0.82);
    --ui-border: rgba(68, 92, 47, 0.12);
    --ui-border-strong: rgba(68, 92, 47, 0.18);
    --ui-shadow: 0 24px 64px rgba(24, 35, 22, 0.11);
    --ui-shadow-hover: 0 36px 90px rgba(24, 35, 22, 0.17);
    --ui-radius: 30px;
    --ui-radius-sm: 20px;
    --ui-card-bg:
        radial-gradient(circle at 92% 8%, rgba(210, 163, 57, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 253, 248, 0.99), rgba(247, 239, 224, 0.96));
    --ui-dark-bg:
        radial-gradient(circle at 90% 10%, rgba(210, 163, 57, 0.26), transparent 30%),
        linear-gradient(135deg, #172312, #40562e);
}

body {
    background:
        radial-gradient(circle at 8% 4%, rgba(210, 163, 57, 0.12), transparent 26%),
        radial-gradient(circle at 94% 8%, rgba(68, 92, 47, 0.1), transparent 28%),
        linear-gradient(180deg, #fffaf1 0%, var(--ui-bg) 42%, #fbf7ee 100%);
}

.section {
    position: relative;
    padding: clamp(3.25rem, 6vw, 5.5rem) 0;
}

.section--compact-top {
    padding-top: clamp(1rem, 2vw, 1.8rem);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(1.2rem, 2vw, 1.7rem);
}

.section-heading h2,
.page-hero h1,
.footer-cta h2,
.story-card h2,
.sidebar-shell h2,
.detail-panel h2,
.booking-panel h2 {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    letter-spacing: -0.055em;
    line-height: 0.96;
    text-wrap: balance;
}

.section-heading h2,
.page-hero h1 {
    font-size: clamp(2.35rem, 5.4vw, 5rem);
}

.section-heading p,
.page-hero p,
.detail-panel p,
.story-card p,
.sidebar-shell p {
    color: rgba(57, 67, 50, 0.76);
}

.eyebrow,
.tour-card__route,
.destination-card__subtitle,
.review-card__title,
.payment-card span,
.sidebar-card span,
.itinerary-field-label {
    color: var(--gold-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.button,
.filter-chip,
.mobile-booking-bar a {
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 32px rgba(24, 35, 22, 0.12);
}

.button {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #172312;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(24, 35, 22, 0.18);
}

.button--ghost,
.text-link {
    color: var(--forest-deep);
}

.button--ghost {
    border-color: rgba(68, 92, 47, 0.18);
    background: rgba(255, 253, 248, 0.84);
}

.site-header {
    background: rgba(255, 250, 241, 0.9);
    border-bottom-color: rgba(68, 92, 47, 0.1);
    box-shadow: 0 16px 42px rgba(24, 35, 22, 0.08);
}

.topbar {
    background: linear-gradient(90deg, var(--forest-rich), var(--forest), var(--forest-deep));
}

.page-hero {
    padding: clamp(2.7rem, 5vw, 4.6rem) 0 clamp(2.2rem, 4vw, 3.6rem);
}

.page-hero__grid,
.split-story,
.contact-grid,
.detail-layout,
.signature-strip,
.footer-cta__inner,
.payment-intro-grid {
    gap: clamp(1rem, 2vw, 1.6rem);
}

.page-hero__grid,
.page-card,
.story-card,
.booking-panel,
.detail-panel,
.signature-strip,
.finder-panel,
.confidence-panel,
.form-shell,
.sidebar-shell,
.footer-cta__inner,
.price-table,
.include-card,
.safari-gallery figure {
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    background: var(--ui-card-bg);
    box-shadow: var(--ui-shadow);
}

.page-hero__grid {
    align-items: stretch;
    overflow: hidden;
    padding: clamp(1rem, 2vw, 1.25rem);
}

.page-hero__grid > div:first-child {
    display: grid;
    align-content: center;
    padding: clamp(1.15rem, 3vw, 2.35rem);
}

.page-card--photo {
    overflow: hidden;
    min-height: 360px;
    padding: 0;
}

.page-card--photo img,
.destination-card__media img,
.collection-card__media img,
.tour-card__media img,
.safari-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-grid,
.tour-grid,
.destination-grid,
.activity-grid,
.guide-grid,
.review-grid,
.assurance-grid,
.confidence-card-grid,
.payment-support-grid,
.payment-grid,
.info-grid,
.season-grid,
.process-grid,
.faq-grid {
    gap: clamp(0.85rem, 1.6vw, 1.15rem);
}

.collection-card,
.tour-card,
.destination-card,
.guide-card,
.review-card,
.activity-card,
.season-card,
.process-card,
.faq-card,
.payment-card,
.info-card,
.assurance-card,
.metric-card,
.payment-support-card,
.sidebar-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    background: var(--ui-card-bg);
    color: var(--forest-deep);
    box-shadow: var(--ui-shadow);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.collection-card:hover,
.tour-card:hover,
.destination-card:hover,
.guide-card:hover,
.review-card:hover,
.activity-card:hover,
.season-card:hover,
.process-card:hover,
.faq-card:hover,
.payment-card:hover,
.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(210, 163, 57, 0.28);
    box-shadow: var(--ui-shadow-hover);
}

.collection-card::after {
    display: none;
}

.collection-card {
    display: grid;
    min-height: auto;
    padding: 0;
}

.collection-card__media {
    position: relative;
    inset: auto;
    overflow: hidden;
    width: 100%;
    height: 210px;
    background: #d8cba9;
}

.collection-card__media::after,
.destination-card__media::after,
.tour-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 24, 15, 0.02), rgba(17, 24, 15, 0.3)),
        radial-gradient(circle at 16% 12%, rgba(210, 163, 57, 0.18), transparent 32%);
    pointer-events: none;
}

.collection-card__media,
.collection-card__media img {
    position: relative;
}

.collection-card__body,
.destination-card__body,
.tour-card__content {
    display: grid;
    gap: 0.68rem;
    padding: 1.08rem;
}

.collection-card__body {
    align-content: start;
    min-height: auto;
}

.collection-card__body span,
.card-badge,
.tour-card__comfort,
.tour-card__tags span,
.detail-tags span,
.booking-panel__signals span {
    width: fit-content;
    border: 1px solid rgba(210, 163, 57, 0.22);
    border-radius: 999px;
    background: rgba(210, 163, 57, 0.12);
    color: var(--gold-deep);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.collection-card h3,
.tour-card h3,
.destination-card h3,
.guide-card h3,
.activity-card h3,
.season-card h3,
.process-card h3,
.faq-card h3,
.payment-card h3,
.info-card h3,
.assurance-card h3 {
    max-width: none;
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.42rem, 2vw, 2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.collection-card p,
.tour-card p,
.destination-card p,
.guide-card p,
.activity-card p,
.season-card p,
.process-card p,
.faq-card p,
.payment-card p,
.info-card p,
.assurance-card p,
.review-card p,
.sidebar-card small {
    color: rgba(57, 67, 50, 0.76);
    line-height: 1.58;
}

.collection-card__route,
.tour-card__route {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.42rem 0.62rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest-deep);
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

.tour-card {
    display: grid;
    padding: 0;
}

.tour-card__media {
    min-height: 210px;
}

.tour-card:not(.tour-card--featured) .tour-card__media {
    aspect-ratio: 1.48;
    min-height: 0;
}

.tour-card__labels {
    top: auto;
    bottom: 0.85rem;
}

.tour-card .card-badge,
.tour-card .tour-card__comfort {
    background: rgba(255, 253, 248, 0.92);
    color: var(--forest-deep);
    backdrop-filter: blur(12px);
}

.tour-card__meta {
    width: fit-content;
    gap: 0.42rem;
    padding: 0.48rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
}

.tour-card__meta span,
.price-table article,
.signature-strip__facts article,
.safari-facts article,
.finder-proof article {
    border-radius: 999px;
    background: rgba(68, 92, 47, 0.08);
    color: var(--forest-deep);
}

.tour-card .tick-list,
.booking-panel__checklist,
.include-card,
.overview-note {
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: var(--ui-radius-sm);
    background: rgba(255, 255, 255, 0.58);
}

.tour-card .tick-list::before {
    color: var(--gold-deep);
}

.tour-card__footer {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(108px, 0.82fr);
    gap: 0.55rem;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(68, 92, 47, 0.1);
}

.tour-card__footer .button,
.tour-card__footer .text-link {
    justify-content: center;
    width: 100%;
    min-height: 42px;
    text-align: center;
}

.tour-card__footer .text-link,
.activity-card__link,
.guide-card__read-more,
.sidebar-card a {
    border-radius: 999px;
    color: var(--forest-deep);
    font-weight: 900;
}

.tour-card--featured {
    border-color: rgba(68, 92, 47, 0.12);
    background:
        radial-gradient(circle at 92% 12%, rgba(210, 163, 57, 0.15), transparent 30%),
        linear-gradient(135deg, rgba(255, 253, 248, 0.99), rgba(246, 238, 222, 0.98));
}

.tour-card--featured h3,
.tour-card--featured p,
.tour-card--featured .tour-card__route,
.tour-card--featured .tour-card__meta,
.tour-card--featured .tick-list li,
.tour-card--featured .text-link {
    color: var(--forest-deep);
}

.tour-card--featured .tour-card__comfort,
.tour-card--featured .card-badge {
    background: rgba(255, 253, 248, 0.92);
    color: var(--forest-deep);
}

.destination-card {
    padding: 0;
}

.destination-card__media {
    position: relative;
    overflow: hidden;
    min-height: 210px;
}

.guide-card,
.review-card,
.activity-card,
.season-card,
.process-card,
.faq-card,
.payment-card,
.info-card,
.assurance-card,
.metric-card,
.payment-support-card,
.sidebar-card {
    padding: clamp(1rem, 2vw, 1.35rem);
}

.guide-card--link {
    display: grid;
    gap: 0.65rem;
}

.review-card strong,
.metric-card strong,
.payment-card strong,
.price-table strong,
.booking-panel__price strong {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    letter-spacing: -0.04em;
}

.form-shell,
.sidebar-shell,
.booking-panel,
.detail-panel {
    padding: clamp(1.1rem, 2vw, 1.55rem);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.finder-search input {
    border: 1px solid rgba(68, 92, 47, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--forest-deep);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.finder-search input:focus {
    border-color: rgba(210, 163, 57, 0.56);
    box-shadow: 0 0 0 4px rgba(210, 163, 57, 0.16);
    outline: none;
}

.timeline {
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: var(--ui-radius);
    background: rgba(255, 253, 248, 0.7);
    box-shadow: var(--ui-shadow);
}

.timeline-item {
    border: 0;
    border-bottom: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.timeline-item:last-child {
    border-bottom: 0;
}

.timeline-day-badge,
.timeline-item span {
    background: linear-gradient(135deg, var(--forest), var(--forest-deep));
    color: #fff7e6;
}

.booking-panel {
    position: sticky;
    top: 7rem;
}

.booking-panel::before,
.tour-card::before,
.info-card::before,
.activity-card::before,
.season-card::before,
.process-card::before,
.payment-card::before,
.faq-card::before,
.assurance-card::before {
    background: linear-gradient(90deg, transparent, rgba(210, 163, 57, 0.86), transparent);
}

.footer-cta {
    padding-top: clamp(3rem, 5vw, 5rem);
}

.footer-cta__inner {
    background: var(--ui-dark-bg);
    color: #fff7e6;
}

.footer-cta h2,
.footer-cta p {
    color: #fff7e6;
}

.site-footer {
    background:
        radial-gradient(circle at 85% 10%, rgba(210, 163, 57, 0.18), transparent 30%),
        linear-gradient(180deg, #172312, #0f180d);
}

@media (max-width: 980px) {
    .page-hero__grid,
    .split-story,
    .contact-grid,
    .detail-layout,
    .signature-strip,
    .footer-cta__inner,
    .payment-intro-grid {
        grid-template-columns: 1fr;
    }

    .booking-panel {
        position: static;
    }

    .collection-grid,
    .tour-grid,
    .destination-grid,
    .activity-grid,
    .guide-grid,
    .review-grid,
    .assurance-grid,
    .payment-support-grid,
    .info-grid,
    .season-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .section {
        padding: 2.75rem 0;
    }

    .section-heading h2,
    .page-hero h1 {
        font-size: clamp(2rem, 11vw, 3.15rem);
    }

    .page-hero__grid,
    .page-card,
    .story-card,
    .booking-panel,
    .detail-panel,
    .signature-strip,
    .finder-panel,
    .confidence-panel,
    .form-shell,
    .sidebar-shell,
    .footer-cta__inner,
    .collection-card,
    .tour-card,
    .destination-card,
    .guide-card,
    .review-card,
    .activity-card,
    .season-card,
    .process-card,
    .faq-card,
    .payment-card,
    .info-card,
    .assurance-card {
        border-radius: 24px;
    }

    .collection-grid,
    .tour-grid,
    .destination-grid,
    .activity-grid,
    .guide-grid,
    .review-grid,
    .assurance-grid,
    .payment-support-grid,
    .info-grid,
    .season-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .page-card--photo,
    .collection-card__media,
    .destination-card__media,
    .tour-card__media,
    .tour-card:not(.tour-card--featured) .tour-card__media {
        min-height: 205px;
        height: 205px;
        aspect-ratio: auto;
    }

    .tour-card__footer {
        grid-template-columns: 1fr;
    }
}

/* Unified section titles, legal pages, and footer policy links */
.section-heading,
.section-heading--tight {
    position: relative;
    padding-top: 0.9rem;
}

.section-heading::before,
.section-heading--tight::before {
    content: "";
    display: block;
    width: 4.6rem;
    height: 4px;
    margin-bottom: 0.82rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(210, 163, 57, 0));
}

.section-heading .eyebrow,
.section-heading--tight .eyebrow {
    margin-bottom: 0.38rem;
}

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

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem 1.4rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-legal-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.48rem 0.72rem;
    border: 1px solid rgba(255, 242, 202, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 250, 241, 0.82);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-legal-links a:hover {
    border-color: rgba(210, 163, 57, 0.5);
    color: #fff2ca;
}

.policy-hero .page-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.52fr);
}

.policy-summary-card {
    display: grid;
    align-content: center;
    gap: 0.72rem;
    padding: clamp(1.15rem, 2.4vw, 1.7rem);
    background: var(--ui-dark-bg);
    color: #fff7e6;
}

.policy-summary-card span {
    color: #fff2ca;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.policy-summary-card strong {
    color: #fff7e6;
    font-family: var(--heading-font);
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.policy-summary-card p {
    margin: 0;
    color: rgba(255, 250, 241, 0.78);
    line-height: 1.62;
}

.policy-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.6vw, 1.15rem);
}

.policy-panel,
.policy-cta {
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    background: var(--ui-card-bg);
    box-shadow: var(--ui-shadow);
}

.policy-panel {
    display: grid;
    gap: 0.65rem;
    padding: clamp(1.1rem, 2.2vw, 1.55rem);
}

.policy-panel h2 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.7rem, 2.8vw, 2.55rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.policy-panel p {
    margin: 0;
    color: rgba(57, 67, 50, 0.78);
    line-height: 1.68;
}

.policy-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.policy-cta h2 {
    margin: 0 0 0.45rem;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.9rem, 3.5vw, 3.25rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.policy-cta p {
    margin: 0;
    color: rgba(57, 67, 50, 0.78);
}

@media (max-width: 980px) {
    .policy-hero .page-hero__grid,
    .policy-layout,
    .policy-cta {
        grid-template-columns: 1fr;
    }

    .policy-cta .button {
        width: fit-content;
    }
}

@media (max-width: 720px) {
    .section-heading::before,
    .section-heading--tight::before {
        width: 3.3rem;
        margin-bottom: 0.65rem;
    }

    .footer-bottom {
        align-items: flex-start;
    }

    .footer-legal-links {
        width: 100%;
    }

    .footer-legal-links a {
        flex: 1 1 auto;
        justify-content: center;
    }

    .policy-panel,
    .policy-cta,
    .policy-summary-card {
        border-radius: 24px;
    }
}

/* Human-designed public card polish */
.collection-card,
.tour-card,
.destination-card,
.activity-card,
.guide-card,
.info-card,
.assurance-card,
.review-card,
.process-card,
.season-card,
.faq-card,
.payment-card,
.payment-support-card,
.related-card,
.detail-mini-card,
.confidence-card,
.payment-step,
.payment-summary,
.payment-safety-panel,
.blog-article,
.blog-sidebar {
    isolation: isolate;
    border-color: rgba(68, 92, 47, 0.13);
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(248, 240, 225, 0.94)),
        radial-gradient(circle at 90% 8%, rgba(210, 163, 57, 0.14), transparent 28%);
}

.collection-card:hover,
.tour-card:hover,
.destination-card:hover,
.activity-card:hover,
.guide-card:hover,
.related-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210, 163, 57, 0.34);
    box-shadow: 0 34px 82px rgba(24, 35, 22, 0.16);
}

.collection-card::before,
.destination-card::before,
.activity-card::before,
.guide-card::before,
.related-card::before,
.detail-mini-card::before,
.payment-step::before,
.blog-sidebar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.1rem;
    right: 1.1rem;
    z-index: 2;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(210, 163, 57, 0.78), transparent);
}

.collection-card__media,
.destination-card__media,
.tour-card__media {
    margin: 0.68rem 0.68rem 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.collection-card__media,
.destination-card__media {
    height: clamp(190px, 23vw, 250px);
}

.tour-card:not(.tour-card--featured) .tour-card__media,
.tour-card--mini .tour-card__media {
    height: 205px;
    min-height: 205px;
    aspect-ratio: auto;
}

.tour-card__media::after,
.collection-card__media::after,
.destination-card__media::after {
    background:
        linear-gradient(180deg, rgba(15, 24, 13, 0.02), rgba(15, 24, 13, 0.36)),
        radial-gradient(circle at 14% 12%, rgba(255, 230, 162, 0.24), transparent 34%);
}

.collection-card__media img,
.destination-card__media img,
.tour-card__media img {
    transition: transform 520ms ease, filter 520ms ease;
}

.collection-card:hover .collection-card__media img,
.destination-card:hover .destination-card__media img,
.tour-card:hover .tour-card__media img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.045);
}

.collection-card__body,
.destination-card__body,
.tour-card__content {
    padding: clamp(1rem, 1.7vw, 1.34rem);
}

.collection-card__body span,
.destination-card__subtitle,
.tour-card__route,
.activity-card__link,
.guide-card__read-more,
.related-card span,
.detail-mini-card span,
.payment-step span {
    letter-spacing: 0.11em;
}

.collection-card h3,
.destination-card h3,
.activity-card h3,
.guide-card h3,
.related-card h3,
.detail-mini-card h3,
.payment-step h3 {
    text-wrap: balance;
}

.collection-card p,
.destination-card p,
.activity-card p,
.guide-card p,
.related-card p,
.detail-mini-card p,
.payment-step p {
    margin-top: 0;
}

.tour-card {
    min-height: 0;
    overflow: hidden;
}

.tour-card::after {
    content: "";
    position: absolute;
    right: -56px;
    bottom: -56px;
    z-index: -1;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(210, 163, 57, 0.16);
    border-radius: 50%;
    background: rgba(210, 163, 57, 0.06);
}

.tour-card__labels {
    top: 1rem;
    bottom: auto;
    left: 1rem;
    right: 1rem;
    align-items: flex-start;
    justify-content: space-between;
}

.tour-card .card-badge,
.tour-card .tour-card__comfort {
    padding: 0.46rem 0.7rem;
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 253, 248, 0.88);
    box-shadow: 0 12px 24px rgba(15, 24, 13, 0.13);
}

.tour-card__route {
    display: inline-flex;
    max-width: 100%;
    padding: 0.48rem 0.72rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    background: rgba(68, 92, 47, 0.075);
    color: var(--forest-deep);
    white-space: normal;
}

.tour-card h3 {
    max-width: 100%;
    font-size: clamp(1.55rem, 2.2vw, 2.18rem);
}

.tour-card__summary {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tour-card .tick-list {
    margin: 0;
    padding: 0.82rem 0.95rem;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 249, 236, 0.62)),
        rgba(255, 255, 255, 0.46);
}

.tour-card .tick-list li {
    line-height: 1.46;
}

.tour-card .tick-list li:nth-child(n+4) {
    display: none;
}

.page-home .home-tours-section .tour-card .tick-list li:nth-child(n+3) {
    display: none;
}

.tour-card__meta {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
}

.tour-card__meta span {
    min-height: 36px;
    padding: 0.52rem 0.76rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    background: rgba(255, 255, 255, 0.68);
}

.tour-card__fit {
    display: grid;
    gap: 0.18rem;
    margin: 0;
    padding: 0.74rem 0.86rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.74);
    color: rgba(57, 67, 50, 0.78);
    font-size: 0.92rem;
    line-height: 1.45;
}

.tour-card__fit span {
    color: var(--gold-deep);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tour-card--featured .tour-card__fit,
.page-home .home-tours-section .tour-card--featured .tour-card__fit,
.tour-grid--finder .tour-card--featured .tour-card__fit {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 250, 241, 0.78);
}

.tour-card--featured .tour-card__fit span,
.page-home .home-tours-section .tour-card--featured .tour-card__fit span,
.tour-grid--finder .tour-card--featured .tour-card__fit span {
    color: #fff2ca;
}

.tour-card__footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.62rem;
}

.tour-card__footer .button,
.tour-card__footer .text-link {
    min-height: 44px;
    padding-inline: 0.85rem;
}

.tour-card__footer .text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(68, 92, 47, 0.14);
    background: rgba(255, 253, 248, 0.72);
}

.tour-card--featured,
.page-home .home-tours-section .tour-card--featured,
.tour-grid--finder .tour-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    min-height: 360px;
    padding: 0.72rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at 88% 12%, rgba(210, 163, 57, 0.2), transparent 32%),
        linear-gradient(135deg, #fffdf8 0%, #f6ecd8 100%);
}

.tour-card--featured .tour-card__media,
.page-home .home-tours-section .tour-card--featured .tour-card__media,
.tour-grid--finder .tour-card--featured .tour-card__media {
    height: 100%;
    min-height: 330px;
    margin: 0;
    border-radius: 28px;
}

.tour-card--featured .tour-card__content,
.page-home .home-tours-section .tour-card--featured .tour-card__content,
.tour-grid--finder .tour-card--featured .tour-card__content {
    align-content: center;
    padding: clamp(1.35rem, 2.8vw, 2.35rem);
}

.tour-card--featured h3,
.page-home .home-tours-section .tour-card--featured h3,
.tour-grid--finder .tour-card--featured h3 {
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.92;
}

.tour-card--featured .tour-card__summary,
.page-home .home-tours-section .tour-card--featured .tour-card__summary,
.tour-grid--finder .tour-card--featured .tour-card__summary {
    max-width: 650px;
    -webkit-line-clamp: 3;
}

.tour-card--featured .tick-list,
.page-home .home-tours-section .tour-card--featured .tick-list,
.tour-grid--finder .tour-card--featured .tick-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem 0.72rem;
}

.tour-card--featured .tour-card__footer,
.page-home .home-tours-section .tour-card--featured .tour-card__footer,
.tour-grid--finder .tour-card--featured .tour-card__footer {
    max-width: 470px;
}

.tour-card--mini .tour-card__summary {
    -webkit-line-clamp: 2;
}

.tour-card--mini .tick-list {
    display: none;
}

.tour-card__stretched-link {
    z-index: 1;
}

.tour-card a:not(.tour-card__stretched-link),
.tour-card button {
    position: relative;
    z-index: 3;
}

.activity-card,
.guide-card,
.info-card,
.assurance-card,
.process-card,
.payment-step,
.detail-mini-card,
.related-card,
.blog-sidebar {
    display: grid;
    align-content: start;
    gap: 0.68rem;
}

.activity-card::after,
.guide-card::after,
.info-card::after,
.assurance-card::after,
.process-card::after,
.payment-step::after,
.detail-mini-card::after,
.related-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 104px;
    height: 104px;
    border: 1px solid rgba(210, 163, 57, 0.12);
    border-radius: 50%;
    background: rgba(210, 163, 57, 0.045);
    pointer-events: none;
}

.activity-card__link,
.guide-card__read-more,
.destination-card__note {
    width: fit-content;
    margin-top: auto;
    padding: 0.5rem 0.78rem;
    border: 1px solid rgba(68, 92, 47, 0.12);
    background: rgba(255, 253, 248, 0.68);
}

.related-card {
    min-height: 100%;
    padding: 1rem;
}

.related-card img {
    height: 170px;
    border-radius: 20px;
}

.blog-article,
.blog-sidebar,
.payment-summary,
.payment-safety-panel {
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    box-shadow: var(--ui-shadow);
}

.blog-article {
    padding: clamp(1.25rem, 2.4vw, 2rem);
}

.blog-sidebar {
    padding: clamp(1rem, 2vw, 1.35rem);
}

@media (max-width: 980px) {
    .tour-card--featured,
    .page-home .home-tours-section .tour-card--featured,
    .tour-grid--finder .tour-card--featured {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .tour-card--featured .tour-card__media,
    .page-home .home-tours-section .tour-card--featured .tour-card__media,
    .tour-grid--finder .tour-card--featured .tour-card__media {
        height: 280px;
        min-height: 280px;
    }

    .tour-card--featured .tick-list,
    .page-home .home-tours-section .tour-card--featured .tick-list,
    .tour-grid--finder .tour-card--featured .tick-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .collection-card__media,
    .destination-card__media,
    .tour-card:not(.tour-card--featured) .tour-card__media,
    .tour-card--mini .tour-card__media {
        height: 188px;
        min-height: 188px;
    }

    .tour-card--featured .tour-card__media,
    .page-home .home-tours-section .tour-card--featured .tour-card__media,
    .tour-grid--finder .tour-card--featured .tour-card__media {
        height: 218px;
        min-height: 218px;
    }

    .tour-card__footer,
    .tour-card--featured .tour-card__footer,
    .page-home .home-tours-section .tour-card--featured .tour-card__footer,
    .tour-grid--finder .tour-card--featured .tour-card__footer {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .tour-card__summary {
        -webkit-line-clamp: 2;
    }
}

/* Quote success conversion page */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.quote-success-hero .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
}

.quote-success-card,
.quote-summary-panel {
    position: relative;
    display: grid;
    gap: 0.75rem;
    align-content: center;
    overflow: hidden;
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    background: var(--ui-dark-bg);
    color: #fff7e6;
    box-shadow: var(--ui-shadow);
}

.quote-success-card {
    padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.quote-success-card::after,
.quote-summary-panel::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 142px;
    height: 142px;
    border: 1px solid rgba(255, 242, 202, 0.18);
    border-radius: 50%;
    background: rgba(210, 163, 57, 0.08);
}

.quote-success-card span,
.quote-summary-panel .eyebrow {
    color: #fff2ca;
}

.quote-success-card strong {
    position: relative;
    z-index: 1;
    color: #fff7e6;
    font-family: var(--heading-font);
    font-size: clamp(2rem, 3.3vw, 3.25rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.quote-success-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 250, 241, 0.78);
    line-height: 1.62;
}

.quote-success-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(1rem, 2vw, 1.4rem);
    align-items: start;
}

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

.quote-summary-panel {
    padding: clamp(1.1rem, 2.2vw, 1.55rem);
    background: var(--ui-card-bg);
    color: var(--forest-deep);
}

.quote-summary-panel h2 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.quote-summary-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
}

.quote-summary-list div {
    display: grid;
    gap: 0.2rem;
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(68, 92, 47, 0.1);
}

.quote-summary-list div:last-child {
    border-bottom: 0;
}

.quote-summary-list dt {
    color: var(--gold-deep);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quote-summary-list dd {
    margin: 0;
    color: var(--forest-deep);
    font-weight: 900;
    line-height: 1.35;
}

.form-conversion-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.7rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.7);
}

.form-conversion-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.42rem 0.62rem;
    border: 1px solid rgba(210, 163, 57, 0.22);
    border-radius: 999px;
    background: rgba(210, 163, 57, 0.1);
    color: var(--forest-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-submit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.form-submit-row .text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.52rem 0.78rem;
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.7);
}

/* Safari booking estimator */
.safari-cost-estimator,
.quote-request-estimator {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 26px;
    background:
        radial-gradient(circle at 92% 8%, rgba(210, 163, 57, 0.14), transparent 30%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(248, 240, 225, 0.92));
    box-shadow: 0 18px 44px rgba(24, 35, 22, 0.08);
}

.quote-request-estimator {
    margin-top: 0;
    border-radius: 24px;
}

.quote-request-estimator--simple {
    gap: 0.85rem;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(24, 35, 22, 0.06);
}

.quote-request-estimator--simple .quote-request-estimator__head h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.quote-request-estimator--simple .quote-request-estimator__head p {
    max-width: 52ch;
}

.safari-cost-estimator__head,
.quote-request-estimator__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
    gap: 1rem;
    align-items: start;
}

.safari-cost-estimator__head h3,
.quote-request-estimator__head h3 {
    margin: 0;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.quote-request-estimator__head h3 {
    font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.safari-cost-estimator__head p,
.quote-request-estimator__head p {
    margin: 0.45rem 0 0;
    color: rgba(57, 67, 50, 0.74);
}

.safari-cost-estimator__total,
.quote-request-estimator__total {
    display: grid;
    gap: 0.32rem;
    padding: 1rem;
    border-radius: 22px;
    background: var(--ui-dark-bg);
    color: #fff7e6;
}

.safari-cost-estimator__total span,
.safari-cost-estimator__total small,
.quote-request-estimator__total span,
.quote-request-estimator__total small {
    color: rgba(255, 250, 241, 0.72);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.safari-cost-estimator__total strong,
.quote-request-estimator__total strong {
    color: #fff7e6;
    font-family: var(--heading-font);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.quote-request-estimator__total strong {
    font-size: clamp(1.75rem, 3.4vw, 3rem);
}

.estimator-fields,
.quote-age-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.estimator-fields label,
.quote-age-grid label {
    display: grid;
    gap: 0.45rem;
    color: var(--forest-deep);
    font-weight: 900;
}

.estimator-fields label span,
.quote-age-grid label span {
    display: grid;
    gap: 0.16rem;
}

.estimator-fields small,
.quote-age-grid small {
    color: rgba(57, 67, 50, 0.62);
    font-size: 0.78rem;
    font-weight: 800;
}

.estimator-fields input,
.quote-age-grid input {
    width: 100%;
    border: 1px solid rgba(68, 92, 47, 0.14);
    border-radius: 16px;
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.76);
    color: var(--forest-deep);
    font: inherit;
    font-weight: 900;
}

.estimator-breakdown,
.quote-estimator-breakdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.estimator-breakdown article,
.quote-estimator-breakdown article {
    display: grid;
    gap: 0.28rem;
    padding: 0.8rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
}

.estimator-breakdown span,
.quote-estimator-breakdown span {
    color: var(--gold-deep);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.estimator-breakdown strong,
.quote-estimator-breakdown strong {
    color: var(--forest-deep);
}

.estimator-note,
.quote-estimator-note {
    margin: 0;
    padding: 0.75rem 0.9rem;
    border-left: 4px solid var(--gold);
    border-radius: 16px;
    background: rgba(210, 163, 57, 0.1);
    color: rgba(57, 67, 50, 0.78);
    line-height: 1.55;
}

.booking-panel__estimate {
    display: grid;
    gap: 0.5rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(68, 92, 47, 0.1);
}

.booking-panel__estimate span {
    color: var(--gold-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-panel__estimate strong {
    color: var(--forest-deep);
    line-height: 1.4;
}

@media (max-width: 980px) {
    .finder-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote-success-hero .page-hero__grid,
    .quote-success-grid,
    .process-grid--compact,
    .safari-cost-estimator__head,
    .quote-request-estimator__head,
    .estimator-breakdown,
    .quote-estimator-breakdown {
        grid-template-columns: 1fr;
    }

    .estimator-fields,
    .quote-age-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .finder-filter-grid {
        grid-template-columns: 1fr;
        padding: 0.65rem;
    }

    .finder-active-row {
        align-items: stretch;
    }

    .finder-active-row button {
        width: 100%;
    }

    .safari-anchor-nav {
        overflow: hidden;
    }

    .safari-anchor-nav__inner,
    .itinerary-stay__images {
        max-width: 100%;
        overflow-x: auto;
        overscroll-behavior-x: contain;
    }

    .itinerary-stay__images {
        justify-content: flex-start;
    }

    .estimator-fields,
    .quote-age-grid {
        grid-template-columns: 1fr;
    }

    .request-type-switch {
        grid-template-columns: 1fr;
    }
}

/* Final public conversion polish: humanized safari cards, editorial guide cards, and uncropped safari imagery */
.tour-card__media {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 18% 12%, rgba(210, 163, 57, 0.18), transparent 34%),
        linear-gradient(135deg, #182514, #314225);
}

.tour-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    padding: clamp(0.45rem, 1vw, 0.7rem);
    filter: saturate(1.05) contrast(1.02);
    transform: none !important;
}

.tour-card:hover .tour-card__media img {
    transform: none !important;
}

.tour-card:not(.tour-card--featured) .tour-card__media,
.tour-card--mini .tour-card__media {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10;
}

.tour-card--featured .tour-card__media,
.page-home .home-tours-section .tour-card--featured .tour-card__media,
.tour-grid--finder .tour-card--featured .tour-card__media {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 11;
}

.tour-card {
    border: 1px solid rgba(68, 92, 47, 0.11);
    background:
        radial-gradient(circle at 96% 4%, rgba(210, 163, 57, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 223, 0.94));
}

.tour-card__content {
    gap: 0.72rem;
}

.tour-card__summary {
    color: rgba(47, 58, 42, 0.76);
}

.tour-card__footer .button {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest));
    box-shadow: 0 14px 32px rgba(34, 49, 29, 0.18);
}

.tour-card__footer .text-link {
    color: var(--forest-deep);
    font-weight: 900;
}

.guide-card {
    overflow: hidden;
    padding: 0;
}

.guide-card__media {
    position: relative;
    overflow: hidden;
    margin: 0.7rem 0.7rem 0;
    border-radius: 22px;
    background: #182514;
}

.activity-card {
    overflow: hidden;
    padding: 0;
}

.activity-card__media {
    overflow: hidden;
    margin: 0.7rem 0.7rem 0;
    border-radius: 22px;
    background: #182514;
}

.activity-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 520ms ease, filter 520ms ease;
}

.activity-card:hover .activity-card__media img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.035);
}

.activity-card > :not(.activity-card__media) {
    margin-left: clamp(1rem, 1.7vw, 1.35rem);
    margin-right: clamp(1rem, 1.7vw, 1.35rem);
}

.activity-card > :last-child {
    margin-bottom: clamp(1rem, 1.7vw, 1.35rem);
}

.activity-card h3 {
    margin-top: 1rem;
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.guide-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 520ms ease, filter 520ms ease;
}

.guide-card:hover .guide-card__media img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.035);
}

.guide-card > :not(.guide-card__media) {
    margin-left: clamp(1rem, 1.7vw, 1.35rem);
    margin-right: clamp(1rem, 1.7vw, 1.35rem);
}

.guide-card > :last-child {
    margin-bottom: clamp(1rem, 1.7vw, 1.35rem);
}

.guide-card .card-badge {
    margin-top: 0.95rem;
}

.guide-card h3 {
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.booking-path-strip {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(68, 92, 47, 0.1);
    background:
        radial-gradient(circle at 96% 8%, rgba(210, 163, 57, 0.2), transparent 30%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(239, 228, 205, 0.92));
}

.booking-path-strip article {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.46);
}

.finder-cta-row,
.hero-concierge-card__footer,
.form-submit-row {
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.68);
}

.section-heading h2 {
    text-wrap: balance;
}

.section-heading p,
.page-hero p {
    max-width: 70ch;
}

.page-card--photo img {
    object-fit: cover;
}

@media (max-width: 980px) {
    .tour-card--featured,
    .page-home .home-tours-section .tour-card--featured,
    .tour-grid--finder .tour-card--featured {
        grid-template-columns: 1fr;
    }

    .tour-card--featured .tour-card__media,
    .page-home .home-tours-section .tour-card--featured .tour-card__media,
    .tour-grid--finder .tour-card--featured .tour-card__media {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 720px) {
    .tour-card:not(.tour-card--featured) .tour-card__media,
    .tour-card--mini .tour-card__media,
    .tour-card--featured .tour-card__media,
    .page-home .home-tours-section .tour-card--featured .tour-card__media,
    .tour-grid--finder .tour-card--featured .tour-card__media {
        aspect-ratio: 4 / 3;
    }

    .finder-cta-row,
    .hero-concierge-card__footer,
    .form-submit-row {
        border-radius: 22px;
    }
}

/* Premium homepage, safari card, and itinerary conversion pass */
.page-home .hero {
    padding: clamp(1.2rem, 2.4vw, 2.2rem) 0 clamp(2.4rem, 5vw, 4.5rem);
}

.page-home .hero-showcase {
    min-height: clamp(640px, 82vh, 820px);
    border-radius: clamp(28px, 4vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 36px 90px rgba(22, 35, 18, 0.24);
}

.page-home .hero-showcase__image {
    object-fit: cover;
    filter: saturate(1.12) contrast(1.04);
}

.page-home .hero-showcase__shade {
    background:
        radial-gradient(circle at 76% 22%, rgba(210, 163, 57, 0.22), transparent 24%),
        linear-gradient(90deg, rgba(15, 23, 14, 0.9), rgba(22, 35, 18, 0.7) 45%, rgba(22, 35, 18, 0.25));
}

.page-home .hero-layout {
    align-items: end;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.64fr);
    gap: clamp(1.4rem, 4vw, 4rem);
    padding: clamp(1.25rem, 4vw, 4rem);
}

.page-home .hero-copy {
    max-width: 760px;
}

.page-home .hero-badge-row {
    gap: 0.55rem;
    margin-bottom: 1.2rem;
}

.page-home .hero-badge-row span,
.page-home .trust-chip {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 253, 248, 0.12);
    color: rgba(255, 253, 248, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.page-home .hero-copy h1 {
    max-width: 15ch;
    font-size: clamp(3.25rem, 7.4vw, 6.8rem);
    line-height: 0.88;
    letter-spacing: -0.065em;
    color: #fffaf0;
    text-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.page-home .hero-copy .lead {
    max-width: 660px;
    margin-top: 1.25rem;
    color: rgba(255, 253, 248, 0.86);
    font-size: clamp(1.08rem, 1.7vw, 1.42rem);
}

.page-home .hero-actions {
    margin-top: clamp(1.2rem, 2.4vw, 2rem);
}

.page-home .hero-actions .button:first-child {
    background: linear-gradient(135deg, var(--gold), #f0c760);
    color: #1d2818;
    box-shadow: 0 20px 46px rgba(210, 163, 57, 0.32);
}

.page-home .hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 720px;
    margin-top: clamp(1.25rem, 3vw, 2.25rem);
}

.page-home .hero-proof-grid article {
    min-height: 116px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 253, 248, 0.14), rgba(255, 253, 248, 0.06));
    backdrop-filter: blur(18px);
}

.page-home .hero-proof-grid strong {
    display: block;
    color: #f8d777;
    font-family: var(--heading-font);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 0.95;
}

.page-home .hero-proof-grid span {
    display: block;
    margin-top: 0.45rem;
    color: rgba(255, 253, 248, 0.78);
    font-size: 0.86rem;
    line-height: 1.45;
}

.page-home .hero-concierge-card {
    border: 1px solid rgba(255, 255, 255, 0.62);
    background:
        linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(237, 222, 190, 0.9)),
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.24), transparent 36%);
    box-shadow: 0 28px 70px rgba(10, 16, 9, 0.32);
}

.page-home .hero-route-stack a {
    border-color: rgba(68, 92, 47, 0.12);
    background: rgba(255, 255, 255, 0.56);
}

.page-home .home-tours-section {
    position: relative;
}

.page-home .home-tours-section::before {
    content: "";
    position: absolute;
    inset: 3rem 0 auto;
    height: 58%;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 22%, rgba(210, 163, 57, 0.14), transparent 24%),
        radial-gradient(circle at 86% 5%, rgba(68, 92, 47, 0.12), transparent 28%);
    z-index: -1;
}

.tour-grid,
.tour-grid--finder {
    align-items: stretch;
}

.tour-card {
    isolation: isolate;
    border: 1px solid rgba(50, 70, 38, 0.13);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(246, 237, 218, 0.96)),
        radial-gradient(circle at 92% 6%, rgba(210, 163, 57, 0.18), transparent 30%);
    box-shadow: 0 18px 48px rgba(36, 48, 29, 0.1);
    transform: translateY(0);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tour-card:hover {
    border-color: rgba(210, 163, 57, 0.36);
    box-shadow: 0 28px 70px rgba(36, 48, 29, 0.18);
    transform: translateY(-5px);
}

.tour-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    z-index: 0;
}

.tour-card__media {
    margin: 0.72rem 0.72rem 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 18%, rgba(210, 163, 57, 0.2), transparent 30%),
        linear-gradient(140deg, #162112, #314523 55%, #d8b65a);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.tour-card__media img {
    padding: clamp(0.35rem, 0.75vw, 0.65rem);
    object-fit: contain !important;
}

.tour-card__content {
    position: relative;
    z-index: 1;
    padding: clamp(1rem, 1.7vw, 1.35rem);
}

.tour-card__planner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 0.1rem;
}

.tour-card__planner-row span {
    color: rgba(34, 49, 29, 0.56);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tour-card__planner-row a {
    position: relative;
    z-index: 3;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    background: rgba(210, 163, 57, 0.15);
    color: var(--forest-deep);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-card h3 {
    margin: 0.25rem 0 0;
    font-size: clamp(1.35rem, 2.15vw, 1.95rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.tour-card__summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tour-grid--finder .tour-card__summary {
    -webkit-line-clamp: 2;
}

.tour-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.tour-card__meta span {
    justify-content: center;
    min-height: 44px;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    font-weight: 900;
}

.tour-card__highlights {
    position: relative;
    margin-top: 0.15rem;
    padding: 0.82rem 0.9rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
}

.tour-card__highlights::before {
    content: "Highlights";
    display: block;
    margin-bottom: 0.48rem;
    color: rgba(34, 49, 29, 0.5);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tour-card__highlights li {
    font-size: 0.88rem;
    line-height: 1.35;
}

.tour-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
}

.tour-card__footer .button,
.tour-card__footer .text-link {
    position: relative;
    z-index: 3;
}

.tour-card__footer .button {
    justify-content: center;
    min-height: 44px;
}

.tour-card__footer .text-link {
    white-space: nowrap;
    font-size: 0.84rem;
}

.tour-card--featured,
.page-home .home-tours-section .tour-card--featured,
.tour-grid--finder .tour-card--featured {
    background:
        linear-gradient(135deg, #172312, #283a1e 50%, #11190d),
        radial-gradient(circle at 86% 8%, rgba(210, 163, 57, 0.28), transparent 32%);
}

.tour-card--featured .tour-card__media,
.page-home .home-tours-section .tour-card--featured .tour-card__media,
.tour-grid--finder .tour-card--featured .tour-card__media {
    margin: 0.82rem;
    border-radius: 26px;
    background:
        radial-gradient(circle at 22% 22%, rgba(210, 163, 57, 0.24), transparent 32%),
        linear-gradient(145deg, #24341b, #11190d);
}

.tour-card--featured .tour-card__content,
.page-home .home-tours-section .tour-card--featured .tour-card__content,
.tour-grid--finder .tour-card--featured .tour-card__content {
    padding: clamp(1.2rem, 2.5vw, 2.25rem);
}

.tour-card--featured .tour-card__summary,
.page-home .home-tours-section .tour-card--featured .tour-card__summary,
.tour-grid--finder .tour-card--featured .tour-card__summary {
    -webkit-line-clamp: 4;
    color: rgba(255, 253, 248, 0.74);
}

.tour-card--featured .tour-card__highlights,
.page-home .home-tours-section .tour-card--featured .tour-card__highlights,
.tour-grid--finder .tour-card--featured .tour-card__highlights {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 253, 248, 0.08);
}

.tour-card--featured .tour-card__highlights::before,
.page-home .home-tours-section .tour-card--featured .tour-card__highlights::before,
.tour-grid--finder .tour-card--featured .tour-card__highlights::before {
    color: rgba(248, 215, 119, 0.8);
}

.safari-itinerary-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 1.35rem;
}

.safari-itinerary-summary article {
    padding: 1rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 20px;
    background:
        radial-gradient(circle at 90% 10%, rgba(210, 163, 57, 0.14), transparent 32%),
        rgba(255, 255, 255, 0.55);
}

.safari-itinerary-summary span,
.itinerary-day-body__head span {
    display: block;
    color: rgba(34, 49, 29, 0.54);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.safari-itinerary-summary strong {
    display: block;
    margin-top: 0.35rem;
    font-family: var(--heading-font);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1;
}

.safari-itinerary-luxury {
    position: relative;
    display: grid;
    gap: 1rem;
}

.safari-itinerary-luxury::before {
    content: "";
    position: absolute;
    top: 0.8rem;
    bottom: 0.8rem;
    left: 2.05rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(210, 163, 57, 0.55), transparent);
}

.safari-day-card {
    display: grid;
    grid-template-columns: 4.2rem minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    padding: 0;
    border: 0;
    background: transparent;
}

.safari-day-card__rail {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-top: 1.1rem;
}

.safari-day-card .timeline-day-badge {
    display: grid;
    place-items: center;
    width: 3.8rem;
    height: 3.8rem;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-deep), var(--forest));
    color: #fff8e7;
    box-shadow: 0 14px 32px rgba(34, 49, 29, 0.22);
    font-size: 0.72rem;
    line-height: 1.05;
    text-align: center;
}

.safari-day-card .itinerary-day-body {
    position: relative;
    overflow: hidden;
    padding: clamp(1rem, 2vw, 1.45rem);
    border: 1px solid rgba(68, 92, 47, 0.11);
    border-radius: 28px;
    background:
        radial-gradient(circle at 98% 0%, rgba(210, 163, 57, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(255, 254, 250, 0.98), rgba(246, 237, 218, 0.92));
    box-shadow: 0 18px 48px rgba(36, 48, 29, 0.09);
}

.itinerary-day-body__head {
    display: flex;
    gap: 1rem;
    align-items: start;
    justify-content: space-between;
}

.itinerary-day-body__head h3 {
    max-width: 18ch;
    margin: 0.15rem 0 0;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.itinerary-day-body__head > span {
    flex: 0 0 auto;
    max-width: 180px;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    text-align: center;
}

.safari-day-card .itinerary-meta--database {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1rem 0;
}

.safari-day-card .itinerary-meta--database div {
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
}

.safari-day-card .itinerary-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 1rem;
    align-items: stretch;
    padding: 0;
    background: transparent;
}

.itinerary-day-image {
    width: 100%;
    min-height: 150px;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(28, 43, 21, 0.16);
}

.safari-day-card .itinerary-copy p:not(.itinerary-field-label) {
    color: rgba(47, 58, 42, 0.78);
    font-size: 1rem;
    line-height: 1.74;
}

.safari-day-card .itinerary-stay {
    margin-top: 1rem;
    border: 1px solid rgba(68, 92, 47, 0.1);
    background:
        linear-gradient(135deg, rgba(34, 49, 29, 0.95), rgba(68, 92, 47, 0.88)),
        radial-gradient(circle at top right, rgba(210, 163, 57, 0.24), transparent 30%);
}

.safari-day-card .itinerary-stay__copy h4,
.safari-day-card .itinerary-stay__copy .itinerary-field-label,
.safari-day-card .itinerary-stay__copy .text-link {
    color: #fff8e7;
}

.safari-day-card .itinerary-stay__copy .text-link {
    opacity: 0.86;
}

.safari-day-card .itinerary-stay__image {
    position: relative;
    display: block;
}

.safari-day-card .itinerary-stay__images img {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 253, 248, 0.1);
    object-fit: cover;
}

.safari-day-card .itinerary-stay__image b {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border-radius: inherit;
    background: rgba(20, 32, 15, 0.58);
    color: #fff8e7;
    font-size: 1.1rem;
    font-weight: 1000;
}

@media (max-width: 980px) {
    .page-home .hero-layout {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .page-home .hero-copy h1 {
        max-width: 10ch;
    }

    .page-home .hero-proof-grid,
    .safari-itinerary-summary {
        grid-template-columns: 1fr;
    }

    .tour-card__summary,
    .tour-grid--finder .tour-card__summary {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 720px) {
    .page-home .hero-showcase {
        min-height: auto;
        border-radius: 30px;
    }

    .page-home .hero-showcase__shade {
        background: linear-gradient(180deg, rgba(15, 23, 14, 0.86), rgba(22, 35, 18, 0.78));
    }

    .page-home .hero-layout {
        padding: 1.05rem;
    }

    .page-home .hero-copy h1 {
        font-size: clamp(2.85rem, 13vw, 4.55rem);
    }

    .page-home .hero-proof-grid {
        display: none;
    }

    .tour-card__footer {
        grid-template-columns: 1fr;
    }

    .tour-card__footer .text-link {
        justify-self: center;
    }

    .safari-itinerary-luxury::before {
        display: none;
    }

    .safari-day-card {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .safari-day-card__rail {
        justify-content: flex-start;
        padding-top: 0;
    }

    .safari-day-card .timeline-day-badge {
        width: auto;
        height: auto;
        min-height: 2.4rem;
        padding: 0.55rem 0.8rem;
        border-radius: 999px;
    }

    .itinerary-day-body__head {
        display: block;
    }

    .itinerary-day-body__head > span {
        display: inline-block;
        max-width: none;
        margin-top: 0.7rem;
        text-align: left;
    }

    .safari-day-card .itinerary-meta--database {
        grid-template-columns: 1fr;
    }

    .safari-day-card .itinerary-copy {
        grid-template-columns: 1fr;
    }

    .itinerary-day-image {
        min-height: 220px;
    }
}

/* Final contrast safety pass: keep all premium color surfaces readable */
.button {
    color: #172312;
}

.button:hover {
    color: #172312;
}

.button--ghost,
.button--panel,
.booking-panel .button--ghost,
.form-submit-row .text-link,
.tour-card__footer .text-link,
.text-link {
    color: var(--forest-deep);
}

.hero .button--ghost,
.safari-detail-hero .button--ghost,
.immersive-hero .button--ghost,
.page-home .hero-actions .button--ghost,
.sidebar-shell .button--ghost,
.mobile-booking-bar .button--ghost {
    color: #fff8e7;
}

.tour-card:not(.tour-card--featured),
.tour-card:not(.tour-card--featured) h3,
.tour-card:not(.tour-card--featured) p,
.tour-card:not(.tour-card--featured) li,
.tour-card:not(.tour-card--featured) .tour-card__route,
.tour-card:not(.tour-card--featured) .tour-card__fit,
.tour-card:not(.tour-card--featured) .tour-card__meta,
.tour-card:not(.tour-card--featured) .tour-card__planner-row span {
    color: var(--forest-deep);
}

.tour-card:not(.tour-card--featured) .tour-card__summary,
.tour-card:not(.tour-card--featured) .tour-card__fit {
    color: rgba(47, 58, 42, 0.78);
}

.tour-card--featured,
.page-home .home-tours-section .tour-card--featured,
.tour-grid--finder .tour-card--featured,
.tour-card--featured h3,
.tour-card--featured p,
.tour-card--featured li,
.tour-card--featured .tour-card__route,
.tour-card--featured .tour-card__meta,
.tour-card--featured .tour-card__footer .text-link,
.tour-card--featured .tour-card__planner-row span,
.tour-card--featured .tour-card__fit,
.page-home .home-tours-section .tour-card--featured h3,
.page-home .home-tours-section .tour-card--featured p,
.page-home .home-tours-section .tour-card--featured li,
.page-home .home-tours-section .tour-card--featured .tour-card__route,
.page-home .home-tours-section .tour-card--featured .tour-card__footer .text-link,
.tour-grid--finder .tour-card--featured h3,
.tour-grid--finder .tour-card--featured p,
.tour-grid--finder .tour-card--featured li,
.tour-grid--finder .tour-card--featured .tour-card__route,
.tour-grid--finder .tour-card--featured .tour-card__footer .text-link {
    color: #fff8e7 !important;
}

.tour-card--featured .tour-card__summary,
.page-home .home-tours-section .tour-card--featured .tour-card__summary,
.tour-grid--finder .tour-card--featured .tour-card__summary,
.tour-card--featured .tour-card__fit,
.page-home .home-tours-section .tour-card--featured .tour-card__fit,
.tour-grid--finder .tour-card--featured .tour-card__fit {
    color: rgba(255, 248, 231, 0.8) !important;
}

.tour-card--featured .tour-card__planner-row a,
.page-home .home-tours-section .tour-card--featured .tour-card__planner-row a,
.tour-grid--finder .tour-card--featured .tour-card__planner-row a {
    background: rgba(255, 248, 231, 0.14);
    color: #fff8e7 !important;
}

.tour-card--featured .tour-card__meta span,
.tour-card--featured .tour-card__tags span,
.page-home .home-tours-section .tour-card--featured .tour-card__meta span,
.tour-grid--finder .tour-card--featured .tour-card__meta span,
.tour-grid--finder .tour-card--featured .tour-card__tags span {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 248, 231, 0.12);
    color: #fff8e7 !important;
}

.tour-card--featured .card-badge,
.tour-card--featured .tour-card__comfort,
.page-home .home-tours-section .tour-card--featured .card-badge,
.page-home .home-tours-section .tour-card--featured .tour-card__comfort,
.tour-grid--finder .tour-card--featured .card-badge,
.tour-grid--finder .tour-card--featured .tour-card__comfort {
    background: rgba(255, 248, 231, 0.92);
    color: var(--forest-deep) !important;
}

.tour-card--featured .button,
.page-home .home-tours-section .tour-card--featured .button,
.tour-grid--finder .tour-card--featured .button,
.sidebar-shell .button,
.safari-hero-quote .button,
.booking-panel .button,
.quote-request-estimator__total,
.safari-cost-estimator__total {
    color: #172312;
}

.sidebar-shell,
.sidebar-shell h2,
.sidebar-shell h3,
.sidebar-shell strong,
.sidebar-shell p,
.sidebar-shell small,
.sidebar-shell a,
.safari-hero-quote,
.safari-hero-quote strong,
.safari-hero-quote p,
.safari-hero-quote a,
.quote-success-card,
.quote-success-card strong,
.quote-success-card p {
    color: #fff8e7;
}

.sidebar-shell .eyebrow,
.sidebar-card span,
.safari-hero-quote span,
.quote-success-card span {
    color: #f8d777;
}

.form-shell,
.form-shell h2,
.form-shell h3,
.form-shell p,
.form-shell label,
.form-shell strong,
.selected-safari-summary,
.selected-safari-summary h3,
.selected-safari-summary p,
.custom-request-travelers,
.custom-request-travelers h3,
.custom-request-travelers p,
.quote-request-estimator,
.quote-request-estimator h3,
.quote-request-estimator p,
.quote-age-grid label,
.quote-age-grid input,
.quote-estimator-breakdown strong,
.quote-summary-panel,
.quote-summary-panel h2,
.quote-summary-panel dd,
.safari-day-card .itinerary-day-body,
.safari-day-card .itinerary-day-body h3,
.safari-day-card .itinerary-day-body dd,
.safari-itinerary-summary,
.safari-itinerary-summary strong {
    color: var(--forest-deep);
}

.form-shell .eyebrow,
.selected-safari-summary .eyebrow,
.quote-request-estimator .eyebrow,
.custom-request-travelers .eyebrow,
.quote-estimator-breakdown span,
.safari-itinerary-summary span,
.itinerary-field-label,
.itinerary-meta dt {
    color: var(--gold-deep);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.finder-search input::placeholder {
    color: rgba(57, 67, 50, 0.5);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.finder-search input,
.finder-filter-grid select {
    background: rgba(255, 255, 255, 0.88);
    color: var(--forest-deep);
}

.safari-day-card .itinerary-stay,
.safari-day-card .itinerary-stay h4,
.safari-day-card .itinerary-stay p,
.safari-day-card .itinerary-stay .itinerary-field-label,
.safari-day-card .itinerary-stay .text-link {
    color: #fff8e7 !important;
}

.safari-day-card .itinerary-stay .itinerary-field-label {
    color: #f8d777 !important;
}

.page-hero,
.page-hero h1,
.page-hero p,
.page-card,
.page-card h2,
.page-card p {
    color: var(--forest-deep);
}

.immersive-hero,
.immersive-hero h1,
.immersive-hero p,
.safari-detail-hero,
.safari-detail-hero h1,
.safari-detail-hero p,
.page-home .hero,
.page-home .hero h1,
.page-home .hero p {
    color: #fff8e7;
}

/* Contact quote page correction: prevent pale text on pale hero panels */
.page-contact .page-hero {
    padding: clamp(1rem, 2.5vw, 2rem) 0 clamp(1.8rem, 4vw, 3.5rem);
}

.page-contact .page-hero__grid {
    overflow: hidden;
    align-items: stretch;
    border: 1px solid rgba(68, 92, 47, 0.13);
    border-radius: clamp(26px, 4vw, 44px);
    background:
        radial-gradient(circle at 18% 18%, rgba(210, 163, 57, 0.18), transparent 28%),
        linear-gradient(135deg, #fffdf8 0%, #f1e5ca 100%);
    box-shadow: 0 28px 72px rgba(36, 48, 29, 0.14);
}

.page-contact .page-hero__grid > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    padding: clamp(1.4rem, 4vw, 3rem);
}

.page-contact .page-hero .eyebrow {
    color: #9b6810 !important;
    opacity: 1 !important;
}

.page-contact .page-hero h1 {
    max-width: 10ch;
    margin: 0;
    color: #1f2d19 !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

.page-contact .page-hero p {
    max-width: 620px;
    color: #3a4634 !important;
    opacity: 1 !important;
}

.page-contact .page-card--photo {
    min-height: 420px;
    margin: clamp(0.8rem, 1.8vw, 1.2rem);
    border-radius: clamp(22px, 3vw, 34px);
    background: #213019;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.page-contact .page-card--photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    opacity: 1 !important;
    filter: saturate(1.08) contrast(1.04) !important;
}

.page-contact .form-shell,
.page-contact .selected-safari-summary,
.page-contact .quote-request-estimator,
.page-contact .custom-request-travelers,
.page-contact .request-type-switch a,
.page-contact .form-conversion-strip,
.page-contact .form-submit-row {
    color: #1f2d19 !important;
}

.page-contact .form-shell p,
.page-contact .selected-safari-summary p,
.page-contact .quote-request-estimator p,
.page-contact .custom-request-travelers p,
.page-contact .request-type-switch small,
.page-contact .quote-estimator-note {
    color: #3f4b39 !important;
    opacity: 1 !important;
}

.page-contact .form-shell h2,
.page-contact .form-shell h3,
.page-contact .selected-safari-summary h3,
.page-contact .quote-request-estimator h3,
.page-contact .custom-request-travelers h3,
.page-contact .request-type-switch strong,
.page-contact .quote-estimator-breakdown strong,
.page-contact .quote-age-grid label,
.page-contact .contact-form span {
    color: #1f2d19 !important;
    opacity: 1 !important;
}

.page-contact .form-shell .eyebrow,
.page-contact .selected-safari-summary .eyebrow,
.page-contact .quote-request-estimator .eyebrow,
.page-contact .custom-request-travelers .eyebrow,
.page-contact .quote-estimator-breakdown span,
.page-contact .request-type-switch span {
    color: #9b6810 !important;
    opacity: 1 !important;
}

.page-contact .quote-request-estimator__total,
.page-contact .quote-request-estimator__total strong,
.page-contact .quote-request-estimator__total span,
.page-contact .quote-request-estimator__total small {
    color: #fff8e7 !important;
}

.page-contact .contact-form input,
.page-contact .contact-form select,
.page-contact .contact-form textarea,
.page-contact .quote-age-grid input {
    border-color: rgba(68, 92, 47, 0.18);
    background: #fffefa !important;
    color: #1f2d19 !important;
    opacity: 1 !important;
}

.page-contact .form-submit-row .text-link {
    color: #1f2d19 !important;
}

@media (max-width: 900px) {
    .page-contact .page-hero__grid {
        grid-template-columns: 1fr;
    }

    .page-contact .page-hero__grid > div:first-child,
    .page-contact .page-card--photo,
    .page-contact .page-card--photo img {
        min-height: auto;
    }

    .page-contact .page-hero h1 {
        max-width: 12ch;
    }
}

/* Contact sidebar readability: light cards, dark text, clear links */
.page-contact .sidebar-shell {
    border: 1px solid rgba(68, 92, 47, 0.14) !important;
    border-radius: 30px !important;
    background:
        radial-gradient(circle at 92% 6%, rgba(210, 163, 57, 0.16), transparent 30%),
        linear-gradient(145deg, rgba(255, 254, 250, 0.98), rgba(246, 237, 218, 0.96)) !important;
    box-shadow: 0 22px 58px rgba(36, 48, 29, 0.12) !important;
    color: #1f2d19 !important;
}

.page-contact .sidebar-shell,
.page-contact .sidebar-shell h2,
.page-contact .sidebar-shell h3,
.page-contact .sidebar-shell strong,
.page-contact .sidebar-shell p,
.page-contact .sidebar-shell small,
.page-contact .sidebar-shell a,
.page-contact .sidebar-shell li {
    color: #1f2d19 !important;
    opacity: 1 !important;
}

.page-contact .sidebar-shell > p:not(.eyebrow),
.page-contact .sidebar-shell .faq-card p,
.page-contact .sidebar-card small {
    color: #3f4b39 !important;
    opacity: 1 !important;
}

.page-contact .sidebar-shell .eyebrow,
.page-contact .sidebar-card span {
    color: #9b6810 !important;
    opacity: 1 !important;
}

.page-contact .sidebar-card,
.page-contact .sidebar-shell .faq-card {
    border: 1px solid rgba(68, 92, 47, 0.12) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.68) !important;
    box-shadow: 0 12px 32px rgba(36, 48, 29, 0.08) !important;
}

.page-contact .sidebar-card a,
.page-contact .sidebar-shell .faq-card a {
    color: #1f5d34 !important;
    font-weight: 900 !important;
    text-decoration: underline;
    text-decoration-color: rgba(31, 93, 52, 0.28);
    text-underline-offset: 0.18em;
}

.page-contact .sidebar-card strong {
    display: block;
    color: #1f2d19 !important;
    font-size: 1.05rem;
}

.page-contact .faq-grid--sidebar {
    gap: 0.85rem;
}

.page-contact .sidebar-shell .faq-card h3 {
    color: #1f2d19 !important;
    font-size: clamp(1.1rem, 1.6vw, 1.32rem);
    line-height: 1.15;
}

/* Safari quote gate: collect date and travelers before opening request page */
.booking-panel__quick-quote {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 95% 5%, rgba(210, 163, 57, 0.16), transparent 30%),
        rgba(255, 253, 248, 0.72);
}

.quick-quote-total {
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--forest-deep), var(--forest));
    color: #fff8e7;
}

.quick-quote-total span,
.quick-quote-total small {
    display: block;
    color: rgba(255, 248, 231, 0.78);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.quick-quote-total strong {
    display: block;
    margin: 0.25rem 0;
    color: #fff8e7;
    font-family: var(--heading-font);
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 0.9;
}

.booking-panel__quick-quote label,
.form-checkbox-field {
    display: grid;
    gap: 0.28rem;
    color: var(--forest-deep);
    font-weight: 900;
}

.booking-panel__quick-quote label span,
.form-checkbox-field span {
    color: var(--forest-deep);
}

.booking-panel__quick-quote small {
    color: rgba(57, 67, 50, 0.65);
    font-weight: 700;
}

.booking-panel__quick-quote input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(68, 92, 47, 0.16);
    border-radius: 15px;
    background: #fffefa;
    color: var(--forest-deep);
    padding: 0.75rem 0.85rem;
}

.quick-quote-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.booking-panel__quick-quote .estimator-note {
    margin: 0;
    padding: 0.8rem;
    border-radius: 16px;
    background: rgba(210, 163, 57, 0.1);
    color: rgba(57, 67, 50, 0.78);
    font-size: 0.9rem;
    line-height: 1.5;
}

.booking-panel__quick-quote .button {
    width: 100%;
    justify-content: center;
}

.form-checkbox-field {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 46px;
    padding: 0.72rem 0.85rem;
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
}

.form-checkbox-field input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--forest);
}

.form-checkbox-field--panel {
    background: rgba(255, 255, 255, 0.62);
}

.page-contact .quote-request-estimator--simple .quote-request-estimator__head {
    align-items: stretch;
}

.page-contact .quote-request-estimator--simple .quote-estimator-breakdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 720px) {
    .page-contact .quote-request-estimator--simple .quote-estimator-breakdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .price-matrix-card__head,
    .price-matrix-card__row {
        grid-template-columns: 0.65fr 1fr 1fr;
    }

    .price-matrix-card__head span,
    .price-matrix-card__row span,
    .price-matrix-card__row strong {
        padding: 0.75rem 0.65rem;
        font-size: 0.82rem;
    }

    .price-matrix-card__row strong {
        font-size: 1.05rem;
    }
}

/* SafariBookings-style quote request flow */
.quote-flow-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.quote-flow-progress span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.72rem 0.85rem;
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.86);
    color: var(--forest-deep);
    font-size: 0.83rem;
    font-weight: 900;
}

.quote-flow-progress b {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--forest-deep);
}

.safari-booking-form {
    gap: 1.15rem;
}

.safari-booking-form .selected-safari-summary {
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: stretch;
    padding: 0.75rem;
    background:
        radial-gradient(circle at 95% 5%, rgba(210, 163, 57, 0.18), transparent 30%),
        linear-gradient(135deg, #fffdf8, #f8f0e1);
}

.safari-booking-form .selected-safari-summary > img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    border-radius: 18px;
    object-fit: cover;
}

.safari-booking-form .selected-safari-summary__meta {
    grid-column: 1 / -1;
}

.safari-booking-form .quote-request-estimator {
    border-color: rgba(210, 163, 57, 0.26);
    box-shadow: 0 22px 55px rgba(34, 49, 29, 0.09);
}

.quote-trip-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.5fr);
    gap: 0.8rem;
    margin-bottom: 0.85rem;
}

.quote-section-title {
    padding: 1rem 1.1rem;
    border-left: 5px solid var(--gold);
    border-radius: 18px;
    background: rgba(255, 248, 234, 0.86);
}

.quote-section-title h3,
.quote-section-title p {
    margin: 0;
}

.quote-section-title h3 {
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1;
}

.quote-section-title p:not(.eyebrow) {
    margin-top: 0.3rem;
    color: rgba(57, 67, 50, 0.74);
}

.quote-section-title--notes {
    margin-top: 0.35rem;
}

.quote-sidebar-shell {
    align-self: start;
}

.quote-request-summary-card {
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(68, 92, 47, 0.14);
    border-radius: 28px;
    background: #fffdf8;
    box-shadow: 0 28px 70px rgba(34, 49, 29, 0.13);
}

.quote-request-summary-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.quote-request-summary-card > div {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
}

.quote-request-summary-card h2 {
    margin: 0;
    color: var(--forest-deep) !important;
    font-family: var(--heading-font);
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
    line-height: 1;
}

.quote-request-summary-card ul {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.quote-request-summary-card li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(68, 92, 47, 0.1);
}

.quote-request-summary-card li span {
    color: rgba(57, 67, 50, 0.68);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-request-summary-card li strong {
    color: var(--forest-deep) !important;
    text-align: right;
    font-size: 0.92rem;
}

.quote-request-summary-card__trust {
    display: grid;
    gap: 0.45rem;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(210, 163, 57, 0.11);
}

.quote-request-summary-card__trust span {
    color: var(--forest-deep);
    font-size: 0.85rem;
    font-weight: 900;
}

@media (max-width: 860px) {
    .quote-flow-progress,
    .quote-trip-grid,
    .safari-booking-form .selected-safari-summary {
        grid-template-columns: 1fr;
    }

    .safari-booking-form .selected-safari-summary > img {
        height: 190px;
    }
}

/* Uniform safari cards: 3 per desktop row, equal height */
@media (min-width: 1021px) {
    .tour-grid,
    .tour-grid--finder,
    .tour-grid--compact,
    .tour-grid.card-grid-count--many,
    .tour-grid.card-grid-count--3,
    .tour-grid.card-grid-count--4,
    .tour-grid.card-grid-count--5 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        align-items: stretch;
    }

    .tour-grid > .tour-card,
    .tour-grid--finder > .tour-card,
    .tour-grid--compact > .tour-card {
        height: 100%;
        min-height: 0;
        grid-column: auto !important;
        grid-template-columns: 1fr !important;
    }

    .tour-grid > .tour-card--featured,
    .tour-grid--finder > .tour-card--featured,
    .tour-grid--compact > .tour-card--featured {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 235, 0.98)) !important;
        border: 1px solid rgba(68, 92, 47, 0.1) !important;
    }

    .tour-grid > .tour-card--featured h3,
    .tour-grid > .tour-card--featured p,
    .tour-grid > .tour-card--featured li,
    .tour-grid > .tour-card--featured .tour-card__route,
    .tour-grid > .tour-card--featured .tour-card__meta,
    .tour-grid > .tour-card--featured .tour-card__footer .text-link,
    .tour-grid > .tour-card--featured .tour-card__planner-row span,
    .tour-grid--finder > .tour-card--featured h3,
    .tour-grid--finder > .tour-card--featured p,
    .tour-grid--finder > .tour-card--featured li,
    .tour-grid--finder > .tour-card--featured .tour-card__route,
    .tour-grid--finder > .tour-card--featured .tour-card__meta,
    .tour-grid--finder > .tour-card--featured .tour-card__footer .text-link,
    .tour-grid--finder > .tour-card--featured .tour-card__planner-row span {
        color: var(--forest-deep) !important;
    }

    .tour-grid > .tour-card--featured .tour-card__summary,
    .tour-grid--finder > .tour-card--featured .tour-card__summary,
    .tour-grid > .tour-card--featured .tour-card__fit,
    .tour-grid--finder > .tour-card--featured .tour-card__fit {
        color: rgba(47, 58, 42, 0.78) !important;
    }

    .tour-grid > .tour-card--featured .tour-card__media,
    .tour-grid--finder > .tour-card--featured .tour-card__media {
        min-height: 236px !important;
        aspect-ratio: 1.58;
    }

    .tour-card__content {
        display: grid;
        grid-template-rows: auto auto auto auto auto 1fr auto;
        height: 100%;
    }

    .tour-card__footer {
        align-self: end;
    }
}

/* Homepage destination cards: show full landscape images without cropping */
.page-home .destination-grid .destination-card__media {
    display: grid;
    place-items: center;
    padding: 0.65rem;
    background:
        radial-gradient(circle at 20% 10%, rgba(210, 163, 57, 0.14), transparent 32%),
        linear-gradient(135deg, rgba(255, 248, 234, 0.96), rgba(238, 230, 213, 0.82));
}

.page-home .destination-grid .destination-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    border-radius: calc(var(--ui-radius) - 10px);
    background: rgba(255, 255, 255, 0.48);
}

.page-home .destination-grid .destination-card:hover .destination-card__media img {
    transform: none;
}

/* Destinations page polish */
.destinations-hero {
    background:
        radial-gradient(circle at 18% 8%, rgba(210, 163, 57, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 248, 234, 0.72), rgba(255, 253, 248, 0));
}

.destinations-hero__grid {
    position: relative;
}

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

.destinations-hero__stats article {
    padding: 0.85rem;
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.62);
}

.destinations-hero__stats strong {
    display: block;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 0.9;
}

.destinations-hero__stats span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(57, 67, 50, 0.72);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.destinations-hero-card {
    position: relative;
}

.destinations-hero-card__overlay {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    background: rgba(24, 35, 22, 0.72);
    color: #fff8e7;
    backdrop-filter: blur(16px);
}

.destinations-hero-card__overlay span {
    color: #f8d777;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.destinations-hero-card__overlay strong {
    color: #fff8e7;
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    line-height: 1.05;
}

.destinations-route-brief-grid {
    display: grid;
    gap: clamp(0.85rem, 1.6vw, 1.15rem);
}

.destinations-route-brief-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: clamp(1.15rem, 2vw, 1.55rem);
    border: 1px solid rgba(68, 92, 47, 0.13);
    border-radius: var(--ui-radius);
    background:
        radial-gradient(circle at 95% 8%, rgba(210, 163, 57, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(248, 240, 225, 0.92));
    box-shadow: var(--ui-shadow);
}

.destinations-route-brief-card::before {
    content: "";
    display: block;
    width: 46px;
    height: 4px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(210, 163, 57, 0));
}

.destinations-route-brief-card span {
    color: var(--gold-deep);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.destinations-route-brief-card h2 {
    margin: 0.35rem 0 0.5rem;
    color: var(--forest-deep);
    font-family: var(--heading-font);
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 0.95;
}

.destinations-route-brief-card p {
    margin: 0;
    color: rgba(57, 67, 50, 0.76);
    line-height: 1.58;
}

.destinations-circuit-grid {
    --card-min: 290px;
}

.destinations-circuit-card {
    display: grid;
    min-height: 100%;
    border: 1px solid rgba(68, 92, 47, 0.13);
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 8%, rgba(210, 163, 57, 0.15), transparent 28%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(248, 240, 225, 0.94));
    color: var(--forest-deep);
    box-shadow: 0 24px 64px rgba(24, 35, 22, 0.1);
}

.destinations-circuit-card::after {
    display: none;
}

.destinations-circuit-card::before {
    content: "";
    position: absolute;
    inset: auto 1.25rem 0 1.25rem;
    z-index: 3;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, transparent, rgba(210, 163, 57, 0.86), transparent);
}

.destinations-circuit-card .collection-card__media {
    position: relative;
    inset: auto;
    width: auto;
    height: 220px;
    margin: 0.8rem 0.8rem 0;
    border-radius: 24px;
    background: #e9deca;
}

.destinations-circuit-card .collection-card__media::after {
    background:
        linear-gradient(180deg, rgba(15, 24, 13, 0), rgba(15, 24, 13, 0.18)),
        radial-gradient(circle at 12% 12%, rgba(255, 230, 162, 0.22), transparent 36%);
}

.destinations-circuit-card .collection-card__media img {
    object-fit: cover;
}

.destinations-circuit-card .collection-card__body {
    position: relative;
    z-index: 2;
    align-content: start;
    gap: 0.7rem;
    min-height: auto;
    padding: 1.15rem;
}

.destinations-circuit-card .collection-card__body > span {
    border-color: rgba(210, 163, 57, 0.24);
    background: rgba(210, 163, 57, 0.12);
    color: var(--gold-deep);
}

.destinations-circuit-card h3 {
    max-width: none;
    color: var(--forest-deep);
    font-size: clamp(1.55rem, 2.3vw, 2.1rem);
}

.destinations-circuit-card p:not(.collection-card__route) {
    color: rgba(57, 67, 50, 0.76);
    line-height: 1.55;
}

.destinations-circuit-card .collection-card__route {
    border: 1px solid rgba(68, 92, 47, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--forest-deep) !important;
}

.destinations-circuit-card strong {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 950;
}

.destinations-circuit-card strong::after {
    content: "->";
    margin-left: 0.42rem;
    color: var(--gold-deep);
}

.destinations-circuit-card:hover .collection-card__media img {
    transform: scale(1.035);
}

.destinations-page-grid .destination-card {
    min-height: 100%;
}

.destinations-page-grid .destination-card__media {
    display: grid;
    place-items: center;
    padding: 0.62rem;
    background:
        radial-gradient(circle at 20% 12%, rgba(210, 163, 57, 0.13), transparent 34%),
        linear-gradient(135deg, rgba(255, 248, 234, 0.96), rgba(238, 230, 213, 0.82));
}

.destinations-page-grid .destination-card__media img {
    object-fit: contain !important;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
}

.destinations-page-grid .destination-card:hover .destination-card__media img {
    transform: none;
}

.destination-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.destination-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.62rem;
    border: 1px solid rgba(68, 92, 47, 0.12);
    border-radius: 999px;
    background: rgba(255, 248, 234, 0.78);
    color: var(--forest-deep);
    font-size: 0.76rem;
    font-weight: 900;
}

.destinations-planner-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1.3rem, 3vw, 2.2rem);
    border: 1px solid rgba(68, 92, 47, 0.13);
    border-radius: 34px;
    background:
        radial-gradient(circle at 88% 14%, rgba(210, 163, 57, 0.2), transparent 30%),
        linear-gradient(135deg, var(--forest-deep), var(--forest));
    box-shadow: 0 34px 82px rgba(24, 35, 22, 0.18);
    color: #fff8e7;
}

.destinations-planner-cta h2 {
    margin: 0;
    color: #fff8e7;
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
}

.destinations-planner-cta p:not(.eyebrow) {
    max-width: 760px;
    margin: 0.65rem 0 0;
    color: rgba(255, 248, 231, 0.78);
    line-height: 1.65;
}

.destinations-planner-cta .eyebrow {
    color: #f8d777;
}

.destinations-planner-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.destinations-planner-cta__actions .button--ghost {
    border-color: rgba(255, 248, 231, 0.32);
    color: #fff8e7;
}

@media (max-width: 920px) {
    .destinations-hero__stats,
    .destinations-planner-cta {
        grid-template-columns: 1fr;
    }

    .destinations-planner-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .destinations-hero-card__overlay {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0.8rem;
        background: var(--forest-deep);
    }
}

/* Count-aware card grids: keep short sections balanced and large sections responsive */
.collection-grid,
.tour-grid,
.destination-grid,
.activity-grid,
.guide-grid,
.related-grid,
.detail-card-grid,
.confidence-card-grid,
.assurance-grid,
.info-grid,
.season-grid,
.process-grid,
.faq-grid,
.payment-grid,
.review-grid {
    --card-min: 280px;
    --card-max: 1fr;
}

.card-grid-count--1 {
    grid-template-columns: minmax(0, min(100%, 760px)) !important;
    justify-content: center;
}

.card-grid-count--2 {
    grid-template-columns: repeat(2, minmax(min(100%, var(--card-min)), min(100%, 520px))) !important;
    justify-content: center;
}

.card-grid-count--3 {
    grid-template-columns: repeat(3, minmax(0, var(--card-max))) !important;
}

.card-grid-count--4 {
    grid-template-columns: repeat(4, minmax(0, var(--card-max))) !important;
}

.card-grid-count--5 {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.card-grid-count--5 > * {
    grid-column: span 2;
}

.card-grid-count--5 > *:nth-last-child(2) {
    grid-column-start: 2;
}

.collection-grid--featured.card-grid-count--5 > *:first-child,
.tour-grid.card-grid-count--5 > .tour-card--featured {
    grid-column: span 4;
}

.collection-grid--featured.card-grid-count--5 > *:nth-last-child(2),
.tour-grid.card-grid-count--5 > *:nth-last-child(2) {
    grid-column-start: auto;
}

.card-grid-count--many {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--card-min)), 1fr)) !important;
}

.tour-grid.card-grid-count--1,
.tour-grid.card-grid-count--2,
.related-grid.card-grid-count--1,
.related-grid.card-grid-count--2 {
    --card-min: 320px;
}

.destination-grid.card-grid-count--many,
.collection-grid.card-grid-count--many,
.activity-grid.card-grid-count--many,
.guide-grid.card-grid-count--many {
    --card-min: 260px;
}

@media (max-width: 1120px) {
    .card-grid-count--4,
    .card-grid-count--5 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .card-grid-count--5 > * {
        grid-column: auto;
    }

    .collection-grid--featured.card-grid-count--5 > *:first-child,
    .tour-grid.card-grid-count--5 > .tour-card--featured {
        grid-column: 1 / -1;
    }

    .card-grid-count--5 > *:last-child {
        grid-column: 1 / -1;
        max-width: 620px;
        justify-self: center;
    }
}

@media (max-width: 760px) {
    .card-grid-count--1,
    .card-grid-count--2,
    .card-grid-count--3,
    .card-grid-count--4,
    .card-grid-count--5,
    .card-grid-count--many {
        grid-template-columns: 1fr !important;
    }

    .card-grid-count--5 > *:last-child {
        grid-column: auto;
        max-width: none;
    }
}

/* Home hero gateway planner readability */
.page-home .hero-concierge-card {
    padding: clamp(1.1rem, 2vw, 1.45rem);
    border: 1px solid rgba(255, 248, 231, 0.62);
    background:
        radial-gradient(circle at 100% 0%, rgba(210, 163, 57, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(248, 240, 225, 0.91));
    box-shadow: 0 34px 80px rgba(8, 15, 6, 0.34);
    color: var(--forest-deep);
    backdrop-filter: blur(18px);
}

.page-home .hero-concierge-card::before {
    background: linear-gradient(90deg, var(--gold), rgba(210, 163, 57, 0));
}

.page-home .hero-concierge-card .eyebrow {
    color: var(--gold-deep);
}

.page-home .hero-concierge-card h2 {
    color: var(--forest-deep);
    text-shadow: none;
}

.page-home .hero-concierge-card__copy {
    margin: 0.15rem 0 0.25rem;
    padding: 0.85rem 0.95rem;
    border-left: 4px solid var(--gold);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--forest-deep);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    font-weight: 900;
    line-height: 1.48;
    box-shadow: inset 0 0 0 1px rgba(68, 92, 47, 0.08);
}

.page-home .hero-route-stack {
    display: grid;
    gap: 0.7rem;
}

.page-home .hero-route-stack a {
    border: 1px solid rgba(68, 92, 47, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 234, 0.78));
    box-shadow: 0 12px 28px rgba(34, 49, 29, 0.09);
    text-decoration: none;
}

.page-home .hero-route-stack a:hover {
    transform: translateY(-2px);
    border-color: rgba(210, 163, 57, 0.44);
    box-shadow: 0 18px 36px rgba(34, 49, 29, 0.14);
}

.page-home .hero-route-stack span {
    color: var(--forest-deep);
    font-weight: 950;
}

.page-home .hero-route-stack strong {
    color: rgba(34, 49, 29, 0.78);
    font-weight: 800;
    line-height: 1.25;
}

.page-home .hero-concierge-card__footer {
    border-top-color: rgba(68, 92, 47, 0.14);
}

.page-home .hero-concierge-card__footer span {
    color: rgba(34, 49, 29, 0.72);
    font-weight: 900;
}

.page-home .hero-concierge-card__footer .button {
    color: #172312;
}

/* Final premium brand color layer: calmer logo-inspired forest, ivory, and antique gold */
:root {
    --ivory: #f4efe4;
    --ivory-strong: #fffaf0;
    --sand: #e7d9be;
    --sand-deep: #c8b48d;
    --forest: #354b25;
    --forest-deep: #172411;
    --forest-rich: #101b0d;
    --forest-soft: #6f7e62;
    --gold: #c79734;
    --gold-deep: #8f6418;
    --ink: #1d2818;
    --muted: #626957;
    --line: rgba(53, 75, 37, 0.14);
    --panel: rgba(255, 250, 240, 0.94);
    --panel-strong: #fffaf0;
    --ui-border: rgba(53, 75, 37, 0.13);
    --ui-card-bg: linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(244, 239, 228, 0.94));
    --ui-shadow: 0 26px 68px rgba(16, 27, 13, 0.11);
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 6%, rgba(199, 151, 52, 0.11), transparent 26%),
        radial-gradient(circle at 88% 0%, rgba(53, 75, 37, 0.09), transparent 28%),
        linear-gradient(180deg, #fffaf0 0%, #f4efe4 48%, #fbf6eb 100%);
}

.topbar,
.site-footer,
.footer-cta,
.safari-detail-hero,
.immersive-hero {
    background: linear-gradient(135deg, var(--forest-rich), var(--forest-deep) 58%, #26391b);
}

.site-header {
    background: rgba(255, 250, 240, 0.94);
    border-bottom-color: rgba(53, 75, 37, 0.12);
}

.brand-lockup,
.nav-toggle,
.form-shell,
.sidebar-shell,
.booking-panel,
.quote-request-estimator,
.selected-safari-summary,
.custom-request-travelers,
.finder-panel,
.confidence-panel,
.page-card,
.destination-card,
.tour-card,
.activity-card,
.guide-card,
.info-card,
.season-card,
.process-card,
.faq-card,
.assurance-card,
.review-card,
.collection-card:not(.destinations-circuit-card),
.destinations-route-brief-card,
.destinations-circuit-card,
.quote-request-summary-card {
    border-color: var(--ui-border);
    background: var(--ui-card-bg);
    box-shadow: var(--ui-shadow);
}

.button {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest));
    color: var(--ivory-strong) !important;
    border: 1px solid rgba(255, 250, 240, 0.12);
    box-shadow: 0 16px 36px rgba(23, 36, 17, 0.24);
}

.button:hover {
    box-shadow: 0 20px 44px rgba(23, 36, 17, 0.3);
}

.button--ghost,
.button--panel {
    background: rgba(255, 250, 240, 0.72);
    color: var(--forest-deep) !important;
    border-color: rgba(53, 75, 37, 0.22);
    box-shadow: none;
}

.hero .button--ghost,
.safari-detail-hero .button--ghost,
.immersive-hero .button--ghost,
.destinations-planner-cta__actions .button--ghost {
    background: rgba(255, 250, 240, 0.1);
    color: var(--ivory-strong) !important;
    border-color: rgba(255, 250, 240, 0.26);
}

.eyebrow,
.card-badge,
.destination-card__subtitle,
.tour-card__route,
.collection-card__body span,
.activity-card__link,
.guide-card__read-more,
.panel-label,
.form-shell .eyebrow,
.quote-section-title .eyebrow {
    color: var(--gold-deep) !important;
}

.section-heading h2,
.page-hero h1,
.destination-card h3,
.tour-card h3,
.activity-card h3,
.guide-card h3,
.info-card h3,
.season-card h3,
.process-card h3,
.faq-card h3,
.booking-panel h2,
.form-shell h2,
.form-shell h3 {
    color: var(--forest-deep);
}

.section-heading p,
.page-hero p,
.destination-card p,
.tour-card p,
.activity-card p,
.guide-card p,
.info-card p,
.season-card p,
.process-card p,
.faq-card p,
.booking-panel p,
.form-shell p {
    color: rgba(29, 40, 24, 0.74);
}

.section--soft {
    background:
        linear-gradient(180deg, rgba(53, 75, 37, 0.045), rgba(255, 250, 240, 0)),
        radial-gradient(circle at 12% 0%, rgba(199, 151, 52, 0.07), transparent 32%);
}

.site-nav a {
    color: rgba(29, 40, 24, 0.78);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--forest-deep);
    background: rgba(53, 75, 37, 0.09);
}

.tour-card__meta span,
.tour-card__tags span,
.destination-card__meta span,
.trust-chip,
.hero-badge-row span,
.selected-safari-summary__meta span,
.booking-panel__signals span {
    border-color: rgba(53, 75, 37, 0.12);
    background: rgba(255, 250, 240, 0.74);
    color: var(--forest-deep) !important;
}

.quick-quote-total,
.quote-request-estimator__total,
.destinations-planner-cta,
.price-matrix-card__head {
    background: linear-gradient(135deg, var(--forest-rich), var(--forest));
    color: var(--ivory-strong);
}

.quick-quote-total strong,
.quote-request-estimator__total strong,
.quick-quote-total span,
.quick-quote-total small,
.quote-request-estimator__total span,
.quote-request-estimator__total small {
    color: var(--ivory-strong) !important;
}

.page-home .hero-concierge-card {
    border-color: rgba(53, 75, 37, 0.16);
    background:
        radial-gradient(circle at 100% 0%, rgba(199, 151, 52, 0.13), transparent 34%),
        linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(244, 239, 228, 0.94));
}

.page-home .hero-concierge-card__copy,
.page-home .hero-route-stack a {
    background: rgba(255, 250, 240, 0.78);
    border-color: rgba(53, 75, 37, 0.13);
}

.destinations-circuit-card,
.destinations-route-brief-card {
    background:
        radial-gradient(circle at 92% 8%, rgba(199, 151, 52, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(244, 239, 228, 0.94));
}

/* Premium footer refinement */
.site-footer {
    margin-top: clamp(2rem, 5vw, 4rem);
    padding: 0 0 2rem;
    background:
        radial-gradient(circle at 86% 4%, rgba(199, 151, 52, 0.18), transparent 30%),
        radial-gradient(circle at 8% 18%, rgba(255, 250, 240, 0.08), transparent 24%),
        linear-gradient(180deg, var(--forest-rich), #0a1208);
    color: var(--ivory-strong);
}

.footer-cta {
    padding: clamp(2rem, 5vw, 4rem) 0 1.1rem;
}

.footer-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1.35rem, 3vw, 2.35rem);
    border: 1px solid rgba(255, 250, 240, 0.14);
    background:
        radial-gradient(circle at 92% 10%, rgba(199, 151, 52, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.04));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.footer-cta h2 {
    max-width: 880px;
    color: var(--ivory-strong);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
}

.footer-cta p:not(.eyebrow) {
    max-width: 760px;
    margin: 0.75rem 0 0;
    color: rgba(255, 250, 240, 0.76);
    line-height: 1.65;
}

.footer-cta .eyebrow {
    color: #e0bd66 !important;
}

.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.footer-cta__actions .button--light {
    background: var(--ivory-strong);
    color: var(--forest-deep) !important;
    border-color: transparent;
}

.footer-cta__actions .button--ghost {
    background: rgba(255, 250, 240, 0.08);
    color: var(--ivory-strong) !important;
    border-color: rgba(255, 250, 240, 0.24);
}

.footer-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.62fr) minmax(280px, 0.9fr);
    gap: clamp(1rem, 3vw, 2rem);
    padding: clamp(1.2rem, 3vw, 2.2rem) 0;
}

.footer-brand-panel,
.footer-link-panel,
.footer-contact-panel {
    padding: clamp(1rem, 2vw, 1.25rem);
    border: 1px solid rgba(255, 250, 240, 0.09);
    border-radius: 28px;
    background: rgba(255, 250, 240, 0.045);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0.9rem 0 1rem;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 34px;
    padding: 0.34rem 0.68rem 0.34rem 0.38rem;
    border: 1px solid rgba(224, 189, 102, 0.24);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.07);
    color: rgba(255, 250, 240, 0.9);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    padding: 0.28rem;
    border-radius: 50%;
    background: var(--gold);
    fill: var(--forest-deep);
    flex: 0 0 auto;
}

.footer-social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(224, 189, 102, 0.55);
    background: rgba(224, 189, 102, 0.13);
    color: var(--ivory-strong);
}

.brand--footer {
    display: inline-flex;
    margin-bottom: 0.95rem;
}

.brand-lockup--footer {
    background: rgba(255, 250, 240, 0.94);
    border-color: rgba(255, 250, 240, 0.22);
}

.brand-lockup--footer img {
    width: clamp(240px, 24vw, 330px);
}

.footer-copy {
    max-width: 620px;
    color: rgba(255, 250, 240, 0.76);
    line-height: 1.72;
}

.footer-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.footer-specialties span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0.38rem 0.62rem;
    border: 1px solid rgba(255, 250, 240, 0.12);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.07);
    color: rgba(255, 250, 240, 0.86);
    font-size: 0.78rem;
    font-weight: 900;
}

.site-footer h3 {
    margin: 0 0 1rem;
    color: #e0bd66;
    font-family: var(--heading-font);
    font-size: 1.55rem;
}

.footer-links {
    gap: 0.55rem;
    color: rgba(255, 250, 240, 0.72);
}

.footer-links a {
    display: inline-flex;
    width: fit-content;
    padding: 0.22rem 0;
    color: rgba(255, 250, 240, 0.78);
    font-weight: 800;
}

.footer-links a:hover {
    color: #e0bd66;
}

.footer-contact-cards {
    display: grid;
    gap: 0.65rem;
}

.footer-contact-cards a {
    display: grid;
    gap: 0.18rem;
    padding: 0.85rem;
    border: 1px solid rgba(255, 250, 240, 0.1);
    border-radius: 18px;
    background: rgba(255, 250, 240, 0.055);
}

.footer-contact-cards a:hover {
    border-color: rgba(224, 189, 102, 0.4);
    background: rgba(255, 250, 240, 0.08);
}

.footer-contact-cards span {
    color: #e0bd66;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-contact-cards strong {
    color: var(--ivory-strong);
    font-size: 0.98rem;
}

.footer-contact-cards small,
.footer-location {
    color: rgba(255, 250, 240, 0.68);
    line-height: 1.5;
}

.footer-location {
    margin: 0.9rem 0 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 250, 240, 0.1);
    color: rgba(255, 250, 240, 0.66);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 250, 240, 0.66);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem 1rem;
}

.footer-legal-links a {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 250, 240, 0.78);
    box-shadow: none;
    font-size: 0.84rem;
    font-weight: 850;
    line-height: 1.4;
    text-decoration: none;
}

.footer-legal-links a:hover {
    background: transparent;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

/* Review platform logo ribbon */
.page-home .trust-ribbon {
    grid-template-columns: minmax(210px, 1fr) repeat(4, minmax(0, 1fr));
}

.trust-ribbon__logo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 0.75rem;
}

.review-logo {
    display: block;
    width: min(100%, 178px);
    height: 34px;
}

.trust-ribbon__logo + strong {
    font-size: clamp(1.8rem, 2.6vw, 2.45rem);
}

.page-home .trust-ribbon__item span {
    letter-spacing: 0.08em;
}

@media (max-width: 1180px) {
    .page-home .trust-ribbon {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .trust-ribbon__label {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .page-home .trust-ribbon {
        grid-template-columns: 1fr;
    }

    .trust-ribbon__logo {
        margin-bottom: 0.35rem;
    }

    .review-logo {
        width: min(100%, 170px);
    }
}

/* Homepage gateway planner contrast fix */
.page-home .hero-concierge-card,
.page-home .hero-concierge-card h2,
.page-home .hero-concierge-card__copy,
.page-home .hero-route-stack span,
.page-home .hero-route-stack strong {
    color: var(--forest-deep) !important;
}

.page-home .hero-concierge-card__copy {
    background: rgba(255, 250, 240, 0.94) !important;
    border: 1px solid rgba(53, 75, 37, 0.14) !important;
    border-left: 4px solid var(--gold) !important;
    box-shadow: 0 12px 28px rgba(34, 49, 29, 0.08) !important;
    text-shadow: none !important;
}

.page-home .hero-route-stack a {
    background: rgba(255, 250, 240, 0.92) !important;
    border-color: rgba(53, 75, 37, 0.16) !important;
}

.page-home .hero-route-stack strong {
    color: rgba(34, 49, 29, 0.84) !important;
}

@media (max-width: 980px) {
    .footer-cta__inner,
    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .footer-bottom {
        display: grid;
    }

    .footer-cta__actions,
    .footer-legal-links {
        justify-content: flex-start;
    }

    .footer-legal-links a {
        flex: 0 0 auto;
        justify-content: flex-start;
    }
}

/* Signature polish pass: accessibility, motion, and premium micro-interactions */
::selection {
    background: rgba(210, 163, 57, 0.32);
    color: var(--forest-deep);
}

html {
    scrollbar-color: var(--forest-soft) rgba(68, 92, 47, 0.08);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(68, 92, 47, 0.06);
}

::-webkit-scrollbar-thumb {
    border: 3px solid transparent;
    border-radius: 999px;
    background-clip: padding-box;
    background-color: var(--forest-soft);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--forest);
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 1rem;
    left: 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: var(--forest-deep);
    color: var(--ivory-strong);
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 40px rgba(24, 35, 22, 0.28);
    transform: translateY(-140%);
    transition: transform 200ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.button:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--gold-deep);
    outline-offset: 3px;
    border-radius: 8px;
}

.button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 550ms ease;
}

.button:hover::before {
    transform: translateX(120%);
}

.site-nav a {
    position: relative;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.32rem;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-deep);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

body.is-loaded [data-reveal] {
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

    .button::before {
        display: none;
    }
}

/* Logo-matched brand identity system (pixel-sampled from uwanda-logo-cropped.png) */
:root {
    --brand-green: #3f5330;
    --brand-gold: #d2a33c;
    --brand-gradient: linear-gradient(115deg, var(--brand-green) 0%, var(--forest) 38%, var(--gold-deep) 72%, var(--brand-gold) 100%);
}

.brand-ribbon {
    height: 4px;
    background: var(--brand-gradient);
}

.section-heading h2,
.section-heading--tight h2 {
    position: relative;
}

.section-heading h2::after,
.section-heading--tight h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 0.85rem;
    border-radius: 999px;
    background: var(--brand-gradient);
}

.page-hero .eyebrow::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 3px;
    margin-right: 0.55rem;
    border-radius: 999px;
    background: var(--brand-gradient);
    vertical-align: middle;
}

.footer-cta {
    position: relative;
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-gradient);
}
