:root {
    --navy: #0b1f3a;
    --navy-2: #14345b;
    --gold: #d4af37;
    --gold-soft: #ecd581;
    --cream: #fbf7ef;
    --sand: #efe6d2;
    --text: #203040;
    --muted: #4f6074;
    --white: #ffffff;
    --border: rgba(11, 31, 58, 0.12);
    --shadow: 0 22px 48px rgba(11, 31, 58, 0.12);
    --container: min(1200px, calc(100% - 32px));
    --header-height: 96px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Times New Roman", Times, serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 24%),
        linear-gradient(180deg, #fffdf8 0%, #f8f2e7 100%);
    overflow-x: hidden;
}

body.no-hero {
    padding-top: calc(var(--header-height) + 18px);
}

p {
    font-size: clamp(1.04rem, 0.98rem + 0.35vw, 1.22rem);
    line-height: 1.8;
    color: #000000;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-home {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.solid,
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
    box-shadow: 0 12px 28px rgba(5, 16, 30, 0.08);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0));
    opacity: 0.9;
}

.nav-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--navy);
    min-width: 0;
}

.brand-mark {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy small {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(11, 31, 58, 0.62);
}

.brand-copy strong {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 1.52rem;
    margin-top: 2px;
}

.brand-inline-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 auto;
    background: transparent;
}

.brand-inline-badge img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 8px;
    color: rgba(11, 31, 58, 0.88);
    font-size: 1.18rem;
}

.nav-prefix {
    font-size: 0.72rem;
    line-height: 1;
    color: rgba(11, 31, 58, 0.68);
    transform: translateY(-1px);
}

.site-nav a.active,
.site-nav a.active:hover {
    color: rgba(11, 31, 58, 0.88);
    background: none;
    -webkit-text-fill-color: initial;
}

.site-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.26);
}

.btn-outline-light {
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.82);
    background: rgba(11, 31, 58, 0.82);
    box-shadow: 0 14px 28px rgba(11, 31, 58, 0.22);
}

.btn-outline-light:hover {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.btn-outline-dark {
    color: var(--navy);
    border: 1px solid rgba(11, 31, 58, 0.18);
    background: transparent;
}

.btn-navy {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-2), var(--navy));
    box-shadow: 0 14px 28px rgba(11, 31, 58, 0.24);
}

.btn-whatsapp {
    color: var(--white);
    background: linear-gradient(135deg, #25d366, #1ebe57);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
    min-width: 64px;
    width: 64px;
    min-height: 64px;
    padding: 10px;
}

.btn-whatsapp img {
    width: 34px;
    height: 34px;
    display: block;
    flex: 0 0 34px;
}

.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(11, 31, 58, 0.18);
    border-radius: 14px;
    background: transparent;
    color: var(--navy);
    font-size: 1.25rem;
}

.hero-slider {
    position: relative;
    min-height: 82vh;
    margin-top: var(--header-height);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 82vh;
    object-fit: cover;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 31, 58, 0.82), rgba(11, 31, 58, 0.52) 45%, rgba(11, 31, 58, 0.68)),
        linear-gradient(180deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.34));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-content {
    width: var(--container);
    margin: 0 auto;
    color: var(--white);
    max-width: 760px;
}

.eyebrow {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--navy);
    background: linear-gradient(135deg, #fffbe0 0%, #ffec8a 40%, #f7cc22 100%);
    box-shadow: 0 16px 34px rgba(255, 236, 138, 0.58);
    border: 1px solid rgba(255, 250, 222, 0.9);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-content h1,
.page-hero-copy h1 {
    margin: 18px 0 0;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.95;
}

.hero-content p,
.page-hero-copy p {
    margin: 18px 0 0;
    font-size: 1.26rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.hero-controls {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--gold);
}

.hero-arrows,
.mini-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.hero-arrows {
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    transform: translateY(-50%);
}

.mini-arrows {
    position: absolute;
    top: 50%;
    left: 18px;
    right: 18px;
    transform: translateY(-50%);
    z-index: 2;
}

.circle-arrow {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(255, 255, 255, 0.94);
    color: var(--gold);
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(11, 31, 58, 0.16);
    pointer-events: auto;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.circle-arrow:hover {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    box-shadow: 0 18px 32px rgba(212, 175, 55, 0.26);
    transform: translateY(-2px);
}

.section {
    position: relative;
    padding: 60px 0;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, calc(100% - 32px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(11, 31, 58, 0), rgba(11, 31, 58, 0.14), rgba(11, 31, 58, 0));
}

.section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 230, 210, 0.5));
}

.section:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.34);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
    margin-bottom: 24px;
}

.section-head-centered {
    max-width: 860px;
    margin-inline: auto;
    margin-bottom: 48px;
    text-align: center;
}

.section-head-centered,
.section-head-centered div {
    display: block;
}

.section-head-centered p {
    max-width: 760px;
    margin: 18px auto 0;
}

.section-tag {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.section-head h2 {
    margin: 12px 0 0;
    font-size: clamp(2.2rem, 4.3vw, 3.6rem);
    line-height: 1.05;
    color: var(--navy);
}

.section-head p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    font-size: 1.14rem;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.image-card,
.banner-card,
.testimonial-card,
.contact-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.card {
    padding: 30px;
}

.card p,
.banner-card p,
.testimonial-card p,
.contact-card p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.12rem;
}

.image-card {
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-story-grid {
    align-items: start;
}

.about-story-copy {
    min-height: 0;
}

.about-story-image {
    height: 430px;
}

.about-story-image img {
    display: block;
    height: 100%;
    min-height: 0;
}

.room-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.room-card img {
    display: block;
    width: 100%;
    height: 420px;
    min-height: 420px;
    flex: 0 0 auto;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.room-card:hover img,
.gallery-card:hover img {
    transform: scale(1.05);
}

.room-body {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 14px 18px 16px;
}

.pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(212, 175, 55, 0.18);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
}

.room-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.room-body p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.55;
}

.price {
    color: var(--gold);
    font-size: 1.55rem;
    font-weight: 700;
}

.icon-box {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    font-weight: 700;
    margin-bottom: 18px;
}

.facility-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.facility-card::before {
    content: "";
    position: absolute;
    top: -54px;
    right: -38px;
    width: 136px;
    height: 136px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0));
    pointer-events: none;
}

.facility-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.24);
    box-shadow: 0 24px 44px rgba(11, 31, 58, 0.14);
}

.facility-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--navy);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.26), rgba(212, 175, 55, 0.56));
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.16);
}

.facility-icon svg {
    width: 28px;
    height: 28px;
}

.facility-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 1.42rem;
}

.facility-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.mini-slider {
    position: relative;
    overflow: hidden;
    padding: 30px 88px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(11, 31, 58, 1), rgba(20, 52, 91, 0.94));
    box-shadow: var(--shadow);
}

.mini-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease;
}

.mini-card {
    min-width: 260px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.mini-card h3 {
    color: var(--gold-soft);
    margin-top: 0;
}

.mini-card p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.mini-slider .mini-arrows,
.testimonial-slider .mini-arrows {
    position: absolute;
    top: 50%;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.gallery-preview,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card::after {
    content: attr(data-title);
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: var(--white);
    font-size: 1.08rem;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 58, 0.02), rgba(11, 31, 58, 0.62));
    z-index: 1;
}

.gallery-card img,
.gallery-card::after {
    position: relative;
    z-index: 2;
}

.gallery-card-plain::before,
.gallery-card-plain::after {
    display: none;
    content: "";
}

.testimonial-card {
    padding: 28px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 30px 88px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(11, 31, 58, 1), rgba(20, 52, 91, 0.94));
    box-shadow: var(--shadow);
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
}

.testimonial-slide {
    min-width: 320px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.testimonial-slide strong,
.testimonial-slide span {
    display: inline;
}

.testimonial-slide p {
    color: rgba(255, 255, 255, 0.76);
    margin: 18px 0 14px;
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial-slide strong,
.testimonial-slide span {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gold-soft);
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.stars::before {
    content: none;
}

.stars::before {
    content: "★★★★★";
    font-size: 1rem;
}

/* Override the earlier encoded star content with a safe Unicode escape. */
.stars::before {
    content: "\2605\2605\2605\2605\2605";
    font-size: 1rem;
}

.stars::before {
    content: none !important;
}

.page-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 10px;
    padding: 22px 0 10px;
    background: transparent;
    border-bottom: 0;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(236, 213, 129, 0.22), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(135deg, var(--gold) 0%, #c99d2f 22%, var(--navy-2) 68%, var(--navy) 100%);
    box-shadow: 0 22px 48px rgba(11, 31, 58, 0.14);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.page-hero-copy {
    position: relative;
    width: var(--container);
    margin: 0 auto;
    color: var(--white);
    padding: 54px 36px;
    max-width: 980px;
    text-align: center;
    z-index: 1;
}

.page-hero-copy h1 {
    color: var(--white);
    margin: 16px 0 0;
    font-size: clamp(2.5rem, 4.4vw, 4.6rem);
    line-height: 1.08;
    max-width: 900px;
    margin-inline: auto;
}

.page-hero-copy p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 760px;
    margin-inline: auto;
}

.highlight-list,
.footer-links,
.contact-list,
.cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li,
.contact-list li,
.cta-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.1);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(212, 175, 55, 0.18);
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-item-icon-whatsapp {
    background: transparent;
    box-shadow: none;
    color: inherit;
}

.contact-item-icon-whatsapp img {
    width: 38px;
    height: 38px;
    display: block;
}

.contact-item-copy {
    flex: 1;
    padding-top: 4px;
}

.banner-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
}

.compact-home-banner {
    grid-template-columns: fit-content(340px) minmax(0, 1fr);
    align-items: center;
    justify-content: start;
    column-gap: 18px;
    background: #ffffff;
}

.services-zigzag {
    display: grid;
    gap: 36px;
}

.service-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: start;
    gap: 32px;
    padding: 24px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 239, 0.92));
    border: 1px solid rgba(11, 31, 58, 0.08);
    box-shadow: 0 24px 54px rgba(11, 31, 58, 0.12);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-band::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0));
    pointer-events: none;
    animation: serviceGlow 8s ease-in-out infinite;
}

.service-band:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.28);
    box-shadow: 0 28px 58px rgba(11, 31, 58, 0.16);
}

.service-band:nth-child(even) .service-band-media {
    order: 2;
}

.service-band:nth-child(even) .service-band-copy {
    order: 1;
}

.service-band-media {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    align-self: start;
    height: 320px;
    box-shadow: 0 18px 34px rgba(11, 31, 58, 0.14);
}

.service-band-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 31, 58, 0.02), rgba(11, 31, 58, 0.2)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.service-band-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-band:hover .service-band-media img {
    transform: scale(1.06);
}

.service-band-copy {
    position: relative;
    align-self: start;
    padding: 12px 16px 12px 8px;
}

.service-band-copy h3 {
    margin: 14px 0 16px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
    color: var(--navy);
}

.service-band-copy p {
    margin: 0;
    color: var(--muted);
}

.service-points {
    margin-top: 24px;
}

.service-points li {
    color: var(--navy);
    font-size: 1.04rem;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
}

.service-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.services-zigzag .service-band:nth-child(odd).reveal {
    transform: translateX(-56px);
}

.services-zigzag .service-band:nth-child(even).reveal {
    transform: translateX(56px);
}

.services-zigzag .service-band.reveal.is-visible {
    transform: translateX(0);
}

.service-summary-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 1.48rem;
}

@keyframes serviceGlow {
    0%, 100% {
        transform: scale(1) translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.08) translateY(8px);
        opacity: 1;
    }
}

.banner-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.compact-home-banner img {
    width: auto;
    min-height: 220px;
    max-height: 220px;
    object-fit: contain;
    object-position: left center;
    background: #ffffff;
}

.banner-copy {
    padding: 40px;
}

.compact-home-banner .banner-copy {
    padding: 20px 24px;
    align-self: center;
}

.compact-home-banner .banner-copy h2 {
    margin: 10px 0 8px;
    color: var(--navy);
    font-size: clamp(1.35rem, 2vw, 1.95rem);
    line-height: 1.1;
}

.compact-home-banner .banner-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.compact-banner-actions {
    margin-top: 14px;
}

.resort-video-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    gap: 30px;
    align-items: stretch;
    min-height: 300px;
    padding: 24px 28px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 239, 0.94));
    border: 1px solid rgba(11, 31, 58, 0.08);
    box-shadow: 0 24px 54px rgba(11, 31, 58, 0.12);
    overflow: hidden;
}

.resort-video-showcase::before {
    content: "";
    position: absolute;
    top: -72px;
    right: -38px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0));
    pointer-events: none;
}

.resort-video-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.resort-video-copy h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: clamp(1.55rem, 1.9vw, 2.05rem);
    line-height: 1.12;
}

.resort-video-copy p {
    margin: 0 0 10px;
    max-width: 440px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.62;
}

.resort-video-copy p:last-child {
    margin-bottom: 0;
}

.resort-video-points {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    max-width: 460px;
}

.resort-video-points li {
    position: relative;
    padding: 10px 0 10px 24px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.resort-video-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 21px;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.resort-video-points li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.resort-video-frame {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: 0 20px 38px rgba(11, 31, 58, 0.2);
}

.resort-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
    background: #000000;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 8px;
    color: var(--navy);
    font-weight: 700;
}

.form-field span {
    font-size: 0.98rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(11, 31, 58, 0.14);
    background: rgba(255, 255, 255, 0.92);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(79, 96, 116, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.contact-form textarea {
    min-height: 140px;
    max-height: 140px;
    resize: none;
}

.form-error {
    color: #b42318;
    font-size: 0.88rem;
    font-weight: 600;
}

.form-status {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
}

.form-status-success {
    color: #0b5c3b;
    background: rgba(32, 156, 97, 0.12);
    border: 1px solid rgba(32, 156, 97, 0.18);
}

.form-status-error {
    color: #b42318;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.16);
}

.form-actions {
    margin-top: 8px;
}

.contact-section {
    padding-bottom: 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 28px;
    align-items: start;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
}

.contact-map-wrap {
    margin-top: 24px;
    padding-right: 14px;
}

.map-frame {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: block;
}

.site-footer {
    margin-top: 36px;
    padding: 40px 0 22px;
    background:
        radial-gradient(circle at top left, rgba(236, 213, 129, 0.22), transparent 30%),
        linear-gradient(135deg, var(--navy-2), var(--navy));
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 28px;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer h4 {
    margin: 0 0 18px;
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--white);
}

.site-footer p,
.footer-links li,
.footer-links a,
.footer-bottom {
    font-size: 1rem;
    line-height: 1.5;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.footer-brand-mark {
    width: 120px;
    height: 84px;
    flex: 0 0 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--cream), #f3e7ca);
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.2);
}

.footer-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-copy small {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.footer-brand-copy strong {
    display: block;
    margin-top: 0;
    font-size: 1.15rem;
    line-height: 1.25;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 8px;
}


.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icon-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon-link img {
    width: 44px;
    height: 44px;
    display: block;
}

.social-icon-link-youtube img {
    width: 44px;
    height: 44px;
}

.social-icon-link:hover {
    box-shadow: 0 12px 24px rgba(7, 18, 34, 0.16);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.section-cta {
    margin-top: 24px;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

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

.whatsapp-float img {
    width: 62px;
    height: 62px;
    display: block;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(7, 18, 34, 0.88);
    z-index: 100;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: min(980px, 100%);
    max-height: 85vh;
    border-radius: 18px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(255, 255, 255, 0.94);
    color: var(--gold);
    box-shadow: 0 14px 30px rgba(11, 31, 58, 0.18);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    transform: translateY(-50%) scale(1.04);
}

.lightbox-nav-prev {
    left: 26px;
}

.lightbox-nav-next {
    right: 26px;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy);
    font-size: 1.8rem;
    cursor: pointer;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.filter-btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(11, 31, 58, 0.16);
    background: rgba(255, 255, 255, 0.8);
    color: var(--navy);
    cursor: pointer;
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    border-color: transparent;
}

.gallery-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.gallery-page-link {
    min-width: 46px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(11, 31, 58, 0.16);
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    text-align: center;
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.08);
}

.gallery-page-link.active {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    border-color: transparent;
}

.gallery-page-nav {
    padding-inline: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1100px) {
    .grid-3,
    .grid-4,
    .gallery-preview,
    .gallery-grid,
    .footer-grid,
    .banner-card,
    .resort-video-showcase,
    .service-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slider,
    .hero-slide img {
        min-height: 760px;
        height: 760px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-wrap {
        padding-right: 0;
    }
}

@media (max-width: 860px) {
    .brand-copy {
        display: none;
    }

    .nav-shell {
        min-height: 88px;
        gap: 12px;
    }

    .brand {
        flex: 1;
        gap: 10px;
    }

    .brand-mark {
        width: 112px;
        height: 78px;
        flex: 0 0 112px;
    }

    .brand-mark img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .mobile-toggle {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    body.no-hero {
        padding-top: 80px;
    }

    .site-nav,
    .nav-actions .btn {
        display: none;
    }

    .hero-slider {
        margin-top: 80px;
    }

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-header.open .site-nav {
        position: absolute;
        top: var(--header-height);
        left: 16px;
        right: 16px;
        display: grid;
        gap: 12px;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
    }

    .section-head,
    .grid-2,
    .grid-3,
    .grid-4,
    .form-grid,
    .gallery-preview,
    .gallery-grid,
    .footer-grid,
    .banner-card,
    .resort-video-showcase,
    .service-band {
        grid-template-columns: 1fr;
    }

    .service-band:nth-child(even) .service-band-media,
    .service-band:nth-child(even) .service-band-copy {
        order: initial;
    }

    .service-band-copy {
        padding: 0;
    }

    .services-zigzag .service-band:nth-child(odd).reveal,
    .services-zigzag .service-band:nth-child(even).reveal {
        transform: translateY(34px);
    }

    .section-head {
        display: block;
    }

    .section {
        padding: 48px 0;
    }

    .hero-slider,
    .hero-slide img {
        min-height: 620px;
        height: 620px;
    }

    .hero-controls {
        bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .hero-arrows {
        position: absolute;
        top: 50%;
        left: 16px;
        right: 16px;
        display: flex;
        justify-content: space-between;
        gap: 14px;
        transform: translateY(-50%);
    }

    .hero-dots {
        bottom: 18px;
    }

    .hero-content,
    .page-hero-copy {
        width: min(calc(100% - 144px), var(--container));
    }

    .mini-slider,
    .testimonial-slider {
        padding: 82px 20px 24px;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-copy strong {
        white-space: normal;
        line-height: 1.15;
    }

    .resort-video-showcase {
        min-height: auto;
        padding: 24px;
    }

    .resort-video-frame video {
        min-height: 300px;
        max-height: 360px;
        object-fit: cover;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100% - 24px, 100%);
    }

    .nav-shell {
        min-height: 80px;
    }

    .brand {
        gap: 8px;
    }

    .brand-copy strong {
        font-size: 0.92rem;
        gap: 0;
    }

    .brand-mark {
        width: 104px;
        height: 72px;
        flex: 0 0 104px;
    }

    .footer-brand {
        width: 100%;
        align-items: center;
        gap: 18px;
    }

    .footer-brand-mark {
        width: 120px;
        height: 84px;
        flex: 0 0 120px;
    }

    .footer-brand-copy {
        flex: 1;
        min-width: 0;
    }

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

    .mini-slider,
    .testimonial-slider {
        padding-inline: 14px;
    }

    .mini-slider .mini-arrows,
    .testimonial-slider .mini-arrows {
        left: 10px;
        right: 10px;
    }

    .mini-card,
    .testimonial-slide {
        min-width: 100%;
    }

    .compact-home-banner img,
    .banner-card img {
        width: 100%;
    }

    .hero-slider,
    .hero-slide img {
        min-height: 600px;
        height: 600px;
    }

    .hero-arrows {
        left: 12px;
        right: 12px;
        gap: 12px;
    }

    .circle-arrow {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .hero-content,
    .page-hero-copy {
        width: min(calc(100% - 112px), var(--container));
    }

    .hero-content h1,
    .page-hero-copy h1 {
        font-size: 1.9rem;
        line-height: 1.06;
        margin-top: 12px;
    }

    .hero-content p,
    .page-hero-copy p {
        margin-top: 12px;
        font-size: 0.94rem;
        line-height: 1.5;
    }

    .card,
    .room-body,
    .banner-copy,
    .testimonial-card,
    .resort-video-showcase,
    .service-band {
        padding: 22px;
    }

    .room-card {
        padding: 0;
    }

    .room-card img {
        height: 360px;
        min-height: 360px;
    }

    .room-body {
        padding: 12px 16px 16px;
    }

    .service-band-media img {
        min-height: 0;
    }

    .service-band-media {
        height: 260px;
    }

    .resort-video-copy h2 {
        font-size: 1.8rem;
    }

    .resort-video-frame video {
        min-height: 220px;
        max-height: 280px;
        object-fit: cover;
    }

    .section {
        padding: 40px 0;
    }

}

.slider-shell {
    position: relative;
    padding-inline: 34px;
}

.slider-shell .mini-slider,
.slider-shell .testimonial-slider {
    padding: 30px;
}

.slider-shell .mini-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.signature-image-banner {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.signature-image-banner img {
    display: block;
    width: 100%;
    height: 706px;
    object-fit: fill;
    object-position: center center;
}

@media (max-width: 860px) {
    .slider-shell {
        padding-inline: 0;
    }

    .slider-shell .mini-arrows {
        top: 22px;
        left: auto;
        right: 20px;
        width: auto;
        gap: 12px;
        transform: none;
    }

    .signature-image-banner img {
        height: 360px;
    }
}

@media (max-width: 640px) {
    .slider-shell .mini-arrows {
        right: 14px;
    }

    .signature-image-banner img {
        height: 280px;
    }
}




