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

:root {
    --primary: #3f6418;
    --secondary: #0b3b2f;
    --accent: #f07a00;
    --cream: #fff8ec;
    --dark: #0d1b22;
    --white: #ffffff;
    --muted: #61706b;
    --line: rgba(13, 27, 34, .12);
    --shadow: 0 18px 50px rgba(31, 39, 35, .16);
    --shadow-soft: 0 10px 30px rgba(31, 39, 35, .11);
    --radius: 24px;
    --radius-lg: 34px;
    --container: 1160px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 8% 35%, rgba(240, 122, 0, .10), transparent 22rem),
        radial-gradient(circle at 90% 42%, rgba(63, 100, 24, .10), transparent 20rem),
        var(--cream);
    color: var(--dark);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 44px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -4rem;
    z-index: 9999;
    background: var(--accent);
    color: #fff;
    padding: .8rem 1rem;
    border-radius: 999px;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    width: 100%;
    padding: 18px 0;
    background: rgba(7, 24, 22, .94);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.home-template .site-header {
    position: absolute;
    background: linear-gradient(180deg, rgba(4, 13, 14, .72), rgba(4, 13, 14, .10));
    box-shadow: none;
}

.site-header.scrolled {
    position: fixed;
    background: rgba(7, 24, 22, .94);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 210px;
}

.brand img {
    width: 210px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.main-nav a {
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    opacity: .92;
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--primary), #6a8d1e);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(30, 60, 14, .26), inset 0 1px rgba(255, 255, 255, .35);
    white-space: nowrap;
}

.calendar-icon {
    width: 25px;
    height: 25px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
    font-size: .9rem;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 16px;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 99px;
    margin: 4px 0;
}

.nav-toggle strong {
    font-size: .82rem;
}

.flash-wrap {
    padding-top: 110px;
}

.flash-message {
    margin: 0 0 18px;
    border-radius: 16px;
    padding: 14px 18px;
    font-weight: 800;
    background: rgba(63, 100, 24, .13);
    color: var(--secondary);
    border: 1px solid rgba(63, 100, 24, .18);
}

.flash-message.error {
    background: rgba(194, 61, 34, .13);
    color: #8a2114;
    border-color: rgba(194, 61, 34, .18);
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(5, 18, 25, .84) 0%, rgba(5, 18, 25, .70) 31%, rgba(5, 18, 25, .25) 58%, rgba(5, 18, 25, .42) 100%),
        var(--hero-bg);
    background-size: cover;
    background-position: center;
    color: #fff;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 83%, rgba(240, 122, 0, .32), transparent 17rem),
        linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .08));
    z-index: -1;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .20));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 660px) 1fr;
    gap: 32px;
    align-items: center;
    padding-top: 86px;
    padding-bottom: 78px;
}

.script-label {
    margin: 0 0 10px;
    color: #ffae31;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .35);
}

.hero-copy h1,
.sub-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.85rem, 6.2vw, 5.7rem);
    line-height: .92;
    letter-spacing: -0.055em;
    text-shadow: 0 8px 26px rgba(0, 0, 0, .44);
}

.hero-copy h1 span {
    display: inline-block;
    color: var(--accent);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 1.06em;
    transform: rotate(-4deg);
    letter-spacing: -0.03em;
    margin-left: 10px;
}

.hero-text {
    max-width: 540px;
    margin: 22px 0 0;
    font-weight: 750;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: rgba(255, 255, 255, .94);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 24px;
    border: 0;
    font-weight: 950;
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #789925);
    border: 1px solid rgba(255, 255, 255, .20);
}

.btn-orange {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #ff9f1f);
}

.btn-green {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #174b26);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .58);
    backdrop-filter: blur(12px);
}

.hero-badges {
    justify-self: end;
    display: grid;
    gap: 13px;
    width: min(100%, 210px);
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    background: rgba(43, 39, 11, .80);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 17px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
    backdrop-filter: blur(12px);
}

.hero-badge strong {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
    font-size: 1.25rem;
}

.hero-badge span {
    display: grid;
    font-weight: 950;
    line-height: 1.1;
}

.hero-badge small {
    font-weight: 800;
    color: rgba(255, 255, 255, .86);
    margin-top: 3px;
}

.hero-curve {
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -1px;
    height: 66px;
    background: var(--cream);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: translateY(33px);
}

/* BOOKING */
.booking-panel-wrap {
    position: relative;
    z-index: 10;
    margin-top: -38px;
}

.booking-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    align-items: stretch;
    background: rgba(255, 255, 255, .95);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(64, 55, 31, .18);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .78);
    backdrop-filter: blur(14px);
}

.booking-panel label {
    display: grid;
    gap: 3px;
    padding: 18px 24px;
    border-right: 1px solid var(--line);
}

.booking-panel span {
    font-size: .86rem;
    font-weight: 950;
}

.booking-panel input,
.booking-panel select {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--dark);
    min-width: 0;
}

.booking-panel button {
    margin: 14px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--accent), #fb8b12);
    color: #fff;
    font-weight: 950;
    padding: 0 23px;
    white-space: nowrap;
}

/* SECTIONS */
.section {
    padding: 64px 0;
}

.compact-section {
    padding-top: 18px;
}

.section-eyebrow {
    margin: 0 0 7px;
    color: #0f6a2e;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 1.55rem;
    font-weight: 800;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.section-title.centered {
    justify-content: center;
    text-align: center;
}

.section-title h2,
.about-copy h2,
.rich-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-title span {
    width: 46px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.small-title h2 {
    font-size: clamp(1.6rem, 2vw, 2rem);
}

.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.55fr;
    gap: 48px;
    align-items: center;
}

.about-copy p:not(.section-eyebrow) {
    max-width: 470px;
    color: #31443f;
}

.about-images {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr;
    gap: 12px;
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.about-main-img {
    border-radius: 20px;
    min-height: 280px;
}

.about-side {
    display: grid;
    gap: 12px;
}

.about-side img {
    border-radius: 18px;
    min-height: 130px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.image-card {
    position: relative;
    min-height: 230px;
    border-radius: 20px;
    overflow: hidden;
    background: #123;
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .78));
    z-index: 1;
}

.image-card img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    transition: transform .42s ease;
}

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

.image-card-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 24px;
    color: #fff;
}

.round-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(74, 111, 23, .92);
    border: 1px solid rgba(255, 255, 255, .36);
    font-size: 2rem;
    margin-bottom: 16px;
    box-shadow: inset 0 1px rgba(255, 255, 255, .28);
}

.image-card h3 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1;
}

.image-card p {
    margin: 7px 0 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, .90);
}

.image-card a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #fff;
    color: var(--secondary);
    border-radius: 999px;
    padding: 8px 15px;
    font-weight: 950;
    font-size: .88rem;
}

.amenity-activity-section {
    position: relative;
    padding-top: 32px;
}

.amenity-activity-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -90px;
    width: 390px;
    height: 390px;
    background: radial-gradient(circle, rgba(63, 100, 24, .11), transparent 65%);
    pointer-events: none;
}

.split-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 32px;
    align-items: start;
}

.amenities-box {
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(64, 100, 24, .12);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.amenity-item {
    min-height: 90px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 6px;
    padding: 10px 8px;
    background: #fff;
    border: 1px solid rgba(13, 27, 34, .08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(31, 39, 35, .12);
}

.amenity-item span {
    color: #0f6a2e;
    font-size: 1.65rem;
}

.amenity-item strong {
    font-size: .78rem;
    line-height: 1.16;
}

.activity-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.activity-card {
    position: relative;
    min-height: 164px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #123;
}

.activity-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .74));
}

.activity-card img {
    width: 100%;
    height: 100%;
    min-height: 164px;
    object-fit: cover;
}

.activity-card h3 {
    position: absolute;
    z-index: 2;
    left: 12px;
    right: 12px;
    bottom: 12px;
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: .98rem;
    line-height: 1.1;
}

.gallery-strip-section {
    padding: 26px 0 40px;
}

.gallery-strip {
    width: min(100%, 1260px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.strip-img {
    display: block;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
}

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

.centered-action {
    text-align: center;
    margin-top: -16px;
    position: relative;
    z-index: 3;
}

.bottom-feature-section {
    padding-top: 22px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: .9fr 1.05fr 1.1fr;
    gap: 18px;
    align-items: stretch;
}

.testimonial-feature,
.location-card,
.cta-card,
.info-card,
.feature-card {
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.testimonial-feature {
    background: #fff;
    padding: 28px;
    position: relative;
    min-height: 180px;
}

.testimonial-feature h2 {
    margin: 0 0 14px;
    font-size: 1.35rem;
}

.testimonial-feature h2 span {
    color: var(--accent);
    font-size: 3rem;
    vertical-align: middle;
}

.testimonial-feature p {
    color: #374940;
    margin: 0 0 16px;
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 1.05rem;
}

.location-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    background: #e7eddd;
}

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

.map-info {
    position: absolute;
    left: 18px;
    top: 16px;
    width: min(72%, 330px);
    background: rgba(255, 255, 255, .70);
    border-radius: 18px;
    padding: 16px;
    backdrop-filter: blur(10px);
}

.map-info h2 {
    margin: 0 0 4px;
    font-family: Georgia, serif;
}

.map-info p {
    margin: 4px 0 12px;
    color: #33423a;
    font-size: .9rem;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.map-actions a {
    display: inline-flex;
    background: var(--primary);
    color: #fff;
    padding: 8px 13px;
    border-radius: 10px;
    font-weight: 850;
    font-size: .83rem;
}

.map-actions .whatsapp-mini {
    background: #eaffea;
    color: #1d7d35;
}

.cta-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    isolation: isolate;
    background-image: linear-gradient(90deg, rgba(7, 23, 23, .86), rgba(7, 23, 23, .33)), var(--cta-bg);
    background-size: cover;
    background-position: center;
}

.cta-card h2 {
    max-width: 500px;
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    line-height: 1.05;
}

.cta-card p {
    margin: 0 0 18px;
    font-weight: 800;
    color: rgba(255, 255, 255, .9);
}

/* INNER PAGES */
.sub-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 112px;
    padding-bottom: 62px;
    background-image:
        linear-gradient(90deg, rgba(5, 18, 25, .88), rgba(5, 18, 25, .45)),
        var(--sub-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sub-hero::after {
    content: "";
    position: absolute;
    inset: auto -6% -34px -6%;
    height: 70px;
    background: var(--cream);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.sub-hero .container {
    position: relative;
    z-index: 2;
}

.sub-hero h1 {
    max-width: 860px;
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.sub-hero p:not(.script-label) {
    max-width: 670px;
    font-size: 1.15rem;
    font-weight: 750;
    color: rgba(255, 255, 255, .92);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.rich-copy p {
    color: #31443f;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.mini-stats span {
    display: grid;
    gap: 3px;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    color: #53625d;
}

.mini-stats strong {
    color: var(--primary);
    font-size: 1.5rem;
}

.stacked-images {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 12px;
}

.stacked-images img {
    height: 210px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.stacked-images img:first-child {
    grid-row: span 2;
    height: 432px;
}

.light-panel-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, .05));
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-grid.large {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(13, 27, 34, .08);
    padding: 26px;
}

.feature-card span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(63, 100, 24, .12);
    color: var(--primary);
    font-size: 1.7rem;
    margin-bottom: 18px;
}

.feature-card h2,
.feature-card h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.feature-card p {
    margin: 0;
    color: #51635d;
}

.accommodation-list {
    display: grid;
    gap: 34px;
}

.accommodation-detail {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 32px;
    align-items: center;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(13, 27, 34, .08);
    border-radius: 26px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.accommodation-detail.reverse {
    grid-template-columns: 1.05fr .95fr;
}

.accommodation-detail.reverse img {
    order: 2;
}

.accommodation-detail > img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
}

.detail-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.8rem;
}

.accommodation-detail h2 {
    margin: 16px 0 10px;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0;
}

.detail-meta span {
    border-radius: 999px;
    background: #fff;
    padding: 8px 13px;
}

.tick-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
}

.tick-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 900;
    margin-right: 8px;
}

.activity-page-grid,
.gallery-page-grid {
    display: grid;
    gap: 22px;
}

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

.activity-large-card,
.gallery-tile {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.activity-large-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.activity-large-card div {
    padding: 22px;
}

.activity-large-card h2 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
}

.activity-large-card a {
    color: var(--primary);
    font-weight: 950;
}

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

.gallery-tile {
    position: relative;
    min-height: 260px;
    color: #fff;
}

.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, .78));
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-tile:hover img {
    transform: scale(1.06);
}

.gallery-tile span,
.gallery-tile strong {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
}

.gallery-tile span {
    bottom: 54px;
    color: #ffcf87;
    font-weight: 900;
    font-size: .85rem;
}

.gallery-tile strong {
    bottom: 20px;
    font-size: 1.18rem;
}

.contact-grid,
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-cards article,
.form-card,
.info-card {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(13, 27, 34, .08);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.contact-cards article span {
    color: var(--primary);
    font-size: 2rem;
}

.contact-cards h2 {
    margin: 8px 0 4px;
}

.contact-cards a {
    color: var(--primary);
    font-weight: 950;
}

.map-wide {
    grid-column: 1 / -1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-wide img {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
}

.form-card {
    display: grid;
    gap: 14px;
}

.form-card h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 2rem;
}

.form-card p {
    margin: 0 0 4px;
    color: #53625d;
}

.form-card label {
    display: grid;
    gap: 6px;
    font-weight: 850;
}

.form-card input,
.form-card textarea,
.form-card select {
    width: 100%;
    border: 1px solid rgba(13, 27, 34, .12);
    border-radius: 14px;
    background: #fff;
    padding: 13px 14px;
    outline: 0;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
    border-color: rgba(63, 100, 24, .65);
    box-shadow: 0 0 0 4px rgba(63, 100, 24, .12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.check-label {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px !important;
    font-size: .9rem;
    color: #4a5b55;
}

.check-label input {
    width: auto;
    margin-top: 4px;
}

.hidden-field {
    display: none !important;
}

.reservation-info {
    display: grid;
    gap: 16px;
}

.info-card h2 {
    margin-top: 0;
}

.info-card ul {
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.dark-card {
    background: linear-gradient(135deg, var(--secondary), #061d18);
    color: #fff;
}

.dark-card p {
    color: rgba(255, 255, 255, .85);
}

.reservation-code {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .28);
}

.hero-actions.inline {
    margin-top: 18px;
}

/* FOOTER */
.site-footer {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(6, 32, 26, .96), rgba(2, 18, 17, .98)),
        radial-gradient(circle at 80% 0, rgba(63, 100, 24, .35), transparent 28rem);
    margin-top: 20px;
    padding: 42px 0 18px;
}

.footer-mountains {
    position: absolute;
    inset: auto 0 0 0;
    height: 160px;
    opacity: .20;
    background:
        linear-gradient(135deg, transparent 60%, #fff 60%) 0 100%/120px 90px repeat-x,
        linear-gradient(225deg, transparent 60%, #fff 60%) 60px 100%/120px 120px repeat-x;
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.45fr .9fr 1.05fr 1fr;
    gap: 34px;
}

.footer-brand img {
    width: 220px;
}

.footer-brand p,
.footer-contact,
.footer-links,
.site-footer p {
    color: rgba(255, 255, 255, .78);
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    font-weight: 950;
}

.site-footer h3 {
    margin: 8px 0 12px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-cta {
    display: inline-flex;
    margin-top: 8px;
    border-radius: 999px;
    padding: 10px 14px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 34px;
    padding-top: 16px;
    color: rgba(255, 255, 255, .64);
    font-size: .92rem;
}

.whatsapp-float {
    position: fixed;
    right: 26px;
    bottom: 24px;
    z-index: 90;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #15a83c;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 18px 40px rgba(21, 168, 60, .35);
    border: 4px solid rgba(255, 255, 255, .26);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

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

/* RESPONSIVE */
@media (max-width: 1100px) {
    .main-nav {
        gap: 14px;
    }

    .header-reserve {
        padding: 11px 14px;
    }

    .booking-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-panel button {
        grid-column: 1 / -1;
        min-height: 54px;
    }

    .split-layout,
    .bottom-grid,
    .contact-grid,
    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .activity-row {
        grid-template-columns: repeat(5, minmax(135px, 1fr));
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .bottom-grid {
        max-width: 780px;
    }
}

@media (max-width: 920px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        top: 84px;
        left: 14px;
        right: 14px;
        display: grid;
        gap: 0;
        background: rgba(7, 24, 22, .97);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 22px;
        padding: 12px;
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    .main-nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a {
        padding: 12px;
        border-radius: 12px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(255, 255, 255, .10);
    }

    .main-nav a::after {
        display: none;
    }

    .header-reserve {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 122px;
    }

    .hero-badges {
        justify-self: start;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .hero-badge {
        display: grid;
        text-align: center;
        justify-items: center;
        padding: 12px;
    }

    .about-grid,
    .two-column,
    .accommodation-detail,
    .accommodation-detail.reverse,
    .card-grid,
    .feature-grid,
    .feature-grid.large,
    .activity-page-grid,
    .gallery-page-grid {
        grid-template-columns: 1fr 1fr;
    }

    .accommodation-detail.reverse img {
        order: 0;
    }

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

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

@media (max-width: 680px) {
    .brand {
        min-width: 168px;
    }

    .brand img {
        width: 168px;
    }

    .site-header {
        padding: 12px 0;
    }

    .hero-section {
        min-height: 650px;
        background-position: 60% center;
    }

    .hero-copy h1,
    .sub-hero h1 {
        font-size: clamp(2.5rem, 13vw, 4.2rem);
    }

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

    .hero-badge {
        display: flex;
        text-align: left;
        justify-items: start;
    }

    .hero-actions,
    .form-row,
    .booking-panel,
    .about-grid,
    .about-images,
    .card-grid,
    .split-layout,
    .bottom-grid,
    .two-column,
    .feature-grid,
    .feature-grid.large,
    .accommodation-detail,
    .activity-page-grid,
    .gallery-page-grid,
    .contact-grid,
    .contact-cards,
    .reservation-grid,
    .footer-grid,
    .mini-stats,
    .stacked-images {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .booking-panel label {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

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

    .strip-img {
        height: 105px;
    }

    .activity-row {
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
    }

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

    .accommodation-detail > img,
    .stacked-images img,
    .stacked-images img:first-child {
        height: 260px;
    }

    .tick-list {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
