/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0a0f1a;
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.skip-link {
    position: absolute; top: -100%; left: 0; background: #c9a227; color: #0a0f1a;
    padding: 8px 16px; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── Custom Properties ── */
:root {
    --bg-primary: #0a0f1a;
    --bg-secondary: #0d1525;
    --bg-card: #111b2e;
    --bg-card-hover: #162035;
    --gold: #c9a227;
    --gold-light: #e0be55;
    --gold-dim: rgba(201, 162, 39, 0.15);
    --mint: #5eead4;
    --mint-dim: rgba(94, 234, 212, 0.12);
    --mint-glow: rgba(94, 234, 212, 0.25);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255,255,255,0.06);
    --border-gold: rgba(201, 162, 39, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 40px rgba(0,0,0,0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }

/* ── Section Tag ── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mint);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1.5px;
    background: var(--mint);
}
.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin-top: 16px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #0a0f1a;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.45);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    border-color: var(--mint);
    color: var(--mint);
    transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── Header ── */
.bg-fixed { background: var(--bg-primary); }
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: var(--transition);
    background: transparent;
}
.header.scrolled {
    background: rgba(10, 15, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-primary);
}
.logo-icon { color: var(--gold); }
.logo-light .logo-icon { color: var(--gold); }
.logo-light { color: var(--text-primary); }
.nav ul { display: flex; gap: 36px; }
.nav a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}
.nav a:hover { color: var(--text-primary); }
.nav a:hover::after { width: 100%; }

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}
.nav-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 26, 0.55) 0%,
        rgba(10, 15, 26, 0.4) 40%,
        rgba(10, 15, 26, 0.7) 80%,
        rgba(10, 15, 26, 0.95) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    padding-top: 80px;
}
.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--mint);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    background: var(--gold-dim);
}
.hero-headline {
    margin-bottom: 24px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.25;
}
.hero-headline em { color: var(--gold-light); }
.hero-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}
.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-light);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ── */
.about { background: var(--bg-primary); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 600px;
}
.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--bg-primary);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-gold-accent {
    position: absolute;
    top: -20px;
    right: 30%;
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    opacity: 0.4;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.feature-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Amenities ── */
.amenities { background: var(--bg-secondary); }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.amenity-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
}
.amenity-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.amenity-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gold-dim);
    color: var(--gold);
    margin-bottom: 20px;
}
.amenity-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.amenity-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ── Gallery ── */
.gallery { background: var(--bg-primary); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    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.05); }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 16px;
    background: linear-gradient(to top, rgba(10,15,26,0.85), transparent);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-item.large { grid-column: span 7; grid-row: span 2; }
.gallery-item.large img { min-height: 400px; }
.gallery-item:not(.large) img { min-height: 200px; }
.gallery-item.wide { grid-column: span 12; }
.gallery-item.wide img { min-height: 300px; }

/* ── Location ── */
.location { background: var(--bg-secondary); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.location-content .section-title { margin-bottom: 20px; }
.location-content > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.02rem;
}
.location-details { margin-bottom: 36px; }
.location-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.location-row svg { color: var(--gold); flex-shrink: 0; }
.location-row a {
    color: var(--text-secondary);
    transition: var(--transition);
}
.location-row a:hover { color: var(--mint); }
.location-proximity {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.location-proximity h4 { margin-bottom: 16px; }
.location-proximity ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.location-proximity ul li:last-child { border-bottom: none; }
.location-proximity ul li span:last-child { color: var(--mint); font-weight: 500; }
.location-map {
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ── Contact ── */
.contact { background: var(--bg-primary); }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px;
    overflow: hidden;
    position: relative;
}
.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--mint-dim) 0%, transparent 70%);
    pointer-events: none;
}
.contact-info { position: relative; z-index: 1; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.02rem;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}
.contact-method:hover { color: var(--mint); }
.contact-method svg { color: var(--gold); flex-shrink: 0; }

/* Form */
.contact-form { position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 3px var(--mint-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--mint-dim);
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: var(--radius);
    color: var(--mint);
    font-size: 0.92rem;
    margin-top: 16px;
}
.form-success svg { flex-shrink: 0; color: var(--mint); }

/* ── Footer ── */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding: 60px 24px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 300px;
    line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.6;
}
.footer-contact a {
    color: var(--text-secondary);
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--mint); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid,
    .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 450px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; padding: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { 
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 15, 26, 0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: var(--transition);
    }
    .nav.open { transform: translateY(0); }
    .nav ul { flex-direction: column; gap: 20px; }
    .nav-toggle { display: flex; }
    .hero-headline { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 40px; height: 1px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 12; grid-row: span 1; }
    .gallery-item.wide { grid-column: span 12; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .section { padding: 70px 0; }
    .contact-wrapper { padding: 28px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; }
    .about-images { height: 350px; }
    .about-img-main { width: 85%; }
    .about-img-secondary { width: 65%; }
    .location-map { height: 300px; }
}
