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

:root {
    --sage: #8a9e8a;
    --sage-light: #c8d8c4;
    --sage-dark: #4a5e4a;
    --cream: #f5f0e8;
    --warm: #e8ddd0;
    --stone: #b8a898;
    --deep: #2c2820;
    --gold: #c8a96e;
    --gold-light: #e8d4a8;
    --white: #fdfaf6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    background: var(--white);
    color: var(--deep);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.5s, backdrop-filter 0.5s;
}

nav.scrolled {
    background: rgba(253, 250, 246, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(138, 158, 138, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.5s;
    position: relative;
}

.nav-logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
    position: absolute;
}

.logo-light {
    opacity: 1;
    position: relative;
}

.logo-dark {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

nav.scrolled .logo-light {
    opacity: 0;
}

nav.scrolled .logo-dark {
    opacity: 1;
    pointer-events: auto;
}

nav.scrolled .nav-logo {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

nav.scrolled .nav-links a {
    color: var(--deep);
}

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

.nav-book {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border: 0.5px solid rgba(200, 169, 110, 0.6);
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s;
}

nav.scrolled .nav-book {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-book:hover {
    background: var(--gold);
    color: var(--white) !important;
}

.nav-book-mobile {
    display: none;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s;
    display: block;
}

nav.scrolled .hamburger span {
    background: var(--deep);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

@keyframes slowZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(44, 40, 32, 0.55) 0%,
            rgba(44, 40, 32, 0.4) 40%,
            rgba(44, 40, 32, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    animation: fadeUp 1.5s ease-out both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    animation: fadeUp 1.5s 0.2s ease-out both;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    animation: fadeUp 1.5s 0.4s ease-out both;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: rgba(253, 250, 246, 0.8);
    margin-bottom: 3rem;
    animation: fadeUp 1.5s 0.6s ease-out both;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    animation: fadeUp 1.5s 0.8s ease-out both;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--deep);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

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

.btn-ghost {
    padding: 1rem 2.5rem;
    border: 0.5px solid rgba(253, 250, 246, 0.5);
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(253, 250, 246, 0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(253, 250, 246, 0.6);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 2s 1.5s ease-out both;
}

.scroll-line {
    width: 0.5px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(253, 250, 246, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* INTRO */
.intro {
    padding: 8rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 0.5px;
    background: var(--sage-light);
}

.intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--deep);
}

.intro h2 em {
    font-style: italic;
    color: var(--sage-dark);
}

.intro p {
    font-size: 1rem;
    line-height: 1.9;
    color: #6a6258;
    max-width: 640px;
    margin: 0 auto 2rem;
}

/* GALLERY SPLASH */
.gallery-splash {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 350px 280px;
    gap: 4px;
    padding: 0 4px;
}

.splash-item {
    position: relative;
    overflow: hidden;
}

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

.splash-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

.splash-item:hover img {
    transform: scale(1.05);
}

.splash-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(44, 40, 32, 0.7), transparent);
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s;
}

.splash-item:hover .splash-caption {
    opacity: 1;
}

/* SERVICES */
.services {
    padding: 8rem 3rem;
    background: var(--cream);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--deep);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--deep);
}

.service-card p {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #6a6258;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 2rem;
}

/* EXPERIENCE STRIP */
.experience {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 40, 32, 0.6);
}

.experience-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 3rem;
}

.experience-content blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    max-width: 750px;
    color: var(--gold-light);
}

.experience-content cite {
    display: block;
    margin-top: 1.5rem;
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, 0.6);
}

/* AMENITIES */
.amenities {
    padding: 7rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.amenities-img-wrap {
    position: relative;
}

.amenities-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.amenities-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 200px;
    height: 250px;
    object-fit: cover;
    border: 6px solid var(--white);
}

.amenities-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--deep);
}

.amenities-text p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #6a6258;
    margin-bottom: 2.5rem;
}

.amenity-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
    margin-bottom: 2.5rem;
}

.amenity-list li {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--deep);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.amenity-list li::before {
    content: '';
    width: 20px;
    height: 0.5px;
    background: var(--gold);
    flex-shrink: 0;
}

/* STATS */
.stats {
    background: var(--deep);
    padding: 5rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, 0.5);
}

/* GALLERY ROW */
.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 320px;
}

.gallery-row-item {
    overflow: hidden;
    position: relative;
}

.gallery-row-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* BOOKING */
.booking {
    padding: 8rem 3rem;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.booking-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--deep);
    margin-bottom: 1.5rem;
}

.booking-info p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #6a6258;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.4rem;
}

.contact-item p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--deep);
    line-height: 1.6;
}

.contact-item span {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 0.2rem;
}

.booking-form {
    background: var(--white);
    padding: 3rem;
}

.booking-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--deep);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 0;
    border: none;
    border-bottom: 0.5px solid var(--stone);
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--deep);
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--deep);
    color: var(--white);
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--sage-dark);
}

/* TESTIMONIALS */
.testimonials {
    padding: 7rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--deep);
    margin-bottom: 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
    text-align: left;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold-light);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card p {
    font-size: 0.875rem;
    line-height: 1.85;
    color: #5a5248;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-initial {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--sage-dark);
}

.reviewer-info strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--deep);
}

.stars {
    color: var(--gold);
    font-size: 0.7rem;
}

/* FOOTER */
footer {
    background: var(--deep);
    color: rgba(253, 250, 246, 0.6);
    padding: 5rem 3rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.8rem;
    line-height: 1.8;
    max-width: 250px;
}

.footer-col h4 {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.footer-col ul li a {
    color: rgba(253, 250, 246, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 0.5px solid rgba(253, 250, 246, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

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

@media (max-width: 900px) {
    nav {
        padding: 1.5rem;
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1rem;
        z-index: 99;
    }

    nav.scrolled .nav-links {
        background: rgba(253, 250, 246, 0.95);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--deep);
    }

    .nav-book {
        display: none;
    }

    .nav-book-mobile {
        display: block !important;
        padding: 1rem 1.5rem;
        border: 0.5px solid var(--gold);
        background: var(--gold);
        color: var(--deep) !important;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-book-mobile:hover {
        background: var(--gold-light);
    }

    .gallery-splash {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .splash-item.wide {
        grid-column: span 1;
    }

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

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

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

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

    .booking {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}