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

:root {
    --bg-dark:      #0d0a0b;
    --bg-card:      #161113;
    --bg-card-hover:#1e1619;
    --burgundy:     #7b1a3a;
    --burgundy-l:   #a02050;
    --blush:        #e8a0a0;
    --blush-l:      #f0c0c0;
    --gold:         #c9a84c;
    --gold-l:       #dbb960;
    --text:         #f0e8e8;
    --text-muted:   #9a8888;
    --text-dim:     #6a5858;
    --radius:       12px;
    --radius-lg:    20px;
    --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

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

/* ── Section Labels & Titles ────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin-bottom: 24px;
}

.text-accent {
    color: var(--blush);
    font-style: italic;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn--primary {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-l) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(123, 26, 58, 0.4);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 26, 58, 0.55);
}

.btn--ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ──────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(13, 10, 11, 0.92);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}
.nav__logo-icon { color: var(--gold); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
    padding: 8px 20px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50px;
    color: var(--gold);
}
.nav__link--cta:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}
.nav__link--cta::after { display: none; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 10, 11, 0.7) 0%,
        rgba(13, 10, 11, 0.5) 40%,
        rgba(13, 10, 11, 0.85) 100%
    );
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.hero__headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.hero__accent {
    color: var(--blush);
    font-style: italic;
    font-weight: 400;
}

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── About ───────────────────────────────────────── */
.about {
    padding: 120px 0;
    position: relative;
}

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

.about__media {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about__img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about__img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.about__img-float img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about__stat {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-l) 100%);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(123, 26, 58, 0.4);
}
.about__stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.about__stat-label {
    font-size: 0.75rem;
    color: var(--blush-l);
    margin-top: 4px;
}

.about__text .section-title { margin-bottom: 24px; }
.about__text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about__features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.about__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}
.about__features svg { color: var(--gold); flex-shrink: 0; }

/* ── Amenities ───────────────────────────────────── */
.amenities {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #120d0f 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

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

.amenity-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    opacity: 0;
    transition: var(--transition);
}
.amenity-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.amenity-card:hover::before { opacity: 1; }

.amenity-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(123, 26, 58, 0.15);
    color: var(--blush);
    margin-bottom: 24px;
    transition: var(--transition);
}
.amenity-card:hover .amenity-card__icon {
    background: rgba(123, 26, 58, 0.25);
    color: var(--gold);
}

.amenity-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.amenity-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Gallery ─────────────────────────────────────── */
.gallery {
    padding: 120px 0;
}

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

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,10,11,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--blush-l);
}

.gallery__item--wide { grid-column: span 7; }
.gallery__item:nth-child(2) { grid-column: span 5; }
.gallery__item:nth-child(3) { grid-column: span 5; }
.gallery__item:nth-child(4) { grid-column: span 4; }
.gallery__item:nth-child(5) { grid-column: span 4; }

/* ── Location ────────────────────────────────────── */
.location {
    padding: 120px 0;
    background: linear-gradient(180deg, #120d0f 0%, var(--bg-dark) 100%);
}

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

.location__info .section-title { margin-bottom: 20px; }
.location__info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1rem;
}

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

.location__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.location__detail svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.location__detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 4px;
}
.location__detail span,
.location__detail a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.location__detail a:hover { color: var(--blush); }

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ── Contact ─────────────────────────────────────── */
.contact {
    padding: 120px 0;
}

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

.contact__text .section-title { margin-bottom: 20px; }
.contact__text > p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1rem;
}

.contact__quick {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact__quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
}
.contact__quick-item:hover { color: var(--blush); }
.contact__quick-item svg { color: var(--gold); }

/* ── Form ────────────────────────────────────────── */
.form__group { margin-bottom: 20px; }

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-dim); }
.form__input:focus,
.form__textarea:focus {
    border-color: var(--burgundy-l);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px rgba(123, 26, 58, 0.15);
}

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

.form__success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(123, 26, 58, 0.12);
    border: 1px solid rgba(123, 26, 58, 0.3);
    border-radius: var(--radius);
    color: var(--blush-l);
    font-size: 0.9rem;
}
.form__success.show { display: flex; }
.form__success svg { color: var(--gold); flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────── */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
}

.footer__brand { max-width: 300px; }
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}
.footer__logo svg { color: var(--gold); }
.footer__brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer__nav {
    display: flex;
    gap: 32px;
}
.footer__nav a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer__nav a:hover { color: var(--gold); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: var(--text-dim);
}
.footer__bottom a { color: var(--text-muted); transition: var(--transition); }
.footer__bottom a:hover { color: var(--blush); }

/* ── Mobile Menu ─────────────────────────────────── */
@media (max-width: 900px) {
    .nav__toggle { display: flex; }
    
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(13, 10, 11, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(201, 168, 76, 0.15);
    }
    .nav__links.open { right: 0; }
    .nav__link { font-size: 1.1rem; }
    .nav__link--cta { border: none; padding: 0; }
}

@media (max-width: 768px) {
    .about__grid,
    .location__grid,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__img-float { right: 0; bottom: -30px; }
    .about__stat { left: 0; top: -16px; }

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

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }
    .gallery__item--wide { grid-column: span 2; }
    .gallery__item:nth-child(2) { grid-column: span 1; }
    .gallery__item:nth-child(3) { grid-column: span 1; }
    .gallery__item:nth-child(4) { grid-column: span 1; }
    .gallery__item:nth-child(5) { grid-column: span 1; }

    .footer__top { flex-direction: column; }
    .footer__nav { flex-wrap: wrap; gap: 16px 24px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    .hero__headline { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
    .amenities__grid { grid-template-columns: 1fr; }
    .about__features { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
}

/* ── Animations ──────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
