/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ========== UTILITY ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 58, 110, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(107, 58, 110, 0.08);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #6B3A6E;
}

.nav__logo-icon {
    color: #6B3A6E;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6B3A6E;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav__link:hover {
    background: rgba(107, 58, 110, 0.08);
}

.nav__link--cta {
    background: #6B3A6E;
    color: #fff;
    margin-left: 0.5rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

.nav__link--cta:hover {
    background: #4a2547;
    color: #fff;
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #6B3A6E;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 240, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid rgba(107, 58, 110, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
    }

    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__link {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 14, 25, 0.82) 0%,
        rgba(107, 58, 110, 0.72) 50%,
        rgba(46, 23, 45, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 1.5rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: #D4A843;
    opacity: 0.6;
}

.hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero__accent {
    color: #D4A843;
    font-style: italic;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #6B3A6E;
    color: #fff;
}

.btn--primary:hover {
    background: #4a2547;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 58, 110, 0.3);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

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

.btn--amber {
    background: #D4A843;
    color: #1a0e19;
}

.btn--amber:hover {
    background: #c4901e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

/* ========== SECTIONS ========== */
.section {
    padding: 6rem 0;
}

.section--light {
    background: #fff;
}

.section--plum {
    background: linear-gradient(135deg, #6B3A6E 0%, #4a2547 60%, #2e172d 100%);
}

.section--sand {
    background: linear-gradient(180deg, #F5EDE0 0%, #FDF8F0 100%);
}

.section__header {
    margin-bottom: 4rem;
}

.section__header--center {
    text-align: center;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 0.75rem;
}

.section__eyebrow--light {
    color: #D4A843;
}

.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: #1a0e19;
    margin-bottom: 1rem;
}

.section__sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6B3A6E;
    max-width: 560px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ========== ABOUT ========== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__media {
    position: relative;
}

.about__img {
    width: 100%;
    height: auto;
    aspect-ratio: 6/7;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(107, 58, 110, 0.15);
}

.about__badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #D4A843;
    color: #1a0e19;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.about__text {
    max-width: 520px;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(107, 58, 110, 0.12);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat__number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B3A6E;
}

.stat__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6B3A6E;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(107, 58, 110, 0.15);
}

@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about__badge {
        right: 1rem;
        bottom: -0.75rem;
    }
}

/* ========== AMENITIES ========== */
.amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(107, 58, 110, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card--amenity {
    background: #fff;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(107, 58, 110, 0.1);
}

.card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 58, 110, 0.08) 0%, rgba(212, 168, 67, 0.08) 100%);
    border-radius: 14px;
    color: #6B3A6E;
    margin-bottom: 1.25rem;
}

.card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a0e19;
    margin-bottom: 0.5rem;
}

.card__body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6B3A6E;
    opacity: 0.8;
}

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

/* ========== SITES ========== */
.sites__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.site-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.site-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 56/36;
}

.site-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.site-card:hover .site-card__img {
    transform: scale(1.05);
}

.site-card__body {
    padding: 2rem;
}

.site-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.site-card__body-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.25rem;
}

.site-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.site-card__list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.site-card__list svg {
    color: #D4A843;
    flex-shrink: 0;
}

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

/* ========== LOCATION ========== */
.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location__detail {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.location__detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D4A843;
}

.location__detail dd {
    font-size: 1rem;
    color: #6B3A6E;
    line-height: 1.6;
}

.location__map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 58, 110, 0.12);
}

@media (max-width: 900px) {
    .location__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

/* ========== CONTACT ========== */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact__info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6B3A6E;
    padding: 0.75rem 1rem;
    background: rgba(107, 58, 110, 0.05);
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.contact__info-item:hover {
    background: rgba(107, 58, 110, 0.1);
    transform: translateX(4px);
}

/* ========== FORM ========== */
.contact__form-wrap {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 16px 50px rgba(107, 58, 110, 0.08);
    border: 1px solid rgba(107, 58, 110, 0.06);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6B3A6E;
    letter-spacing: 0.02em;
}

.form__input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1a0e19;
    background: #FDF8F0;
    border: 1.5px solid rgba(107, 58, 110, 0.12);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__input::placeholder {
    color: #6B3A6E;
    opacity: 0.4;
}

.form__input:focus {
    border-color: #D4A843;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B3A6E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__success {
    text-align: center;
    padding: 2rem;
}

.success__icon {
    color: #D4A843;
    margin-bottom: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: #1a0e19;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer__logo svg {
    color: #D4A843;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #D4A843;
    margin-bottom: 1rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__links a:hover {
    color: #D4A843;
    padding-left: 0.35rem;
}

.footer__address {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__address a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    opacity: 0.5;
    text-align: center;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__brand {
        max-width: none;
    }
}

/* ========== REVEAL ANIMATIONS ========== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.amenities__grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.amenities__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.amenities__grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.amenities__grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.amenities__grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.amenities__grid .reveal:nth-child(6) { transition-delay: 0.3s; }
