:root {
    --linen: #f1f0ed;
    --stone: #e8e5df;
    --obsidian: #111816;
    --charcoal: #1a2421;
    --canopy: #223630;
    --moss: #7c7b73;
    --ink: #1e2925;
    --muted: #5f5a52;
    --amber: #917a57;
    --clay: #78664a;
    --white: #ffffff;
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --soft-shadow: 0 14px 34px rgba(15, 22, 20, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    line-height: 1.65;
    color: var(--ink);
    background: #efefee;
}

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

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

h1,
h2,
h3,
h4 {
    margin: 0 0 0.8rem;
    font-family: "Playfair Display", serif;
    line-height: 1.17;
    color: #121b18;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

ul {
    margin: 0 0 1.2rem;
    padding-left: 1.15rem;
}

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

.site-shell {
    width: 100%;
    max-width: none !important;
}

.site-header .container {
    width: min(1380px, calc(100% - 2.6rem));
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none !important;
    z-index: 900;
    margin: 0;
    background: rgba(16, 23, 21, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

body.home .site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(41, 36, 29, 0.42);
    border-bottom: 1px solid rgba(245, 235, 218, 0.18);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.9rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    flex: 0 0 auto;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 700;
    background: linear-gradient(135deg, var(--amber), var(--clay));
}

.brand-copy strong {
    display: block;
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8f3e6;
}

.brand-copy small {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(248, 243, 230, 0.72);
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(248, 243, 230, 0.35);
    color: #f8f3e6;
    background: transparent;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
}

.primary-nav {
    margin-left: auto;
    min-width: 0;
}

.primary-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.15rem;
}

.primary-nav li {
    margin: 0;
}

.primary-nav a {
    color: #f3ecd8;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
    color: #f9c37e;
}

.desktop-cta {
    margin-left: 0.6rem;
    flex: 0 0 auto;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.35rem;
    border-radius: 3px;
    border: 1px solid transparent;
    background: linear-gradient(120deg, var(--amber), var(--clay));
    color: var(--white);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-flat {
    border-radius: 1px;
    background: #8b7758;
    border-color: #8b7758;
    color: #f8f5ef;
    min-width: 175px;
}

.btn-flat:hover {
    filter: brightness(1.08);
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-outline {
    background: transparent;
    border-color: rgba(23, 43, 37, 0.32);
    color: #162822;
}

.site-header .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #f8f2e4;
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.44);
    color: #f9f2e4;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-immersive {
    align-items: center;
    background-image:
        linear-gradient(120deg, rgba(8, 12, 11, 0.58), rgba(8, 12, 11, 0.2)),
        var(--hero-image);
}

.hero-immersive::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(255, 230, 170, 0.22), transparent 40%);
}

.hero-immersive-inner {
    position: relative;
    z-index: 4;
    max-width: 800px;
    text-align: center;
    padding: 6.5rem 0 6rem;
}

.hero-immersive-inner .eyebrow {
    color: #f0cb96;
}

.hero-immersive-inner h1 {
    font-size: clamp(2.4rem, 7vw, 5.7rem);
    line-height: 1.04;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hero-immersive-inner p {
    margin: 0 auto;
    font-size: 1.08rem;
    max-width: 670px;
}

.btn-hero {
    margin-top: 1.5rem;
    min-width: 210px;
}

.hero-cinematic {
    background-image:
        linear-gradient(120deg, rgba(9, 13, 12, 0.84), rgba(9, 13, 12, 0.28)),
        var(--hero-image);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(to top, rgba(17, 24, 22, 0.85), transparent);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 4.5rem 0 5rem;
}

.hero-content-wide {
    max-width: 760px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.95rem;
    color: var(--amber);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2.1rem, 5.5vw, 4.9rem);
    margin-bottom: 1.1rem;
}

.hero h1 {
    color: #f7f1e2;
}

.hero p {
    color: rgba(247, 241, 226, 0.9);
    max-width: 670px;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.74rem;
    margin-top: 1.4rem;
}

.hero-actions-strong .btn {
    min-width: 205px;
}

.hero-pillars {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.hero-pillars span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #eee3cd;
    padding: 0.4rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(238, 227, 205, 0.32);
    background: rgba(17, 24, 22, 0.28);
}

.signature-ribbon {
    background: #111816;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.signature-ribbon-inner {
    min-height: 68px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0;
}

.signature-ribbon-inner p {
    margin: 0;
    color: #dccdae;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    font-weight: 700;
    text-transform: uppercase;
}

.intro-overlap {
    margin-top: -66px;
    position: relative;
    z-index: 8;
}

.intro-overlap-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: #e8e7e4;
    border-radius: 0;
    border: 1px solid rgba(20, 27, 25, 0.08);
    box-shadow: none;
    overflow: hidden;
}

.intro-overlap-copy {
    padding: 2.4rem 2.6rem;
}

.intro-overlap-copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.65rem);
}

.intro-overlap-facts {
    padding: 2.4rem 2.2rem;
    background: #deddd9;
}

.intro-overlap-facts h3 {
    color: #6f5d45;
}

.intro-overlap-facts ul {
    margin: 0;
    padding-left: 1.2rem;
}

.intro-overlap-facts li {
    color: #5b5650;
    margin-bottom: 0.52rem;
}

.editorial-band {
    padding-top: 4.3rem;
    padding-bottom: 3.6rem;
}

.editorial-band-quote {
    max-width: 980px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.45rem, 3.5vw, 3.1rem);
    line-height: 1.22;
    color: #7b6750;
}

.journey-splits {
    padding-top: 2.8rem;
}

.split-stack {
    display: grid;
    gap: 2.8rem;
}

.split-item {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.4rem;
    align-items: center;
    background: #e8e7e4;
    padding: 1.8rem;
}

.split-item-reverse {
    grid-template-columns: 0.92fr 1.08fr;
}

.split-item-reverse .split-media {
    order: 2;
}

.split-item-reverse .split-copy {
    order: 1;
}

.split-media {
    border-radius: 16px;
    overflow: hidden;
}

.split-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.split-copy h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.45rem);
    color: #7b6750;
}

.collection-strip {
    background: #efefee;
}

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

.collection-card {
    border-radius: 0;
    overflow: hidden;
    background: #f9f9f8;
    border: 1px solid rgba(18, 26, 23, 0.08);
    box-shadow: none;
}

.collection-card img {
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit: cover;
}

.collection-card-copy {
    padding: 1.1rem;
}

.collection-card-copy h3 {
    font-size: 1.2rem;
    color: #7b6750;
}

.where-operate {
    background: #efefee;
}

.where-operate-block {
    background: #e8e7e4;
    padding: 1.8rem;
}

.section {
    padding: 5.2rem 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.1rem;
}

.section-heading h2 {
    font-size: clamp(1.7rem, 3.3vw, 3.1rem);
}

.editorial-intro {
    background:
        radial-gradient(circle at 85% 16%, rgba(184, 138, 82, 0.22), transparent 42%),
        transparent;
}

.editorial-grid {
    display: grid;
    gap: 1.35rem;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.editorial-copy h2 {
    font-size: clamp(1.7rem, 3.1vw, 3rem);
}

.editorial-copy p {
    max-width: 680px;
}

.editorial-quote {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(140deg, #21352f, #172723);
    box-shadow: var(--soft-shadow);
}

.editorial-quote p {
    color: #f4ecdc;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.9rem;
}

.editorial-quote small {
    color: #d8c09a;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.destination-mosaic {
    padding-top: 2.2rem;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.mosaic-card {
    background: #141d1b;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.mosaic-card-large {
    min-height: 580px;
}

.mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
}

.mosaic-content {
    position: absolute;
    inset: auto 1rem 1rem;
    padding: 1.05rem;
    border-radius: 12px;
    background: linear-gradient(120deg, rgba(12, 17, 15, 0.88), rgba(12, 17, 15, 0.55));
}

.mosaic-content h3 {
    color: #f6f0e2;
    margin-bottom: 0.32rem;
}

.mosaic-content p {
    color: rgba(246, 240, 226, 0.86);
    margin-bottom: 0.55rem;
}

.mosaic-content a {
    color: #efbf7f;
    font-weight: 700;
    font-size: 0.85rem;
}

.section-dark {
    background: linear-gradient(145deg, #101715 0%, #182420 52%, #1f322c 100%);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li,
.section-dark a {
    color: #f4eedf;
}

.section-dark .eyebrow {
    color: #f0ba74;
}

.conservation-panel {
    position: relative;
    overflow: hidden;
}

.conservation-panel::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -160px;
    right: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 186, 116, 0.25), transparent 70%);
}

.conservation-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1.3rem;
    grid-template-columns: 1.1fr 0.9fr;
}

.impact-cards {
    display: grid;
    gap: 0.85rem;
}

.impact-cards article {
    padding: 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 238, 223, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.impact-cards h3 {
    margin-bottom: 0.25rem;
}

.journeys {
    background: #efefee;
}

.tour-grid-lined .tour-card {
    border-radius: 14px;
}

.tour-card-minimal .tour-content {
    padding-bottom: 1.15rem;
}

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

.tour-grid-spacious {
    gap: 1.45rem;
}

.tour-card {
    background: var(--white);
    border: 1px solid rgba(24, 36, 32, 0.08);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.tour-card-editorial {
    border-radius: var(--radius-xl);
}

.tour-media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.tour-content {
    padding: 1.2rem 1.2rem 1.35rem;
}

.tour-content h2,
.tour-content h3 {
    font-size: 1.25rem;
}

.tour-content h2 a,
.tour-content h3 a {
    color: #151f1b;
}

.tour-content p {
    margin-bottom: 0.75rem;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}

.tour-meta span {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #1e4035;
    background: rgba(30, 64, 53, 0.09);
    border: 1px solid rgba(30, 64, 53, 0.16);
    border-radius: 999px;
    padding: 0.3rem 0.5rem;
}

.text-link {
    color: #1f4a3c;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.seasonality {
    background: #efefee;
}

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

.season-grid article {
    padding: 1.3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(24, 36, 32, 0.1);
    background: rgba(255, 255, 255, 0.75);
}

.season-grid h3 {
    font-size: 1.03rem;
    margin-bottom: 0.45rem;
}

.season-grid-editorial article {
    border-top: 3px solid rgba(184, 138, 82, 0.5);
}

.season-grid-clean article {
    background: #e8e7e4;
    border-top: 3px solid rgba(139, 119, 88, 0.95);
}

.testimonial {
    padding-top: 3.2rem;
    padding-bottom: 3.4rem;
}

.testimonial-inner {
    max-width: 860px;
    text-align: center;
}

.testimonial-dark {
    background: #131d1a;
}

.testimonial-dark .testimonial-inner p {
    color: #f4ebd8;
}

.testimonial-inner-wide {
    max-width: 980px;
}

.testimonial-light {
    background: #efefee;
    padding-top: 3.8rem;
    padding-bottom: 2.2rem;
}

.testimonial-light .testimonial-inner p {
    color: #7b6750;
    font-size: clamp(1.35rem, 2.8vw, 2.35rem);
}

.testimonial-light .testimonial-inner small {
    display: inline-block;
    margin-top: 0.2rem;
    color: #8a8478;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.thumb-strip {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.7rem;
}

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

.subscribe-strip {
    background: #efefee;
    padding-top: 2.2rem;
    padding-bottom: 2.3rem;
    border-top: 1px solid rgba(32, 32, 32, 0.08);
}

.subscribe-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.subscribe-inner h3 {
    margin-bottom: 0.32rem;
    color: #7b6750;
}

.subscribe-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
}

.subscribe-form input {
    border: 1px solid rgba(20, 20, 20, 0.16);
    background: #f7f7f5;
    padding: 0.78rem 0.8rem;
    font-family: inherit;
    font-size: 0.92rem;
}

.cta-band-soft {
    background: linear-gradient(180deg, #e3eaef 0%, #dbe4ea 100%);
}

.cta-band-soft h2,
.cta-band-soft p {
    color: #75644d;
}

.testimonial-inner p {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 2.7vw, 2.5rem);
    line-height: 1.34;
    color: #21342e;
}

.cta-band {
    padding: 4.5rem 0;
    text-align: center;
    background:
        radial-gradient(circle at 18% 12%, rgba(249, 188, 110, 0.22), transparent 38%),
        linear-gradient(135deg, #0f1513, #17231f 60%, #111816);
    color: #f5efde;
}

.cta-band h2 {
    color: #fcf6e7;
    font-size: clamp(1.7rem, 3.8vw, 3rem);
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: rgba(252, 246, 231, 0.85);
    max-width: 690px;
    margin: 0 auto 1.3rem;
}

.cta-band-strong .btn {
    min-width: 240px;
}

.page-hero {
    position: relative;
    padding: 7.4rem 0 4.2rem;
    background:
        linear-gradient(120deg, rgba(9, 13, 12, 0.86), rgba(9, 13, 12, 0.35));
    color: #f8f2e2;
}

.page-hero h1,
.page-hero p {
    color: #f8f2e2;
}

.page-hero-image {
    background-image:
        linear-gradient(120deg, rgba(9, 13, 12, 0.86), rgba(9, 13, 12, 0.35)),
        var(--page-image);
    background-size: cover;
    background-position: center;
}

.destination-layout {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

.destination-image-stack {
    display: grid;
    gap: 0.9rem;
}

.destination-image-stack img {
    border-radius: var(--radius-md);
    box-shadow: var(--soft-shadow);
}

.destination-copy ul {
    margin-top: 1rem;
}

.destination-copy li {
    margin-bottom: 0.4rem;
}

.section-paper {
    background:
        radial-gradient(circle at 6% 8%, rgba(184, 138, 82, 0.11), transparent 38%),
        #efefee;
    border-top: 1px solid rgba(24, 36, 32, 0.08);
    border-bottom: 1px solid rgba(24, 36, 32, 0.08);
}

.page-content,
.post-list {
    max-width: 840px;
}

.page-content-rich {
    max-width: 880px;
    margin: 0 auto;
    background: #fbfbfa;
    border: 1px solid rgba(24, 36, 32, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.7rem;
}

.page-content-rich h2,
.page-content-rich h3 {
    color: #6c5a43;
    margin-top: 1.3rem;
}

.page-content-rich h2:first-child,
.page-content-rich h3:first-child {
    margin-top: 0;
}

.page-content-rich ul {
    padding-left: 1.2rem;
}

.about-grid {
    align-items: stretch;
}

.about-aside {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.about-aside img {
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.post-list-grid {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.post-list-grid .pagination-wrap,
.post-list-grid .empty-state {
    grid-column: 1 / -1;
}

.post-card {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    padding: 1.2rem;
    border: 1px solid rgba(24, 36, 32, 0.12);
    background: var(--white);
}

.post-card-editorial {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
}

.post-card-media {
    display: block;
}

.post-card-media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.post-card-body {
    padding: 1.12rem 1.16rem 1.3rem;
}

.post-card-body h2 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.entry-meta {
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #8f7757;
}

.empty-state {
    margin: 0;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(24, 36, 32, 0.12);
    background: rgba(255, 255, 255, 0.76);
}

.single-tour-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 1.3rem;
    align-items: start;
}

.single-entry-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 1.3rem;
    align-items: start;
}

.single-tour-content {
    border-radius: var(--radius-md);
    border: 1px solid rgba(24, 36, 32, 0.11);
    background: var(--white);
    padding: 1.45rem;
}

.single-entry-content {
    border-radius: var(--radius-md);
    border: 1px solid rgba(24, 36, 32, 0.11);
    background: var(--white);
    padding: 1.45rem;
}

.single-tour-meta {
    position: sticky;
    top: 104px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(24, 36, 32, 0.11);
    background: linear-gradient(145deg, #f2e6d1, #ecdbc0);
    padding: 1.15rem;
}

.single-entry-meta {
    position: sticky;
    top: 104px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(24, 36, 32, 0.11);
    background: linear-gradient(145deg, #f2e6d1, #ecdbc0);
    padding: 1.15rem;
}

.contact-layout {
    display: grid;
    gap: 1.3rem;
    grid-template-columns: 0.95fr 1.05fr;
}

.contact-copy-card {
    border: 1px solid rgba(24, 36, 32, 0.12);
    border-radius: var(--radius-md);
    background: var(--white);
    padding: 1.2rem;
}

.contact-copy-card img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin-bottom: 0.9rem;
}

.contact-form-wrap {
    border: 1px solid rgba(24, 36, 32, 0.12);
    border-radius: var(--radius-md);
    background: var(--white);
    padding: 1.2rem;
}

.contact-form label {
    display: block;
    margin: 0.75rem 0 0.35rem;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1b2d27;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(24, 36, 32, 0.2);
    padding: 0.72rem 0.8rem;
    font-family: inherit;
    font-size: 0.94rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(184, 138, 82, 0.75);
    outline: 2px solid rgba(184, 138, 82, 0.35);
}

.contact-form button {
    margin-top: 1rem;
}

.form-notice {
    margin-bottom: 0.8rem;
    padding: 0.72rem 0.9rem;
    border-radius: 10px;
}

.form-notice.success {
    background: rgba(38, 106, 74, 0.12);
    color: #1c5a3f;
}

.form-notice.error {
    background: rgba(158, 54, 31, 0.12);
    color: #7e2d1a;
}

.pagination-wrap {
    margin-top: 1.8rem;
}

.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    margin-right: 0.35rem;
    border: 1px solid rgba(24, 36, 32, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #1b2d27;
    font-size: 0.82rem;
    font-weight: 700;
}

.pagination-wrap .page-numbers.current {
    background: #1b2d27;
    border-color: #1b2d27;
    color: #f6efdf;
}

.search-form-wrap {
    margin-bottom: 1.2rem;
}

.search-form-wrap form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
}

.search-form-wrap input[type="search"] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(24, 36, 32, 0.2);
    padding: 0.72rem 0.8rem;
    font-family: inherit;
    font-size: 0.94rem;
    background: #fcfcfb;
}

.search-form-wrap input[type="submit"],
.search-form-wrap button {
    border: 1px solid transparent;
    background: linear-gradient(120deg, var(--amber), var(--clay));
    color: var(--white);
    padding: 0.75rem 1.05rem;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.not-found-card {
    max-width: 760px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(24, 36, 32, 0.12);
    background: #faf9f7;
    padding: 2rem;
    text-align: center;
}

.site-footer {
    background: #0f1715;
    color: #f3ecdd;
    padding: 3.2rem 0 1.2rem;
}

.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a {
    color: #f3ecdd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 1.35rem;
}

.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.45rem;
}

.footer-menu a {
    color: #e9cb98;
    font-size: 0.92rem;
}

.footer-bottom {
    margin-top: 1.8rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(243, 236, 221, 0.17);
}

.footer-bottom p {
    margin: 0;
    color: rgba(243, 236, 221, 0.72);
    font-size: 0.85rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.58s ease, transform 0.58s ease;
}

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

@media (max-width: 1060px) {
    .desktop-cta {
        display: none;
    }

    .editorial-grid,
    .conservation-grid,
    .single-tour-layout,
    .single-entry-layout,
    .contact-layout,
    .destination-layout,
    .intro-overlap-grid,
    .split-item,
    .split-item-reverse {
        grid-template-columns: 1fr;
    }

    .split-item-reverse .split-media,
    .split-item-reverse .split-copy {
        order: initial;
    }

    .single-tour-meta {
        position: static;
    }

    .single-entry-meta {
        position: static;
    }

    .tour-grid,
    .season-grid,
    .collection-grid,
    .thumb-strip,
    .post-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .subscribe-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .header-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        row-gap: 0.8rem;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .primary-nav {
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--radius-md);
        background: rgba(16, 23, 21, 0.96);
        padding: 0.8rem;
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav ul {
        display: grid;
        gap: 0.5rem;
    }

    .primary-nav a {
        font-size: 0.74rem;
    }

    .hero {
        min-height: 86vh;
    }

    .hero-immersive-inner {
        padding-top: 7.8rem;
    }

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

    .mosaic-card-large {
        min-height: 320px;
    }

    .tour-grid,
    .season-grid,
    .footer-grid,
    .collection-grid,
    .thumb-strip,
    .post-list-grid {
        grid-template-columns: 1fr;
    }

    .signature-ribbon-inner {
        justify-content: flex-start;
    }

    .intro-overlap {
        margin-top: -36px;
    }

    .intro-overlap-copy,
    .intro-overlap-facts {
        padding: 1.45rem 1.2rem;
    }

    .split-item,
    .where-operate-block {
        padding: 1.2rem;
    }

    .subscribe-form {
        grid-template-columns: 1fr;
    }

    .search-form-wrap form {
        grid-template-columns: 1fr;
    }
}

/* 2026 Design Refresh */
:root {
    --surface-0: #f7f4ee;
    --surface-1: #ede7dc;
    --surface-2: #ffffff;
    --ink-strong: #14211c;
    --ink-soft: #5a5d56;
    --gold-soft: #d4b787;
    --gold-strong: #9f7a49;
    --forest-900: #0f1714;
    --forest-800: #18231f;
}

body {
    background:
        radial-gradient(circle at 88% 0%, rgba(170, 132, 80, 0.16), transparent 34%),
        linear-gradient(180deg, #f5f2eb 0%, #ede8de 45%, #f6f4ef 100%);
    color: var(--ink-strong);
}

p {
    color: var(--ink-soft);
}

.container {
    width: min(1240px, calc(100% - 3rem));
}

.site-header .container {
    width: min(1540px, calc(100% - 3rem));
}

.site-header {
    background: rgba(10, 16, 14, 0.93);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 38px rgba(10, 16, 14, 0.34);
}

body.home .site-header {
    background: rgba(10, 16, 14, 0.74);
}

.header-inner {
    min-height: 90px;
    gap: 1rem;
}

.brand-mark {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #b28f60, #8f6b41);
    box-shadow: 0 10px 24px rgba(10, 16, 14, 0.28);
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.07em;
}

.brand-copy small {
    font-size: 0.72rem;
}

.primary-nav ul {
    gap: 0.92rem;
}

.primary-nav li {
    flex: 0 0 auto;
}

.primary-nav a {
    position: relative;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    color: #f5efdf;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.42rem;
    height: 1px;
    background: #f7c98b;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
    transform: scaleX(1);
}

.desktop-cta {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

.site-header .btn-outline {
    border-color: rgba(247, 239, 223, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.hero {
    min-height: 96vh;
    background-color: #121a17;
    background-position: center 40%;
}

.hero-immersive {
    background-image:
        linear-gradient(124deg, rgba(7, 11, 10, 0.78) 2%, rgba(7, 11, 10, 0.42) 48%, rgba(7, 11, 10, 0.24) 100%),
        var(--hero-image);
}

.hero-immersive::before {
    background:
        radial-gradient(circle at 20% 16%, rgba(235, 187, 117, 0.24), transparent 46%),
        linear-gradient(180deg, rgba(7, 11, 10, 0.06), rgba(7, 11, 10, 0.44));
}

.hero-immersive-inner {
    max-width: 940px;
    text-align: left;
    padding: 8.4rem 0 7.2rem;
}

.hero-immersive-inner .eyebrow {
    color: #f8c98a;
}

.hero h1 {
    color: #fbf5e8;
    text-shadow: 0 10px 30px rgba(6, 10, 8, 0.45);
    letter-spacing: 0.015em;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(251, 245, 232, 0.9);
}

.btn {
    border-radius: 8px;
    background: linear-gradient(130deg, #ab8654, #8a643f);
    box-shadow: 0 12px 26px rgba(13, 19, 17, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.section {
    padding: 5.6rem 0;
}

.intro-overlap-grid,
.split-item,
.collection-card,
.tour-card,
.season-grid article,
.page-content-rich,
.contact-copy-card,
.contact-form-wrap,
.single-tour-content,
.single-tour-meta,
.single-entry-content,
.single-entry-meta,
.post-card-editorial,
.not-found-card {
    border-radius: 18px;
    border: 1px solid rgba(21, 30, 27, 0.08);
    box-shadow: 0 18px 40px rgba(14, 21, 19, 0.08);
}

.intro-overlap-grid,
.split-item,
.where-operate-block {
    background: linear-gradient(180deg, #f5f1e8 0%, #ece6dc 100%);
}

.split-copy h2,
.collection-card-copy h3,
.testimonial-light .testimonial-inner p,
.page-content-rich h2,
.page-content-rich h3 {
    color: #6e5638;
}

.tour-card,
.collection-card,
.post-card-editorial {
    overflow: hidden;
}

.tour-media img,
.collection-card img,
.post-card-media img,
.thumb-strip img,
.destination-image-stack img {
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-media img,
.collection-card:hover img,
.post-card-editorial:hover .post-card-media img {
    transform: scale(1.04);
}

.tour-content,
.collection-card-copy,
.post-card-body {
    background: rgba(255, 255, 255, 0.9);
}

.text-link {
    color: #1f4f41;
    letter-spacing: 0.09em;
}

.text-link:hover {
    color: #163c31;
}

.section-paper {
    background:
        radial-gradient(circle at 0% 0%, rgba(174, 134, 81, 0.16), transparent 34%),
        linear-gradient(180deg, #f5f2eb 0%, #ece7dc 100%);
}

.page-hero {
    padding: 8.3rem 0 4.9rem;
}

.page-hero-image {
    background-image:
        linear-gradient(122deg, rgba(8, 12, 11, 0.82), rgba(8, 12, 11, 0.4)),
        var(--page-image);
    background-position: center 38%;
}

.page-hero h1 {
    color: #fbf5e8;
    text-shadow: 0 8px 24px rgba(7, 10, 8, 0.35);
}

.page-hero p {
    color: rgba(251, 245, 232, 0.9);
    max-width: 760px;
}

.cta-band {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
    background: linear-gradient(145deg, #0d1513 0%, #12201c 100%);
}

.site-footer .footer-menu a:hover {
    color: #f5d4a0;
}

@media (max-width: 1280px) {
    .site-header .container {
        width: min(1280px, calc(100% - 2.6rem));
    }

    .primary-nav a {
        font-size: 0.68rem;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 1060px) {
    .container {
        width: min(1180px, calc(100% - 2.2rem));
    }

    .hero-immersive-inner {
        padding-top: 7.6rem;
    }
}

@media (max-width: 860px) {
    .site-header .container,
    .container {
        width: min(1180px, calc(100% - 1.5rem));
    }

    .header-inner {
        min-height: 78px;
    }

    .hero {
        min-height: 84vh;
    }

    .hero-immersive-inner {
        text-align: center;
        padding-top: 6.8rem;
        padding-bottom: 5.2rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Premium International Theme Layer */
:root {
    --premium-bg: #f8f5ef;
    --premium-surface: #ffffff;
    --premium-surface-soft: #f3eee4;
    --premium-ink: #18241f;
    --premium-muted: #5c635c;
    --premium-gold: #a77d4a;
    --premium-gold-soft: #dcc19a;
    --premium-dark: #0f1714;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--premium-ink);
    background:
        radial-gradient(circle at 8% -10%, rgba(215, 186, 142, 0.22), transparent 36%),
        radial-gradient(circle at 90% 12%, rgba(158, 128, 83, 0.16), transparent 28%),
        var(--premium-bg);
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.01em;
    line-height: 1.05;
}

p,
li {
    color: var(--premium-muted);
}

.site-main > section:nth-of-type(even):not(.section-dark):not(.cta-band) {
    background-color: rgba(255, 255, 255, 0.45);
}

.header-utility {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, rgba(12, 20, 17, 0.94), rgba(16, 26, 23, 0.8));
}

.header-utility-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.header-utility-inner p,
.header-utility-inner a {
    margin: 0;
    font-size: 0.66rem;
    color: rgba(245, 239, 226, 0.84);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.header-utility-inner a:hover {
    color: #f5cca0;
}

.site-header {
    background: rgba(8, 13, 12, 0.88);
    backdrop-filter: blur(12px);
}

body.home .site-header {
    background: rgba(8, 13, 12, 0.75);
}

.header-inner {
    min-height: 88px;
}

.brand-mark {
    background: linear-gradient(140deg, #bc9765, #8e6940);
}

.brand-copy strong {
    font-size: 1.01rem;
}

.primary-nav ul {
    gap: 1.1rem;
}

.primary-nav a {
    color: #f7f1e0;
    font-size: 0.73rem;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
    color: #f7c58a;
}

.desktop-cta {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.btn {
    border-radius: 10px;
    border: 1px solid rgba(130, 96, 58, 0.32);
    background: linear-gradient(132deg, #b8925f, #835f3d);
}

.btn-outline-light {
    border-color: rgba(247, 241, 226, 0.5);
}

.hero {
    min-height: 98vh;
}

.hero-immersive {
    background-image:
        linear-gradient(118deg, rgba(7, 10, 9, 0.78), rgba(7, 10, 9, 0.48) 46%, rgba(7, 10, 9, 0.24)),
        var(--hero-image);
}

.hero-immersive::before {
    background:
        radial-gradient(circle at 14% 14%, rgba(241, 199, 135, 0.23), transparent 42%),
        linear-gradient(180deg, rgba(7, 10, 9, 0.06), rgba(7, 10, 9, 0.4));
}

.hero-immersive-inner {
    max-width: 860px;
    text-align: left;
    padding-top: 8.8rem;
    padding-bottom: 6.8rem;
}

.hero h1 {
    font-size: clamp(2.7rem, 6.7vw, 6.2rem);
    color: #fef8ed;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

.hero p {
    font-size: 1.1rem;
    max-width: 720px;
}

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

.hero-pillars {
    margin-top: 1.15rem;
}

.hero-pillars span {
    background: rgba(8, 12, 10, 0.34);
    border-color: rgba(246, 230, 199, 0.32);
}

.section {
    padding-top: 6.1rem;
    padding-bottom: 6.1rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.section-heading .eyebrow {
    margin-bottom: 0.6rem;
}

.section-heading::after {
    content: "";
    display: block;
    width: 78px;
    height: 2px;
    margin-top: 0.9rem;
    background: linear-gradient(90deg, var(--premium-gold), rgba(167, 125, 74, 0.1));
}

.intro-overlap-grid,
.split-item,
.collection-card,
.tour-card,
.season-grid article,
.post-card-editorial,
.page-content-rich,
.contact-copy-card,
.contact-form-wrap,
.single-tour-content,
.single-tour-meta,
.single-entry-content,
.single-entry-meta,
.not-found-card {
    background: var(--premium-surface);
    border: 1px solid rgba(18, 28, 24, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 46px rgba(13, 20, 17, 0.09);
}

.intro-overlap-facts {
    background: var(--premium-surface-soft);
}

.collection-card-copy,
.tour-content,
.post-card-body {
    padding: 1.35rem 1.35rem 1.5rem;
}

.collection-card-copy h3,
.tour-content h2,
.tour-content h3,
.post-card-body h2 {
    color: #6d5131;
    font-size: clamp(1.45rem, 2.1vw, 1.9rem);
}

.tour-card,
.collection-card,
.post-card-editorial {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover,
.collection-card:hover,
.post-card-editorial:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 54px rgba(12, 18, 16, 0.14);
}

.page-hero {
    padding-top: 9.1rem;
    padding-bottom: 5.6rem;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5.8vw, 5rem);
}

.page-content-rich {
    padding: 2rem;
}

.page-content-rich p,
.single-tour-content p,
.single-entry-content p {
    font-size: 1.02rem;
    line-height: 1.75;
}

.contact-form input,
.contact-form textarea,
.search-form-wrap input[type="search"] {
    border-radius: 12px;
    border: 1px solid rgba(22, 34, 29, 0.18);
    background: #fffcf7;
}

.form-notice.success,
.form-notice.error {
    border: 1px solid rgba(22, 34, 29, 0.12);
}

.footer-prelude {
    margin-bottom: 2rem;
    padding: 1.5rem 1.8rem;
    border: 1px solid rgba(245, 230, 202, 0.16);
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(245, 230, 202, 0.07), rgba(255, 255, 255, 0.02));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-prelude h2 {
    margin: 0.15rem 0 0;
    color: #fcf6e8;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    max-width: 760px;
}

.footer-prelude .eyebrow {
    color: #efc184;
    margin-bottom: 0.15rem;
}

.footer-grid h3,
.footer-grid h4 {
    font-size: 1.45rem;
}

@media (max-width: 1060px) {
    .header-utility {
        display: none;
    }

    .hero-immersive-inner {
        text-align: center;
        margin: 0 auto;
        padding-top: 7.6rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-prelude {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .hero {
        min-height: 86vh;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 9.5vw, 3.3rem);
    }

    .section {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }

    .intro-overlap-grid,
    .split-item,
    .collection-card,
    .tour-card,
    .page-content-rich,
    .contact-copy-card,
    .contact-form-wrap {
        border-radius: 15px;
    }
}

/* Africa-only visual texture layer */
:root {
    --africa-pattern-fade:
        radial-gradient(circle at 1px 1px, rgba(120, 86, 48, 0.012) 1px, transparent 1px),
        linear-gradient(45deg, rgba(120, 86, 48, 0.005) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(120, 86, 48, 0.004) 1px, transparent 1px);
}

.site-main {
    position: relative;
    isolation: isolate;
}

.site-main::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    background-image: var(--africa-pattern-fade);
    background-size: 28px 28px, 160px 160px, 160px 160px;
    mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.94) 12%, rgba(0, 0, 0, 0.94) 88%, transparent);
}

.site-main > * {
    position: relative;
    z-index: 1;
}

.section-paper,
.intro-overlap-grid,
.split-item,
.collection-card-copy,
.tour-content,
.post-card-body,
.page-content-rich,
.contact-form-wrap,
.contact-copy-card,
.not-found-card {
    background-image: linear-gradient(180deg, #fffdf8, #f7f1e6);
}

.split-media,
.tour-media,
.collection-card,
.post-card-media {
    background-image: none;
    background-color: #eadfcf;
}

.split-media img,
.tour-media img,
.collection-card img,
.post-card-media img,
.destination-image-stack img,
.thumb-strip img {
    background-image: none;
    background-color: #e6d8c3;
    object-fit: cover;
    object-position: center;
}

/* Hero Experience Refresh */
.hero.hero-immersive {
    position: relative;
    isolation: isolate;
    min-height: 76vh;
    background-size: cover;
    background-position: center 42%;
}

.hero.hero-immersive::before {
    background:
        radial-gradient(circle at 15% 18%, rgba(233, 191, 127, 0.28), transparent 42%),
        linear-gradient(120deg, rgba(7, 10, 9, 0.72), rgba(7, 10, 9, 0.28) 58%, rgba(7, 10, 9, 0.08));
}

.hero.hero-immersive::after {
    height: 180px;
    background: linear-gradient(to top, rgba(14, 21, 18, 0.85), rgba(14, 21, 18, 0.25), transparent);
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
    align-items: end;
    gap: 1.3rem;
    width: 100%;
}

.hero-premium-copy {
    max-width: 860px;
}

.hero-premium-copy h1 {
    font-size: clamp(2.1rem, 4.9vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hero-premium-copy p {
    max-width: 690px;
    font-size: 1.08rem;
}

.hero-premium-panel {
    position: relative;
    z-index: 3;
    align-self: end;
    margin-bottom: 0.3rem;
    padding: 1.25rem 1.2rem 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(249, 231, 199, 0.26);
    background: linear-gradient(140deg, rgba(11, 16, 14, 0.76), rgba(11, 16, 14, 0.48));
    box-shadow: 0 26px 44px rgba(5, 9, 8, 0.28);
    backdrop-filter: blur(3px);
}

.hero-panel-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    text-transform: uppercase;
    color: #f2c98f;
}

.hero-premium-panel h3 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.3rem, 2.1vw, 1.7rem);
    color: #fff2dc;
    line-height: 1.15;
}

.hero-premium-panel ul {
    margin: 0 0 0.7rem;
    padding-left: 1rem;
}

.hero-premium-panel li {
    margin-bottom: 0.35rem;
    color: rgba(255, 242, 219, 0.87);
    font-size: 0.86rem;
}

.hero-premium-panel .text-link {
    color: #f2c98f;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(252, 244, 228, 0.76);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    pointer-events: none;
}

.hero-scroll-cue i {
    width: 1px;
    height: 24px;
    display: inline-block;
    background: linear-gradient(to bottom, rgba(252, 244, 228, 0.9), rgba(252, 244, 228, 0.2));
}

.hero-bottom-pattern {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

.hero-bottom-pattern span {
    display: block;
    height: 10px;
    border-radius: 999px 999px 0 0;
    background:
        repeating-linear-gradient(90deg, rgba(244, 223, 188, 0.65) 0 18px, rgba(244, 223, 188, 0) 18px 28px),
        linear-gradient(90deg, rgba(244, 223, 188, 0.38), rgba(244, 223, 188, 0.12));
}

@media (max-width: 1060px) {
    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-premium-copy {
        max-width: 780px;
    }

    .hero-premium-panel {
        max-width: 520px;
    }
}

@media (max-width: 860px) {
    .hero.hero-immersive {
        min-height: 66vh;
        background-position: center 34%;
    }

    .hero-premium-copy h1 {
        font-size: clamp(1.8rem, 7.6vw, 2.9rem);
        line-height: 1.08;
    }

    .hero-premium-copy p {
        font-size: 1rem;
    }

    .hero-premium-panel {
        margin-top: 0.4rem;
        max-width: none;
    }

    .hero-scroll-cue {
        display: none;
    }

    .hero-bottom-pattern span {
        height: 7px;
    }
}

/* Harmonized Card Layout */
.tour-grid {
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.tour-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
}

.tour-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.tour-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tour-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.78rem;
    padding: 1.3rem 1.3rem 1.35rem;
}

.tour-meta {
    margin-bottom: 0;
    min-height: 2.4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
    align-items: start;
}

.tour-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.69rem;
    letter-spacing: 0.08em;
    padding: 0.36rem 0.62rem;
}

.tour-content h2,
.tour-content h3 {
    margin: 0;
    min-height: 2.2em;
    line-height: 1.05;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-content p {
    margin: 0;
    min-height: 4.5em;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-content .text-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

@media (max-width: 860px) {
    .tour-content {
        padding: 1.1rem 1.05rem 1.2rem;
    }

    .tour-content h2,
    .tour-content h3,
    .tour-content p {
        min-height: 0;
    }
}

/* Hero Final Redesign */
.hero.hero-signature {
    min-height: 68vh;
    align-items: end;
    background-position: center 40%;
}

.hero.hero-signature::before {
    background:
        radial-gradient(circle at 14% 14%, rgba(236, 194, 126, 0.25), transparent 42%),
        linear-gradient(120deg, rgba(7, 11, 10, 0.74), rgba(7, 11, 10, 0.36) 56%, rgba(7, 11, 10, 0.12));
}

.hero-signature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 1.15rem;
    align-items: end;
    width: 100%;
    padding: 5.2rem 0 3.6rem;
}

.hero-signature-copy h1 {
    margin-bottom: 0.78rem;
    font-size: clamp(1.95rem, 4.2vw, 3.85rem);
    line-height: 1.04;
    text-transform: uppercase;
}

.hero-signature-copy p {
    max-width: 700px;
    font-size: 1.02rem;
}

.hero-signature-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.72rem 1.28rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-btn-primary {
    color: #fff8ea;
    border-color: rgba(181, 134, 80, 0.6);
    background: linear-gradient(130deg, #b58a58, #825f3d);
    box-shadow: 0 14px 26px rgba(9, 15, 13, 0.28);
}

.hero-btn-secondary {
    color: #f6edd9;
    border-color: rgba(246, 237, 217, 0.46);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(2px);
}

.hero-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.hero-signature-pillars {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.46rem;
}

.hero-signature-pillars li {
    color: #efe4cc;
    border: 1px solid rgba(239, 228, 204, 0.28);
    background: rgba(7, 11, 10, 0.32);
    padding: 0.34rem 0.56rem;
    border-radius: 999px;
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-signature-card {
    margin-bottom: 0.08rem;
    padding: 1.15rem 1.1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(247, 225, 186, 0.26);
    background: linear-gradient(140deg, rgba(10, 15, 13, 0.78), rgba(10, 15, 13, 0.54));
    box-shadow: 0 22px 38px rgba(5, 9, 8, 0.28);
}

.hero-signature-kicker {
    margin: 0 0 0.35rem;
    color: #f0c487;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-signature-card h3 {
    margin: 0 0 0.64rem;
    color: #fff0d5;
    font-size: clamp(1.22rem, 1.9vw, 1.55rem);
    line-height: 1.16;
}

.hero-signature-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.62rem;
}

.hero-signature-card-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.29rem 0.56rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 229, 200, 0.24);
    color: rgba(255, 243, 220, 0.87);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-card-link {
    color: #f1c486;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-signature-trail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    border-top: 1px solid rgba(243, 227, 199, 0.24);
    background: rgba(10, 16, 14, 0.32);
}

.hero-signature-trail p {
    margin: 0;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(243, 227, 199, 0.84);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 1060px) {
    .hero.hero-signature {
        min-height: 62vh;
    }

    .hero-signature-grid {
        grid-template-columns: 1fr;
        padding-top: 4.8rem;
        gap: 0.82rem;
    }

    .hero-signature-copy {
        max-width: 760px;
    }

    .hero-signature-card {
        max-width: 520px;
    }
}

@media (max-width: 860px) {
    .hero.hero-signature {
        min-height: 58vh;
    }

    .hero-signature-grid {
        padding-top: 4.25rem;
        padding-bottom: 3.2rem;
    }

    .hero-signature-copy h1 {
        font-size: clamp(1.64rem, 6.6vw, 2.45rem);
    }

    .hero-signature-copy p {
        font-size: 0.96rem;
    }

    .hero-signature-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-signature-trail {
        display: none;
    }
}

/* Inner Pages Premium System */
body {
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
}

.site-main::before {
    opacity: 0.035;
}

.site-header,
.header-utility {
    width: 100%;
    max-width: none;
}

.site-header .container,
.header-utility .container {
    width: min(1540px, calc(100% - 3rem));
}

body:not(.home) .page-hero.page-hero-luxe {
    position: relative;
    display: flex;
    align-items: end;
    min-height: 58vh;
    padding: 0;
    background-size: cover;
    background-position: center 36%;
    overflow: hidden;
}

body:not(.home) .page-hero.page-hero-luxe::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 12%, rgba(236, 189, 125, 0.22), transparent 40%),
        linear-gradient(118deg, rgba(7, 11, 10, 0.78), rgba(7, 11, 10, 0.42) 56%, rgba(7, 11, 10, 0.2));
}

body:not(.home) .page-hero.page-hero-luxe::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(to top, rgba(12, 18, 16, 0.78), rgba(12, 18, 16, 0.16), transparent);
}

body:not(.home) .page-hero.page-hero-luxe .container {
    position: relative;
    z-index: 2;
}

body:not(.home) .page-hero-shell {
    max-width: 840px;
    padding: 7.1rem 0 3.5rem;
}

body:not(.home) .page-hero-shell h1 {
    margin-bottom: 0.72rem;
    font-size: clamp(2rem, 4.7vw, 4.2rem);
    line-height: 1.02;
    text-transform: uppercase;
    color: #fcf4e4;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

body:not(.home) .page-hero-shell p {
    margin-bottom: 0;
    max-width: 720px;
    color: rgba(252, 244, 228, 0.9);
    font-size: clamp(0.96rem, 1.6vw, 1.08rem);
}

body:not(.home) .page-hero-meta {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

body:not(.home) .page-hero-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(243, 226, 196, 0.34);
    background: rgba(9, 14, 13, 0.38);
    color: rgba(250, 241, 224, 0.9);
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
}

body:not(.home) .section-inner-luxe,
body:not(.home) .destination-overview,
body:not(.home) .destination-spotlight,
body:not(.home) .destination-gallery {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

body:not(.home) .section-paper {
    background:
        radial-gradient(circle at 8% 10%, rgba(182, 136, 80, 0.08), transparent 34%),
        linear-gradient(180deg, #f8f4ed 0%, #f1ebe0 100%);
    border-top: 1px solid rgba(22, 33, 29, 0.08);
    border-bottom: 1px solid rgba(22, 33, 29, 0.08);
}

body:not(.home) .page-content-rich,
body:not(.home) .contact-copy-card,
body:not(.home) .contact-form-wrap,
body:not(.home) .single-tour-content,
body:not(.home) .single-tour-meta,
body:not(.home) .single-entry-content,
body:not(.home) .single-entry-meta,
body:not(.home) .post-card-editorial,
body:not(.home) .tour-card,
body:not(.home) .destination-overview-card,
body:not(.home) .destination-copy-panel {
    border-radius: 18px;
    border: 1px solid rgba(20, 31, 27, 0.1);
    box-shadow: 0 18px 44px rgba(13, 20, 18, 0.1);
}

body:not(.home) .page-content-luxe {
    padding: 2rem;
    background: linear-gradient(180deg, #fffdf8, #f7f1e6);
}

body:not(.home) .tour-grid-luxe,
body:not(.home) .post-list-luxe {
    gap: 1.2rem;
}

body:not(.home) .tour-grid-luxe .tour-media,
body:not(.home) .post-list-luxe .post-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

body:not(.home) .tour-grid-luxe .tour-media img,
body:not(.home) .post-list-luxe .post-card-media img,
body:not(.home) .thumb-strip-luxe img,
body:not(.home) .destination-visual img,
body:not(.home) .destination-gallery-item img,
body:not(.home) .contact-copy-card img,
body:not(.home) .about-aside-luxe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
}

body:not(.home) .tour-grid-luxe .tour-content {
    background: linear-gradient(180deg, #fffdf8, #f7f1e6);
}

body:not(.home) .tour-grid-luxe .tour-meta span {
    background: rgba(223, 210, 185, 0.48);
    border-color: rgba(34, 48, 41, 0.2);
}

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

.destination-overview-card {
    padding: 1.45rem 1.35rem 1.5rem;
    background: linear-gradient(180deg, #fffdf8, #f7f1e6);
}

.destination-overview-card h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    color: #6b4f2f;
}

.destination-overview-card p {
    margin: 0;
}

.destination-spotlight-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: start;
}

.destination-visual {
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.destination-visual-main {
    border-radius: 16px;
    aspect-ratio: 16 / 10;
}

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

.destination-visual-row img {
    border-radius: 14px;
    aspect-ratio: 16 / 11;
}

.destination-copy-panel {
    padding: 1.6rem 1.5rem;
    background: linear-gradient(180deg, #fffef9, #f8f2e7);
}

.destination-copy-panel h2 {
    margin-bottom: 0.55rem;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.96;
}

.destination-copy-panel p {
    margin-bottom: 1rem;
}

.destination-points {
    margin: 0 0 1.2rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.destination-points li {
    position: relative;
    margin: 0;
    padding-left: 1.2rem;
    color: #4f4a42;
}

.destination-points li::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bd9664, #8b663f);
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.46rem;
    margin-bottom: 1rem;
}

.destination-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 40, 35, 0.22);
    background: rgba(225, 215, 197, 0.58);
    color: #1c3029;
    font-size: 0.63rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
}

.section-heading-tight {
    max-width: 860px;
    margin-bottom: 1.25rem;
}

.destination-gallery-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.destination-gallery-item {
    margin: 0;
}

.destination-gallery-item img {
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(24, 36, 32, 0.1);
}

.about-grid-luxe {
    grid-template-columns: 1.14fr 0.86fr;
    gap: 1.3rem;
}

.about-copy-luxe {
    height: 100%;
}

.about-aside-luxe {
    padding: 1.35rem;
    border: 1px solid rgba(248, 228, 190, 0.18);
    background:
        radial-gradient(circle at 85% 8%, rgba(235, 184, 114, 0.28), transparent 45%),
        linear-gradient(140deg, #1a2a25, #13221d);
}

.about-stat-list {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.42rem;
}

.about-stat-list li {
    position: relative;
    margin: 0;
    padding-left: 1rem;
    color: rgba(243, 233, 213, 0.88);
    font-size: 0.92rem;
}

.about-stat-list li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f2c98f;
}

.contact-layout-luxe {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.3rem;
}

.info-panel-luxe,
.form-panel-luxe {
    padding: 1.3rem;
    background: linear-gradient(180deg, #fffef9, #f7f1e6);
}

body:not(.home) .contact-form input,
body:not(.home) .contact-form textarea {
    border: 1px solid rgba(23, 37, 31, 0.22);
    background: rgba(255, 255, 255, 0.78);
}

body:not(.home) .contact-form input:focus,
body:not(.home) .contact-form textarea:focus {
    border-color: rgba(181, 136, 80, 0.78);
    outline: 2px solid rgba(181, 136, 80, 0.24);
}

.single-layout-luxe {
    gap: 1.2rem;
}

.thumb-strip-luxe {
    gap: 0.8rem;
}

.thumb-strip-luxe img {
    border-radius: 12px;
    aspect-ratio: 4 / 3;
}

body:not(.home) .cta-band-strong {
    padding: 4.8rem 0;
}

@media (max-width: 1120px) {
    .destination-overview-grid,
    .destination-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .destination-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .about-grid-luxe,
    .contact-layout-luxe,
    .single-layout-luxe {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .site-header .container,
    .header-utility .container {
        width: min(1540px, calc(100% - 2rem));
    }

    body:not(.home) .page-hero.page-hero-luxe {
        min-height: 52vh;
        background-position: center 30%;
    }

    body:not(.home) .page-hero-shell {
        padding: 6.4rem 0 2.8rem;
    }

    body:not(.home) .page-hero-shell h1 {
        font-size: clamp(1.7rem, 7vw, 2.85rem);
    }

    body:not(.home) .section-inner-luxe,
    body:not(.home) .destination-overview,
    body:not(.home) .destination-spotlight,
    body:not(.home) .destination-gallery {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .destination-overview-grid,
    .destination-gallery-grid {
        grid-template-columns: 1fr;
    }

    .destination-visual-row {
        grid-template-columns: 1fr;
    }

    .page-content-luxe,
    .destination-copy-panel,
    .info-panel-luxe,
    .form-panel-luxe {
        padding: 1.25rem;
    }

    .thumb-strip-luxe img {
        aspect-ratio: 16 / 11;
    }
}

/* Rich Content Sections */
.split-rich-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.info-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(20, 31, 27, 0.1);
    background: linear-gradient(180deg, #fffdf8, #f7f1e6);
    box-shadow: 0 16px 36px rgba(14, 23, 20, 0.1);
}

.info-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 35%;
}

.info-card-copy {
    padding: 1.25rem 1.2rem 1.3rem;
}

.info-card-copy h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.28rem, 1.9vw, 1.6rem);
    line-height: 1.05;
    color: #6a4d2e;
}

.info-card-copy p {
    margin-bottom: 0.75rem;
}

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

.info-card-text .info-card-copy {
    height: 100%;
}

.bullet-list-clean {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.46rem;
}

.bullet-list-clean li {
    position: relative;
    margin: 0;
    padding-left: 1rem;
    color: #4f4a42;
}

.bullet-list-clean li::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bb915b, #8d683f);
}

.timeline-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.62rem;
}

.timeline-list li {
    position: relative;
    margin: 0;
    padding: 0.78rem 0.85rem 0.78rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(21, 33, 29, 0.12);
    background: rgba(255, 255, 255, 0.65);
    color: #4a4d45;
}

.timeline-list li::before {
    content: "";
    position: absolute;
    top: 0.95rem;
    left: 0.56rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #a97e4f;
}

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

.route-card {
    padding: 1.35rem 1.25rem 1.3rem;
    border-radius: 16px;
    border: 1px solid rgba(20, 31, 27, 0.12);
    background: linear-gradient(180deg, #fffdf8, #f7f1e6);
    box-shadow: 0 16px 36px rgba(14, 23, 20, 0.1);
}

.route-duration {
    margin: 0 0 0.45rem;
    color: #1d332d;
    font-size: 0.63rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.route-card h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.32rem, 2vw, 1.72rem);
    color: #6a4d2e;
}

.route-card p {
    margin-bottom: 0.82rem;
}

.rich-table-wrap {
    border-radius: 14px;
    border: 1px solid rgba(21, 33, 29, 0.12);
    background: linear-gradient(180deg, #fffdf8, #f7f1e6);
    overflow-x: auto;
}

.rich-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.rich-table th,
.rich-table td {
    padding: 0.84rem 0.88rem;
    border-bottom: 1px solid rgba(20, 31, 27, 0.08);
    text-align: left;
    vertical-align: top;
}

.rich-table thead th {
    background: rgba(223, 210, 186, 0.34);
    color: #19302a;
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
}

.rich-table tbody td {
    color: #4d4b44;
    font-size: 0.94rem;
}

.rich-table tbody tr:last-child td {
    border-bottom: 0;
}

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

.faq-card {
    padding: 1.25rem 1.2rem 1.28rem;
    border-radius: 16px;
    border: 1px solid rgba(20, 31, 27, 0.11);
    background: linear-gradient(180deg, #fffef9, #f7f1e6);
    box-shadow: 0 14px 34px rgba(14, 23, 20, 0.09);
}

.faq-card h3 {
    margin-bottom: 0.55rem;
    color: #6a4d2e;
    font-size: clamp(1.28rem, 2vw, 1.65rem);
}

.faq-card p {
    margin: 0;
}

@media (max-width: 1120px) {
    .route-grid,
    .info-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .split-rich-grid,
    .route-grid,
    .info-card-grid,
    .info-card-grid-text,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .info-card-copy,
    .route-card,
    .faq-card {
        padding: 1.15rem 1.05rem 1.2rem;
    }
}

/* Hero Premium Upgrade */
.hero.hero-signature {
    min-height: 84vh;
    align-items: center;
    background-position: center 44%;
}

.hero.hero-signature::before {
    background:
        radial-gradient(circle at 12% 16%, rgba(237, 194, 125, 0.3), transparent 41%),
        linear-gradient(117deg, rgba(7, 11, 10, 0.84), rgba(7, 11, 10, 0.46) 56%, rgba(7, 11, 10, 0.2));
}

.hero-signature-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 1.4rem;
    align-items: center;
    padding: 6.6rem 0 4.1rem;
}

.hero-signature-copy {
    max-width: 860px;
    padding: 1.25rem 1.35rem 1.4rem;
    border-radius: 18px;
    border: 1px solid rgba(247, 228, 194, 0.24);
    background: linear-gradient(145deg, rgba(8, 12, 11, 0.54), rgba(8, 12, 11, 0.18));
    box-shadow: 0 22px 40px rgba(6, 9, 8, 0.26);
    backdrop-filter: blur(2px);
}

.hero-signature-copy h1 {
    margin-bottom: 0.82rem;
    font-size: clamp(2rem, 4.45vw, 4.35rem);
    line-height: 0.98;
    letter-spacing: 0.01em;
}

.hero-signature-copy p {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 1.03rem;
}

.hero-signature-actions {
    margin-top: 1.2rem;
}

.hero-signature-pillars {
    margin-top: 0.92rem;
}

.hero-signature-pillars li {
    background: rgba(8, 13, 12, 0.5);
}

.hero-signature-stats {
    margin-top: 0.95rem;
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-signature-stats article {
    padding: 0.64rem 0.62rem 0.68rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 225, 191, 0.22);
    background: rgba(8, 13, 12, 0.48);
    display: grid;
    gap: 0.2rem;
}

.hero-signature-stats strong {
    color: #ffe4b7;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    font-weight: 700;
    line-height: 1;
}

.hero-signature-stats span {
    color: rgba(250, 241, 224, 0.84);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-signature-card {
    padding: 1.25rem 1.2rem 1.3rem;
    border-radius: 18px;
    border: 1px solid rgba(247, 225, 186, 0.3);
    background: linear-gradient(148deg, rgba(10, 15, 13, 0.86), rgba(10, 15, 13, 0.57));
    box-shadow: 0 26px 46px rgba(5, 9, 8, 0.3);
}

.hero-signature-card h3 {
    margin-bottom: 0.7rem;
}

.hero-signature-card-meta {
    margin-bottom: 0.7rem;
}

.hero-signature-notes {
    margin: 0 0 0.7rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.34rem;
}

.hero-signature-notes li {
    position: relative;
    margin: 0;
    padding-left: 0.9rem;
    color: rgba(250, 241, 224, 0.88);
    font-size: 0.81rem;
}

.hero-signature-notes li::before {
    content: "";
    position: absolute;
    top: 0.64em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f2c98f;
}

.hero-signature-trail {
    background: rgba(9, 15, 13, 0.44);
    border-top: 1px solid rgba(243, 227, 199, 0.28);
}

.hero-signature-trail p {
    min-height: 40px;
    font-size: 0.64rem;
    letter-spacing: 0.15em;
}

body:not(.home) .page-hero.page-hero-luxe {
    min-height: 62vh;
    align-items: center;
    background-position: center 38%;
}

body:not(.home) .page-hero.page-hero-luxe::before {
    background:
        radial-gradient(circle at 14% 14%, rgba(236, 189, 125, 0.24), transparent 42%),
        linear-gradient(117deg, rgba(7, 11, 10, 0.84), rgba(7, 11, 10, 0.5) 56%, rgba(7, 11, 10, 0.22));
}

body:not(.home) .page-hero.page-hero-luxe .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
    align-items: end;
    gap: 1rem;
}

body:not(.home) .page-hero-shell {
    max-width: none;
    padding: 1.5rem 1.4rem 1.6rem;
    border-radius: 16px;
    border: 1px solid rgba(246, 228, 197, 0.24);
    background: linear-gradient(145deg, rgba(9, 14, 13, 0.58), rgba(9, 14, 13, 0.23));
    box-shadow: 0 22px 42px rgba(6, 10, 8, 0.25);
    backdrop-filter: blur(2px);
}

body:not(.home) .page-hero-shell h1 {
    margin-bottom: 0.62rem;
    font-size: clamp(1.88rem, 4.35vw, 4rem);
    line-height: 1;
}

body:not(.home) .page-hero-shell p {
    font-size: 1rem;
}

body:not(.home) .page-hero-shell .eyebrow {
    margin-bottom: 0.35rem;
}

body:not(.home) .page-hero-meta {
    margin-top: 0.84rem;
}

body:not(.home) .page-hero.page-hero-luxe .container::after {
    content: "Private Safari Concierge\AKenya-based experts\ATailored itinerary design";
    white-space: pre-line;
    align-self: end;
    justify-self: end;
    width: min(100%, 280px);
    padding: 0.95rem 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(246, 228, 197, 0.25);
    background: linear-gradient(145deg, rgba(10, 15, 13, 0.78), rgba(10, 15, 13, 0.5));
    color: rgba(249, 240, 223, 0.9);
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.8;
    box-shadow: 0 22px 42px rgba(6, 10, 8, 0.24);
}

@media (max-width: 1120px) {
    .hero-signature-grid {
        grid-template-columns: 1fr;
        padding-top: 6.2rem;
        gap: 1rem;
    }

    .hero-signature-card {
        max-width: 560px;
    }

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

    body:not(.home) .page-hero.page-hero-luxe .container {
        grid-template-columns: 1fr;
    }

    body:not(.home) .page-hero.page-hero-luxe .container::after {
        justify-self: start;
        width: min(100%, 360px);
    }
}

@media (max-width: 860px) {
    .hero.hero-signature {
        min-height: 70vh;
    }

    .hero-signature-copy {
        padding: 1.1rem 1rem 1.12rem;
    }

    .hero-signature-copy h1 {
        font-size: clamp(1.62rem, 7.1vw, 2.6rem);
    }

    .hero-signature-stats {
        grid-template-columns: 1fr;
    }

    .hero-signature-trail {
        display: none;
    }

    body:not(.home) .page-hero.page-hero-luxe {
        min-height: 54vh;
    }

    body:not(.home) .page-hero-shell {
        padding: 1.2rem 1rem 1.22rem;
    }

    body:not(.home) .page-hero.page-hero-luxe .container::after {
        display: none;
    }
}

/* Conservation Section Upgrade */
.conservation-panel-premium {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 82% 14%, rgba(190, 146, 83, 0.18), transparent 42%),
        radial-gradient(circle at 12% 86%, rgba(38, 72, 61, 0.26), transparent 46%),
        linear-gradient(145deg, #0f1a17 0%, #10201c 48%, #172926 100%);
}

.conservation-panel-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
    background:
        linear-gradient(125deg, rgba(247, 232, 203, 0.08), transparent 32%),
        repeating-linear-gradient(45deg, rgba(247, 232, 203, 0.03) 0 2px, transparent 2px 26px);
}

.conservation-panel-premium .container {
    position: relative;
    z-index: 1;
}

.conservation-grid-premium {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 1.35rem;
    align-items: start;
}

.conservation-copy h2 {
    margin-bottom: 0.72rem;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 0.98;
    color: #fff5e2;
}

.conservation-copy > p {
    max-width: 700px;
    margin-bottom: 1rem;
    color: rgba(244, 235, 221, 0.9);
    font-size: 1.04rem;
}

.conservation-stats {
    display: grid;
    gap: 0.72rem;
}

.conservation-stats article {
    position: relative;
    padding: 0.9rem 0.9rem 0.92rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(246, 229, 197, 0.18);
    background: linear-gradient(145deg, rgba(11, 18, 16, 0.66), rgba(11, 18, 16, 0.32));
}

.conservation-stats article::before {
    content: "";
    position: absolute;
    left: 0.58rem;
    top: 0.95rem;
    bottom: 0.95rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2c98f, rgba(242, 201, 143, 0.08));
}

.conservation-stats strong {
    display: block;
    margin-bottom: 0.32rem;
    padding-left: 0.72rem;
    color: #ffdba5;
    font-size: 0.73rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 700;
}

.conservation-stats span {
    display: block;
    padding-left: 0.72rem;
    color: rgba(244, 235, 221, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.impact-cards-premium {
    gap: 0.85rem;
}

.impact-cards-premium article {
    position: relative;
    padding: 1.14rem 1.08rem 1.16rem;
    border-radius: 18px;
    border: 1px solid rgba(246, 229, 197, 0.22);
    background:
        linear-gradient(130deg, rgba(246, 229, 197, 0.08), transparent 36%),
        linear-gradient(145deg, rgba(12, 19, 17, 0.72), rgba(12, 19, 17, 0.46));
    box-shadow: 0 16px 30px rgba(3, 6, 5, 0.2);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.impact-cards-premium article:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 229, 197, 0.4);
    box-shadow: 0 22px 40px rgba(3, 6, 5, 0.28);
}

.impact-card-kicker {
    margin: 0 0 0.42rem;
    color: #f2c98f;
    font-size: 0.64rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
}

.impact-cards-premium h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: #fff3db;
    line-height: 1;
}

.impact-cards-premium p {
    margin: 0;
    color: rgba(244, 235, 221, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 1120px) {
    .conservation-grid-premium {
        grid-template-columns: 1fr;
    }

    .conservation-copy > p {
        max-width: 100%;
    }
}

@media (max-width: 860px) {
    .conservation-copy h2 {
        font-size: clamp(1.7rem, 6.8vw, 2.5rem);
    }

    .conservation-copy > p {
        font-size: 0.98rem;
    }

    .conservation-stats article,
    .impact-cards-premium article {
        padding: 1rem 0.92rem 1.04rem;
    }

    .impact-cards-premium h3 {
        font-size: clamp(1.28rem, 5.6vw, 1.66rem);
    }
}
