/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sand: #f5f0e8;
    --sand-light: #faf7f2;
    --terracotta: #c4704b;
    --terracotta-dark: #a85a38;
    --ocean: #2c6e6f;
    --ocean-light: #3a8f8f;
    --charcoal: #2d2926;
    --warm-gray: #6b6560;
    --white: #ffffff;
    --cream: #fdfbf7;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 24px;
}

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    height: var(--nav-height);
    transition: background 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s;
}

.nav--scrolled .nav__logo {
    color: var(--charcoal);
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
}

.nav--scrolled .nav__links a {
    color: var(--warm-gray);
}

.nav__links a:hover {
    color: var(--white);
}

.nav--scrolled .nav__links a:hover {
    color: var(--charcoal);
}

.nav__cta {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: all 0.3s;
}

.nav--scrolled .nav__cta {
    border-color: var(--terracotta);
    color: var(--terracotta) !important;
}

.nav__cta:hover {
    background: var(--white);
    color: var(--charcoal) !important;
}

.nav--scrolled .nav__cta:hover {
    background: var(--terracotta);
    color: var(--white) !important;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.nav--scrolled .nav__hamburger span {
    background: var(--charcoal);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: var(--ocean);
    background-image: url('../assets/images/cl-125.jpg');
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.hero__tagline {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 16px;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 16px;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero__btn {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.hero__btn:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__description {
    font-size: 1.05rem;
    color: var(--warm-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 20px 8px;
    background: var(--sand-light);
    border-radius: 8px;
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 4px;
}

.stat__label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.about__image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--sand);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
    padding: 120px 0;
    background: var(--sand-light);
}

.gallery__filters {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery__filter {
    padding: 8px 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    background: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery__filter:hover,
.gallery__filter.active {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

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

.gallery__item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--sand);
    transition: transform 0.3s;
}

.gallery__item:hover {
    transform: scale(1.02);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__placeholder {
    grid-column: 1 / -1;
    padding: 80px;
    text-align: center;
    color: var(--warm-gray);
    font-style: italic;
}

/* ── Amenities ────────────────────────────────────── */
.amenities {
    padding: 120px 0;
    background: var(--cream);
}

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

.amenity {
    text-align: center;
    padding: 32px 16px;
}

.amenity__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--terracotta);
}

.amenity__icon svg {
    width: 100%;
    height: 100%;
}

.amenity h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.amenity p {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* ── Location ─────────────────────────────────────── */
.location {
    padding: 120px 0;
    background: var(--sand-light);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.location__description {
    font-size: 1.05rem;
    color: var(--warm-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.location__highlights {
    list-style: none;
}

.location__highlights li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
}

.location__highlights li strong {
    font-weight: 500;
}

.location__highlights li span {
    color: var(--terracotta);
    font-weight: 400;
}

.location__map {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--sand);
}

.location__map iframe {
    width: 100%;
    height: 100%;
}

/* ── Booking ──────────────────────────────────────── */
.booking {
    padding: 120px 0;
    background: var(--ocean);
    text-align: center;
}

.booking .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.booking .section-title {
    color: var(--white);
}

.booking__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 40px;
}

.booking__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn--primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--terracotta-dark);
}

.btn--outline {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--charcoal);
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    padding: 48px 0 24px;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.footer__brand p {
    font-size: 0.8rem;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    text-align: center;
    font-size: 0.75rem;
}

/* ── Lightbox ─────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 16px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
}

.lightbox__close {
    top: 16px;
    right: 16px;
    font-size: 2.5rem;
}

.lightbox__prev {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox__next {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

/* ── Mobile ───────────────────────────────────────── */
@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 99;
    }

    .nav__links.open {
        display: flex;
    }

    .nav__links.open a {
        color: var(--charcoal);
        font-size: 1.2rem;
    }

    .nav__links.open .nav__cta {
        border-color: var(--terracotta);
        color: var(--terracotta) !important;
    }

    .nav__hamburger {
        display: flex;
        z-index: 101;
    }

    .about__grid,
    .location__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .amenities__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

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