:root {
    color-scheme: dark;
    --bg: #081117;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.14);
    --text: #f4f7f8;
    --muted: #b8c1c8;
    --accent: #ffb300;
    --accent-soft: rgba(255, 179, 0, 0.16);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    --page-gutter: 4rem;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient(circle at top left, rgba(255, 179, 0, 0.18), transparent 22%),
        radial-gradient(circle at bottom right, rgba(76, 175, 80, 0.14), transparent 18%),
        linear-gradient(180deg, #03070d 0%, #07131d 44%, #0c1724 100%);
    color: var(--text);
}

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

h1,
h2,
h3,
h4,
p,
li {
    margin: 0;
}

main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--page-gutter) 4rem;
}

.home-page main {
    padding-bottom: 0;
}

.about-page {
    background: #e6f0e4;
}

.about-page main {
    padding-top: 0;
}

@media (max-width: 1280px) {
    :root {
        --page-gutter: 3rem;
    }
}

@media (max-width: 980px) {
    :root {
        --page-gutter: 2rem;
    }
}

@media (max-width: 720px) {
    :root {
        --page-gutter: 1rem;
    }
}

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

button,
input,
textarea {
    font: inherit;
}

button.btn {
    cursor: pointer;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    border-bottom: 0;
    background: transparent;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header .header-inner {
    width: min(100%, 1320px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(0, max-content) minmax(180px, 1fr);
    align-items: center;
    gap: 1rem;
    padding: 0.85rem var(--page-gutter);
    transition: padding 0.25s ease, background 0.25s ease;
}

.main-nav {
    justify-self: center;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.header-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    min-width: 0;
    position: relative;
    z-index: 6;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.header-contact a,
.header-contact span:last-child {
    color: inherit;
    text-decoration: none;
}

.header-contact span {
    pointer-events: none;
}

.header-contact::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 1;
}

.site-header.scrolled {
    background: rgba(8, 17, 23, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.home-page .site-header {
    background: transparent;
    backdrop-filter: none;
}

.home-page .site-header .header-inner {
    padding-block: 1rem;
}

.home-page .site-header.scrolled {
    background: #f6f1e8;
    border-bottom: 1px solid rgba(16, 32, 25, 0.12);
    box-shadow: 0 18px 45px rgba(16, 32, 25, 0.16);
}

.home-page .site-header.scrolled .header-inner {
    padding-block: 0.52rem;
}

.home-page .site-header.scrolled .brand-mark {
    width: 66px;
    height: 66px;
    min-width: 66px;
    border-color: #102019;
}

.home-page .site-header.scrolled .header-contact {
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
    background: rgba(16, 32, 25, 0.08);
    border-color: rgba(16, 32, 25, 0.12);
    color: #102019;
}

.home-page .site-header.scrolled .header-contact,
.home-page .site-header.scrolled .header-contact a,
.home-page .site-header.scrolled .main-nav a {
    color: #102019;
}

.home-page .site-header.scrolled .main-nav {
    padding: 0.35rem 0.7rem;
    background: #fff;
    border-color: rgba(16, 32, 25, 0.12);
}

.about-page .site-header:not(.scrolled) {
    background: rgba(246, 241, 232, 0.94);
    border-bottom: 1px solid rgba(16, 32, 25, 0.12);
    box-shadow: 0 18px 45px rgba(16, 32, 25, 0.10);
}

.about-page .site-header:not(.scrolled) .main-nav {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(16, 32, 25, 0.12);
}

.about-page .site-header:not(.scrolled) .main-nav a {
    color: #102019;
}

.about-page .site-header:not(.scrolled) .main-nav a.active {
    background: #102019;
    color: #fff;
}

.about-page .site-header:not(.scrolled) .header-contact {
    background: rgba(16, 32, 25, 0.08);
    border-color: rgba(16, 32, 25, 0.12);
    color: #102019;
}

.about-page .site-header:not(.scrolled) .header-contact,
.about-page .site-header:not(.scrolled) .header-contact a {
    color: #102019;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-mark {
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.08);
}

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

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

.brand h1 {
    margin: 0;
    font-size: 1.1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-logo {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #102019;
    background: rgba(255, 255, 255, 0.06);
}

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

.brand p {
    margin: 0.25rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.main-nav a {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.62rem;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.main-nav a.active {
    color: var(--bg);
    background: #ffffff;
}

.home-page .site-header.scrolled .main-nav a.active {
    background: #102019;
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    padding: 0.55rem;
    position: relative;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.hero:not(.hero-slider),
.page-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
    min-height: calc(100vh - 96px);
    padding: 4rem 0;
}

.hero-slider {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 100vh;
    overflow: hidden;
    padding: 0;
    z-index: 0;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-position: center;
    background-size: cover;
    display: grid;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 21, 0.14), rgba(7, 14, 21, 0.16) 28%, rgba(7, 14, 21, 0.55) 72%, rgba(7, 14, 21, 0.86));
}

.slide::after {
    content: attr(data-credit);
    position: absolute;
    right: var(--page-gutter);
    bottom: 1.35rem;
    z-index: 2;
    padding: 0.42rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.slide-copy {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 2 * var(--page-gutter)));
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(5rem, 9vw, 7rem) var(--page-gutter) 5.5rem var(--page-gutter);
    align-self: end;
}

.hero-actions .btn {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slide-copy h2 {
    font-size: clamp(3rem, 4vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-top: 0.4rem;
}

.slide-copy p {
    font-size: 1.05rem;
    max-width: 58rem;
    margin-top: 1.35rem;
}

.slide-copy .eyebrow,
.slide-copy h2,
.slide-copy p {
    color: #f8f9fa;
}

.slider-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.hero-contact {
    position: fixed;
    right: var(--page-gutter);
    top: 1rem;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    backdrop-filter: none;
}

.hero-contact a {
    color: #fff;
    text-decoration: none;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    font-size: 1rem;
}

.slider-dot {
    width: 14px;
    height: 14px;
    min-width: 0;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot.active,
.slider-dot:hover {
    transform: scale(1.1);
    background: rgba(255, 179, 0, 0.95);
    border-color: rgba(255, 179, 0, 0.95);
}

.hero-copy,
.page-hero-copy {
    max-width: 650px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.hero h2,
.page-hero-copy h2 {
    margin: 0;
    font-size: clamp(2.75rem, 4vw, 4.5rem);
    line-height: 1.02;
}

.hero p,
.page-hero-copy p,
.content-intro p,
.feature-card p,
.testimonial-card p,
.team-card p,
.history-copy p,
.details-copy p,
.contact-info p,
.package-card p,
.amenities-grid article p {
    color: var(--muted);
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 1.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #ffb300, #ff8c00);
    color: #081117;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.16);
}

.hero-image,
.details-image {
    min-height: 520px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 179, 0, 0.28), transparent),
        url('data:image/svg+xml,%3Csvg width="1200" height="800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"%3E%3Crect width="1200" height="800" fill="%2308141A"/%3E%3Cpath d="M0 500 Q300 380 600 520 T1200 500 L1200 800 L0 800 Z" fill="rgba(255,255,255,0.06)"/%3E%3Cpath d="M0 600 Q350 470 700 620 T1200 600 L1200 800 L0 800 Z" fill="rgba(255,255,179,0.08)"/%3E%3C/svg%3E') center/cover no-repeat;
}

.overview,
.content-block,
.highlights,
.stats,
.showcase-section,
.cta-section,
.testimonials,
.team-section,
.history-section,
.packages,
.details-section,
.contact-section,
.amenities,
.gallery {
    margin-top: 4rem;
}

.home-page .overview {
    width: 100vw;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4rem max(var(--page-gutter), calc((100vw - 1320px) / 2 + var(--page-gutter)));
    background: #eef5eb;
    color: #102019;
}

.home-page .overview .section-intro p,
.home-page .overview .feature-card p {
    color: #4d5f55;
}

.home-page .overview .feature-card {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(16, 32, 25, 0.12);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(16, 32, 25, 0.12);
}

.home-page .overview .text-link {
    color: #1d6b3a;
}

.about-page .overview {
    padding-top: 4.5rem;
    background: #e6f0e4;
}

.about-page .corbett-park-section {
    width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    padding: 4.5rem max(var(--page-gutter), calc((100vw - 1320px) / 2 + var(--page-gutter)));
    background: #f6f1e8;
    padding-top: 9rem;
    color: #102019;
}

.about-page .corbett-park-section .section-header {
    margin-bottom: 2rem;
}

.about-page .corbett-park-section .section-intro p {
    color: #53645a;
}

.corbett-park-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: start;
}

.corbett-park-copy {
    width: 100%;
    max-width: none;
}

.corbett-park-copy h4 {
    margin: 2rem 0 0.85rem;
    color: #102019;
    font-size: 1.35rem;
}

.corbett-park-copy h4:first-child {
    margin-top: 0;
}

.corbett-park-copy p {
    margin: 0 0 1.1rem;
    color: #314137;
    line-height: 1.78;
}

.corbett-park-photo {
    width: 100%;
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 16 / 7;
    background: rgba(16, 32, 25, 0.08);
}

.corbett-park-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corbett-park-notes {
    position: sticky;
    top: 6.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
}

.corbett-park-notes h4 {
    margin-bottom: 0.85rem;
    color: #102019;
}

.corbett-park-notes ul {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding-left: 1.1rem;
    color: #4d5f55;
    line-height: 1.55;
}

.home-page .stats,
.home-page .showcase-section,
.home-page .cta-section {
    width: 100vw;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4rem max(var(--page-gutter), calc((100vw - 1320px) / 2 + var(--page-gutter)));
    color: #102019;
}

.home-page .stats {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.40) 100%),
        url("media/hero-1.jpeg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.home-page #safari {
    background: #eef5f7;
}

.safaris-page main {
    padding-top: 0;
}

.safaris-page main>section {
    margin-top: 0;
}

.safaris-page .safari-experiences-section {
    padding-top: 9.5rem;
    background: #eef5f7;
}

.safaris-page .safari-experiences-section .section-intro h1 {
    margin: 0.6rem 0 0;
    max-width: 780px;
    color: #102019;
    font-size: clamp(2.5rem, 4vw, 4.8rem);
    line-height: 0.98;
}

.jeep-zone-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.jeep-zone-grid .showcase-card {
    min-width: 0;
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: none;
}

.safaris-page .safari-alt-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4rem max(var(--page-gutter), calc((100vw - 1320px) / 2 + var(--page-gutter)));
    color: #102019;
}

.safaris-page .elephant-safari-section {
    background: #e8f1dc;
}

.safaris-page .canter-safari-section {
    background: #f7ead8;
}

.safari-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.safari-experience-grid .experience-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1fr);
    min-height: 270px;
    border: 1px solid rgba(16, 32, 25, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 48px rgba(16, 32, 25, 0.10);
}

.safari-experience-grid .showcase-image {
    height: 100%;
    min-height: 270px;
}

.safari-experience-grid .showcase-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.7rem;
}

.safari-experience-grid .showcase-copy p {
    color: #4d5f55;
}

.safari-experience-grid .text-link {
    color: #1d6b3a;
}

.elephant-safari-section .experience-card {
    min-height: 351px;
}

.elephant-safari-section .showcase-image {
    min-height: 351px;
}

.elephant-safari-section .safari-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.elephant-safari-section .safari-card-actions .text-link {
    width: 100%;
    min-height: 44px;
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
}

.elephant-safari-section .starting-price {
    justify-self: end;
}

.safari-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.2rem;
}

.safari-card-actions .text-link {
    flex: 1 1 auto;
    margin-top: 0;
    min-height: 36px;
    padding: 0.5rem 0.68rem;
    font-size: 0.76rem;
    font-weight: 600;
}

.starting-price {
    display: grid;
    gap: 0.16rem;
    flex: 0 0 auto;
    color: #102019;
    line-height: 1.05;
    text-align: right;
}

.starting-price small {
    color: #4d5f55;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.starting-price strong {
    font-size: 0.98rem;
    font-weight: 950;
}

.safaris-page .safari-planning-section,
.safaris-page .details-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4rem max(var(--page-gutter), calc((100vw - 1320px) / 2 + var(--page-gutter)));
    color: #102019;
}

.safaris-page .safari-planning-section {
    background: #dde8d3;
}

.safari-planning-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 2rem;
    align-items: stretch;
}

.safari-planning-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 430px;
    padding: 2.25rem;
    border: 1px solid rgba(16, 32, 25, 0.20);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
}

.safari-planning-intro h3 {
    color: #07130d;
    font-size: clamp(2.35rem, 3.4vw, 3.45rem);
    line-height: 1.04;
}

.safari-planning-intro p {
    color: #26362d;
    font-size: 1.08rem;
    line-height: 1.78;
}

.safari-planning-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.safari-planning-actions .btn-secondary {
    background: #102019;
    border-color: #102019;
    color: #fff;
}

.safari-planning-panel {
    display: grid;
    gap: 1rem;
}

.planning-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    min-height: 156px;
    padding: 1.45rem;
    border: 1px solid rgba(16, 32, 25, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
}

.planning-step span {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #102019;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.planning-step h4 {
    margin-bottom: 0.45rem;
    color: #07130d;
    font-size: 1.18rem;
}

.planning-step p {
    color: #26362d;
    font-size: 1.02rem;
    line-height: 1.68;
}

.safari-zone-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.safari-zone-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(16, 32, 25, 0.14);
    border-radius: 999px;
    background: rgba(16, 32, 25, 0.08);
    color: #102019;
    font-size: 0.82rem;
    font-weight: 800;
}

.safaris-page .details-section {
    background: #eaf2ee;
}

.safaris-page .safari-expectations .details-copy h3 {
    color: #07130d;
    font-size: clamp(2.25rem, 3vw, 3.25rem);
    line-height: 1.06;
}

.safaris-page .safari-expectations .details-copy li,
.safaris-page .safari-expectations .details-copy p {
    color: #26362d;
    font-size: 1.08rem;
    line-height: 1.76;
}

.safaris-page .safari-expectations .details-copy li {
    font-weight: 650;
}

.safaris-page .safari-cta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 3.5rem max(var(--page-gutter), calc((100vw - 1320px) / 2 + var(--page-gutter)));
    border: 0;
    border-radius: 0;
    background: #e5edf4;
    color: #102019;
    box-shadow: none;
}

.safaris-page .safari-cta p {
    color: #34443b;
}

.safaris-page .safari-cta .btn-secondary {
    background: #102019;
    border-color: #102019;
    color: #fff;
}

.safari-details-image {
    min-height: 420px;
    border-radius: 24px;
    background-image: linear-gradient(180deg, rgba(8, 17, 23, 0.05), rgba(8, 17, 23, 0.28)),
        url("media/hero-1.jpeg");
    background-size: cover;
    background-position: center;
}

.zone-detail-page main {
    max-width: none;
    padding: 0;
    color: #102019;
}

.zone-detail-page {
    background: #e6f0e4;
}

.zone-detail-page main>section+section,
.zone-detail-page main>section+section::before {
    border-top: 0;
    content: none;
}

.zone-hero {
    width: 100vw;
    min-height: 74vh;
    margin-left: calc(50% - 50vw);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: end;
    gap: 2rem;
    padding: 10rem max(var(--page-gutter), calc((100vw - 1320px) / 2 + var(--page-gutter))) 4rem;
    background-image: linear-gradient(90deg, rgba(4, 8, 6, 0.76) 0%, rgba(4, 8, 6, 0.34) 58%, rgba(4, 8, 6, 0.70) 100%),
        url("media/dhikala-panorama.jpeg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.zone-hero-copy {
    max-width: 820px;
}

.zone-hero h1 {
    max-width: 780px;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: 0.98;
}

.zone-hero p {
    max-width: 780px;
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.78;
}

.zone-hero-panel {
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(5px);
}

.zone-hero-panel span,
.quick-facts span,
.itinerary-grid span {
    display: block;
    color: #ffb300;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.zone-hero-panel strong {
    display: block;
    margin-top: 0.45rem;
    color: #fff;
    font-size: 1.55rem;
}

.zone-hero-panel p {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.zone-detail-layout,
.zone-cta {
    width: min(1320px, calc(100% - 2 * var(--page-gutter)));
    margin: 4rem auto 0;
}

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

.zone-article {
    display: grid;
    gap: 2.2rem;
    min-width: 0;
}

.zone-article>section,
.quick-facts,
.zone-sidebar .sidebar-card,
.itinerary-grid article {
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 60px rgba(16, 32, 25, 0.10);
}

.zone-article>section {
    padding: 2rem;
}

.zone-article h2 {
    margin-bottom: 1rem;
    color: #07130d;
    font-size: clamp(1.8rem, 2.4vw, 2.5rem);
    line-height: 1.08;
}

.zone-article h3 {
    margin-bottom: 0.65rem;
    color: #07130d;
    font-size: 1.16rem;
}

.zone-article p,
.zone-article li,
.zone-sidebar p,
.zone-sidebar li {
    color: #314137;
    line-height: 1.78;
}

.zone-article p+p {
    margin-top: 1rem;
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem;
    background: #102019;
}

.quick-facts div {
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.quick-facts strong {
    display: block;
    margin-top: 0.35rem;
    color: #fff;
    font-size: 1rem;
}

.zone-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 7;
    background: rgba(16, 32, 25, 0.08);
}

.zone-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-grid,
.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.info-grid article {
    padding: 1.2rem;
    border: 1px solid rgba(16, 32, 25, 0.10);
    border-radius: 16px;
    background: rgba(246, 241, 232, 0.72);
}

.zone-note {
    margin-top: 1.15rem;
    padding: 1rem;
    border-left: 4px solid #ffb300;
    border-radius: 0 14px 14px 0;
    background: rgba(255, 179, 0, 0.12);
}

.timing-table {
    display: grid;
    margin-top: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 25, 0.14);
    border-radius: 16px;
}

.timing-table div {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.timing-table div:first-child {
    background: #102019;
    color: #fff;
    font-weight: 900;
}

.timing-table span {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(16, 32, 25, 0.10);
}

.timing-table div:last-child span {
    border-bottom: 0;
}

.timing-table div:not(:first-child) span+span,
.timing-table div:first-child span+span {
    border-left: 1px solid rgba(16, 32, 25, 0.10);
}

.clean-list {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

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

.itinerary-grid article {
    padding: 1.35rem;
}

.itinerary-grid h3 {
    margin-top: 0.45rem;
}

.package-day-grid {
    grid-template-columns: 1fr;
}

.package-day-grid article {
    display: grid;
    gap: 0.55rem;
}

.zone-sidebar {
    position: sticky;
    top: 7rem;
    display: grid;
    gap: 1rem;
}

.zone-sidebar .sidebar-card {
    display: grid;
    gap: 0.7rem;
    padding: 1.25rem;
}

.zone-sidebar h2 {
    color: #07130d;
    font-size: 1.25rem;
}

.zone-sidebar a:not(.btn) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(16, 32, 25, 0.10);
    border-radius: 10px;
    background: rgba(246, 241, 232, 0.68);
    color: #1d6b3a;
    font-weight: 800;
}

.zone-sidebar a:not(.btn)::after {
    content: "→";
}

.sidebar-inquiry {
    background: #102019;
}

.zone-sidebar .sidebar-inquiry h2,
.zone-sidebar .sidebar-inquiry p {
    color: #fff;
}

.sidebar-fast-facts ul {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1.1rem;
}

.zone-cta {
    margin-bottom: 4rem;
    background-image: linear-gradient(90deg, rgba(4, 8, 6, 0.82), rgba(4, 8, 6, 0.58)),
        url("media/cards/dhikala-jeep-safari.jpeg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.zone-cta p {
    color: rgba(255, 255, 255, 0.88);
}

.zone-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.home-page #stays {
    background: #f1f6eb;
}

.home-page #packages {
    background: #f7efe6;
}

.home-page #blogs {
    background: #eef3f8;
}

.home-page .cta-section {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.36) 52%, rgba(0, 0, 0, 0.70) 100%),
        url("media/dhikala-panorama.jpeg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.home-page main>section+section,
.about-page main>section+section,
.safaris-page main>section+section,
.home-page .hero+main>section:first-child,
.home-page .stories-footer-bg,
.about-page .stories-footer-bg,
.safaris-page .stories-footer-bg {
    border-top: 1px solid #000;
}

.safaris-page main>section+section,
.safaris-page .stories-footer-bg {
    border-top: 0;
}

.home-page .stats::after,
.home-page .cta-section::after,
.home-page #packages::after,
.home-page main>section+section::before {
    content: none;
}

.safaris-page main>section+section::before {
    content: none;
}

.home-page .showcase-section .section-intro p,
.home-page .showcase-copy p,
.home-page .stat-item p,
.home-page .cta-section p {
    color: #4d5f55;
}

.home-page .showcase-card,
.home-page .stat-item {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(16, 32, 25, 0.12);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(16, 32, 25, 0.12);
}

.home-page .showcase-card {
    box-shadow: none;
}

.home-page .stat-item span {
    color: #102019;
}

.home-page .stats .stat-item {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: none;
    backdrop-filter: blur(4px);
}

.home-page .stats .stat-item span,
.home-page .stats .stat-item p,
.home-page .cta-section p {
    color: #fff;
}

.home-page .showcase-section .text-link {
    color: #1d6b3a;
}

.home-page .showcase-section .carousel-btn {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(16, 32, 25, 0.16);
    color: #102019;
}

.home-page .cta-section .btn-secondary {
    background: #102019;
    border-color: #102019;
    color: #fff;
}

.stories-footer-bg {
    width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    padding: 4rem var(--page-gutter) 0;
    background:
        linear-gradient(rgba(243, 247, 237, 0.18), rgba(243, 247, 237, 0.18)),
        url('media/cards/card4.jpeg') center / cover no-repeat;
    color: #050505;
}

.stories-footer-bg .testimonials {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0 2.8rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.stories-footer-bg .testimonials .section-intro p,
.stories-footer-bg .testimonials .testimonial-card p,
.stories-footer-bg .testimonials .testimonial-card strong {
    color: #4d5f55;
}

.stories-footer-bg .testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(16, 32, 25, 0.12);
    box-shadow: none;
}

.stories-footer-bg .testimonials .testimonial-card strong,
.stories-footer-bg .footer-brand h2,
.stories-footer-bg .footer-links h3,
.stories-footer-bg .footer-bottom {
    color: #102019;
}

.stories-footer-bg .footer-brand p,
.stories-footer-bg .footer-links a,
.stories-footer-bg .footer-bottom p {
    color: #4d5f55;
}

.stories-footer-bg .footer-bottom {
    border-top-color: rgba(16, 32, 25, 0.12);
}

.home-page .stats,
.home-page .cta-section,
.home-page #packages {
    position: relative;
    z-index: 0;
    isolation: isolate;
}

.home-page .stats::after,
.home-page .cta-section::after,
.home-page #packages::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -2rem;
    z-index: -1;
    width: 100vw;
    transform: translateX(-50%);
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.home-page .stats::after {
    height: min(calc(100% + 4rem), 600px);
    background-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.46) 18%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.46) 82%, #000 100%),
        linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)),
        url("media/hero-1.jpeg");
}

.home-page .cta-section::after {
    height: min(calc(100% + 4rem), 600px);
    background-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.46) 18%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.46) 82%, #000 100%),
        linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)),
        url("media/dhikala-panorama.jpeg");
}

.home-page #packages::after {
    bottom: -2rem;
    background-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.46) 18%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.46) 82%, #000 100%),
        linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)),
        url("media/hero-3.jpeg");
}

.home-page .stats::after,
.home-page .cta-section::after,
.home-page #packages::after {
    content: none;
}

main>section+section {
    position: relative;
}

main>section+section::before {
    content: "";
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(184, 193, 200, 0.22);
}

.home-page main>section+section::before {
    content: none;
}

.section-intro {
    max-width: 720px;
}

.about-corbett-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
    gap: 1.75rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-photo-slider {
    position: relative;
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.about-photo {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease;
}

.about-photo.active {
    opacity: 1;
}

.about-photo-controls {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: grid;
    gap: 0.65rem;
    justify-items: center;
    pointer-events: none;
}

.about-photo-credit {
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.48);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    line-height: 1.2;
}

.about-photo-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.45rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: auto;
}

.about-photo-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
}

.about-photo-dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.about-photo-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.about-photo-dot.active {
    background: rgba(255, 179, 0, 0.95);
    border-color: rgba(255, 179, 0, 0.95);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-header .section-intro {
    max-width: none;
    flex: 1;
}

.carousel-nav {
    display: flex;
    gap: 0.75rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 179, 0, 0.18);
}

.section-intro h3 {
    margin: 0.6rem 0 0;
    font-size: clamp(2.25rem, 3vw, 3rem);
    letter-spacing: -0.04em;
}

.section-intro p {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.85;
}

.feature-grid,
.content-grid,
.team-grid,
.package-grid,
.amenities-grid,
.gallery-grid,
.testimonial-grid,
.card-carousel {
    display: grid;
    gap: 1.75rem;
    margin-top: 2rem;
}

.feature-grid,
.content-grid,
.team-grid,
.package-grid,
.amenities-grid,
.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.package-carousel {
    align-items: center;
    overflow: hidden;
    padding: 0.75rem 0.25rem 1rem;
}

.package-carousel .showcase-card,
.blog-carousel .showcase-card {
    flex: 0 0 min(100%, 320px);
}

.card-carousel.package-carousel .showcase-card {
    flex-basis: calc((100% - 2.5rem) / 3);
    opacity: 0.78;
    transform: scale(0.94);
    transition: transform 0.45s ease, opacity 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.card-carousel.package-carousel .showcase-card.active {
    opacity: 1;
    transform: scale(1.04);
    border-color: #fff;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34), 0 0 28px rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.card-carousel.blog-carousel .showcase-card {
    flex-basis: calc((100% - 2.5rem) / 3);
}

.blog-card .showcase-image {
    height: 180px;
}

.card-carousel::-webkit-scrollbar {
    display: none;
}

.card-carousel .showcase-card {
    flex: 0 0 min(100%, 320px);
    scroll-snap-align: start;
}

.home-page #stay-carousel .showcase-card {
    flex-basis: calc((100% - 2.5rem) / 3);
}

.feature-card,
.testimonial-card,
.team-card,
.package-card,
.highlight-card,
.showcase-card,
.cta-section,
.contact-info,
.contact-form,
.history-highlight>div {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 2.4rem;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.feature-card h4,
.team-card h4,
.package-card h4,
.highlight-card h4,
.showcase-card h4,
.details-copy h3,
.contact-info h3,
.gallery-card h4 {
    margin: 0 0 1rem;
}

.highlight-card {
    padding: 2.2rem;
}

.highlight-card.accent {
    background: linear-gradient(180deg, rgba(255, 179, 0, 0.16), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 179, 0, 0.28);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.2rem;
    background: rgba(0, 0, 0, 0.36);
}

.cta-section h3 {
    margin-top: 0.4rem;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.cta-section p {
    margin-top: 0.8rem;
    color: var(--muted);
    max-width: 42rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--page-gutter);
}

.inquiry-modal.open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
}

.inquiry-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    height: min(760px, calc(100vh - 2 * var(--page-gutter)));
    max-height: calc(100vh - 2 * var(--page-gutter));
    display: grid;
    grid-template-columns: 40% 60%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(16, 32, 25, 0.14);
    background: #f6f1e8;
    color: #102019;
    box-shadow: 0 34px 100px rgba(16, 32, 25, 0.22);
}

.inquiry-media {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: inset -18px 0 26px rgba(246, 241, 232, 0.34);
}

.inquiry-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.inquiry-media-copy {
    position: relative;
    z-index: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
}

.inquiry-media-copy h3 {
    margin: 0.4rem 0 1rem;
    font-size: clamp(1.6rem, 2.8vw, 2.35rem);
    line-height: 1.06;
}

.inquiry-media-copy .eyebrow {
    color: #ffb300;
}

.inquiry-media-copy a {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #081117;
    font-weight: 800;
}

.inquiry-form {
    padding: 1.45rem 1.6rem;
    overflow-y: auto;
    min-height: 0;
}

.inquiry-form h3 {
    margin: 0.25rem 0 0.8rem;
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.inquiry-form label {
    display: block;
    margin-top: 0.7rem;
    color: #102019;
    font-size: 0.94rem;
}

.inquiry-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.inquiry-field-row-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    border: 1px solid rgba(16, 32, 25, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: #102019;
    resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #7a877f;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: rgba(255, 179, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.08);
}

.inquiry-form .btn {
    width: 100%;
    min-height: 48px;
    margin-top: 1rem;
}

.modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(16, 32, 25, 0.14);
    background: rgba(255, 255, 255, 0.86);
    color: #102019;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.site-disclaimer {
    position: fixed;
    left: var(--page-gutter);
    right: var(--page-gutter);
    bottom: 1rem;
    z-index: 1900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(920px, calc(100% - 2 * var(--page-gutter)));
    margin: 0 auto;
    padding: 0.9rem 1rem;
    border: 1px solid #102019;
    border-radius: 14px;
    background: rgba(246, 241, 232, 0.96);
    box-shadow: 0 22px 70px rgba(16, 32, 25, 0.18);
}

.site-disclaimer.closed {
    display: none;
}

.site-disclaimer p {
    color: #4d5f55;
    line-height: 1.55;
    font-size: 0.92rem;
}

.site-disclaimer button {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    border: 1px solid rgba(16, 32, 25, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: #102019;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
}

.showcase-card {
    overflow: hidden;
    padding: 0;
    position: relative;
}

.showcase-image {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
}

#safari-carousel .showcase-card {
    border: 1px solid #fff;
}

.home-page #safari-carousel .showcase-card,
.home-page .card-carousel.package-carousel .showcase-card.active {
    border-color: rgba(16, 32, 25, 0.12);
}

.home-page .card-carousel.package-carousel .showcase-card.active {
    box-shadow: none;
}

.zone-badge,
.duration-badge,
.price-badge {
    position: absolute;
    top: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.32rem 0.62rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(16, 32, 25, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.zone-badge,
.duration-badge {
    right: 1rem;
    background: #d9f94a;
    color: #102019;
}

.price-badge {
    left: 1rem;
    background: #050807;
    border: 1px solid rgba(255, 255, 255, 0.92);
    color: #fff;
}

.visit-badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    max-width: calc(100% - 1.8rem);
    padding: 0.38rem 0.68rem;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background: #d9f94a;
    color: #102019;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(16, 32, 25, 0.18);
}

.visit-badge.requires-stay {
    background: #102019;
    color: #fff;
}

.showcase-copy {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.6rem 1.8rem;
}

.showcase-copy p {
    color: var(--muted);
    line-height: 1.7;
}

.package-carousel .showcase-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.86));
}

.package-carousel .showcase-copy h4 {
    margin-bottom: 0.85rem;
}

.package-feature-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    padding: 0;
    margin: 0.95rem 0 0;
    color: #4d5f55;
    line-height: 1.45;
}

.package-feature-list li {
    position: relative;
    padding-left: 1.25rem;
}

.package-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d9f94a;
    box-shadow: 0 0 0 2px #102019;
}

.package-inquiry-link {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

button.text-link,
.safari-card-actions a.text-link {
    min-height: 42px;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(16, 32, 25, 0.18);
    border-radius: 8px;
    background: #d9f94a;
    color: #102019;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    line-height: 1.1;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(16, 32, 25, 0.12);
}

button.text-link::after,
.safari-card-actions a.text-link::after {
    color: #102019;
}

.forest-lodge-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0.85rem;
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 20px;
    background: #102019;
    box-shadow: 0 22px 60px rgba(16, 32, 25, 0.10);
}

.forest-lodge-tabs button {
    font: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.forest-lodge-tabs button:hover,
.forest-lodge-tabs button:focus-visible,
.forest-lodge-tabs button.active {
    border-color: #d9f94a;
    background: #d9f94a;
    color: #102019;
}

.forest-lodge-panel {
    display: grid;
    gap: 1.35rem;
}

.forest-lodge-panel[hidden] {
    display: none;
}

.forest-lodge-panel h2 {
    margin-bottom: 0;
}

.forest-lodge-panel h2:not(:first-child) {
    margin-top: 0.55rem;
}

.forest-lodge-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.forest-lodge-card-grid article {
    display: grid;
    grid-template-columns: minmax(180px, 30%) minmax(0, 1fr);
    gap: 1.1rem;
    align-items: stretch;
    overflow: hidden;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    padding: 0;
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 14px;
    background: #fff;
}

.forest-lodge-card-grid img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

.forest-lodge-card-grid article>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    overflow-y: auto;
    padding: 1.25rem 1.25rem 1.25rem 0;
}

.forest-lodge-card-grid span {
    display: block;
    color: #102019;
    font-size: 1.15rem;
    font-weight: 900;
}

.forest-lodge-card-grid p {
    margin-top: 0.45rem;
    font-size: 0.96rem;
    line-height: 1.62;
}

.forest-lodge-card-grid .btn {
    min-height: 38px;
    margin-top: 0.85rem;
    padding: 0.64rem 0.95rem;
    border-radius: 8px;
    font-size: 0.74rem;
}

.forest-lodge-zone-details {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.2rem;
}

.private-stay-section {
    display: grid;
    gap: 1rem;
}

.private-stay-section>p {
    max-width: 780px;
}

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

.private-stay-grid article {
    overflow: hidden;
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 14px;
    background: #fff;
}

.private-stay-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.private-stay-grid article>div {
    display: grid;
    gap: 0.55rem;
    padding: 1rem;
}

.private-stay-grid span {
    color: #102019;
    font-size: 1rem;
    font-weight: 900;
}

.private-stay-grid p {
    font-size: 0.94rem;
    line-height: 1.58;
}

.private-stay-grid .btn {
    justify-self: start;
    min-height: 38px;
    padding: 0.64rem 0.95rem;
    border-radius: 8px;
    font-size: 0.74rem;
}

.sidebar-photo-stays {
    display: grid;
    gap: 0.9rem;
}

.sidebar-photo-stays article {
    overflow: hidden;
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 12px;
    background: #fff;
}

.sidebar-photo-stays img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.sidebar-photo-stays article>div {
    display: grid;
    gap: 0.65rem;
    padding: 0.85rem;
}

.sidebar-photo-stays span {
    color: #102019;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.25;
}

.sidebar-photo-stays .btn {
    justify-self: start;
    min-height: 36px;
    padding: 0.58rem 0.85rem;
    border-radius: 8px;
    font-size: 0.72rem;
}

@media (max-width: 980px) {
    .forest-lodge-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 720px) {
    .forest-lodge-tabs {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding: 0.75rem;
        border-radius: 16px;
        box-shadow: none;
    }

    .forest-lodge-tabs button {
        min-height: 48px;
        padding: 0.72rem 0.8rem;
        border-radius: 10px;
        font-size: 0.88rem;
    }

    .forest-lodge-card-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .forest-lodge-card-grid article {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
        max-height: none;
        border-radius: 12px;
    }

    .forest-lodge-card-grid img {
        min-height: 180px;
        aspect-ratio: 16 / 9;
    }

    .forest-lodge-card-grid article>div {
        overflow-y: visible;
        padding: 0 0.9rem 0.9rem;
    }

    .private-stay-grid {
        grid-template-columns: 1fr;
    }

    .private-stay-grid img {
        height: 170px;
    }
}

.header-contact {
    position: relative;
    z-index: 4;
    min-height: 28px;
    pointer-events: auto;
}

.header-contact a {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    pointer-events: auto;
}

@media (max-width: 720px) {
    .stories-footer-bg {
        padding-inline: 0.5rem;
    }

    .home-page .site-footer,
    .stories-footer-bg .site-footer {
        width: 100%;
        padding: 2.6rem 1.35rem 2.8rem;
        border-radius: 24px 24px 0 0;
    }

    .header-contact {
        z-index: 5;
        min-height: 34px;
    }

    .header-contact a {
        min-height: 34px;
    }
}

.blog-index-section {
    width: min(1320px, calc(100% - 2 * var(--page-gutter)));
    margin: 4rem auto 0;
    padding: 0;
    color: #102019;
}

.blog-index-section .section-intro h2 {
    margin: 0.6rem 0 0;
    color: #07130d;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.02;
}

.blog-index-section .section-intro p {
    color: #314137;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2rem;
}

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

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

.blog-list-card {
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 60px rgba(16, 32, 25, 0.10);
}

.blog-list-card .showcase-image {
    height: 260px;
}

.blog-list-card h2 {
    margin-bottom: 0.85rem;
    color: #07130d;
    font-size: 1.45rem;
    line-height: 1.15;
}

.zones-page-grid .showcase-copy h2 {
    margin-bottom: 0.85rem;
    color: #07130d;
    font-size: 1.35rem;
    line-height: 1.15;
}

.zones-page-grid .showcase-card {
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 60px rgba(16, 32, 25, 0.10);
}

.zones-page-grid .showcase-copy p {
    color: #314137;
}

.blog-list-card p {
    color: #314137;
    line-height: 1.7;
}

.stay-list-card .showcase-image {
    height: 230px;
}

.contact-page-section {
    width: min(1320px, calc(100% - 2 * var(--page-gutter)));
    margin: 4rem auto 0;
    color: #102019;
}

.contact-detail-page main {
    padding-bottom: 4.5rem;
}

.contact-page-section .contact-info,
.contact-page-section .contact-form {
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 60px rgba(16, 32, 25, 0.10);
}

.contact-page-section .contact-form {
    padding: 2rem;
}

.contact-page-section .contact-info h3 {
    color: #07130d;
}

.contact-page-section .contact-info p,
.contact-page-section .contact-info li {
    color: #314137;
}

.contact-page-section .contact-form label {
    color: #102019;
    margin-top: 0;
    font-weight: 700;
}

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

.contact-form-wide {
    grid-column: 1 / -1;
}

.contact-page-section .contact-form input,
.contact-page-section .contact-form textarea {
    border-color: rgba(16, 32, 25, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: #102019;
}

.contact-options-section {
    margin-top: 2rem;
    margin-bottom: 0;
}

.blog-detail-page .blog-summary-box {
    background: #102019;
}

.blog-detail-page .blog-summary-box h2,
.blog-detail-page .blog-summary-box p {
    color: #fff;
}

@media (max-width: 720px) {
    .blog-index-section {
        width: calc(100% - 2 * var(--page-gutter));
        margin-top: 2rem;
    }

    .blog-list-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stay-list-grid,
    .package-list-grid {
        grid-template-columns: 1fr;
    }

    .blog-list-card .showcase-image {
        height: 210px;
    }

    .contact-page-section {
        width: calc(100% - 2 * var(--page-gutter));
        margin-top: 2rem;
        gap: 1rem;
    }

    .contact-detail-page main {
        padding-bottom: 3rem;
    }

    .contact-page-section .contact-form {
        padding: 1.25rem;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }
}

.zone-card {
    background: linear-gradient(180deg, rgba(255, 179, 0, 0.16), rgba(255, 255, 255, 0.04));
}

.zone-card ul {
    padding-left: 1.2rem;
    margin: 0.75rem 0 0;
    color: var(--muted);
    display: grid;
    gap: 0.6rem;
    line-height: 1.6;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 700;
}

.text-link::after {
    content: "→";
}

.stat-item {
    background: var(--surface-strong);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
}

.stat-item span {
    display: block;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--text);
}

.stat-item p {
    margin: 0.75rem 0 0;
    color: var(--muted);
}

.testimonial-card {
    flex: 0 0 calc((100% - 2.5rem) / 3);
    min-height: 210px;
    scroll-snap-align: start;
}

.testimonials .testimonial-grid {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials .testimonial-grid::-webkit-scrollbar {
    display: none;
}

.team-card {
    min-height: 220px;
}

.team-card p {
    margin: 0.5rem 0;
}

.history-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.history-highlight {
    display: grid;
    gap: 1.25rem;
}

.history-highlight>div {
    display: grid;
    gap: 0.65rem;
}

.history-highlight span {
    font-size: 2.75rem;
    font-weight: 800;
}

.content-grid article,
.amenities-grid article {
    min-height: 220px;
}

.package-card {
    display: grid;
    gap: 1rem;
}

.package-card span {
    margin-top: auto;
    font-weight: 700;
    color: #fff;
}

.details-section {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.details-copy ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.95rem;
}

.details-copy li {
    position: relative;
    padding-left: 1.75rem;
}

.details-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

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

.gallery-card {
    min-height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    display: grid;
    place-items: end left;
    padding: 1.5rem;
    background: var(--surface);
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-size: cover;
    background-position: center;
}

.gallery-card h4 {
    position: relative;
    margin: 0;
    z-index: 1;
}

.gallery-1::before {
    background-image: linear-gradient(180deg, rgba(8, 17, 23, 0.12), rgba(8, 17, 23, 0.72)),
        url('data:image/svg+xml,%3Csvg width="1200" height="800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"%3E%3Crect width="1200" height="800" fill="%23141F24"/%3E%3Ccircle cx="400" cy="350" r="180" fill="rgba(255,255,255,0.1)"/%3E%3Cpath d="M0 600 C350 480 850 520 1200 420 L1200 800 L0 800 Z" fill="rgba(255,179,0,0.12)"/%3E%3C/svg%3E');
}

.gallery-2::before {
    background-image: linear-gradient(180deg, rgba(8, 17, 23, 0.12), rgba(8, 17, 23, 0.72)),
        url('data:image/svg+xml,%3Csvg width="1200" height="800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"%3E%3Crect width="1200" height="800" fill="%230D161C"/%3E%3Cpath d="M0 300 Q250 220 500 320 T1200 240 L1200 800 L0 800 Z" fill="rgba(255,255,255,0.08)"/%3E%3Ccircle cx="850" cy="430" r="120" fill="rgba(255,179,0,0.09)"/%3E%3C/svg%3E');
}

.gallery-3::before {
    background-image: linear-gradient(180deg, rgba(8, 17, 23, 0.12), rgba(8, 17, 23, 0.72)),
        url('data:image/svg+xml,%3Csvg width="1200" height="800" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"%3E%3Crect width="1200" height="800" fill="%23101A21"/%3E%3Cpath d="M1200 400 C925 320 650 500 400 420 S0 280 0 480 L0 800 L1200 800 Z" fill="rgba(255,255,255,0.08)"/%3E%3Cpath d="M200 650 Q400 520 600 610 T1000 640" stroke="rgba(255,179,0,0.15)" stroke-width="14" fill="none"/%3E%3C/svg%3E');
}

.contact-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.contact-info li {
    color: var(--muted);
}

.contact-form label {
    display: block;
    margin-top: 1.2rem;
    color: var(--text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 0.6rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 179, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.08);
}

.form-note {
    margin-top: 1rem;
    color: var(--accent);
    min-height: 1.2rem;
}

.site-footer {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding-block: 2.8rem 3rem;
    padding-inline: var(--page-gutter);
    display: grid;
    gap: 1.75rem;
    border: 1px solid #fff;
    margin-top: 3rem;
}

.home-page .site-footer {
    max-width: 1320px;
    padding: 3rem 2rem 3.2rem;
    margin-top: 1.5rem;
    border: 1px solid #fff;
    border-radius: 32px 32px 0 0;
    background: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.stories-footer-bg .site-footer {
    max-width: 1320px;
    padding: 3rem 2rem 3.2rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(16, 32, 25, 0.12);
    border-radius: 32px 32px 0 0;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 24px 60px rgba(16, 32, 25, 0.10);
    overflow: hidden;
}

.home-page .footer-main,
.stories-footer-bg .footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 2rem;
    align-items: start;
}

.home-page .footer-brand,
.stories-footer-bg .footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.home-page .footer-brand h2,
.stories-footer-bg .footer-brand h2 {
    font-size: 1.3rem;
}

.home-page .footer-brand p,
.stories-footer-bg .footer-brand p {
    max-width: 34rem;
    margin-top: 0.5rem;
}

.home-page .footer-links,
.stories-footer-bg .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-page .footer-links h3,
.stories-footer-bg .footer-links h3 {
    margin-bottom: 0.75rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
}

.home-page .footer-links a,
.stories-footer-bg .footer-links a {
    display: block;
    padding: 0.35rem 0;
    color: var(--muted);
    transition: color 0.2s ease;
}

.home-page .footer-links .footer-contact-row,
.stories-footer-bg .footer-links .footer-contact-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0;
    margin: 0;
    color: #4d5f55;
    line-height: 1.45;
}

.home-page .footer-contact-row span,
.stories-footer-bg .footer-contact-row span {
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 1.35rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(16, 32, 25, 0.18);
    border-radius: 50%;
    color: #102019;
    font-size: 0.78rem;
    font-weight: 800;
}

.home-page .footer-links .footer-trip-btn,
.stories-footer-bg .footer-links .footer-trip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.65rem;
    padding: 0.55rem 0.9rem;
    border: 0;
    border-radius: 999px;
    background: #102019;
    color: #fff;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
}

.home-page .footer-links a:hover,
.stories-footer-bg .footer-links a:hover {
    color: var(--text);
}

.home-page .footer-links .footer-trip-btn:hover,
.stories-footer-bg .footer-links .footer-trip-btn:hover {
    color: #fff;
    background: #1d6b3a;
}

.home-page .footer-bottom,
.stories-footer-bg .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.home-page .site-footer {
    background: rgba(255, 255, 255, 0.66);
    border-color: rgba(16, 32, 25, 0.12);
    box-shadow: 0 24px 60px rgba(16, 32, 25, 0.10);
}

.home-page .footer-brand h2,
.home-page .footer-links h3,
.home-page .footer-bottom {
    color: #102019;
}

.home-page .footer-brand p,
.home-page .footer-links a,
.home-page .footer-bottom p {
    color: #4d5f55;
}

.home-page .footer-bottom a {
    color: #4d5f55;
    margin-left: 1rem;
}

.stories-footer-bg .footer-bottom a {
    color: #4d5f55;
    margin-left: 1rem;
}

.home-page .footer-bottom a:first-child,
.stories-footer-bg .footer-bottom a:first-child {
    margin-left: 0;
}

.home-page .footer-links a:hover,
.stories-footer-bg .footer-links a:hover {
    color: #102019;
}

.home-page .footer-bottom,
.stories-footer-bg .footer-bottom {
    border-top-color: rgba(16, 32, 25, 0.12);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

copyright {
    color: var(--muted);
}

@media (max-width: 980px) {

    .site-header,
    main,
    .site-footer {
        padding-inline: var(--page-gutter);
    }

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

    .hero,
    .page-hero,
    .history-section,
    .details-section,
    .contact-section,
    .about-corbett-layout,
    .corbett-park-layout,
    .safari-experience-grid,
    .safari-planning-layout {
        grid-template-columns: 1fr;
    }

    .zone-hero,
    .zone-detail-layout {
        grid-template-columns: 1fr;
    }

    .zone-hero {
        min-height: auto;
        padding-top: 8rem;
    }

    .zone-sidebar {
        position: static;
    }

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

    .safari-experience-grid .showcase-image {
        height: 220px;
        min-height: 220px;
    }

    .safari-planning-intro {
        min-height: auto;
    }

    .corbett-park-copy {
        columns: 1;
    }

    .corbett-park-notes {
        position: static;
    }

    .about-page .corbett-park-section {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .about-photo-slider {
        min-height: 220px;
    }

    .hero-image,
    .details-image {
        min-height: 380px;
    }

    .testimonials .testimonial-card {
        flex-basis: calc((100% - 1.25rem) / 2);
    }

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

@media (max-width: 720px) {
    .site-header {
        padding-inline: 0;
    }

    .jeep-zone-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .zone-hero {
        padding-top: 6.4rem;
        padding-bottom: 2.5rem;
    }

    .zone-hero h1 {
        font-size: clamp(2.05rem, 8vw, 3rem);
    }

    .zone-detail-layout,
    .zone-cta {
        width: calc(100% - 2 * var(--page-gutter));
        margin-top: 2.5rem;
    }

    .zone-article {
        gap: 1.2rem;
    }

    .zone-article>section {
        padding: 1.25rem;
    }

    .quick-facts,
    .info-grid,
    .itinerary-grid,
    .two-column-list {
        grid-template-columns: 1fr;
    }

    .timing-table {
        overflow-x: auto;
    }

    .timing-table div {
        min-width: 560px;
    }

    .zone-photo {
        aspect-ratio: 4 / 3;
    }

    .home-page .site-header:not(.scrolled) {
        background: transparent;
        border-bottom: 0;
        box-shadow: none;
    }

    .home-page .site-header:not(.scrolled) .header-inner {
        background: transparent;
    }

    .about-page .corbett-park-section {
        padding-top: 6rem;
        padding-bottom: 2.5rem;
    }

    .about-page .overview {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .corbett-park-photo {
        aspect-ratio: 4 / 3;
        margin: 1.4rem 0;
        border-radius: 18px;
    }

    .about-page .site-header:not(.scrolled) {
        background: rgba(246, 241, 232, 0.94);
        border-bottom: 1px solid rgba(16, 32, 25, 0.12);
        box-shadow: 0 18px 45px rgba(16, 32, 25, 0.10);
    }

    .about-page .site-header:not(.scrolled) .header-inner {
        background: transparent;
    }

    .site-header .header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        padding: 0.8rem var(--page-gutter);
        position: relative;
    }

    .brand-mark,
    .home-page .site-header.scrolled .brand-mark {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

    .home-page .site-header.scrolled .brand-mark {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .header-end {
        display: contents;
        z-index: 2;
    }

    .header-contact {
        display: inline-flex;
        justify-self: center;
        grid-column: 2;
        gap: 0.45rem;
        padding: 0.55rem 0.75rem;
        font-size: 0.82rem;
        max-width: 100%;
        white-space: nowrap;
    }

    .header-contact .contact-icon {
        width: 1.35rem;
        height: 1.35rem;
        font-size: 0.82rem;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: calc(0.75rem + 44px + 0.45rem);
        right: var(--page-gutter);
        left: auto;
        min-width: 220px;
        flex-direction: column;
        gap: 0;
        padding: 0.8rem 0;
        border-radius: 20px;
        background: rgba(4, 10, 15, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    }

    .main-nav.open {
        display: flex;
    }

    .home-page .site-header.scrolled .main-nav.open {
        padding: 0.8rem 0;
        background: rgba(246, 241, 232, 0.98);
        border-color: rgba(16, 32, 25, 0.12);
        box-shadow: 0 20px 45px rgba(16, 32, 25, 0.16);
    }

    .main-nav a {
        padding: 0.85rem 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hero-slider {
        min-height: 100vh;
        height: 100vh;
        padding-top: 0;
    }

    @supports (height: 100svh) {
        .hero-slider {
            min-height: 100svh;
            height: 100svh;
        }
    }

    .slide-copy {
        padding: clamp(5.8rem, 15vh, 7rem) var(--page-gutter) 6rem var(--page-gutter);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        min-height: auto;
    }

    .slide-copy h2 {
        font-size: clamp(1.9rem, 6vw, 2.5rem);
        line-height: 1.08;
    }

    .slide-copy p {
        font-size: 0.96rem;
        margin-top: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        margin-top: 1.2rem;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
    }

    .slider-dots {
        bottom: 0.9rem;
    }

    .slide::after {
        right: var(--page-gutter);
        bottom: 3rem;
        max-width: calc(100% - 2 * var(--page-gutter));
        font-size: 0.72rem;
    }

    .section-header {
        flex-direction: column;
        align-items: start;
    }

    .carousel-nav {
        margin-top: 0.4rem;
    }

    .cta-section {
        flex-direction: column;
        align-items: start;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        flex: 1 1 140px;
    }

    .inquiry-modal {
        padding: 1rem;
    }

    .inquiry-dialog {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 2rem);
    }

    .inquiry-media {
        min-height: 190px;
    }

    .inquiry-media-copy {
        padding: 1.25rem;
    }

    .inquiry-media-copy h3 {
        font-size: 1.45rem;
    }

    .inquiry-form {
        padding: 1.35rem;
    }

    .inquiry-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-disclaimer {
        left: var(--page-gutter);
        right: var(--page-gutter);
        bottom: 0.75rem;
        align-items: flex-start;
        padding: 0.85rem;
    }

    .card-carousel {
        gap: 1rem;
        padding-bottom: 0.6rem;
    }

    .card-carousel .showcase-card {
        flex-basis: min(84vw, 320px);
    }

    .home-page #stay-carousel .showcase-card {
        flex-basis: min(84vw, 320px);
    }

    .card-carousel.blog-carousel .showcase-card {
        flex-basis: min(84vw, 320px);
    }

    .card-carousel.package-carousel .showcase-card {
        flex-basis: min(84vw, 320px);
        opacity: 1;
        transform: none;
    }

    .card-carousel.package-carousel .showcase-card.active {
        transform: none;
    }

    .testimonials .testimonial-card {
        flex: 0 0 84vw;
        min-width: 260px;
        max-width: 320px;
        opacity: 1;
        transform: none;
    }

    .testimonials .testimonial-grid {
        display: flex;
        grid-template-columns: none;
        width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: visible;
    }

    .feature-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding-inline: var(--page-gutter);
    }

    .home-page .site-footer,
    .stories-footer-bg .site-footer {
        padding: 2.4rem var(--page-gutter) 2.6rem;
    }

    .home-page .footer-main,
    .stories-footer-bg .footer-main {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        justify-items: center;
        text-align: center;
    }

    .home-page .footer-brand,
    .stories-footer-bg .footer-brand {
        flex-direction: column;
        align-items: center;
    }

    .home-page .footer-links,
    .stories-footer-bg .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }

    .home-page .footer-links .footer-contact-row,
    .stories-footer-bg .footer-links .footer-contact-row {
        justify-content: center;
    }

    .home-page .footer-bottom,
    .stories-footer-bg .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.55rem;
    }

    .home-page .site-header .header-inner {
        padding-block: 0.75rem;
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 3;
        justify-self: end;
        border-color: rgba(16, 32, 25, 0.14);
        background: rgba(255, 255, 255, 0.72);
    }

    .menu-toggle span {
        background: #102019;
    }

    .header-end {
        display: contents;
    }

    .hero:not(.hero-slider),
    .page-hero {
        min-height: auto;
        padding-top: 2.3rem;
    }

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

.zone-detail-page main>section+section {
    border-top: 0;
}

.zone-detail-page main>section+section::before {
    content: none;
}

.zone-sidebar .sidebar-card.sidebar-inquiry {
    background: #102019;
}

.zone-sidebar .sidebar-card.sidebar-inquiry h2,
.zone-sidebar .sidebar-card.sidebar-inquiry p {
    color: #fff;
}

.zone-detail-page .zone-cta {
    width: min(1320px, calc(100% - 2 * var(--page-gutter)));
    margin: 4rem auto;
    padding: 2rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background-image: linear-gradient(90deg, rgba(4, 8, 6, 0.82), rgba(4, 8, 6, 0.58)),
        url("media/cards/dhikala-jeep-safari.jpeg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 60px rgba(16, 32, 25, 0.16);
    color: #fff;
}

.zone-detail-page .zone-cta h3,
.zone-detail-page .zone-cta p {
    color: #fff;
}

.zone-detail-page .zone-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

@media (max-width: 720px) {
    .zone-detail-page .zone-cta {
        width: calc(100% - 2 * var(--page-gutter));
        margin-block: 2.5rem;
        padding: 1.4rem;
    }
}

@media (max-width: 980px) {

    .zone-detail-page .site-header,
    .zone-detail-page main,
    .zone-detail-page .site-footer {
        padding-inline: 0;
    }

    .zone-detail-page .zone-hero {
        width: 100%;
        margin-left: 0;
        grid-template-columns: 1fr;
        align-items: end;
        gap: 1.25rem;
        padding-inline: var(--page-gutter);
    }

    .zone-detail-page .zone-detail-layout {
        width: calc(100% - 2 * var(--page-gutter));
        grid-template-columns: minmax(0, 1fr);
        gap: 1.25rem;
    }

    .zone-detail-page .quick-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zone-detail-page .zone-sidebar {
        position: static;
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .zone-detail-page {
        overflow-x: hidden;
    }

    .zone-detail-page .zone-hero {
        min-height: auto;
        padding: 6.25rem var(--page-gutter) 2rem;
        background-position: center top;
    }

    .zone-detail-page .zone-hero h1 {
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: 1.04;
    }

    .zone-detail-page .zone-hero p {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .zone-detail-page .zone-hero-panel {
        width: 100%;
        padding: 1rem;
    }

    .zone-detail-page .zone-hero-panel strong {
        font-size: 1.25rem;
    }

    .zone-detail-page .zone-detail-layout {
        width: calc(100% - 2 * var(--page-gutter));
        margin-top: 1.5rem;
    }

    .zone-detail-page .zone-article {
        gap: 1rem;
    }

    .zone-detail-page .zone-article>section,
    .zone-detail-page .quick-facts,
    .zone-detail-page .zone-sidebar .sidebar-card,
    .zone-detail-page .itinerary-grid article {
        border-radius: 16px;
        box-shadow: none;
    }

    .zone-detail-page .zone-article>section,
    .zone-detail-page .zone-sidebar .sidebar-card {
        padding: 1rem;
    }

    .zone-detail-page .zone-article h2 {
        font-size: clamp(1.55rem, 8vw, 2rem);
        line-height: 1.12;
    }

    .zone-detail-page .zone-article h3,
    .zone-detail-page .zone-sidebar h2 {
        font-size: 1.05rem;
    }

    .zone-detail-page .zone-article p,
    .zone-detail-page .zone-article li,
    .zone-detail-page .zone-sidebar p,
    .zone-detail-page .zone-sidebar li {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .zone-detail-page .quick-facts,
    .zone-detail-page .info-grid,
    .zone-detail-page .itinerary-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .zone-detail-page .quick-facts {
        padding: 0.85rem;
    }

    .zone-detail-page .quick-facts div,
    .zone-detail-page .info-grid article,
    .zone-detail-page .itinerary-grid article {
        padding: 0.9rem;
    }

    .zone-detail-page .zone-photo {
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }

    .zone-detail-page .timing-table {
        overflow: visible;
        border-radius: 14px;
    }

    .zone-detail-page .timing-table div {
        min-width: 0;
        grid-template-columns: 1fr;
    }

    .zone-detail-page .timing-table div:first-child {
        display: none;
    }

    .zone-detail-page .timing-table span {
        display: grid;
        gap: 0.15rem;
        padding: 0.78rem 0.9rem;
        border-left: 0;
    }

    .zone-detail-page .timing-table span::before {
        content: attr(data-label);
        color: #6a786f;
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .zone-detail-page .timing-table div:not(:first-child) {
        border-bottom: 1px solid rgba(16, 32, 25, 0.12);
    }

    .zone-detail-page .timing-table div:last-child {
        border-bottom: 0;
    }

    .zone-detail-page .timing-table div:not(:first-child) span:first-child {
        background: rgba(16, 32, 25, 0.08);
        color: #102019;
        font-weight: 900;
    }

    .zone-detail-page .timing-table div:not(:first-child) span+span,
    .zone-detail-page .timing-table div:first-child span+span {
        border-left: 0;
    }

    .zone-detail-page .zone-sidebar a:not(.btn) {
        min-height: 40px;
        padding: 0.62rem 0.7rem;
        font-size: 0.94rem;
    }

    .zone-detail-page .zone-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: calc(100% - 2 * var(--page-gutter));
        margin: 2rem auto;
        padding: 1.1rem;
        border-radius: 16px;
    }

    .zone-detail-page .zone-cta h3 {
        font-size: clamp(1.35rem, 7vw, 1.8rem);
        line-height: 1.15;
    }

    .zone-detail-page .zone-cta .cta-actions,
    .zone-detail-page .zone-cta .btn {
        width: 100%;
    }
}

.safari-card-actions a.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 0;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(16, 32, 25, 0.18);
    border-radius: 8px;
    background: #d9f94a;
    color: #102019;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.1;
    box-shadow: 0 12px 24px rgba(16, 32, 25, 0.12);
}

.safari-card-actions a.text-link::after {
    color: #102019;
}