:root {
    --primary: #063c3a;
    --background: #f7f4ec;
    --surface: #ffffff;
    --text: #17201f;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: "Manrope", sans-serif;
}

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

.site-header {
    padding: 24px 0;
    background: var(--surface);
}

.temporary-section {
    min-height: 220px;
    display: grid;
    place-items: center;
    padding: 48px 16px;
    border-bottom: 1px solid #dedbd2;
    text-align: center;
}

.site-footer {
    padding: 40px 0;
    background: var(--primary);
    color: #ffffff;
    text-align: center;
}

.component-error {
    padding: 30px;
    color: #9f1239;
    text-align: center;
}

/* =====================================================
   PREMIUM NAVBAR
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(6, 60, 58, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        padding 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header--scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 35px rgba(6, 60, 58, 0.08);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    text-decoration: none;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            #0d5b56,
            #063c3a
        );
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow:
        0 10px 24px rgba(6, 60, 58, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: var(--primary);
}

.brand-subtitle {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #7a8583;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    position: relative;
    color: #34413f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn-book {
    background:
        linear-gradient(
            135deg,
            #0d5b56,
            #063c3a
        );
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(6, 60, 58, 0.2);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(6, 60, 58, 0.26);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: rgba(6, 60, 58, 0.08);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--primary);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

/* =====================================================
   HERO SECTION
===================================================== */

#hero-section {
    scroll-margin-top: 90px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 22%,
            rgba(22, 117, 108, 0.34),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #032f2d 0%,
            #07504c 50%,
            #0a6860 100%
        );
    color: #ffffff;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -150px;
    bottom: -200px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.025),
        0 0 0 140px rgba(255, 255, 255, 0.018);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 19, 18, 0.32),
            transparent 58%
        );
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: 72px;
    padding-top: 90px;
    padding-bottom: 90px;
}

.hero-content {
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #d8c49b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
}

.hero-title {
    max-width: 760px;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 7vw, 92px);
    line-height: 0.94;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-title span {
    display: block;
    color: #f0d79f;
}

.hero-description {
    max-width: 650px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}

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

.btn-primary {
    min-height: 52px;
    padding-inline: 27px;
    background: #f0d79f;
    color: #153b38;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #f7e4b8;
}

.btn-secondary {
    min-height: 52px;
    padding-inline: 27px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-top: 48px;
}

.hero-highlight {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-highlight strong {
    color: #f0d79f;
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    line-height: 1;
}

.hero-highlight span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.hero-card {
    position: relative;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 70px rgba(0, 25, 23, 0.34);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-card::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    border-top: 1px solid rgba(240, 215, 159, 0.68);
    border-right: 1px solid rgba(240, 215, 159, 0.68);
    border-radius: 0 16px 0 0;
}

.hero-card-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #f0d79f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-card h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    line-height: 1.05;
}

.hero-card p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
}

.hero-card-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    color: #f0d79f;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.hero-card-link span {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.hero-card-link:hover span {
    transform: translateX(5px);
}

/* =====================================================
   ABOUT SECTION
===================================================== */

#about-section {
    scroll-margin-top: 88px;
}

.about-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f8f5ed 0%,
            #ffffff 100%
        );
}

.about-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.05);
}

.about-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 88px;
}

.about-visual {
    position: relative;
    min-height: 590px;
}

.about-visual-main {
    position: absolute;
    inset: 0 58px 48px 0;
    display: flex;
    align-items: flex-end;
    padding: 44px;
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(
            145deg,
            rgba(3, 47, 45, 0.1),
            rgba(3, 47, 45, 0.92)
        ),
        radial-gradient(
            circle at 70% 20%,
            rgba(240, 215, 159, 0.34),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0a6860,
            #032f2d
        );
    box-shadow: 0 35px 80px rgba(6, 60, 58, 0.18);
}

.about-visual-main::before {
    content: "";
    position: absolute;
    top: 32px;
    right: 32px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    box-shadow:
        0 0 0 38px rgba(255, 255, 255, 0.025),
        0 0 0 76px rgba(255, 255, 255, 0.018);
}

.about-visual-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    display: inline-flex;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #f0d79f;
    background: rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.about-visual-content {
    position: relative;
    z-index: 1;
    max-width: 450px;
}

.about-visual-content .section-eyebrow {
    color: #f0d79f;
}

.about-visual-content h2 {
    margin: 16px 0 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
}

.about-floating-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 210px;
    padding: 26px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 55px rgba(6, 60, 58, 0.18);
}

.about-floating-card strong {
    display: block;
    color: var(--primary);
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    line-height: 0.9;
}

.about-floating-card span {
    display: block;
    margin-top: 10px;
    color: #64716f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d5b56;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.section-title {
    max-width: 700px;
    margin: 18px 0 0;
    color: #183331;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -1px;
}

.about-description {
    margin-top: 24px;
    color: #63706e;
    font-size: 16px;
    line-height: 1.85;
}

.about-features {
    display: grid;
    gap: 20px;
    margin-top: 34px;
}

.about-feature {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(6, 60, 58, 0.09);
}

.about-feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(13, 91, 86, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.about-feature h3 {
    margin: 0;
    color: #1c3735;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.about-feature p {
    margin-top: 6px;
    color: #75817f;
    font-size: 14px;
    line-height: 1.65;
}

.about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
}

.about-book-button {
    color: #153b38;
}

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.about-text-link span {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.about-text-link:hover span {
    transform: translateX(5px);
}

/* =====================================================
   ROOMS SECTION
===================================================== */

#rooms-section {
    scroll-margin-top: 88px;
}

.rooms-section {
    position: relative;
    padding: 120px 0;
    background: #f2f6f4;
    overflow: hidden;
}

.rooms-section::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.05);
}

.section-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 54px;
}

.section-intro {
    margin: 0;
    color: #687673;
    font-size: 15px;
    line-height: 1.8;
}

.rooms-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.room-card {
    overflow: hidden;
    border: 1px solid rgba(6, 60, 58, 0.08);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(5, 55, 52, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(5, 55, 52, 0.15);
}

.room-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.room-image {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    overflow: hidden;
    color: #ffffff;
}

.room-card:not(.room-card-featured) .room-image {
    min-height: 310px;
}

.room-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 20%,
            rgba(0, 25, 23, 0.86) 100%
        );
}

.room-image::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    top: -90px;
    right: -70px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 0 42px rgba(255, 255, 255, 0.025),
        0 0 0 84px rgba(255, 255, 255, 0.018);
}

.room-image-ac {
    background:
        radial-gradient(
            circle at 72% 25%,
            rgba(240, 215, 159, 0.35),
            transparent 30%
        ),
        linear-gradient(135deg, #106d67, #032f2d);
}

.room-image-double {
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(135deg, #286d67, #16423f);
}

.room-image-single {
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(240, 215, 159, 0.22),
            transparent 30%
        ),
        linear-gradient(135deg, #7c6743, #344a42);
}

.room-badge,
.room-availability {
    position: absolute;
    z-index: 2;
    top: 24px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.room-badge {
    left: 24px;
    color: #173b38;
    background: #f0d79f;
}

.room-availability {
    right: 24px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.room-image-content {
    position: relative;
    z-index: 2;
}

.room-image-content span {
    display: block;
    margin-bottom: 8px;
    color: #f0d79f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.room-image-content h3 {
    max-width: 520px;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 0.98;
}

.room-card-body {
    display: flex;
    flex-direction: column;
    padding: 34px;
}

.room-card-featured .room-card-body {
    justify-content: center;
    padding: 46px;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.room-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #40615e;
    background: #eef5f3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.room-card-body > p {
    margin: 24px 0 0;
    color: #6c7977;
    font-size: 14px;
    line-height: 1.8;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 26px;
}

.room-amenities span {
    position: relative;
    padding-left: 18px;
    color: #385653;
    font-size: 12px;
    font-weight: 600;
}

.room-amenities span::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d7d72;
    font-weight: 800;
}

.room-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: auto;
    padding-top: 32px;
}

.room-book-button {
    min-height: 48px;
}

.room-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d5b56;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.room-link span {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.room-link:hover span {
    transform: translateX(5px);
}

.rooms-note {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 34px;
    padding: 25px 30px;
    border: 1px solid rgba(6, 60, 58, 0.08);
    border-radius: 22px;
    background: #ffffff;
}

.rooms-note > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rooms-note strong {
    color: #173b38;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
}

.rooms-note span {
    color: #75817f;
    font-size: 13px;
}

.rooms-note > a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: #0d5b56;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.rooms-note > a span {
    color: inherit;
    font-size: 19px;
}

/* =====================================================
   AMENITIES SECTION
===================================================== */

#amenities-section {
    scroll-margin-top: 88px;
}

.amenities-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf8f2 100%
        );
}

.amenities-section::before {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -200px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.045);
}

.amenities-section::after {
    content: "";
    position: absolute;
    top: 130px;
    right: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(13, 91, 86, 0.07);
    box-shadow:
        0 0 0 45px rgba(13, 91, 86, 0.018),
        0 0 0 90px rgba(13, 91, 86, 0.012);
}

.amenities-heading {
    position: relative;
    z-index: 1;
}

.amenities-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.amenity-card {
    position: relative;
    min-height: 290px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(6, 60, 58, 0.08);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(5, 55, 52, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.amenity-card::before {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.045);
    transition: transform 0.35s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 91, 86, 0.18);
    box-shadow: 0 28px 65px rgba(5, 55, 52, 0.12);
}

.amenity-card:hover::before {
    transform: scale(1.2);
}

.amenity-card-featured {
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(240, 215, 159, 0.2),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #0b625c,
            #033432
        );
    color: #ffffff;
}

.amenity-card-featured::before {
    background: rgba(255, 255, 255, 0.06);
}

.amenity-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 17px;
    color: #0d5b56;
    background: #eef6f4;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
}

.amenity-card-featured .amenity-icon {
    color: #183a37;
    background: #f0d79f;
}

.amenity-label {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 10px;
    color: #73807e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.amenity-card-featured .amenity-label {
    color: #f0d79f;
}

.amenity-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #193633;
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    line-height: 1.05;
}

.amenity-card-featured h3 {
    color: #ffffff;
}

.amenity-card p {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    color: #75817f;
    font-size: 13px;
    line-height: 1.75;
}

.amenity-card-featured p {
    color: rgba(255, 255, 255, 0.72);
}

.amenities-highlight {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 34px;
    padding: 34px 38px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(240, 215, 159, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #073f3c,
            #0d6a63
        );
    box-shadow: 0 24px 60px rgba(5, 55, 52, 0.15);
}

.amenities-highlight::before {
    content: "";
    position: absolute;
    top: -90px;
    right: 100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 42px rgba(255, 255, 255, 0.018),
        0 0 0 84px rgba(255, 255, 255, 0.012);
}

.amenities-highlight > div,
.amenities-highlight > a {
    position: relative;
    z-index: 1;
}

.amenities-highlight-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #f0d79f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.amenities-highlight h3 {
    max-width: 700px;
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.05;
}

.amenities-book-button {
    flex-shrink: 0;
}

/* =====================================================
   GALLERY SECTION
===================================================== */

#gallery-section {
    scroll-margin-top: 88px;
}

.gallery-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #082f2d;
}

.gallery-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -140px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, 0.015),
        0 0 0 110px rgba(255, 255, 255, 0.01);
}

.gallery-heading {
    position: relative;
    z-index: 1;
}

.gallery-heading .section-eyebrow {
    color: #f0d79f;
}

.gallery-heading .section-title {
    color: #ffffff;
}

.gallery-heading .section-intro {
    color: rgba(255, 255, 255, 0.64);
}

.gallery-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 26px;
    background: #0d4e49;
    cursor: pointer;
    text-align: left;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-visual {
    position: absolute;
    inset: 0;
    transform: scale(1.01);
    transition: transform 0.55s ease;
}

.gallery-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 32%,
            rgba(0, 20, 18, 0.88) 100%
        );
}

.gallery-visual::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 25px;
    width: 80px;
    height: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0 18px 0 0;
}

.gallery-visual-one {
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(240, 215, 159, 0.32),
            transparent 26%
        ),
        linear-gradient(135deg, #13776f, #032f2d);
}

.gallery-visual-two {
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(255, 255, 255, 0.15),
            transparent 30%
        ),
        linear-gradient(135deg, #6d765f, #254c47);
}

.gallery-visual-three {
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(240, 215, 159, 0.24),
            transparent 30%
        ),
        linear-gradient(135deg, #9b7e51, #3e5149);
}

.gallery-visual-four {
    background:
        radial-gradient(
            circle at 65% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(135deg, #266861, #173c39);
}

.gallery-visual-five {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(240, 215, 159, 0.25),
            transparent 28%
        ),
        linear-gradient(135deg, #826a44, #0a514c);
}

.gallery-item:hover .gallery-visual {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
}

.gallery-overlay span {
    display: block;
    margin-bottom: 8px;
    color: #f0d79f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery-overlay h3 {
    max-width: 480px;
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    line-height: 1.04;
}

.gallery-item-large .gallery-overlay h3 {
    font-size: clamp(38px, 4vw, 55px);
}

.gallery-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 30px;
    padding: 29px 32px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
}

.gallery-footer > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gallery-footer strong {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.gallery-footer span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

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

.gallery-modal.is-open {
    display: flex;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 18, 0.84);
    backdrop-filter: blur(10px);
}

.gallery-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
}

.gallery-modal-image {
    min-height: 520px;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(240, 215, 159, 0.32),
            transparent 28%
        ),
        linear-gradient(135deg, #13776f, #032f2d);
}

.gallery-modal-content {
    padding: 25px 30px 29px;
}

.gallery-modal-content span {
    color: #0d5b56;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery-modal-content h3 {
    margin: 8px 0 0;
    color: #183633;
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
}

.gallery-modal-close {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(0, 30, 27, 0.38);
    font-size: 28px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

body.gallery-modal-open {
    overflow: hidden;
}

/* =====================================================
   ATTRACTIONS SECTION
===================================================== */

#attractions-section {
    scroll-margin-top: 88px;
}

.attractions-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f8f5ed 0%,
            #ffffff 100%
        );
}

.attractions-section::before {
    content: "";
    position: absolute;
    top: 100px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.045);
}

.attractions-heading {
    position: relative;
    z-index: 1;
}

.attractions-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(360px, 0.88fr)
        minmax(0, 1.12fr);
    gap: 24px;
}

.attraction-featured {
    min-height: 620px;
}

.attraction-featured-visual {
    position: relative;
    height: 100%;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    padding: 42px;
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(
            180deg,
            rgba(0, 40, 36, 0.02) 10%,
            rgba(0, 35, 32, 0.9) 100%
        ),
        radial-gradient(
            circle at 72% 22%,
            rgba(240, 215, 159, 0.32),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #29756d,
            #063c39
        );
    box-shadow: 0 30px 70px rgba(5, 55, 52, 0.16);
}

.attraction-featured-visual::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow:
        0 0 0 50px rgba(255, 255, 255, 0.022),
        0 0 0 100px rgba(255, 255, 255, 0.014);
}

.attraction-number {
    display: inline-grid;
    place-items: center;
    min-width: 45px;
    height: 45px;
    padding: 0 12px;
    border-radius: 14px;
    color: #183b38;
    background: #f0d79f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.attraction-featured-visual > .attraction-number {
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 30px;
}

.attraction-featured-content {
    position: relative;
    z-index: 2;
    max-width: 470px;
}

.attraction-category {
    display: block;
    margin-bottom: 12px;
    color: #f0d79f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.attraction-featured-content h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(50px, 6vw, 72px);
    line-height: 0.95;
}

.attraction-featured-content p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.8;
}

.attraction-featured-content a,
.attraction-card a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 24px;
    color: #f0d79f;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.attraction-featured-content a span,
.attraction-card a span {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.attraction-featured-content a:hover span,
.attraction-card a:hover span {
    transform: translateX(5px);
}

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

.attraction-card {
    position: relative;
    min-height: 298px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(6, 60, 58, 0.08);
    border-radius: 27px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(5, 55, 52, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.attraction-card::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.04);
    transition: transform 0.35s ease;
}

.attraction-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 65px rgba(5, 55, 52, 0.13);
}

.attraction-card:hover::before {
    transform: scale(1.25);
}

.attraction-card-highlight {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(240, 215, 159, 0.18),
            transparent 32%
        ),
        linear-gradient(
            140deg,
            #0d665f,
            #063c39
        );
}

.attraction-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.attraction-type {
    color: #70807d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.attraction-card-highlight .attraction-type {
    color: #f0d79f;
}

.attraction-card h3 {
    position: relative;
    z-index: 1;
    margin: 27px 0 0;
    color: #193633;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1;
}

.attraction-card-highlight h3 {
    color: #ffffff;
}

.attraction-card p {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    color: #74817e;
    font-size: 13px;
    line-height: 1.75;
}

.attraction-card-highlight p {
    color: rgba(255, 255, 255, 0.7);
}

.attraction-card a {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 22px;
    color: #0d5b56;
}

.attraction-card-highlight a {
    color: #f0d79f;
}

.attractions-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
    padding: 34px 38px;
    border: 1px solid rgba(6, 60, 58, 0.08);
    border-radius: 27px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(5, 55, 52, 0.06);
}

.attractions-cta > div > span {
    display: block;
    margin-bottom: 8px;
    color: #0d5b56;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.attractions-cta h3 {
    max-width: 720px;
    margin: 0;
    color: #193633;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(29px, 4vw, 42px);
    line-height: 1.05;
}

.attractions-cta .btn {
    flex-shrink: 0;
}

/* =====================================================
   TESTIMONIALS SECTION
===================================================== */

#testimonials-section {
    scroll-margin-top: 88px;
}

.testimonials-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f3f7f5 100%
        );
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -140px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.045);
}

.testimonials-heading {
    position: relative;
    z-index: 1;
}

.testimonials-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(360px, 0.9fr)
        minmax(0, 1.1fr);
    gap: 26px;
}

.testimonial-featured {
    position: relative;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 46px;
    overflow: hidden;
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(240, 215, 159, 0.23),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #0b625c,
            #032f2d
        );
    box-shadow: 0 30px 75px rgba(5, 55, 52, 0.18);
}

.testimonial-featured::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 48px rgba(255, 255, 255, 0.018),
        0 0 0 96px rgba(255, 255, 255, 0.012);
}

.testimonial-quote-mark {
    position: absolute;
    top: 30px;
    left: 42px;
    color: rgba(240, 215, 159, 0.3);
    font-family: "Cormorant Garamond", serif;
    font-size: 160px;
    line-height: 1;
}

.testimonial-stars {
    position: relative;
    z-index: 1;
    color: #f0d79f;
    font-size: 14px;
    letter-spacing: 5px;
}

.testimonial-featured blockquote {
    position: relative;
    z-index: 1;
    margin: 24px 0 35px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(33px, 4vw, 47px);
    line-height: 1.08;
}

.testimonial-author {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #173936;
    background: #f0d79f;
    font-size: 12px;
    font-weight: 800;
}

.testimonial-author > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: inherit;
    font-size: 13px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    position: relative;
    min-height: 173px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 30px;
    overflow: hidden;
    border: 1px solid rgba(6, 60, 58, 0.08);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(5, 55, 52, 0.065);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -75px;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 27px 60px rgba(5, 55, 52, 0.12);
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    margin: 16px 0 24px;
    color: #61706d;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    line-height: 1.3;
}

.testimonial-card .testimonial-author strong {
    color: #193633;
}

.testimonial-card .testimonial-author span {
    color: #7b8784;
}

.testimonial-card-highlight {
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(240, 215, 159, 0.18),
            transparent 30%
        ),
        linear-gradient(
            140deg,
            #0d655f,
            #073c39
        );
}

.testimonial-card-highlight p,
.testimonial-card-highlight .testimonial-author strong {
    color: #ffffff;
}

.testimonial-card-highlight .testimonial-author span {
    color: rgba(255, 255, 255, 0.62);
}

.testimonial-summary {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding: 30px 34px;
    border: 1px solid rgba(6, 60, 58, 0.08);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(5, 55, 52, 0.06);
}

.testimonial-summary-score {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-summary-score strong {
    color: #193633;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
}

.testimonial-summary-score span {
    color: #778480;
    font-size: 12px;
}

.testimonial-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.testimonial-summary-items span {
    padding: 9px 13px;
    border-radius: 999px;
    color: #40615e;
    background: #edf5f2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =====================================================
   BOOKING CTA SECTION
===================================================== */

#cta-section {
    scroll-margin-top: 88px;
}

.booking-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f4f0e7;
}

.booking-cta-card {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(340px, 0.85fr);
    align-items: center;
    gap: 70px;
    padding: 70px;
    overflow: hidden;
    border-radius: 38px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(240, 215, 159, 0.24),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0b625c,
            #032f2d
        );
    box-shadow: 0 35px 90px rgba(5, 55, 52, 0.22);
}

.booking-cta-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.booking-cta-decoration-one {
    top: -140px;
    right: -90px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, 0.018),
        0 0 0 110px rgba(255, 255, 255, 0.012);
}

.booking-cta-decoration-two {
    left: -120px;
    bottom: -170px;
    width: 330px;
    height: 330px;
    background: rgba(255, 255, 255, 0.025);
}

.booking-cta-content,
.booking-cta-panel {
    position: relative;
    z-index: 1;
}

.booking-cta-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #f0d79f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.booking-cta-content h2 {
    max-width: 700px;
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 0.95;
}

.booking-cta-content > p {
    max-width: 620px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
}

.booking-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.booking-cta-features span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.06);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.booking-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
}

.booking-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 15px;
    color: #173936;
    background: #f0d79f;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.booking-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.booking-cta-primary span {
    font-size: 20px;
}

.booking-cta-secondary {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.booking-cta-panel {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 25px 60px rgba(0, 20, 18, 0.25);
    backdrop-filter: blur(18px);
}

.booking-cta-panel-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-cta-panel-header span {
    color: #f0d79f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.booking-cta-panel-header strong {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
}

.booking-cta-room-list {
    display: flex;
    flex-direction: column;
}

.booking-cta-room {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 21px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-cta-room > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.booking-cta-room span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.booking-cta-room strong {
    color: #ffffff;
    font-size: 13px;
}

.booking-cta-room b {
    flex-shrink: 0;
    padding: 8px 11px;
    border-radius: 999px;
    color: #173936;
    background: #f0d79f;
    font-size: 10px;
}

.booking-cta-panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
}

.booking-cta-panel-footer > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-cta-panel-footer span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.booking-cta-panel-footer strong {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.booking-cta-panel-footer a {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #173936;
    background: #f0d79f;
    font-size: 22px;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.booking-cta-panel-footer a:hover {
    transform: translateX(4px);
}

/* =====================================================
   CONTACT SECTION
===================================================== */

#contact-section {
    scroll-margin-top: 88px;
}

.contact-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f1e8 100%
        );
}

.contact-section::before {
    content: "";
    position: absolute;
    left: -170px;
    bottom: -190px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.045);
}

.contact-heading {
    position: relative;
    z-index: 1;
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);
    gap: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-primary-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 84% 16%,
            rgba(240, 215, 159, 0.24),
            transparent 29%
        ),
        linear-gradient(
            140deg,
            #0b625c,
            #032f2d
        );
    box-shadow: 0 28px 70px rgba(5, 55, 52, 0.18);
}

.contact-primary-card::before {
    content: "";
    position: absolute;
    top: -105px;
    right: -65px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 48px rgba(255, 255, 255, 0.018),
        0 0 0 96px rgba(255, 255, 255, 0.012);
}

.contact-card-eyebrow,
.contact-primary-card h3,
.contact-primary-card p,
.contact-primary-actions {
    position: relative;
    z-index: 1;
}

.contact-card-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #f0d79f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.contact-primary-card h3 {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 0.98;
}

.contact-primary-card p {
    max-width: 590px;
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.contact-primary-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
}

.contact-book-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 15px;
    color: #173936;
    background: #f0d79f;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.contact-book-button span {
    font-size: 19px;
}

.contact-map-link {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

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

.contact-info-card {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(6, 60, 58, 0.08);
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(5, 55, 52, 0.065);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(13, 91, 86, 0.04);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 27px 60px rgba(5, 55, 52, 0.12);
}

.contact-info-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 23px;
    border-radius: 15px;
    color: #173936;
    background: #f0d79f;
    font-size: 13px;
    font-weight: 800;
}

.contact-info-card > span {
    position: relative;
    z-index: 1;
    color: #71807d;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-info-card h3 {
    position: relative;
    z-index: 1;
    margin: 9px 0 0;
    color: #193633;
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    line-height: 1.05;
}

.contact-info-card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: #74817e;
    font-size: 12px;
    line-height: 1.7;
}

.contact-info-card a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 20px;
    color: #0d5b56;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.contact-map-panel {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(5, 55, 52, 0.12);
}

.contact-map-visual {
    position: relative;
    flex: 1;
    min-height: 650px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(240, 215, 159, 0.2),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            #dce9e3,
            #a9c8bd
        );
}

.contact-map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.55) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.55) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
}

.contact-map-road {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
}

.contact-map-road-one {
    width: 145%;
    height: 12px;
    top: 32%;
    left: -20%;
    transform: rotate(-18deg);
}

.contact-map-road-two {
    width: 120%;
    height: 11px;
    top: 63%;
    left: -12%;
    transform: rotate(24deg);
}

.contact-map-road-three {
    width: 11px;
    height: 125%;
    top: -12%;
    left: 64%;
    transform: rotate(13deg);
}

.contact-map-marker {
    position: absolute;
    z-index: 2;
    top: 47%;
    left: 55%;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 50% 12px;
    background: #0b625c;
    box-shadow:
        0 18px 40px rgba(5, 55, 52, 0.3),
        0 0 0 14px rgba(11, 98, 92, 0.12);
    transform: rotate(-45deg);
}

.contact-map-marker span {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #f0d79f;
}

.contact-map-label {
    position: absolute;
    z-index: 3;
    top: calc(47% + 90px);
    left: calc(55% - 55px);
    display: flex;
    flex-direction: column;
    min-width: 205px;
    padding: 17px 19px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(5, 55, 52, 0.16);
    backdrop-filter: blur(12px);
}

.contact-map-label span {
    color: #0d5b56;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.contact-map-label strong {
    margin-top: 5px;
    color: #193633;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
}

.contact-map-label small {
    margin-top: 3px;
    color: #778480;
    font-size: 11px;
}

.contact-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 27px 30px;
    background: #ffffff;
}

.contact-map-footer > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-map-footer span {
    color: #0d5b56;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-map-footer strong {
    color: #193633;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
}

.contact-map-footer a {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #173936;
    background: #f0d79f;
    font-size: 22px;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.contact-map-footer a:hover {
    transform: translateX(4px);
}

/* =====================================================
   SITE FOOTER
===================================================== */

.site-footer {
    position: relative;
    padding: 88px 0 28px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(240, 215, 159, 0.13),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #073f3b,
            #021f1d
        );
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -150px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 0 0 60px rgba(255, 255, 255, 0.012),
        0 0 0 120px rgba(255, 255, 255, 0.008);
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(280px, 1.35fr)
        minmax(150px, 0.65fr)
        minmax(170px, 0.75fr)
        minmax(210px, 0.85fr);
    gap: 55px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(240, 215, 159, 0.4);
    border-radius: 18px;
    color: #173936;
    background: #f0d79f;
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-logo-text strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    line-height: 1;
}

.footer-logo-text small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-brand > p {
    max-width: 390px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.8;
}

.footer-booking-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 26px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-booking-badge span,
.footer-column-title,
.footer-contact-item span {
    color: #f0d79f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-booking-badge strong {
    font-size: 12px;
}

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

.footer-column-title {
    margin-bottom: 22px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    align-self: flex-start;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: #f0d79f;
    transform: translateX(4px);
}

.footer-contact-column {
    gap: 22px;
}

.footer-contact-column .footer-column-title {
    margin-bottom: 0;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-item strong {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.65;
}

.footer-book-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 50px;
    margin-top: 3px;
    padding: 0 18px;
    border-radius: 14px;
    color: #173936;
    background: #f0d79f;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.footer-book-button span {
    font-size: 19px;
}

.footer-room-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 62px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
}

.footer-room-strip > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 23px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-room-strip > div:last-child {
    border-right: 0;
}

.footer-room-strip span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-room-strip strong {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
}

.footer-room-strip .footer-room-total {
    background: rgba(240, 215, 159, 0.1);
}

.footer-room-strip .footer-room-total span {
    color: #f0d79f;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
    padding-top: 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.43);
    font-size: 10px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
}

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