/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
    --carbon: #141414;
    --carbon-2: #1e1e1e;
    --carbon-3: #2a2a2a;
    --gold: #C9A84C;
    --gold-light: #e0c06a;
    --cream: #F5F0E8;
    --text: #e8e4dc;
    --muted: #888;
    --radius: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--carbon);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* FADE IN */
.fade-section { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-section.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo-icon { color: var(--gold); font-size: 1rem; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--cream); font-weight: 700; }

.header-right { display: flex; align-items: center; gap: 14px; }

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--muted);
}
.lang-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 2px 4px;
    transition: color var(--transition);
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 60%, rgba(20,20,20,1) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    animation: fadeUp 0.8s ease both;
}
.hero-title {
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    color: var(--cream);
    margin-bottom: 18px;
    animation: fadeUp 0.9s 0.1s ease both;
}
.hero-sub {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: rgba(245,240,232,0.7);
    margin-bottom: 36px;
    animation: fadeUp 1s 0.2s ease both;
}
.btn-hero {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 16px 34px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition);
    animation: fadeUp 1.1s 0.3s ease both;
}
.btn-hero:hover { background: var(--gold-light); transform: translateY(-3px); }

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   QUICK LINKS
═══════════════════════════════════════════ */
.quicklinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 32px 20px;
    max-width: 480px;
    margin: 0 auto;
}
.ql-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 12px;
    background: var(--carbon-2);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.ql-btn:hover, .ql-whatsapp:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.ql-btn i { font-size: 1.1rem; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
    padding: 70px 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 340px;
}
.about-img { border-radius: 8px; overflow: hidden; }
.about-img-1 { grid-row: span 1; }
.about-img-2 { margin-top: 30px; }

.about-text h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--cream);
    margin-bottom: 18px;
}
.about-text p { color: var(--muted); font-size: 0.95rem; max-width: 480px; }

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.75rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
    padding: 70px 20px;
    background: var(--carbon-2);
}
.services-header {
    text-align: center;
    margin-bottom: 40px;
}
.services-header h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); color: var(--cream); }

.tabs { max-width: 600px; margin: 0 auto; }

.tab-buttons {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tab-btn {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: var(--muted);
    font-size: 0.95rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    cursor: pointer;
    padding: 12px 0;
    transition: all var(--transition);
    letter-spacing: 0.03em;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeUp 0.4s ease both; }

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 12px;
}
.service-item.featured { background: rgba(201,168,76,0.06); padding: 18px 16px; border-radius: var(--radius); border-bottom: none; margin-bottom: 1px; }

.service-info { display: flex; flex-direction: column; gap: 3px; }
.service-name { font-weight: 600; font-size: 0.95rem; color: var(--cream); }
.service-desc { font-size: 0.78rem; color: var(--muted); }
.service-price { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold); font-weight: 700; white-space: nowrap; }

.services-cta { text-align: center; margin-top: 36px; }

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery { padding: 0; overflow: hidden; }
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 4px;
}
.gal-item { overflow: hidden; position: relative; }
.gal-item img { transition: transform 0.6s ease; }
.gal-item:hover img { transform: scale(1.05); }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

.gal-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    padding: 20px 16px 12px;
}
.gal-caption p { color: var(--cream); font-style: italic; font-size: 0.85rem; }

/* ═══════════════════════════════════════════
   BOOKING
═══════════════════════════════════════════ */
.booking {
    padding: 70px 20px;
    background: var(--carbon);
}
.booking-header {
    text-align: center;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.booking-header h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); color: var(--cream); margin-bottom: 10px; }
.booking-header p { color: var(--muted); font-size: 0.9rem; }

.booking-embed {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: var(--carbon-2);
    border: 1px solid rgba(201,168,76,0.15);
}
.booking-embed iframe { display: block; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: #0d0d0d;
    padding: 50px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-icon { color: var(--gold); font-size: 1.3rem; margin-bottom: 8px; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 4px; }
.footer-tagline { font-size: 0.78rem; color: var(--muted); }

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.footer-col p { font-size: 0.85rem; color: var(--muted); margin-bottom: 4px; }
.footer-closed { color: rgba(136,136,136,0.5) !important; font-size: 0.78rem !important; }
.footer-link { display: inline-block; font-size: 0.82rem; color: var(--gold); text-decoration: none; margin-top: 8px; }
.footer-link:hover { text-decoration: underline; }

.footer-social { display: flex; gap: 14px; margin-bottom: 14px; }
.footer-social a { color: var(--muted); font-size: 1.1rem; transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }

.footer-map {
    max-width: 800px;
    margin: 0 auto 32px;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 0.72rem; color: rgba(136,136,136,0.5); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET & DESKTOP
═══════════════════════════════════════════ */
@media (min-width: 600px) {
    .quicklinks { grid-template-columns: repeat(4, 1fr); max-width: 700px; }
}

@media (min-width: 768px) {
    .about {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 100px 40px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 280px 180px;
    }
    .gal-wide { grid-column: span 2; }
    .footer-info { grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .footer-info { margin-bottom: 32px; }
}

@media (min-width: 1024px) {
    .header { padding: 18px 48px; }
    .header.scrolled { padding: 12px 48px; }
    .about { max-width: 1100px; padding: 100px 48px; gap: 60px; }
    .about-images { height: 420px; }
    .services { padding: 100px 40px; }
    .booking { padding: 100px 40px; }
}
