:root {
    --forest: #10351f;
    --forest-dark: #07180e;
    --forest-mid: #1f3d2b;
    --leaf: #2f6a3b;
    --cream: #f5f1e8;
    --paper: #fbf6ea;
    --paper-deep: #eee2c9;
    --gold: #c9a96a;
    --gold-deep: #a87528;
    --earth: #8b5e3c;
    --ink: #172015;
    --muted: #605847;
    --line: rgba(84, 56, 27, 0.22);
    --shadow-soft: 0 18px 50px rgba(34, 21, 9, 0.14);
    --shadow-deep: 0 24px 80px rgba(0, 0, 0, 0.34);
    --radius: 8px;
    --container-pad: clamp(20px, 3vw, 44px);
    --icon-size-inline: 0.95rem;
    --icon-size-display: 2.25rem;
    --icon-chip-sm: 25px;
    --icon-chip-lg: 40px;
    --icon-chip-bg: #fff6df;
    --icon-chip-border: rgba(168, 117, 40, 0.35);
    --type-step-1: 1.34rem;
    --type-step-2: 0.87rem;
    --type-step-3: 0.85rem;
    --type-step-4: 0.74rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(201, 169, 106, 0.15), transparent 40rem),
        linear-gradient(180deg, rgba(245, 241, 232, 0.98) 0%, rgba(245, 241, 232, 0.95) 100%),
        var(--cream);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.48;
}

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

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

a:hover {
    color: inherit;
}

h1,
h2,
h3,
.navbar-brand strong {
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0;
}

.container {
    max-width: 1240px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container-custom {
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

.section-pad {
    padding: 60px 0;
}

.section-pad-sm {
    padding: 38px 0;
}

.section-heading {
    margin-bottom: 16px;
    text-align: center;
    max-width: 100%;
}

.section-heading span {
    display: block;
    color: var(--forest);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.section-heading h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: var(--forest);
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: min(220px, 52vw);
    height: 14px;
    margin: 10px auto 0;
    background:
        linear-gradient(var(--gold-deep), var(--gold-deep)) left center / 40% 2px no-repeat,
        linear-gradient(var(--gold-deep), var(--gold-deep)) right center / 40% 2px no-repeat,
        radial-gradient(circle, var(--gold-deep) 0 2.5px, transparent 2.6px) center / 10px 10px no-repeat,
        radial-gradient(circle, rgba(168, 117, 40, 0.66) 0 1.6px, transparent 1.7px) calc(50% - 13px) center / 8px 8px no-repeat,
        radial-gradient(circle, rgba(168, 117, 40, 0.66) 0 1.6px, transparent 1.7px) calc(50% + 13px) center / 8px 8px no-repeat;
    opacity: 0.78;
}

.section-heading.text-start h2::after,
.section-heading.text-lg-start h2::after {
    margin-left: 0;
}

.btn {
    --bs-btn-border-radius: 4px;
    align-items: center;
    border-width: 1px;
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    letter-spacing: 0;
    min-height: 52px;
    padding: 0.85rem 1.5rem;
    text-transform: uppercase;
}

.btn i {
    font-size: var(--icon-size-inline);
}

.btn-primary-heritage {
    background: rgba(16, 53, 31, 0.92);
    border-color: var(--gold);
    color: #fff;
    min-width: 170px;
}

.btn-primary-heritage:hover {
    background: var(--forest);
    border-color: #f0d17a;
    color: #fff;
}

.btn-gold {
    background: linear-gradient(180deg, #ba8736, #8a5c1f);
    border-color: rgba(255, 224, 147, 0.55);
    color: #fff;
    min-width: 230px;
}

.btn-gold:hover {
    background: linear-gradient(180deg, #c89543, #704714);
    color: #fff;
}

.btn-nav {
    background: rgba(25, 84, 42, 0.68);
    border-color: rgba(201, 169, 106, 0.62);
    border-radius: 4px;
    color: #fff;
    font-size: 0.78rem;
    min-height: 42px;
    padding: 0.58rem 1rem;
}

.btn-nav:hover {
    background: rgba(47, 106, 59, 0.92);
    border-color: var(--gold);
    color: #fff;
}

.btn-book {
    background: var(--forest);
    border-color: var(--forest);
    color: #fff;
    min-height: 50px;
}

.btn-book:hover {
    background: var(--leaf);
    border-color: var(--leaf);
    color: #fff;
}

.site-nav {
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(5, 25, 13, 0.88), rgba(5, 25, 13, 0.72));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 9px 0;
    transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
    z-index: 1030;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.site-nav .container-custom {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    min-height: 62px;
}

.site-nav.is-scrolled {
    background: rgba(7, 24, 14, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    padding: 6px 0;
}

.homepage-popup-modal .modal-dialog {
    max-width: 60vw;
    margin: auto;
    padding: 18px;
    max-height: 60vh;
}

.homepage-popup-content {
    background:
        radial-gradient(circle at top right, rgba(201, 169, 106, 0.2), transparent 16rem),
        linear-gradient(180deg, rgba(10, 36, 20, 0.98), rgba(7, 24, 14, 0.98));
    border: 1px solid rgba(201, 169, 106, 0.35);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    color: #f5f1e8;
    overflow: auto;
    position: relative;
    max-height: 60vh;
}

.homepage-popup-content-text {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 34px 30px 30px;
}

.homepage-popup-copy {
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
}

.homepage-popup-close {
    background-color: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    opacity: 1;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
}

.homepage-popup-kicker {
    color: #ffe2a1;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.homepage-popup-copy h2 {
    color: #fff6df;
    font-size: clamp(1.6rem, 2vw, 2.4rem);
    margin: 0 0 14px;
}

.homepage-popup-body p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 12px;
}

.homepage-popup-actions {
    margin-top: 22px;
}

.homepage-popup-content-image {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    overflow: hidden;
    padding: 0;
    max-height: 60vh;
}

.homepage-popup-media-link,
.homepage-popup-media-wrap {
    display: block;
    max-height: calc(60vh - 24px);
    text-align: center;
}

.homepage-popup-image {
    aspect-ratio: auto;
    background: transparent;
    border-radius: 12px;
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: calc(60vh - 24px);
    object-fit: contain;
    width: auto;
    max-width: 100%;
}

.homepage-popup-content-image .homepage-popup-close {
    right: 8px;
    top: 8px;
}

.homepage-popup-modal .modal-backdrop,
.modal-backdrop.show {
    backdrop-filter: blur(3px);
}

@media (max-width: 767.98px) {
    .homepage-popup-modal .modal-dialog {
        max-width: calc(100vw - 20vw);
        margin: auto;
        padding: 12px;
        max-height: 60vh;
    }

    .homepage-popup-content {
        max-height: 60vh;
    }

    .homepage-popup-content-text {
        min-height: auto;
        max-height: calc(60vh - 24px);
        padding: 30px 20px 24px;
        overflow-y: auto;
    }

    .homepage-popup-image {
        max-height: calc(60vh - 24px);
        width: 100%;
    }
}

.brand-lockup {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    min-width: 212px;
}

.brand-lockup img {
    filter: brightness(0) invert(1);
    height: 46px;
    opacity: 0.92;
    width: 46px;
}

.brand-lockup span {
    color: #fff;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-lockup strong {
    font-size: 1.48rem;
    font-weight: 800;
    line-height: 0.92;
    text-transform: uppercase;
}

.brand-lockup small {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-top: 6px;
    text-transform: uppercase;
}

.site-nav .navbar-nav {
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.site-nav .nav-link {
    align-items: center;
    color: rgba(255, 255, 255, 0.74);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    min-height: 40px;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav .nav-link::after {
    background:
        linear-gradient(var(--gold-deep), var(--gold-deep)) left center / 38% 2px no-repeat,
        linear-gradient(var(--gold-deep), var(--gold-deep)) right center / 38% 2px no-repeat,
        radial-gradient(circle, var(--gold-deep) 0 2px, transparent 2.1px) center / 8px 8px no-repeat,
        radial-gradient(circle, rgba(168, 117, 40, 0.66) 0 1.3px, transparent 1.4px) calc(50% - 10px) center / 6px 6px no-repeat,
        radial-gradient(circle, rgba(168, 117, 40, 0.66) 0 1.3px, transparent 1.4px) calc(50% + 10px) center / 6px 6px no-repeat;
    bottom: 2px;
    content: "";
    height: 10px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 180ms ease, transform 180ms ease;
    width: 72px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: #fff;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
    opacity: 0.85;
    transform: translateX(-50%) translateY(0);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
    margin-left: auto;
}

@media (min-width: 992px) {
    .site-nav .container-custom {
        flex-wrap: nowrap;
    }

    .site-nav .navbar-collapse {
        align-items: center;
        display: flex !important;
        gap: 26px;
        justify-content: flex-end;
    }

    .site-nav .btn-nav {
        flex: 0 0 auto;
        margin-left: 0 !important;
        white-space: nowrap;
    }
}

.hero-section {
    background: var(--forest-dark);
    color: #fff;
    min-height: 790px;
    overflow: hidden;
    position: relative;
    padding-top: 96px;
}

.hero-bg {
    background:
        linear-gradient(90deg, rgba(4, 13, 8, 0.94) 0%, rgba(7, 21, 12, 0.8) 34%, rgba(6, 18, 10, 0.4) 60%, rgba(4, 13, 8, 0.82) 100%),
        linear-gradient(180deg, rgba(3, 12, 7, 0.05) 0%, rgba(3, 12, 7, 0.9) 100%),
        url("../images/bg1.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    inset: 0;
    position: absolute;
    z-index: 0;
}

.hero-section::before {
    background:
        radial-gradient(circle at 71% 45%, rgba(201, 169, 106, 0.24), transparent 25rem),
        radial-gradient(circle at 20% 58%, rgba(47, 106, 59, 0.24), transparent 24rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.min-vh-hero {
    min-height: 720px;
    padding-bottom: 92px;
    padding-top: 40px;
    display: grid;
    grid-template-columns: 6fr 6fr;
    align-items: center;
    gap: 40px;
}

.hero-kicker {
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.45rem, 2.35vw, 2.35rem);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 8px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    color: #fff;
    font-size: clamp(3.15rem, 6vw, 5.9rem);
    font-weight: 800;
    line-height: 0.92;
    margin: 0 0 24px;
    max-width: 680px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.65);
}

.hero-copy {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.48;
    margin: 0 0 28px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-photo-wrap {
    height: 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
}

.hero-photo {
    box-shadow: var(--shadow-deep);
    height: 100%;
    object-fit: cover;
    object-position: 13% center;
    width: 100%;
    -webkit-mask-image:
        linear-gradient(90deg, transparent 0%, #000 28%, #000 72%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(90deg, transparent 0%, #000 28%, #000 72%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
    mask-composite: intersect;
}

@media (min-width: 992px) {
    .min-vh-hero > .d-none.d-md-block {
        align-self: stretch;
        display: flex !important;
    }

    .hero-photo-wrap {
        margin-right: -28px;
        width: calc(100% + 28px);
    }
}

.motto-plaque {
    align-items: center;
    background:
        linear-gradient(rgba(61, 29, 11, 0.88), rgba(61, 29, 11, 0.88)),
        repeating-linear-gradient(45deg, transparent 0 9px, rgba(201, 169, 106, 0.18) 9px 11px);
    border: 2px solid var(--gold-deep);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
    color: #ffecc0;
    display: flex;
    flex-direction: column;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.1rem, 1.6vw, 1.45rem);
    font-style: normal;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    letter-spacing: 0.04em;
    min-height: 150px;
    overflow: visible;
    padding: 24px;
    position: absolute;
    right: -14px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    top: 14px;
    width: 210px;
}

.motto-plaque::before {
    border: 1px solid rgba(255, 225, 157, 0.8);
    content: "";
    inset: 10px;
    pointer-events: none;
    position: absolute;
}

.motto-plaque::after {
    border: 1px solid rgba(255, 225, 157, 0.45);
    content: "";
    inset: 18px;
    pointer-events: none;
    position: absolute;
}

.feature-strip {
    background: rgba(9, 37, 19, 0.95);
    border-top: 1px solid rgba(201, 169, 106, 0.38);
    bottom: 0;
    left: 0;
    padding-bottom: 18px;
    position: absolute;
    width: 100%;
    z-index: 3;
}

.feature-strip::after {
    background:
        linear-gradient(135deg, transparent 0 35%, rgba(255, 237, 184, 0.8) 35% 43%, transparent 43% 57%, rgba(255, 237, 184, 0.8) 57% 65%, transparent 65%),
        linear-gradient(45deg, transparent 0 35%, rgba(139, 94, 60, 0.8) 35% 43%, transparent 43% 57%, rgba(139, 94, 60, 0.8) 57% 65%, transparent 65%);
    background-color: #d4b36d;
    background-size: 24px 16px;
    bottom: 0;
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    width: 100%;
}

.feature-item {
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 18px;
    min-height: 92px;
    padding: 16px 24px;
}

.feature-item i {
    color: var(--gold);
    flex: 0 0 auto;
    font-size: var(--icon-size-display);
}

.feature-item h2 {
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    line-height: 1.35;
    margin: 0;
}

.pattern-top {
    isolation: isolate;
    position: relative;
}

.pattern-top::before {
    background:
        linear-gradient(135deg, transparent 0 35%, rgba(255, 237, 184, 0.85) 35% 43%, transparent 43% 57%, rgba(255, 237, 184, 0.85) 57% 65%, transparent 65%),
        linear-gradient(45deg, transparent 0 35%, rgba(139, 94, 60, 0.75) 35% 43%, transparent 43% 57%, rgba(139, 94, 60, 0.75) 57% 65%, transparent 65%);
    background-color: #d0ad65;
    background-size: 24px 16px;
    content: "";
    height: 18px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
}

.welcome-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(201, 169, 106, 0.2), transparent 20rem),
        linear-gradient(90deg, rgba(251, 246, 234, 0.95) 0%, rgba(251, 246, 234, 0.9) 42%, rgba(251, 246, 234, 0.5) 64%, rgba(251, 246, 234, 0.95) 100%),
        url("../images/mbr-1.webp");
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid rgba(84, 56, 27, 0.16);
    position: relative;
    z-index: 4;
}

.welcome-copy-col {
    align-self: center;
}

.welcome-copy {
    color: #1e2719;
    font-size: 0.85rem;
    max-width: 720px;
}

.welcome-copy p {
    margin: 0 0 14px;
}

.welcome-image {
    height: 100%;
    margin-left: auto;
    overflow: hidden;
    position: relative;
}

.welcome-image::before {
    content: none;
}

.welcome-image img {
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
    width: 100%;
}

.experience-section {
    background:
        radial-gradient(circle at 13% 8%, rgba(201, 169, 106, 0.25), transparent 22rem),
        radial-gradient(circle at 86% 48%, rgba(47, 106, 59, 0.12), transparent 24rem),
        linear-gradient(180deg, rgba(251, 246, 234, 0.98) 0%, rgba(245, 241, 232, 0.97) 54%, rgba(238, 226, 201, 0.72) 100%),
        repeating-linear-gradient(0deg, rgba(139, 94, 60, 0.08) 0 1px, transparent 1px 8px);
    border-bottom: 1px solid rgba(84, 56, 27, 0.16);
}

.experience-section .section-heading h2 {
    max-width: 980px;
}

.experience-layout {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.experience-main,
.experience-side {
    min-width: 0;
}

.tribe-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.tribe-card {
    background: rgba(255, 252, 244, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 22px rgba(42, 29, 12, 0.06);
    min-height: 100%;
    overflow: hidden;
}

.tribe-card img {
    aspect-ratio: 1.42;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.tribe-body {
    padding: 10px 9px 14px;
}

.tribe-title {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-bottom: 9px;
}

.tribe-title span {
    flex: 0 0 var(--icon-chip-sm);
    height: var(--icon-chip-sm);
    width: var(--icon-chip-sm);
}

.tribe-title h3 {
    color: #2d2316;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.tribe-body p {
    color: #362f24;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
}

.tribe-note {
    color: #423b2f;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 10px auto 0;
    max-width: 960px;
    text-align: center;
}

.immersive-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    border-left: 0;
    margin-top: 12px;
    padding-left: 0;
    position: relative;
}

.immersive-panel-content {
    flex: 1 1 58%;
    min-width: 250px;
}

.gallery-mini {
    flex: 0 0 28%;
    max-width: 260px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
}

.panel-intro {
    color: #423a2f;
    font-size: 0.85rem;
    margin: -4px 0 10px;
    max-width: 100%;
}

.immersive-list {
    display: grid;
    gap: 10px;
    max-width: 100%;
}

.immersive-item {
    align-items: center;
    display: flex;
    gap: 12px;
}

.immersive-item > span {
    flex: 0 0 var(--icon-chip-lg);
    height: var(--icon-chip-lg);
    width: var(--icon-chip-lg);
}

.immersive-item h3 {
    color: #2b241a;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    margin: 0 0 2px;
}

.immersive-item p {
    color: #4d4334;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
}

.gallery-mini img {
    aspect-ratio: 1.6;
    border: 1px solid rgba(84, 56, 27, 0.2);
    border-radius: var(--radius);
    height: auto;
    object-fit: cover;
    width: 100%;
    min-height: 60px;
}

.highlights-section {
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.7), transparent 18rem),
        radial-gradient(circle at 84% 18%, rgba(201, 169, 106, 0.22), transparent 22rem),
        linear-gradient(180deg, #f8f0df 0%, #fbf6ea 45%, #eee2c9 100%);
    border-bottom: 1px solid rgba(84, 56, 27, 0.18);
}

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

.highlight-grid-item {
    min-width: 0;
}

.highlight-card {
    background:
        linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(251, 246, 234, 0.94)),
        radial-gradient(circle at top, rgba(201, 169, 106, 0.16), transparent 18rem);
    border: 1px solid rgba(84, 56, 27, 0.2);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(48, 31, 9, 0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.highlight-img {
    position: relative;
}

.highlight-img::after {
    background: linear-gradient(180deg, transparent 48%, rgba(7, 24, 14, 0.18) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.highlight-img img {
    aspect-ratio: 1.2;
    object-fit: cover;
    width: 100%;
}

.highlight-img span {
    align-items: center;
    background: var(--forest);
    border: 2px solid var(--gold);
    border-radius: 50%;
    bottom: -18px;
    color: var(--gold);
    display: flex;
    font-size: 0.85rem;
    height: 36px;
    justify-content: center;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 36px;
    z-index: 1;
}

.highlight-body {
    padding: 22px 12px 14px;
    text-align: center;
}

.highlight-body h3 {
    color: #1f1d18;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.highlight-body p {
    color: #40382b;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.booking-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(201, 169, 106, 0.26), transparent 18rem),
        radial-gradient(circle at 91% 80%, rgba(31, 61, 43, 0.16), transparent 18rem),
        linear-gradient(180deg, rgba(251, 246, 234, 0.9), rgba(245, 241, 232, 0.98)),
        var(--cream);
    position: relative;
}

.pattern-side::before,
.pattern-side::after {
    background:
        linear-gradient(135deg, transparent 0 35%, rgba(255, 237, 184, 0.9) 35% 43%, transparent 43% 57%, rgba(255, 237, 184, 0.9) 57% 65%, transparent 65%),
        linear-gradient(45deg, transparent 0 35%, rgba(139, 94, 60, 0.85) 35% 43%, transparent 43% 57%, rgba(139, 94, 60, 0.85) 57% 65%, transparent 65%);
    background-color: #d0ad65;
    background-size: 24px 16px;
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
    width: 20px;
}

.pattern-side::before {
    left: 0;
}

.pattern-side::after {
    right: 0;
}

.info-panel,
.price-card {
    background: rgba(255, 252, 244, 0.92);
    border: 1px solid rgba(84, 56, 27, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 14px 30px rgba(55, 38, 15, 0.08);
    overflow: hidden;
    padding: 20px;
}

.panel-title {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.panel-title > i,
.immersive-item > span,
.tribe-title span,
.check-list i,
.session-times i,
.notes-accordion .accordion-button i,
.booking-perks i,
.price-sessions-label i {
    align-items: center;
    background: var(--icon-chip-bg);
    border: 1px solid var(--icon-chip-border);
    border-radius: 50%;
    color: var(--gold-deep);
    display: inline-flex;
    justify-content: center;
}

.panel-title > i {
    flex: 0 0 var(--icon-chip-lg);
    height: var(--icon-chip-lg);
    width: var(--icon-chip-lg);
}

.panel-title h2,
.price-card h2,
.site-footer h2 {
    color: var(--forest);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.check-list,
.booking-perks,
.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list {
    display: grid;
    gap: 10px;
}

.check-list li,
.booking-perks li {
    align-items: center;
    color: #342d22;
    display: flex;
    font-size: 0.86rem;
    gap: 10px;
    line-height: 1.45;
}

.check-list i {
    flex: 0 0 var(--icon-chip-sm);
    height: var(--icon-chip-sm);
    margin-top: 0;
    width: var(--icon-chip-sm);
}

.sessions-panel {
    background:
        linear-gradient(rgba(255, 252, 244, 0.95), rgba(255, 252, 244, 0.95)),
        url("../images/tree-bark-processing.webp");
    background-position: bottom right;
    background-size: 230px auto;
}

.sessions-panel p {
    color: #423a2f;
    font-size: 0.9rem;
    margin: 0 0 14px;
}

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

.session-card {
    background: linear-gradient(180deg, rgba(255, 249, 233, 0.95), rgba(244, 229, 193, 0.92));
    border: 1px solid rgba(139, 94, 60, 0.26);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(57, 40, 14, 0.08);
    display: grid;
    gap: 4px;
    height: 100%;
    padding: 9px 11px;
}

.session-card small {
    color: #5a4c38;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.session-card strong {
    align-items: center;
    color: #153f24;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 800;
    gap: 8px;
}

.session-times i {
    flex: 0 0 var(--icon-chip-sm);
    height: var(--icon-chip-sm);
    width: var(--icon-chip-sm);
}

.notes-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-icon-width: 0.95rem;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: #1f4a2b;
}

.notes-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(84, 56, 27, 0.18);
}

.notes-accordion .accordion-button {
    align-items: center;
    background: transparent;
    color: #342d22;
    font-size: 0.85rem;
    font-weight: 700;
    gap: 10px;
    padding: 8px 0;
}

.notes-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--forest);
}

.notes-accordion .accordion-button::after {
    background-size: 0.95rem;
    margin-left: 10px;
}

.notes-accordion .accordion-button i {
    flex: 0 0 var(--icon-chip-sm);
    height: var(--icon-chip-sm);
    width: var(--icon-chip-sm);
}

.notes-accordion .note-title {
    flex: 1;
    text-align: left;
}

.notes-accordion .accordion-body {
    color: #4a4031;
    font-size: 0.8rem;
    line-height: 1.45;
    padding: 0 0 10px;
}

.notes-accordion .accordion-body p {
    margin: 0;
}

.price-card {
    padding: 0;
}

.price-card h2 {
    background: var(--forest);
    color: #fff;
    padding: 18px 20px;
    text-align: center;
}

.price-table {
    padding: 14px 18px 6px;
}

.price-head,
.price-row {
    align-items: center;
    border-bottom: 1px solid rgba(84, 56, 27, 0.18);
    display: grid;
    gap: 10px;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    min-height: 40px;
}

.price-head {
    color: #30271b;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.price-row span {
    color: #453b2e;
    font-size: 0.84rem;
}

.price-row strong {
    color: #111;
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
}

.booking-perks {
    display: grid;
    gap: 8px;
    padding: 12px 18px 14px;
}

.booking-perks li {
    font-size: 0.82rem;
}

.booking-perks i {
    flex: 0 0 var(--icon-chip-sm);
    height: var(--icon-chip-sm);
    margin-top: 0;
    width: var(--icon-chip-sm);
}

.price-sessions {
    border-top: 1px solid rgba(84, 56, 27, 0.18);
    padding: 12px 18px;
}

.price-sessions-label {
    align-items: center;
    color: var(--forest);
    display: flex;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 7px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.price-sessions-label i {
    flex: 0 0 var(--icon-chip-sm);
    height: var(--icon-chip-sm);
    width: var(--icon-chip-sm);
}

.price-sessions .session-times {
    gap: 8px;
}

.price-card .btn-book {
    border-radius: 0;
}

.site-footer {
    background:
        radial-gradient(circle at 18% 20%, rgba(201, 169, 106, 0.12), transparent 20rem),
        linear-gradient(90deg, rgba(5, 25, 12, 0.98), rgba(10, 45, 23, 0.94)),
        url("../images/bg2.webp");
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 34px 0 14px;
}

.footer-brand img {
    height: auto;
    margin-bottom: 14px;
    max-width: 220px;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    line-height: 1.5;
}

.site-footer p {
    margin: 0 0 10px;
    max-width: 310px;
}

.site-footer h2 {
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.98rem;
    margin-bottom: 10px;
}

.site-footer li + li {
    margin-top: 5px;
}

.site-footer a:hover {
    color: var(--gold);
}

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

.social-links a {
    align-items: center;
    background: var(--icon-chip-bg);
    border: 1px solid var(--icon-chip-border);
    border-radius: 50%;
    color: var(--gold-deep);
    display: inline-flex;
    height: var(--icon-chip-sm);
    justify-content: center;
    width: var(--icon-chip-sm);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--forest-dark);
}

.footer-cta {
    background:
        linear-gradient(90deg, rgba(7, 24, 14, 0.75), rgba(7, 24, 14, 0.24)),
        url("../images/lansaran.webp");
    background-position: right center;
    background-size: cover;
    border: 1px solid rgba(201, 169, 106, 0.24);
    border-radius: var(--radius);
    min-height: 190px;
    padding: 22px;
}

.footer-cta .btn {
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    margin-top: 22px;
    padding-top: 12px;
    text-align: center;
}

/* Unified non-hero typography: 4-step scale.
    For future typography requests, change token values first.
    Step 1: section headings and panel titles.
    Step 2: tribe/immersive/highlight/feature titles, nav labels, strong data values.
    Step 3: standard body copy.
    Step 4: micro/meta text.
*/
.section-heading span,
.section-heading h2,
.panel-title h2,
.price-card h2,
.site-footer h2 {
    font-size: var(--type-step-1);
    line-height: 1.12;
}

.tribe-title h3,
.immersive-item h3,
.highlight-body h3,
.feature-item h2,
.site-nav .nav-link,
.site-nav .btn-nav,
.price-row strong,
.session-card strong {
    font-size: var(--type-step-2);
    line-height: 1.24;
}

.welcome-copy,
.tribe-note,
.panel-intro,
.tribe-body p,
.immersive-item p,
.highlight-body p,
.check-list li,
.booking-perks li,
.sessions-panel p,
.notes-accordion .accordion-body,
.price-row span,
.site-footer p,
.site-footer li,
.site-footer a,
.feature-item p {
    font-size: var(--type-step-3);
    line-height: 1.4;
}

.session-card small,
.price-head,
.price-sessions-label,
.notes-accordion .accordion-button,
.footer-bottom,
.mob-nav-item,
.brand-lockup small {
    font-size: var(--type-step-4);
    line-height: 1.28;
}

@media (max-width: 1199.98px) {
    .site-nav .navbar-nav {
        gap: 14px;
    }

    .site-nav .navbar-collapse {
        gap: 18px;
    }

    .site-nav .btn-nav {
        padding-left: 0.82rem;
        padding-right: 0.82rem;
    }

    .brand-lockup {
        min-width: 186px;
    }

    .brand-lockup img {
        height: 42px;
        width: 42px;
    }

    .brand-lockup strong {
        font-size: 1.28rem;
    }

    .brand-lockup small {
        font-size: var(--type-step-4);
    }

    .tribe-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 991.98px) {
    :root {
        --type-step-1: 1.25rem;
        --type-step-2: 0.82rem;
        --type-step-3: 0.83rem;
        --type-step-4: 0.7rem;
    }

    html {
        scroll-padding-top: 78px;
    }

    body {
        font-size: 13.5px;
    }

    .section-pad {
        padding: 52px 0;
    }

    .section-pad-sm {
        padding: 34px 0;
    }

    .section-heading span {
        font-size: var(--type-step-1);
    }

    .section-heading h2 {
        font-size: var(--type-step-1);
    }

    .site-nav {
        background: rgba(7, 24, 14, 0.96);
        padding: 8px 0;
    }

    .site-nav .container-custom {
        gap: 12px;
        min-height: 54px;
    }

    .site-nav .navbar-collapse {
        background: rgba(7, 24, 14, 0.98);
        border: 1px solid rgba(201, 169, 106, 0.22);
        border-radius: 6px;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
        margin-top: 10px;
        padding: 10px 14px 14px;
        width: 100%;
    }

    .site-nav .navbar-nav {
        align-items: stretch;
        gap: 2px;
        margin-left: 0;
    }

    .site-nav .nav-link {
        color: rgba(255, 255, 255, 0.82);
        min-height: 40px;
        padding: 0.55rem 0.2rem;
    }

    .site-nav .nav-link::after {
        left: 50%;
        transform: translateX(-50%) translateY(4px);
        width: 70px;
    }

    .site-nav .btn-nav {
        margin-top: 10px;
        width: 100%;
    }

    .hero-section {
        min-height: 700px;
        overflow: hidden;
        padding-top: 76px;
    }

    .hero-section > .hero-content {
        display: block;
    }

    .feature-strip {
        bottom: 0;
        left: 0;
        position: absolute;
        width: 100%;
    }

    .min-vh-hero {
        min-height: 620px;
        padding-bottom: 56px;
        padding-top: 20px;
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
        gap: 24px;
    }

    .hero-kicker {
        font-size: 1.08rem;
    }

    .hero-section h1 {
        font-size: clamp(2.25rem, 5.2vw, 3.1rem);
        line-height: 0.98;
        margin-bottom: 18px;
    }

    .hero-copy {
        font-size: 0.95rem;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
    }

    .footer-brand img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 154px;
    }

    .feature-strip::after,
    .pattern-side::before,
    .pattern-side::after {
        display: none;
    }

    .feature-item {
        align-items: center;
        flex-direction: column;
        gap: 4px;
        justify-content: center;
        min-height: 112px;
        padding: 20px 10px;
        text-align: center;
    }

    .welcome-section {
        background-attachment: scroll;
    }

    .welcome-image img {
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 42%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 42%);
    }

    .immersive-panel {
        border-left: 0;
        border-top: 1px solid rgba(139, 94, 60, 0.28);
        padding-left: 0;
        padding-top: 34px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "content"
            "gallery";
        align-items: start;
        gap: 8px;
    }

    .panel-intro {
        grid-area: intro;
        margin-bottom: 8px;
    }

    .immersive-panel-content {
        grid-area: content;
        flex: none;
        min-width: 0;
    }

    .gallery-mini {
        grid-area: gallery;
        flex: none;
        max-width: none;
        min-width: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .tribe-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .tribe-grid .tribe-card {
        flex: 0 0 calc(33.333% - 7px);
        max-width: calc(33.333% - 7px);
    }

    .tribe-body {
        text-align: center;
    }

    .tribe-title {
        justify-content: center;
    }

    .tribe-title h3 {
        text-align: center;
    }

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

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

@media (max-width: 767.98px) {
    .highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .experience-layout {
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    }

    .experience-side {
        border-left: 1px solid rgba(84, 56, 27, 0.2);
        padding-left: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) and (orientation: landscape) {
    .immersive-panel {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "content"
            "gallery";
        align-items: start;
        gap: 8px;
    }

    .panel-intro {
        grid-area: intro;
        margin-bottom: 8px;
    }

    .immersive-panel-content {
        grid-area: content;
        flex: none;
        min-width: 0;
    }

    .gallery-mini {
        grid-area: gallery;
        flex: none;
        max-width: none;
        min-width: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .tribe-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .tribe-grid .tribe-card {
        flex: 0 0 calc(33.333% - 7px);
        max-width: calc(33.333% - 7px);
    }
}

@media (max-width: 767.98px) {
    :root {
        --type-step-1: 1.18rem;
        --type-step-2: 0.78rem;
        --type-step-3: 0.78rem;
        --type-step-4: 0.68rem;
    }

    body {
        font-size: 12.5px;
    }

    .brand-lockup {
        gap: 8px;
        min-width: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .site-nav .container-custom {
        position: relative;
    }

    .brand-lockup img {
        height: 40px;
        width: 40px;
    }

    .brand-lockup strong {
        font-size: 1.12rem;
    }

    .brand-lockup small {
        font-size: var(--type-step-4);
        margin-top: 4px;
    }

    .hero-bg {
        background:
            linear-gradient(90deg, rgba(4, 13, 8, 0.94), rgba(6, 18, 10, 0.74)),
            linear-gradient(180deg, rgba(3, 12, 7, 0.05), rgba(3, 12, 7, 0.9)),
            url("../images/bg1.webp");
        background-position: 42% center;
        background-size: cover;
    }

    .hero-section {
        min-height: 100svh;
        height: 100svh;
    }

    @supports (height: 100dvh) {
        .hero-section {
            min-height: 100dvh;
            height: 100dvh;
        }
    }

    .hero-section > .hero-content {
        align-items: center;
        display: flex;
        min-height: 100%;
    }

    .min-vh-hero {
        min-height: 0;
        padding-bottom: 124px;
        padding-top: 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-section h1 {
        font-size: clamp(1.7rem, 8.6vw, 2.35rem);
        line-height: 1.05;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .hero-kicker {
        font-size: 0.94rem;
        margin-bottom: 4px;
    }

    .hero-copy {
        font-size: 0.84rem;
        line-height: 1.36;
        margin-bottom: 18px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-width: 100%;
    }

    .btn-primary-heritage,
    .btn-gold {
        min-height: 46px;
        min-width: 0;
        width: 100%;
        padding: 0.72rem 0.55rem;
    }

    .feature-item {
        align-items: center;
        flex-direction: column;
        gap: 4px;
        justify-content: center;
        min-height: 88px;
        padding: 8px 10px;
        text-align: center;
    }

    .feature-item i {
        font-size: 1.75rem;
    }

    .immersive-panel {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "content"
            "gallery";
        align-items: start;
        gap: 8px;
    }

    .panel-intro {
        grid-area: intro;
        margin-bottom: 8px;
    }

    .immersive-panel-content {
        grid-area: content;
        flex: none;
        min-width: 0;
    }

    .gallery-mini {
        grid-area: gallery;
        flex: none;
        max-width: none;
        min-width: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .tribe-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tribe-grid .tribe-card {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
    }

    .tribe-grid .tribe-card:last-child:nth-child(odd) {
        margin-left: auto;
        margin-right: auto;
    }

    .tribe-card img {
        aspect-ratio: 1.32;
        height: auto;
    }

    .tribe-body {
        padding: 10px;
    }

    .tribe-title {
        gap: 6px;
        margin-bottom: 6px;
    }

    .tribe-body p {
        line-height: 1.38;
    }

    .tribe-note {
        margin-top: 8px;
    }

    .highlight-img img {
        aspect-ratio: 1.08;
    }

    .highlight-img span {
        bottom: -16px;
        height: 32px;
        width: 32px;
    }

    .highlight-body {
        padding: 16px 10px 12px;
    }

    .highlight-body h3 {
        margin-bottom: 5px;
    }

    .highlight-body p {
        line-height: 1.34;
    }

    .price-table {
        padding: 12px 16px 6px;
    }

    .booking-perks {
        gap: 6px;
        padding: 10px 16px 12px;
    }

    .price-sessions {
        padding: 10px 16px;
    }

    .site-footer {
        padding: 28px 0 12px;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
    }

    .footer-brand img {
        max-width: 110px;
    }

    .site-footer .row > div {
        text-align: center;
    }

    .site-footer p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .site-footer .row > div:nth-child(2),
    .site-footer .row > div:nth-child(3) {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer-bottom {
        margin-top: 18px;
        padding-top: 10px;
    }

    .welcome-image {
        margin-left: 0;
    }

    .welcome-image img {
        height: 300px;
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .container-xxl {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-heading span {
        font-size: var(--type-step-1);
    }

    .section-heading h2 {
        font-size: var(--type-step-1);
    }

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

    .tribe-card img {
        aspect-ratio: 1.5;
    }

    .tribe-body,
    .highlight-body {
        padding-left: 9px;
        padding-right: 9px;
    }

    .info-panel,
    .price-card {
        padding: 16px;
    }

    .section-pad {
        padding: 44px 0;
    }

    .section-pad-sm {
        padding: 28px 0;
    }

    .price-card {
        padding: 0;
    }

    .price-head,
    .price-row {
        gap: 4px;
        grid-template-columns: 1.65fr 0.68fr 0.68fr;
    }

    .price-row span {
        font-size: var(--type-step-3);
    }

    .price-row strong {
        font-size: var(--type-step-2);
    }
}

/* ── Mobile bottom navigation ─────────────────────────────── */
.mobile-bottom-nav {
    align-items: stretch;
    background: rgba(5, 22, 12, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(201, 169, 106, 0.28);
    bottom: 0;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.32);
    display: flex;
    gap: 0;
    height: 64px;
    justify-content: stretch;
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    z-index: 1050;
}

.mob-nav-item {
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: var(--type-step-4);
    font-weight: 700;
    gap: 4px;
    justify-content: center;
    letter-spacing: 0.03em;
    padding: 8px 4px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.mob-nav-item i {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 160ms ease, color 160ms ease;
}

.mob-nav-item:hover,
.mob-nav-item.active {
    color: var(--gold);
    text-decoration: none;
}

.mob-nav-item.active i {
    transform: translateY(-2px);
}

.mob-nav-item.active::after {
    background: var(--gold);
    border-radius: 2px;
    bottom: 0;
    content: "";
    height: 2.5px;
    left: 20%;
    position: absolute;
    right: 20%;
}

/* CTA centre button */
.mob-nav-cta {
    color: var(--gold);
    position: relative;
}

.mob-nav-cta i {
    background: linear-gradient(180deg, #ba8736, #7a4c14);
    border: 1.5px solid rgba(255, 224, 147, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    height: 44px;
    margin-top: -18px;
    padding: 0;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.38);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.mob-nav-cta:hover i {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.48);
}

.mob-nav-cta span {
    color: var(--gold);
    font-size: var(--type-step-4);
}

/* Body padding + hide hamburger on mobile */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 64px;
    }

    .navbar-toggler {
        display: none;
    }

    #mainNav {
        display: none !important;
    }
}

/* Gallery page */
.gallery-page {
    background:
        radial-gradient(circle at 10% 12%, rgba(201, 169, 106, 0.2), transparent 24rem),
        radial-gradient(circle at 90% 8%, rgba(47, 106, 59, 0.2), transparent 22rem),
        linear-gradient(180deg, #f7f2e7 0%, #efe2c8 100%);
}

.gallery-hero {
    padding: 132px 0 32px;
    position: relative;
}

.gallery-hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 86px;
    height: 18px;
    background:
        linear-gradient(135deg, transparent 0 35%, rgba(255, 237, 184, 0.86) 35% 43%, transparent 43% 57%, rgba(255, 237, 184, 0.86) 57% 65%, transparent 65%),
        linear-gradient(45deg, transparent 0 35%, rgba(139, 94, 60, 0.76) 35% 43%, transparent 43% 57%, rgba(139, 94, 60, 0.76) 57% 65%, transparent 65%);
    background-color: #d0ad65;
    background-size: 24px 16px;
}

.gallery-hero-frame {
    background:
        linear-gradient(128deg, rgba(7, 24, 14, 0.9), rgba(7, 24, 14, 0.62)),
        url("../images/bg2.webp");
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(201, 169, 106, 0.45);
    border-radius: 14px;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
    color: #fff8e8;
    padding: clamp(22px, 4vw, 44px);
    position: relative;
    overflow: hidden;
}

.gallery-hero-frame::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 231, 180, 0.32);
    border-radius: 9px;
    pointer-events: none;
}

.gallery-kicker {
    color: #ffd685;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
}

.gallery-hero h1 {
    color: #fffaf0;
    font-size: clamp(1.7rem, 4vw, 3.1rem);
    line-height: 1;
    margin: 0 0 12px;
}

.gallery-hero p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 760px;
    font-size: 0.92rem;
}

.gallery-filter-bar {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-filter-btn {
    background: rgba(255, 241, 209, 0.16);
    border: 1px solid rgba(255, 230, 173, 0.45);
    border-radius: 999px;
    color: #fff2cf;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    min-height: 36px;
    padding: 0.35rem 0.95rem;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.is-active {
    background: linear-gradient(180deg, #ca9741, #8b5d22);
    border-color: rgba(255, 230, 173, 0.72);
    color: #fff;
    transform: translateY(-1px);
}

.gallery-grid-section {
    padding: 18px 0 64px;
}

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

.gallery-card-item {
    grid-column: span 4;
    background: rgba(255, 252, 244, 0.95);
    border: 1px solid rgba(84, 56, 27, 0.25);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(55, 38, 15, 0.11);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(55, 38, 15, 0.16);
}

.gallery-card-image-wrap {
    position: relative;
}

.gallery-card-image-wrap img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.gallery-lightbox-trigger {
    all: unset;
    cursor: pointer;
    display: block;
    position: relative;
    width: 100%;
}

.gallery-lightbox-trigger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.gallery-tag-chip {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(7, 24, 14, 0.82);
    color: #ffd887;
    border: 1px solid rgba(255, 224, 147, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.65rem;
    font-weight: 700;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 22, 12, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.gallery-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    animation: lightboxSlideIn 220ms ease;
}

@keyframes lightboxSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(16, 53, 31, 0.9);
    border: 1px solid rgba(255, 224, 147, 0.45);
    border-radius: 50%;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 2001;
    transition: background 160ms ease, border-color 160ms ease;
}

.gallery-lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--forest);
}

.gallery-lightbox-close:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.gallery-lightbox-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: calc(90vh - 80px);
    overflow: auto;
}

.gallery-lightbox-image {
    width: 100%;
    height: auto;
    max-height: calc(90vh - 200px);
    object-fit: contain;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-lightbox-info {
    background: rgba(255, 252, 244, 0.95);
    border: 1px solid rgba(201, 169, 106, 0.35);
    border-radius: 8px;
    padding: 14px 16px;
    color: #2c2113;
}

.gallery-lightbox-info h2 {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 6px;
    text-transform: uppercase;
    color: #2c2113;
}

.gallery-lightbox-info p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.45;
    color: #4c4334;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 53, 31, 0.85);
    border: 1px solid rgba(255, 224, 147, 0.45);
    border-radius: 4px;
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
    z-index: 2001;
}

.gallery-lightbox-nav:hover:not(:disabled) {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--forest);
}

.gallery-lightbox-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.gallery-lightbox-nav:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.gallery-lightbox-prev {
    left: 12px;
}

.gallery-lightbox-next {
    right: 12px;
}

.gallery-lightbox-counter {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 53, 31, 0.9);
    border: 1px solid rgba(255, 224, 147, 0.45);
    color: #fff;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

@media (max-width: 767.98px) {
    .gallery-lightbox-content {
        gap: 12px;
    }

    .gallery-lightbox-image {
        max-height: calc(90vh - 160px);
    }

    .gallery-lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .gallery-lightbox-prev {
        left: 6px;
    }

    .gallery-lightbox-next {
        right: 6px;
    }

    .gallery-lightbox-close {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        top: 8px;
        right: 8px;
    }

    .gallery-lightbox-info {
        padding: 12px 14px;
    }

    .gallery-lightbox-info h2 {
        font-size: 0.92rem;
    }

    .gallery-lightbox-info p {
        font-size: 0.82rem;
    }

    .gallery-lightbox-counter {
        font-size: 0.72rem;
        padding: 0.32rem 0.6rem;
        bottom: 8px;
    }
}


.gallery-card-body h2 {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    margin: 0 0 6px;
    text-transform: uppercase;
    color: #2c2113;
}

.gallery-card-body p {
    margin: 0;
    color: #4c4334;
    font-size: 0.83rem;
    line-height: 1.42;
}

.gallery-empty-state {
    margin-top: 18px;
    color: #4a3f31;
    font-size: 0.86rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 991.98px) {
    .gallery-hero {
        padding-top: 98px;
    }

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

    .gallery-card-item {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    .gallery-hero {
        padding-top: 88px;
    }

    .gallery-hero-frame {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .gallery-filter-bar {
        gap: 6px;
    }

    .gallery-filter-btn {
        min-height: 34px;
        padding: 0.28rem 0.75rem;
    }

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

    .gallery-grid-section {
        padding-bottom: 32px;
    }
}
