/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0D0D0D;
    color: #F5F0EB;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.15; }
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #F5F0EB;
    margin-bottom: 1.25rem;
}
.section-desc {
    font-size: 1.05rem;
    color: #A09890;
    max-width: 560px;
    line-height: 1.7;
}
.accent { color: #C9A84C; }
.accent-italic {
    font-style: italic;
    color: #D4A0A0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}
.btn-gold {
    background: linear-gradient(135deg, #C9A84C, #A8872E);
    color: #0D0D0D;
}
.btn-gold:hover { background: linear-gradient(135deg, #D4B85C, #B8973E); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline {
    border: 1px solid rgba(245,240,235,0.3);
    color: #F5F0EB;
}
.btn-outline:hover { border-color: #C9A84C; color: #C9A84C; }
.btn-outline-light {
    border: 1px solid rgba(201,168,76,0.5);
    color: #C9A84C;
}
.btn-outline-light:hover { background: rgba(201,168,76,0.1); }
.btn-gold.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn-gold.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 0.7rem 0;
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo-mark {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #C9A84C;
    border: 2px solid #C9A84C;
    border-radius: 4px;
    padding: 0.1rem 0.45rem;
    line-height: 1;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: #F5F0EB; }
.logo-sub { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: #A09890; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: #A09890;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: #C9A84C; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 24px; padding: 4px 0; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background: #F5F0EB;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger::before, .hamburger::after { content: ''; position: absolute; }
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A0A0A 50%, #0D0D0D 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(107,15,26,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #0D0D0D, transparent);
    pointer-events: none;
}
.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: #C9A84C;
}
.hero-headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #F5F0EB;
}
.hero-headline .accent {
    font-style: italic;
    color: #D4A0A0;
    font-weight: 400;
}
.hero-desc {
    font-size: 1.1rem;
    color: #A09890;
    line-height: 1.8;
    margin-bottom: 2.25rem;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #A09890;
    letter-spacing: 0.04em;
}
.hero-visual {
    position: relative;
    height: 600px;
}
.hero-img-main {
    width: 100%;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 260px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    border: 3px solid rgba(201,168,76,0.3);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent-line {
    position: absolute;
    top: 40px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-top: 2px solid #C9A84C;
    border-right: 2px solid #C9A84C;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A09890;
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== INTRO ===== */
.intro {
    padding: 8rem 2rem;
    background: #0D0D0D;
}
.intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.intro-text .section-title { margin-bottom: 1.5rem; }
.intro-text p {
    font-size: 1.05rem;
    color: #A09890;
    line-height: 1.8;
}
.intro-stats {
    display: flex;
    gap: 0;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    overflow: hidden;
}
.stat {
    flex: 1;
    padding: 2rem 1.5rem;
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A09890;
}
.stat-divider {
    width: 1px;
    background: rgba(201,168,76,0.2);
    align-self: stretch;
}

/* ===== ROOMS ===== */
.rooms {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #0D0D0D 0%, #120808 100%);
}
.rooms-inner { max-width: 1280px; margin: 0 auto; }
.rooms-inner > .section-eyebrow,
.rooms-inner > .section-title,
.rooms-inner > .section-desc {
    margin-bottom: 3rem;
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.room-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.room-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.room-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #C9A84C;
    color: #0D0D0D;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
}
.room-badge.accessible { background: #D4A0A0; }
.room-info { padding: 1.5rem; }
.room-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #F5F0EB;
}
.room-info p {
    font-size: 0.9rem;
    color: #A09890;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.room-features li {
    font-size: 0.75rem;
    color: #C9A84C;
    background: rgba(201,168,76,0.08);
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    border: 1px solid rgba(201,168,76,0.15);
}

/* ===== AMENITIES ===== */
.amenities {
    padding: 8rem 2rem;
    background: #0D0D0D;
}
.amenities-inner { max-width: 1280px; margin: 0 auto; }
.amenities-header {
    text-align: center;
    margin-bottom: 4rem;
}
.amenities-header .section-title { margin-bottom: 0.5rem; }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.amenity-card {
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.4s ease;
}
.amenity-card:hover {
    border-color: rgba(201,168,76,0.25);
    background: rgba(201,168,76,0.03);
    transform: translateY(-4px);
}
.amenity-icon {
    margin-bottom: 1.25rem;
}
.amenity-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #F5F0EB;
}
.amenity-card p {
    font-size: 0.9rem;
    color: #A09890;
    line-height: 1.65;
}

/* ===== LOCATION ===== */
.location {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #0D0D0D 0%, #120808 100%);
}
.location-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.location-content { max-width: 520px; }
.location-content > .section-eyebrow,
.location-content > .section-title,
.location-content > .location-desc {
    margin-bottom: 1.5rem;
}
.location-desc {
    font-size: 1.05rem;
    color: #A09890;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.location-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.location-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.location-item svg { flex-shrink: 0; margin-top: 2px; }
.location-item strong {
    display: block;
    font-size: 0.95rem;
    color: #F5F0EB;
    margin-bottom: 0.25rem;
}
.location-item span {
    font-size: 0.9rem;
    color: #A09890;
    line-height: 1.6;
}
.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    border: 1px solid rgba(201,168,76,0.15);
}
.map-placeholder {
    height: 450px;
    background: #1a1a1a;
}
.map-placeholder iframe { width: 100%; height: 100%; }

/* ===== GALLERY ===== */
.gallery {
    padding: 8rem 2rem;
    background: #0D0D0D;
}
.gallery-inner { max-width: 1280px; margin: 0 auto; }
.gallery-inner > .section-eyebrow,
.gallery-inner > .section-title {
    margin-bottom: 3rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1rem;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large { grid-column: span 5; grid-row: span 2; }
.gallery-item.tall { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) { grid-column: span 3; }

/* ===== CTA ===== */
.cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1A0A0A 0%, #2A0E14 50%, #1A0A0A 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.cta .section-eyebrow { margin-bottom: 1rem; }
.cta-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 1.25rem;
}
.cta-desc {
    font-size: 1.05rem;
    color: #A09890;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
    padding: 8rem 2rem;
    background: #0D0D0D;
}
.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.contact-info { max-width: 480px; }
.contact-info > .section-eyebrow,
.contact-info > .section-title,
.contact-info > .contact-desc {
    margin-bottom: 1.5rem;
}
.contact-desc {
    font-size: 1.05rem;
    color: #A09890;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #A09890;
}
.contact-row a {
    color: #C9A84C;
    transition: color 0.3s ease;
}
.contact-row a:hover { color: #D4B85C; }

/* ===== FORM ===== */
.contact-form-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #A09890;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #F5F0EB;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #C9A84C;
    background: rgba(201,168,76,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px;
    color: #C9A84C;
    font-size: 0.9rem;
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 2rem 2rem;
    background: #080808;
    border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand .logo-mark { width: fit-content; }
.footer-brand .logo-name { font-size: 1.3rem; }
.footer-tagline {
    font-size: 0.9rem;
    color: #A09890;
    line-height: 1.65;
    max-width: 320px;
}
.footer-links { display: flex; gap: 4rem; }
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #C9A84C;
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col span {
    font-size: 0.9rem;
    color: #A09890;
    transition: color 0.3s ease;
}
.footer-col a:hover { color: #C9A84C; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: #555;
}
.footer-legal { font-size: 0.75rem; color: #444; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(13,13,13,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(201,168,76,0.15);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; z-index: 1001; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { display: none; }
    .intro-inner { grid-template-columns: 1fr; gap: 3rem; }
    .rooms-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .location-inner { grid-template-columns: 1fr; }
    .location-map { order: -1; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item.large,
    .gallery-item.tall,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-item.large { grid-column: span 2; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { gap: 2rem; }
}

@media (max-width: 480px) {
    .hero { padding: 7rem 1.25rem 3rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .intro-stats { flex-direction: column; }
    .stat-divider { width: 100%; height: 1px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
