* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --forest-950: #09110c;
    --forest-900: #122018;
    --forest-800: #1d2f24;
    --forest-700: #28422e;
    --forest-600: #33533a;
    --forest-500: #456c4b;
    --forest-400: #638a67;
    --sand-400: #c7a564;
    --sand-500: #b58b47;
    --stone-50: #f7f5f1;
    --stone-100: #efe9df;
    --stone-200: #ddd6ca;
    --stone-400: #8c877e;
    --stone-500: #6e685f;
    --stone-700: #3a352e;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    background: linear-gradient(180deg, #17231c 0px, #17231c 168px, #eef1ed 168px, #eef1ed 100%);
    color: var(--stone-700);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

[data-icon] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    flex: 0 0 auto;
}

[data-icon] svg {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    max-width: 100%;
    max-height: 100%;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: relative;
    inset: auto;
    z-index: 50;
    transition: transform 0.35s ease, background 0.35s ease;
}

.site-header.scrolled {
    backdrop-filter: blur(18px);
}

.corporate-strip {
    background: rgba(8, 16, 12, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.corporate-strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    min-height: 42px;
}

.corporate-strip__links,
.corporate-strip__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.corporate-strip__link,
.corporate-strip__meta a,
.corporate-strip__meta span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease;
}

.corporate-strip__link:hover,
.corporate-strip__meta a:hover {
    color: var(--white);
}

.corporate-strip__meta span {
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.18);
}

.header-card {
    margin-top: 18px;
    min-height: 86px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(92, 99, 95, 0.68);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(4, 11, 7, 0.16);
    border-radius: 22px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-header.scrolled .header-card {
    background: rgba(49, 57, 52, 0.92);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
}

.brand-mark__badge {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(181, 139, 71, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.brand-mark__logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.22));
}

.brand-mark__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.brand-mark__text strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--white);
    white-space: nowrap;
}

.brand-mark__text small {
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--sand-400), rgba(255, 255, 255, 0.88));
    transition: transform 0.24s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.cta-primary,
.cta-secondary,
.cta-tertiary,
.icon-button,
.mobile-menu-toggle {
    border: 0;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cta-primary,
.cta-secondary,
.cta-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 1.25rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
}

.cta-primary {
    background: linear-gradient(135deg, var(--sand-500), #d1b37a);
    color: var(--forest-950);
    box-shadow: 0 16px 30px rgba(181, 139, 71, 0.26);
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-tertiary:hover,
.icon-button:hover,
.mobile-menu-toggle:hover {
    transform: translateY(-2px);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.cta-tertiary {
    background: rgba(11, 20, 15, 0.08);
    border: 1px solid rgba(17, 32, 24, 0.12);
    color: var(--forest-800);
}

.icon-button,
.mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-button svg,
.mobile-menu-toggle svg,
.amenity-card__icon svg,
.feature-mini__icon svg {
    width: 22px;
    height: 22px;
}

.mobile-drawer {
    padding: 0 1rem;
}

.mobile-drawer__panel {
    margin-top: 14px;
    border-radius: 22px;
    background: rgba(10, 18, 13, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
    padding: 1.15rem;
}

.mobile-drawer__label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.44);
    margin-bottom: 0.65rem;
}

.mobile-drawer__link {
    display: block;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.flash-badge {
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.flash-badge--success {
    background: #e6f5e8;
    color: #21572b;
}

.flash-badge--error {
    background: #fbe8e8;
    color: #8c2c2c;
}

.hero-3d {
    position: relative;
    min-height: 100svh;
    background: radial-gradient(circle at top, rgba(96, 138, 103, 0.34), transparent 32%), #0a120d;
    overflow: hidden;
}

.hero-3d__canvas,
.hero-3d__backdrop,
.hero-3d__overlay {
    position: absolute;
    inset: 0;
}

.hero-3d__backdrop {
    opacity: 0.34;
}

.hero-3d__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05) brightness(0.62);
}

.hero-3d__overlay {
    background:
        radial-gradient(circle at 16% 20%, rgba(199, 165, 100, 0.24), transparent 18%),
        linear-gradient(180deg, rgba(4, 10, 7, 0.35) 0%, rgba(4, 10, 7, 0.82) 100%);
}

.hero-3d__inner {
    min-height: 100svh;
    padding: 168px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.hero-kicker,
.section-kicker,
.hero-showcase__eyebrow,
.highlight-card__eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.hero-kicker {
    color: rgba(255, 255, 255, 0.64);
    margin-bottom: 1rem;
}

.hero-logo {
    width: min(420px, 68vw);
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.26));
}

.hero-title {
    max-width: 12ch;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 6vw, 6.2rem);
    line-height: 0.93;
    color: var(--white);
    margin: 0 0 1.3rem;
}

.hero-text {
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.06rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.45rem;
}

.hero-pills span {
    min-height: 38px;
    padding: 0 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
}

.hero-3d__panel {
    justify-self: end;
    width: min(100%, 470px);
}

.hero-showcase {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.hero-showcase__media {
    aspect-ratio: 1.08 / 0.86;
    overflow: hidden;
}

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

.hero-showcase__content {
    padding: 1.35rem 1.35rem 1.55rem;
}

.hero-showcase__eyebrow {
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 0.7rem;
}

.hero-showcase__content h2 {
    margin: 0;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    line-height: 1.02;
}

.hero-showcase__content p {
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
}

.hero-showcase__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-showcase__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.1rem 0 1.35rem;
}

.hero-showcase__meta span {
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.83rem;
    display: inline-flex;
    align-items: center;
}

.section-band {
    padding: 88px 0;
}

.section-band--light {
    background: linear-gradient(180deg, #f6f4ef 0%, #f0ece5 100%);
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading--split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

.section-heading--center-light {
    text-align: center;
}

.section-heading--center-light .section-kicker,
.section-heading--center-light .section-title {
    color: var(--white);
}

.section-kicker {
    color: var(--forest-500);
    margin-bottom: 0.8rem;
}

.section-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 0.98;
    color: var(--forest-950);
    max-width: 14ch;
}

.section-text {
    max-width: 46rem;
    margin-top: 1rem;
    line-height: 1.8;
    color: var(--stone-500);
}

.home-about {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.6rem, 4vw, 4rem);
    align-items: center;
}

.home-about__media {
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 65px rgba(10, 23, 17, 0.12);
}

.home-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-about__title {
    max-width: 11ch;
}

.home-about__lead {
    margin: 1rem 0 0;
    color: var(--stone-700);
    font-size: 1.08rem;
    line-height: 1.85;
}

.home-about__text {
    margin: 1rem 0 0;
    max-width: 40rem;
    color: var(--stone-500);
    line-height: 1.85;
}

.home-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

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

.home-about__feature {
    padding: 1.3rem;
    border-radius: 22px;
    border: 1px solid rgba(17, 32, 24, 0.08);
    background: var(--stone-50);
    box-shadow: 0 16px 34px rgba(10, 23, 17, 0.05);
}

.home-about__feature-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.home-about__feature-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    background: rgba(69, 108, 75, 0.1);
    color: var(--forest-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-about__feature-icon svg {
    width: 20px;
    height: 20px;
}

.home-about__feature h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    line-height: 1.05;
    color: var(--forest-950);
}

.home-about__feature p {
    margin: 0.85rem 0 0;
    color: var(--stone-500);
    line-height: 1.75;
}

.highlight-grid,
.bungalov-grid,
.amenities-grid,
.campaign-grid,
.blog-grid,
.stats-grid {
    display: grid;
    gap: 1.25rem;
}

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

.highlight-card,
.bungalov-card,
.amenity-card,
.blog-card,
.feature-mini,
.section-panel,
.section-glass {
    border-radius: 22px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(17, 32, 24, 0.08);
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(16, 25, 18, 0.06);
}

.highlight-card__eyebrow {
    color: var(--sand-500);
    margin-bottom: 0.75rem;
}

.highlight-card h3,
.amenity-card h3,
.blog-card h3,
.bungalov-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    color: var(--forest-950);
}

.highlight-card h3 {
    font-size: 1.58rem;
    line-height: 1.05;
}

.highlight-card p {
    margin: 0.8rem 0 0;
    color: var(--stone-500);
    line-height: 1.8;
}

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

.bungalov-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(17, 32, 24, 0.08);
    box-shadow: 0 22px 55px rgba(10, 23, 17, 0.08);
}

.bungalov-card__media {
    display: block;
    aspect-ratio: 1.05 / 1;
    overflow: hidden;
}

.bungalov-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bungalov-card:hover .bungalov-card__media img,
.blog-card:hover .blog-card__media img,
.campaign-card:hover img,
.masonry-gallery__item:hover img {
    transform: scale(1.06);
}

.bungalov-card__body {
    padding: 1.35rem;
}

.bungalov-card__topline,
.bungalov-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.bungalov-card__topline {
    color: var(--stone-400);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bungalov-card__body h3 {
    font-size: 1.62rem;
    margin-top: 0.55rem;
    line-height: 1.02;
}

.bungalov-card__body p {
    margin: 0.75rem 0 1rem;
    color: var(--stone-500);
    line-height: 1.8;
    min-height: 5.4rem;
}

.bungalov-card__footer strong {
    color: var(--forest-700);
    font-size: 1.15rem;
}

.bungalov-card__footer a {
    color: var(--forest-600);
    font-weight: 600;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 1rem;
}

.masonry-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #d7ddd6;
}

.masonry-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-gallery__item span {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 1;
}

.masonry-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(6, 11, 8, 0.78) 100%);
}

.masonry-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.masonry-gallery__item--tall {
    grid-row: span 2;
}

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

.amenity-card {
    min-height: 220px;
    background: var(--white);
    border: 1px solid rgba(17, 32, 24, 0.08);
    box-shadow: 0 14px 35px rgba(10, 23, 17, 0.06);
    padding: 1.7rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.amenity-card__icon {
    width: 56px;
    height: 56px;
    color: #9b7a3f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.amenity-card h3 {
    margin-top: 1rem;
    font-size: 1.35rem;
    line-height: 1.1;
}

.amenity-card p {
    margin-top: 0.85rem;
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--stone-500);
}

.stats-band {
    position: relative;
    padding: 92px 0;
    overflow: hidden;
    background: var(--forest-900);
}

.stats-band__image,
.stats-band__overlay {
    position: absolute;
    inset: 0;
}

.stats-band__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.56);
}

.stats-band__overlay {
    background: linear-gradient(180deg, rgba(6, 13, 10, 0.32), rgba(6, 13, 10, 0.78));
}

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

.stat-card {
    padding: 1rem 1.2rem;
    text-align: center;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card strong {
    display: block;
    font-size: clamp(3.1rem, 4vw, 4.8rem);
    line-height: 1;
    font-weight: 700;
}

.stat-card span {
    display: block;
    margin-top: 0.9rem;
    font-size: 1rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

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

.campaign-card {
    position: relative;
    min-height: 380px;
    border-radius: 26px;
    overflow: hidden;
}

.campaign-card img,
.campaign-card__overlay {
    position: absolute;
    inset: 0;
}

.campaign-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.campaign-card__overlay {
    background: linear-gradient(180deg, transparent 28%, rgba(7, 12, 9, 0.88) 100%);
}

.campaign-card__body {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
    color: var(--white);
    z-index: 1;
}

.campaign-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(199, 165, 100, 0.96);
    color: var(--forest-950);
    font-size: 0.82rem;
    font-weight: 700;
}

.campaign-card__body h3 {
    margin: 1rem 0 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.88rem;
    line-height: 1.02;
    max-width: 12ch;
}

.campaign-card__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

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

.blog-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(17, 32, 24, 0.08);
    box-shadow: 0 18px 40px rgba(10, 23, 17, 0.05);
}

.blog-card__media {
    display: block;
    aspect-ratio: 1.18 / 1;
    overflow: hidden;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card__body {
    padding: 1.35rem;
}

.blog-card__body span {
    color: var(--stone-400);
    font-size: 0.82rem;
}

.blog-card__body h3 {
    margin-top: 0.6rem;
    font-size: 1.42rem;
    line-height: 1.08;
}

.blog-card__body p {
    margin-top: 0.8rem;
    color: var(--stone-500);
    line-height: 1.8;
}

.empty-state {
    padding: 3rem 1.5rem;
    border-radius: 24px;
    border: 1px dashed rgba(17, 32, 24, 0.18);
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.empty-state p {
    margin-bottom: 1rem;
    color: var(--stone-500);
}

.corporate-top-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.corporate-chip {
    min-height: 40px;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(11, 20, 15, 0.06);
    color: var(--forest-700);
    font-size: 0.88rem;
    border: 1px solid rgba(17, 32, 24, 0.08);
}

.corporate-chip.is-active {
    background: var(--forest-700);
    color: var(--white);
}

.section-glass {
    padding: 1.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 32, 24, 0.08);
    box-shadow: 0 16px 40px rgba(9, 17, 12, 0.06);
}

.section-panel {
    padding: 1.45rem;
    background: var(--white);
    border: 1px solid rgba(17, 32, 24, 0.08);
    box-shadow: 0 16px 35px rgba(9, 17, 12, 0.05);
}

.feature-mini {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
    padding: 0.9rem 0;
}

.feature-mini__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(69, 108, 75, 0.08);
    color: var(--forest-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-mini h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.2;
}

.page-hero {
    background: var(--forest-900);
}

.page-hero .text-white\/60,
.page-hero .text-white\/78 {
    color: rgba(255, 255, 255, 0.94) !important;
}

.page-hero p,
.page-hero nav,
.page-hero span,
.page-hero a {
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.page-hero .text-stone-300,
.page-hero .text-stone-200 {
    color: rgba(255, 255, 255, 0.92) !important;
}

.page-hero__summary {
    color: #ffffff !important;
}

.site-footer {
    background: linear-gradient(180deg, #0b140f 0%, #09110c 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 78px 0 28px;
}

.footer-top,
.footer-grid,
.footer-bottom {
    display: grid;
    gap: 1.2rem;
}

.footer-top {
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand__logo {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.footer-title {
    margin: 0;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
}

.footer-copy {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.75;
}

.footer-copy--small {
    margin-top: 1rem;
    font-size: 0.92rem;
}

.footer-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: end;
}

.footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 2.2rem 0;
}

.footer-heading {
    margin: 0 0 0.95rem;
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.footer-links a,
.footer-links span,
.footer-bottom a,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.footer-bottom__links {
    display: flex;
    gap: 1.1rem;
}

.whatsapp-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 12px 28px rgba(18, 140, 126, 0.35);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.22s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-fab.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 36px rgba(18, 140, 126, 0.45);
}

.whatsapp-fab svg {
    width: 30px;
    height: 30px;
}

.bungalov-grid > .bungalov-card:only-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.bungalov-grid > .bungalov-card:only-child .bungalov-card__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 340px;
}

.bungalov-grid > .bungalov-card:only-child .bungalov-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.bungalov-grid > .bungalov-card:only-child .bungalov-card__body p {
    min-height: 0;
}

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

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-content h2 {
    font-size: 1.7rem;
    color: var(--forest-900);
    margin: 1.7rem 0 0.8rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--forest-900);
    margin: 1.4rem 0 0.6rem;
}

.blog-content p,
.blog-content li {
    line-height: 1.9;
}

.blog-content ul,
.blog-content ol {
    padding-left: 1.4rem;
}

.blog-content img {
    border-radius: 18px;
    margin: 1.5rem 0;
}

.lg-backdrop {
    background: rgba(4, 11, 7, 0.94);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ece8e1;
}

::-webkit-scrollbar-thumb {
    background: #78917b;
    border-radius: 999px;
}

::selection {
    background: var(--forest-600);
    color: var(--white);
}

@media (max-width: 1279px) {
    .brand-mark__text strong {
        font-size: 1.7rem;
    }

    .hero-3d__inner {
        grid-template-columns: 1fr;
    }

    .hero-3d__panel {
        justify-self: stretch;
    }

    .home-about {
        grid-template-columns: 1fr;
    }

    .home-about__media {
        min-height: 420px;
    }

    .highlight-grid,
    .bungalov-grid,
    .amenities-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bungalov-grid > .bungalov-card:only-child {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }
}

@media (max-width: 900px) {
    .section-heading--split,
    .footer-top,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-cta-group {
        justify-content: start;
    }

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

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

    .stats-grid {
        gap: 1rem;
    }

    .stat-card {
        border-right: 0;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.04);
    }
}

@media (max-width: 640px) {
    .header-card {
        min-height: 76px;
        padding: 10px 12px;
        border-radius: 18px;
        flex-wrap: nowrap;
    }

    .brand-mark {
        gap: 0.6rem;
        flex: 1 1 0;
        min-width: 0;
        overflow: hidden;
    }

    .brand-mark__badge {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 14px;
    }

    .brand-mark__logo {
        width: 50px;
        height: 50px;
    }

    .brand-mark__text {
        min-width: 0;
        overflow: hidden;
    }

    .brand-mark__text strong {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-mark__text small {
        font-size: 0.65rem;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu-toggle {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
    }

    .whatsapp-fab {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-fab svg {
        width: 26px;
        height: 26px;
    }

    .bungalov-grid > .bungalov-card:only-child {
        grid-template-columns: 1fr;
    }

    .bungalov-grid > .bungalov-card:only-child .bungalov-card__media {
        min-height: 240px;
    }

    .bungalov-grid > .bungalov-card:only-child .bungalov-card__body {
        padding: 1.35rem;
    }

    .hero-3d__inner {
        padding-top: 140px;
    }

    .hero-title {
        font-size: clamp(2.65rem, 12vw, 3.8rem);
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .section-band {
        padding: 72px 0;
    }

    .section-title {
        max-width: none;
    }

    .highlight-grid,
    .bungalov-grid,
    .amenities-grid,
    .campaign-grid,
    .blog-grid,
    .home-about__feature-grid,
    .footer-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .home-about__media {
        min-height: 320px;
    }

    .home-about__lead {
        font-size: 1rem;
    }

    .highlight-card h3 {
        font-size: 1.42rem;
    }

    .bungalov-card__body h3 {
        font-size: 1.45rem;
    }

    .campaign-card__body h3 {
        font-size: 1.6rem;
    }

    .blog-card__body h3 {
        font-size: 1.3rem;
    }

    .masonry-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 150px;
    }

    .masonry-gallery__item--large {
        grid-column: span 2;
    }

    .masonry-gallery__item--tall {
        grid-row: span 1;
    }
}
