:root {
    --deep-sea: #082c38;
    --deep-sea-2: #0e4050;
    --ocean: #4f8da3;
    --sea-mist: #b9d8df;
    --champagne: #d8b56a;
    --champagne-light: #f0d9a1;
    --ivory: #f8f4eb;
    --pearl: #fffdf8;
    --ink: #153640;
    --muted: #657b83;
    --white: #ffffff;
    --shadow: 0 30px 80px rgba(5, 40, 52, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--ink);
    background: var(--pearl);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    background: var(--deep-sea);
    color: var(--white);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    letter-spacing: 10px;
}

.loader-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne-light), transparent);
    animation: loaderPulse 1.3s ease-in-out infinite;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 5vw;
}

.brand img {
    width: 155px;
}

.brand-fallback {
    display: none;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    letter-spacing: 6px;
    color: var(--white);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav a {
    opacity: 0.84;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.main-nav a:hover {
    color: var(--champagne-light);
    opacity: 1;
}

.nav-enquire {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 1px;
    margin: 7px auto;
    background: var(--white);
    transition: transform 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 135px 20px 100px;
    overflow: hidden;
    background: var(--deep-sea);
    isolation: isolate;
}

.hero-slider,
.hero-slide,
.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    z-index: -4;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1.6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
}

.hero-slide.is-active img {
    animation: kenBurns 8s ease-in-out forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(180deg, rgba(4, 28, 37, 0.45), rgba(5, 42, 54, 0.36) 45%, rgba(4, 27, 36, 0.79)),
        linear-gradient(90deg, rgba(5, 39, 49, 0.18), transparent 35%, transparent 65%, rgba(5, 39, 49, 0.18));
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 50% 28%, rgba(248, 224, 163, 0.2), transparent 34%);
    animation: breathe 7s ease-in-out infinite;
}

.hero-content {
    width: min(850px, 92vw);
    padding: 64px 58px 58px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(76, 118, 132, 0.48), rgba(10, 47, 60, 0.68));
    backdrop-filter: blur(18px);
    box-shadow: 0 35px 95px rgba(0, 0, 0, 0.36);
    animation: heroRise 1.25s ease both;
}

.hero-logo {
    width: 255px;
    margin: 0 auto 25px;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.28));
    animation: float 5s ease-in-out infinite;
}

.hero-logo-fallback {
    display: none;
    margin-bottom: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 8vw, 76px);
    letter-spacing: 8px;
}

.eyebrow,
.section-kicker,
.booking-kicker {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--champagne-light);
}

.hero h1 {
    margin: 22px 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 500;
    line-height: 0.98;
}

.gold-rule,
.small-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.gold-rule {
    width: 92px;
    margin: 28px auto;
}

.small-rule {
    width: 80px;
    margin: 24px 0 30px;
}

.small-rule.centered {
    margin-right: auto;
    margin-left: auto;
}

.hero-copy {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.9;
}

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

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-gold {
    color: #18343e;
    background: linear-gradient(135deg, var(--champagne-light), var(--champagne));
    box-shadow: 0 15px 34px rgba(216, 181, 106, 0.28);
}

.button-gold:hover {
    box-shadow: 0 22px 46px rgba(216, 181, 106, 0.4);
}

.button-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.06);
}

.button-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.button-whatsapp {
    color: var(--white);
    background: #25d366;
}

.button-whatsapp:hover {
    background: #1fbd5b;
}

.slider-controls {
    position: absolute;
    right: 5vw;
    bottom: 34px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
}

.slider-arrow,
.slider-dot {
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 28px;
    height: 2px;
    padding: 0;
    background: rgba(255, 255, 255, 0.38);
}

.slider-dot.is-active {
    background: var(--champagne-light);
}

.scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    width: 1px;
    height: 42px;
    background: linear-gradient(var(--champagne-light), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.section {
    padding: 112px 20px;
}

.about-section {
    background: linear-gradient(180deg, var(--pearl), var(--ivory));
}

.about-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 76px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 280px 280px 28px 28px;
    box-shadow: var(--shadow);
}

.about-frame {
    position: absolute;
    inset: 24px -24px -24px 24px;
    z-index: -1;
    border: 1px solid rgba(216, 181, 106, 0.72);
    border-radius: 280px 280px 28px 28px;
}

.section-kicker {
    color: #8d6f38;
}

.section-kicker.light {
    color: var(--champagne-light);
}

.about-content h2,
.section-heading h2,
.booking-content h2,
.contact-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    line-height: 1.05;
}

.about-content h2 {
    margin: 14px 0 0;
    font-size: clamp(48px, 6vw, 66px);
    color: var(--deep-sea);
}

.about-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.95;
}

.signature {
    margin-top: 26px;
    font-family: "Cormorant Garamond", serif;
    font-size: 31px !important;
    color: #8d6f38 !important;
}

.experience-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(185, 216, 223, 0.22), transparent 26%),
        var(--white);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading h2 {
    margin: 15px 0 0;
    font-size: clamp(46px, 6vw, 70px);
    color: var(--deep-sea);
}

.section-intro {
    color: var(--muted);
    line-height: 1.9;
}

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

.experience-card {
    position: relative;
    min-height: 255px;
    padding: 32px 25px;
    overflow: hidden;
    border: 1px solid rgba(14, 65, 81, 0.1);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #fbfaf6);
    box-shadow: 0 12px 32px rgba(9, 57, 72, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.experience-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(var(--champagne), var(--ocean));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 181, 106, 0.55);
    box-shadow: 0 24px 48px rgba(9, 57, 72, 0.12);
}

.experience-card:hover::before {
    transform: scaleY(1);
}

.experience-number {
    margin-bottom: 22px;
    color: var(--champagne);
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    letter-spacing: 2px;
}

.experience-card h3 {
    margin: 0 0 12px;
    color: var(--deep-sea);
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.14;
}

.experience-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.booking-section {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
    padding: 100px 20px;
    overflow: hidden;
    color: var(--white);
}

.booking-background,
.booking-overlay {
    position: absolute;
    inset: 0;
}

.booking-background {
    background: url("../images/beachfront-2.jpg") center 58% / cover no-repeat fixed;
    transform: scale(1.04);
}

.booking-overlay {
    background: linear-gradient(135deg, rgba(3, 29, 38, 0.84), rgba(14, 70, 84, 0.75));
}

.booking-content {
    position: relative;
    max-width: 830px;
    text-align: center;
}

.booking-kicker {
    color: var(--champagne-light);
}

.booking-content h2 {
    margin: 18px 0 0;
    font-size: clamp(48px, 6vw, 72px);
}

.booking-content p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
}

.contact-section {
    background: var(--ivory);
}

.contact-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    overflow: hidden;
    padding: 64px 54px;
    color: var(--white);
    border-radius: 32px;
    background: linear-gradient(135deg, #092f3c, #176075);
    box-shadow: var(--shadow);
}

.contact-card::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 217, 161, 0.32), transparent 66%);
    animation: breathe 7s ease-in-out infinite;
}

.contact-card h2 {
    margin: 12px 0 10px;
    font-size: clamp(42px, 5vw, 56px);
}

.contact-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

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

.site-footer {
    padding: 28px 20px;
    color: rgba(255, 255, 255, 0.68);
    background: #061f29;
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

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

@keyframes loaderPulse {
    0%,
    100% {
        transform: scaleX(0.5);
        opacity: 0.4;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes kenBurns {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.13) translateY(-1.5%);
    }
}

@keyframes breathe {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.1);
    }
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(42px) scale(0.97);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes scrollLine {
    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(0.55);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (max-width: 980px) {
    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 40;
        display: grid;
        place-content: center;
        gap: 26px;
        text-align: center;
        background: rgba(5, 37, 48, 0.97);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        position: relative;
        z-index: 60;
        display: block;
    }

    .menu-toggle.is-open span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle.is-open span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

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

    .about-image {
        max-width: 700px;
        margin: 0 auto;
    }

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

    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-card .button {
        justify-self: center;
    }
}

@media (max-width: 650px) {
    .site-header {
        padding: 18px 20px;
    }

    .brand img {
        width: 125px;
    }

    .brand-fallback {
        font-size: 27px;
    }

    .hero {
        padding: 110px 15px 95px;
    }

    .hero-content {
        width: 94vw;
        padding: 46px 22px 44px;
        border-radius: 24px;
    }

    .hero-logo {
        width: 190px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 2.6px;
        line-height: 1.8;
    }

    .hero-copy {
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .slider-controls {
        right: 20px;
        bottom: 20px;
    }

    .scroll-cue {
        display: none;
    }

    .section {
        padding: 80px 16px;
    }

    .about-image img {
        height: 480px;
    }

    .about-frame {
        inset: 16px -12px -16px 12px;
    }

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

    .experience-card {
        min-height: auto;
    }

    .booking-section {
        min-height: 580px;
        padding: 80px 16px;
    }

    .booking-background {
        background-attachment: scroll;
    }

    .contact-card {
        padding: 46px 24px;
    }

    .site-footer {
        font-size: 9px;
        line-height: 1.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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