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

:root {
    --bg: #0c0c0c;
    --bg-card: #161618;
    --bg-dark: #0a0a0a;
    --text: #f0ece4;
    --text-muted: #a09a8e;
    --gold: #c8a45e;
    --gold-dark: #a6853e;
    --border: #2a2723;
    --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

h1, h2, h3 { line-height: 1.2; }
h2 { font-size: 1.8rem; text-align: center; margin-bottom: 48px; }

a { color: var(--gold); text-decoration: none; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-primary { background: var(--gold); color: #0c0c0c; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Nav ===== */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.logo { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.logo span { color: var(--gold); }
.nav-links {
    display: flex; list-style: none; gap: 28px; align-items: center;
}
.nav-links a { color: var(--text-muted); font-size: 0.85rem; }
.nav-links a:hover { color: var(--text); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1510 0%, #0c0c0c 60%);
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200, 164, 94, 0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}
.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); }
.section-sub {
    color: var(--text-muted); text-align: center;
    margin-top: -32px; margin-bottom: 40px;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--gold); }
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Pricing ===== */
.price-table {
    max-width: 550px;
    margin: 0 auto;
}
.price-row {
    display: flex;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.price-name { font-size: 1rem; white-space: nowrap; }
.price-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border);
    margin: 0 12px;
    min-width: 20px;
    position: relative;
    top: -4px;
}
.price-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1510, #0f0f12);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* ===== Booking Form ===== */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-row { display: flex; gap: 14px; }

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.booking-form select { cursor: pointer; }
.booking-form select option { background: var(--bg); }
.booking-form .btn { align-self: flex-start; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-item { margin-bottom: 28px; }
.contact-item h3 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.contact-item p { color: var(--text-muted); font-size: 0.95rem; }
.map-placeholder {
    width: 100%;
    height: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-inner p { color: var(--text-muted); font-size: 0.8rem; }
.footer-credit a { color: var(--gold); }

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 60px; left: 0; right: 0;
        background: var(--bg); border-bottom: 1px solid var(--border);
        padding: 24px; gap: 18px;
    }
    .nav-toggle { display: flex; }
    .hero { min-height: 80vh; }
    .hero h1 { font-size: 1.8rem; }
    .form-row { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
}
