:root {
    --gold: #b88a3b;
    --gold-light: #c79a45;
    --gold-dark: #8f6728;
    --dark: #101010;
    --navy: #081522;
    --cream: #f7f3ea;
    --cream-light: #faf8f2;
    --text: #222;
    --muted: #777;
    --warm-cream: #f7f3ea;

    --font-heading: "Cormorant Garamond", serif;
    --font-display: "Cinzel", serif;
    --font-body: "Inter", Arial, Helvetica, sans-serif;
}

/* RESET */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--warm-cream);
}

h1,
h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -.02em;
}

h3,
.eyebrow,
.nav a,
.btn,
.stat strong,
.stat p,
.booking-box h3,
.booking-box label {
    font-family: var(--font-display);
}

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

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

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

button {
    background: none;
}

/* GLOBAL */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

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

.btn.gold {
    background: var(--gold);
    color: #fff;
}

.btn.gold:hover {
    background: var(--gold-light);
}

.btn.outline {
    border: 1px solid var(--gold);
    color: var(--text);
}

.btn.outline:hover {
    background: var(--gold);
    color: #fff;
}

.full {
    width: 100%;
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 12px;
    margin-bottom: 12px;
}

.white {
    color: #fff !important;
}

/* HEADER */

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 22px 5%;
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
    gap: 30px;
    color: #fff;
}

.logo {
    display: block;
}

.logo img {
    width: 175px;
    height: auto;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
}

.nav {
    justify-self: end;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 14px 24px;
    background: linear-gradient(
        135deg,
        rgba(2,28,51,.78),
        rgba(6,58,91,.58),
        rgba(4,125,137,.32)
    );
    border: 1px solid rgba(215,180,95,.45);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 35px rgba(0,0,0,.28);
}

.nav a {
    position: relative;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transform: translateX(-50%);
    transition: width .25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
}

/* MOBILE MENU */

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.25);
    border-radius: 50%;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10,18,28,.98);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    padding: 80px 30px 40px;
    text-align: center;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu a {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mobile-menu .btn {
    width: fit-content;
    color: #fff;
    margin: 0 auto;
}

.mobile-menu-close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* HERO */

.hero {
    min-height: 680px;
    background:
        linear-gradient(
            90deg,
            rgba(2,28,51,.88) 0%,
            rgba(2,28,51,.76) 35%,
            rgba(6,58,91,.62) 62%,
            rgba(0,0,0,.72) 100%
        ),
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.58)
        ),
        var(--hero-image) center/cover no-repeat;
    color: #fff;
    padding: 270px 5% 0;
}

.hero h1,
.hero h3,
.hero p {
    text-shadow: 0 4px 18px rgba(0,0,0,.65);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 360px;
    gap: 80px;
    align-items: center;
    max-width: 1920px;
    margin: auto;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    margin: 0 0 20px;
}

.hero h3 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 400;
}

.hero p {
    max-width: 560px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    margin-top: 35px;
}

.video {
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.video span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
}

/* BOOKING / ENQUIRY FORM */

.booking-box {
    background: rgba(10,10,10,.92);
    padding: 28px 36px;
    border: 1px solid rgba(184,138,59,.35);
    border-radius: 15px;
    margin-bottom: 40px;
}

.booking-box h3 {
    margin-bottom: 0;
    text-align: center;
    color: var(--gold-light);
}

.booking-box input,
.booking-box textarea {
    width: 100%;
    display: block;
    margin-bottom: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.96);
    color: var(--text);
    font-size: 15px;
    line-height: 1.4;
    outline: none;
}

.booking-box textarea {
    min-height: 130px;
    resize: vertical;
}

.booking-box input:focus,
.booking-box textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(184,138,59,.18);
}

.booking-box .btn {
    margin-top: 6px;
    min-height: 50px;
}

/* ENQUIRY MODAL */

.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

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

.enquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4,13,22,.82);
    backdrop-filter: blur(8px);
}

.enquiry-modal-box {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
}

.enquiry-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(199,154,69,.65);
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}

.enquiry-form {
    padding: 42px;
    border: 1px solid rgba(184,138,59,.45);
    box-shadow: 0 28px 80px rgba(0,0,0,.45);
}

.enquiry-form h3 {
    margin-bottom: 28px;
    color: var(--gold-light);
    font-size: 2em;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.96);
    color: var(--text);
    outline: none;
}

.enquiry-form textarea {
    min-height: 130px;
    resize: vertical;
}

.enquiry-date-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.enquiry-date-grid input {
    margin-bottom: 15px;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(184,138,59,.18);
}

body.modal-open {
    overflow: hidden;
}

/* STATS */

.stats {
    background: #0f0f0f;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 24px 5%;
    text-align: center;
}

.stat {
    border-right: 1px solid rgba(184,138,59,.5);
}

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

.stat span {
    color: var(--gold);
    font-size: 28px;
}

.stat strong {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 8px;
}

.stat p {
    margin: 3px 0 0;
    text-transform: uppercase;
    font-size: 12px;
}

/* VILLA */

.villa {
    background: var(--cream);
    padding: 30px 0 80px;
}

.vcontainer {
    display: grid;
    grid-template-columns: 35% 65%;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.villa-copy {
    padding: 80px 50px;
}

.villa-copy h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.villa-copy p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.villa-copy ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.villa-copy li {
    margin: 13px 0;
    line-height: 1.45;
}

.villa-copy li::before {
    content: "✓";
    color: var(--gold);
    margin-right: 10px;
    font-weight: 700;
}

.gallery {
    padding: 45px 45px 0 0;
}

.gallery-main {
    height: 420px;
    object-fit: cover;
}

.gallery-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.gallery-small figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.gallery-small img {
    height: 170px;
    object-fit: cover;
}

.gallery-small figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px;
    color: #fff;
    text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,.8));
    text-transform: uppercase;
    font-size: 13px;
}

/* AMENITIES PAGE */

.amenities-intro {
    padding-bottom: 0;
}

.amenities-intro .vcontainer {
    align-items: center;
    max-width: 1600px;
}

.amenities-feature-image {
    padding: 45px 45px 45px 0;
}

.amenities-feature-image img {
    height: 520px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.amenities-section {
    background: var(--cream-light);
    padding: 80px 5%;
} 

.amenities-wrap {
    max-width: 1600px;
    margin: 0 auto;
}

.amenities-wrap > h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 10px 0 35px;
}

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

.amenity-card {
    background: #fff;
    padding: 28px;
    border: 1px solid rgba(184,138,59,.22);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.amenity-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184,138,59,.45);
    box-shadow: 0 24px 60px rgba(0,0,0,.09);
}

.amenity-card h3 {
    color: var(--gold-dark);
    font-size: 18px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.amenity-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-card li {
    position: relative;
    padding-left: 22px;
    margin: 11px 0;
    line-height: 1.45;
    color: var(--text);
}

.amenity-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* LOCATION */

.location {
    display: grid;
    grid-template-columns: 35% 35% 30%;
    background: var(--navy);
    padding: 0;
}

.location-image img {
    height: 430px;
    object-fit: cover;
}

.location-content {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.location h2 {
    font-size: 38px;
    color: #fff;
    line-height: 1.12;
}

.location-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 25px 0;
}

.location-points p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.location-points span {
    display: block;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    margin-top: 4px;
}

.map-card img {
    max-height: 830px;
    object-fit: cover;
}

/* AMENITIES LOCATION VARIANT */

.amenities-location {
    grid-template-columns: 32.5% 35% 32.5%;
}

.amenities-location .location-image img {
    height: 520px;
}

.amenities-location .location-content {
    padding: 60px;
}

.amenities-location .location-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.amenities-location .location-points p {
    padding-top: 14px;
    border-top: 1px solid rgba(184,138,59,.35);
}

.amenities-location .btn {
    margin-top: 12px;
}

/* REVIEWS */

.reviews {
    text-align: center;
    padding: 60px 5%;
    background: var(--cream-light);
}

.reviews h2 {
    font-size: 36px;
    margin-top: 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 35px auto 0;
}

.review {
    padding: 0 35px;
    border-right: 1px solid #ddd;
}

.review:last-child {
    border-right: 0;
}

.stars {
    color: var(--gold);
    font-size: 24px;
}

/* FOOTER */

.site-footer {
    background: var(--navy);
    color: #fff;
    padding: 60px 5% 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer h3,
.site-footer h4 {
    color: var(--gold-light);
    margin-top: 0;
}

.site-footer p {
    line-height: 1.7;
    max-width: 420px;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,.82);
    margin: 9px 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 40px;
    padding-top: 18px;
    text-align: center;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.8;
}

.footer-links {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.footer-bottom a {
    display: inline;
    color: rgba(215,180,95,.9);
    padding: 0 16px;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-translate {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.footer-translate span {
    color: var(--gold-light);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
}

/* GTRANSLATE */

.gtranslate_wrapper {
    display: inline-flex;
    align-items: center;
}

.gtranslate_wrapper select,
.gt_selector {
    min-width: 170px;
    height: 40px;
    padding: 0 38px 0 14px;
    border: 1px solid rgba(215,180,95,.45);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(2,28,51,.92), rgba(6,58,91,.82)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d7b45f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 14px no-repeat;
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    appearance: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.22);
}

.gtranslate_wrapper select:hover,
.gt_selector:hover {
    border-color: rgba(215,180,95,.85);
}

.gtranslate_wrapper select:focus,
.gt_selector:focus {
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(215,180,95,.18);
}

.gtranslate_wrapper select option,
.gt_selector option {
    background: #081522;
    color: #fff;
}

/* SCROLL TOP */

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(199,154,69,.7);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0,0,0,.35);
}

.scroll-top i {
    line-height: 1;
}

/* FLATPICKR */

.flatpickr-calendar {
    font-family: inherit;
    border-radius: 0;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.flatpickr-day.today {
    border-color: var(--gold-light);
}

/* TABLET */

@media (max-width: 1100px) {
    .header {
        grid-template-columns: 200px 1fr;
    }

    .logo img {
        width: 180px;
    }

    .nav {
        gap: 22px;
        padding: 13px 20px;
    }

    .nav a {
        font-size: 12px;
    }

    .hero-inner {
        gap: 50px;
    }

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

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

    .amenities-feature-image {
        padding: 0 25px 45px;
    }
}

/* MOBILE */

@media (max-width: 900px) {
    .header {
        position: fixed;
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 12px 18px;
        background: rgba(5,13,22,.92);
        backdrop-filter: blur(12px);
    }

    .logo img {
        width: 120px;
    }

    .nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 200px 22px 60px;
    }

    .hero-inner,
    .location,
    .location-content,
    .amenities-location {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-box {
        margin-top: 30px;
        margin-bottom: 10px;
    }

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

    .stat,
    .review {
        border-right: 0;
        border-bottom: 1px solid rgba(184,138,59,.35);
        padding: 18px 0;
    }

    .review:last-child,
    .stat:last-child {
        border-bottom: 0;
    }

    .villa {
        padding: 25px 0 55px;
    }

    .villa-copy,
    .location-content {
        padding: 45px 25px;
    }

    .gallery {
        padding: 0 20px 40px;
    }

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

    .amenities-location .location-image img,
    .location-image img {
        height: 340px;
    }

    .amenities-location .location-points {
        grid-template-columns: 1fr 1fr;
    }

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

/* SMALL MOBILE */

@media (max-width: 700px) {
    .hero h1 {
        font-size: 38px;
    }

    .reviews h2,
    .villa-copy h2,
    .location h2,
    .amenities-wrap > h2 {
        font-size: 32px;
    }

    .amenities-section {
        padding: 55px 22px;
    }

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

    .amenity-card {
        padding: 24px;
    }

    .amenities-feature-image img {
        height: 340px;
    }

    .amenities-location .location-points,
    .location-points {
        grid-template-columns: 1fr;
    }

    .amenities-location .location-content {
        padding: 45px 25px;
    }

    .enquiry-modal {
        padding: 18px;
    }

    .enquiry-form {
        padding: 34px 24px;
    }

    .enquiry-date-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .enquiry-modal-close {
        top: -14px;
        right: -10px;
    }

    .footer-translate {
        flex-direction: column;
    }

    .gtranslate_wrapper select,
    .gt_selector {
        width: 100%;
        max-width: 260px;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

.accommodation-section {
    background: var(--cream);
    padding: 80px 5%;
}

.accommodation-wrap {
    max-width: 1600px;
    margin: 0 auto;
}

.accommodation-copy {
    max-width: 760px;
    margin-bottom: 38px;
}

.accommodation-copy h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.accommodation-copy p {
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.accommodation-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(184,138,59,.22);
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.accommodation-card h3 {
    color: var(--gold-dark);
    font-size: 18px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.accommodation-card p {
    line-height: 1.65;
}

@media (max-width: 900px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .accommodation-section {
        padding: 55px 22px;
    }

    .accommodation-copy h2 {
        font-size: 32px;
    }

    .accommodation-card {
        padding: 24px;
    }
}

.rates-section {
    background: var(--navy);
    color: #fff;
    padding: 80px 5%;
}

.rates-wrap {
    max-width: 1600px;
    margin: 0 auto;
}

.rates-intro {
    max-width: 760px;
    margin-bottom: 38px;
}

.rates-intro h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.rates-intro p {
    line-height: 1.7;
    color: rgba(255,255,255,.78);
}

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

.rate-card {
    background: rgba(255,255,255,.06);
    padding: 28px;
    border: 1px solid rgba(184,138,59,.35);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.rate-card h3 {
    color: var(--gold-light);
    font-size: 18px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.rate-dates {
    min-height: 82px;
    color: rgba(255,255,255,.72);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.rate-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rate-card li {
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.rate-card li strong,
.rate-card li span {
    display: block;
}

.rate-card li strong {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 5px;
}

.rate-card li span {
    color: var(--gold-light);
    font-weight: 700;
}

.featured-rate {
    background: linear-gradient(135deg, rgba(184,138,59,.24), rgba(255,255,255,.06));
}

.rates-notes {
    margin-top: 34px;
    max-width: 860px;
}

.rates-notes p {
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    margin-bottom: 12px;
}

.rates-notes strong {
    color: #fff;
}

.rates-notes .btn {
    margin-top: 18px;
}

@media (max-width: 1100px) {
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .rates-section {
        padding: 55px 22px;
    }

    .rates-intro h2 {
        font-size: 32px;
    }

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

    .rate-dates {
        min-height: auto;
    }
}

.samui-section,
.recommended-beaches {
    padding: 80px 5%;
}

.samui-section {
    background: var(--cream);
}

.recommended-beaches {
    background: var(--cream-light);
}

.samui-wrap,
.beaches-wrap {
    max-width: 1600px;
    margin: 0 auto;
}

.samui-intro {
    max-width: 820px;
    margin-bottom: 45px;
}

.samui-intro h2,
.beaches-wrap h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 12px 0 20px;
}

.samui-intro p {
    line-height: 1.8;
    margin-bottom: 18px;
}

.samui-highlights,
.beaches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.samui-card,
.beach-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(184,138,59,.22);
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    transition: .25s ease;
}

.samui-card:hover,
.beach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,.1);
}

.samui-card h3,
.beach-card h3 {
    color: var(--gold-dark);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 18px;
}

.samui-card p,
.beach-card p {
    line-height: 1.7;
}

@media (max-width:1100px){

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

}

@media (max-width:700px){

    .samui-section,
    .recommended-beaches{
        padding:55px 22px;
    }

    .samui-intro h2,
    .beaches-wrap h2{
        font-size:32px;
    }

    .samui-highlights,
    .beaches-grid{
        grid-template-columns:1fr;
    }

}

.gallery-page-section {
    background: var(--cream-light);
    padding: 80px 5%;
}

.gallery-page-wrap {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-page-wrap h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 12px 0 35px;
}

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

.gallery-page-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: var(--navy);
    aspect-ratio: 1 / 1;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, opacity .35s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.06);
    opacity: .86;
}

/* Hide GLightbox descriptions / captions */
.gdesc-inner,
.gslide-description,
.glightbox-clean .gdesc-inner,
.glightbox-modern .gdesc-inner {
    display: none !important;
}

@media (max-width: 1200px) {
    .gallery-page-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .gallery-page-section {
        padding: 55px 22px;
    }

    .gallery-page-wrap h2 {
        font-size: 32px;
    }
}

.gallery-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.gallery-page-link {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(184,138,59,.28);
    border-radius: 999px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.gallery-page-link:hover,
.gallery-page-link.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.page-content {
    padding: 80px 5%;
    background: var(--cream);
}

.content-wrap {
    max-width: 1600px;
    margin: 0 auto;
}

.content-wrap h1 {
    font-size: 46px;
    margin: 10px 0 30px;
}

.content-wrap h2 {
    font-size: 28px;
    margin: 40px 0 15px;
}

.content-wrap p {
    max-width: 900px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.rules-list {
    max-width: 900px;
    margin: 35px 0;
    padding: 0;
    list-style: none;
}

.rules-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.rules-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

@media (max-width:700px) {

    .page-content {
        padding: 55px 22px;
    }

    .content-wrap h1 {
        font-size: 34px;
    }

    .content-wrap h2 {
        font-size: 24px;
    }

}

.contact-page-section {
    background: var(--cream);
    padding: 90px 5%;
}

.contact-page-wrap {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: start;
}

.contact-copy h1 {
    font-size: 46px;
    line-height: 1.1;
    margin: 10px 0 24px;
}

.contact-copy p {
    max-width: 720px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-details {
    display: grid;
    gap: 12px;
}

.contact-details a,
.contact-details span {
    color: var(--text);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--gold-dark);
}

.contact-form {
    margin-bottom: 0;
}

.contact-form h3 {
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .contact-page-wrap {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 700px) {
    .contact-page-section {
        padding: 55px 22px;
    }

    .contact-copy h1 {
        font-size: 34px;
    }
}

.form-message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.form-message.success {
    background: rgba(75,150,95,.14);
    border: 1px solid rgba(75,150,95,.35);
    color: #d7ffe1;
}

.contact-form .form-message.success {
    color: #24623a;
}

.form-message.error {
    background: rgba(180,50,50,.14);
    border: 1px solid rgba(180,50,50,.35);
    color: #ffdede;
}

.contact-form .form-message.error {
    color: #8d2020;
}


.breadcrumb-section {
    background: var(--cream-light);
    padding: 18px 5%;
    border-bottom: 1px solid rgba(184,138,59,.18);
}

.breadcrumb-section .container {
    max-width: 1600px;
    margin: 0 auto;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 9px;
    color: rgba(184,138,59,.75);
}

.breadcrumb a {
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

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

.breadcrumb .current {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 700px) {
    .breadcrumb-section {
        padding: 14px 22px;
    }

    .breadcrumb li {
        font-size: 12px;
    }
}

