/* ═══════════════════════════════════════════════════════════
   Mood Retreat — Dark Luxe Theme
   Gold (#c9a84c) / Cream (#f5f0e8) on Near-Black (#0d0d0d)
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg-primary: #0d0d0d;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --bg-input: #1a1a1a;
    --border: #2a2a2a;
    --border-focus: #c9a84c;
    --gold: #c9a84c;
    --gold-light: #dfc171;
    --gold-dim: #8a7333;
    --cream: #f5f0e8;
    --cream-dim: #b8b0a0;
    --text-primary: #f5f0e8;
    --text-secondary: #9a9288;
    --text-muted: #6a6258;
    --success: #4ade80;
    --warning: #fbbf24;
    --danger: #f87171;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
    --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--cream);
}

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

img { max-width: 100%; display: block; }

/* ── Utility ────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    border: none; border-radius: var(--radius);
    font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0d0d0d;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #0d0d0d; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { opacity: 0.85; }

/* ── Cards ──────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.card-img {
    width: 100%; height: 240px;
    object-fit: cover;
}
.card-body { padding: 20px; }
.card-title { font-size: 1.25rem; margin-bottom: 8px; }
.card-subtitle { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 12px; }
.card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--gold);
}
.card-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

/* ── Glass Panel ────────────────────────────────── */
.glass {
    background: rgba(22,22,22,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

/* ── Nav ────────────────────────────────────────── */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.nav-brand i { margin-right: 8px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    color: var(--text-secondary); font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-user { display: flex; align-items: center; gap: 16px; }
.nav-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid var(--gold-dim); object-fit: cover;
}
.nav-hamburger {
    display: none; background: none; border: none;
    color: var(--cream); font-size: 1.4rem; cursor: pointer;
}

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.85) 100%),
                url('/static/images/hero-bg.jpg') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 40px 24px; }
.hero h1 {
    font-size: 3.6rem; font-weight: 700; line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero p {
    font-size: 1.15rem; color: var(--cream-dim);
    margin-bottom: 36px; line-height: 1.7;
}

/* ── Search Bar ─────────────────────────────────── */
.search-bar {
    display: flex; gap: 0;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 60px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}
.search-bar input {
    flex: 1;
    padding: 16px 24px;
    background: transparent; border: none; outline: none;
    color: var(--cream); font-size: 1rem;
    font-family: 'Inter', sans-serif;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none; border-radius: 60px;
    color: #0d0d0d; font-weight: 700; font-size: 0.9rem;
    cursor: pointer; transition: var(--transition);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.search-bar button:hover { box-shadow: 0 4px 16px rgba(201,168,76,0.4); }

/* ── Vibe Tags ──────────────────────────────────── */
.vibe-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.vibe-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.06em;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer; transition: var(--transition);
}
.vibe-tag:hover, .vibe-tag.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}
.vibe-bar {
    height: 4px; border-radius: 2px;
    background: var(--border);
    overflow: hidden;
    margin-top: 4px;
}
.vibe-bar-fill {
    height: 100%; border-radius: 2px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    transition: width 0.6s ease;
}

/* ── Grid Layouts ───────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Listings Grid ──────────────────────────────── */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

/* ── Forms ──────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block; margin-bottom: 6px;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--cream); font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card); }

/* ── Auth Pages ─────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 40px 24px;
}
.auth-card {
    width: 100%; max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
}
.auth-card h2 {
    font-size: 2rem; text-align: center;
    margin-bottom: 8px;
}
.auth-card .subtitle {
    text-align: center; color: var(--text-secondary);
    font-size: 0.9rem; margin-bottom: 32px;
}
.auth-divider {
    display: flex; align-items: center; gap: 16px;
    margin: 24px 0; color: var(--text-muted); font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}
.role-selector {
    display: flex; gap: 8px; margin-bottom: 24px;
}
.role-option {
    flex: 1; padding: 14px 12px;
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center; cursor: pointer;
    transition: var(--transition);
}
.role-option:hover { border-color: var(--gold-dim); }
.role-option.selected {
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
}
.role-option i { display: block; font-size: 1.4rem; margin-bottom: 6px; color: var(--gold); }
.role-option span { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Dashboard ──────────────────────────────────── */
.dashboard { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 64px); }
.dash-sidebar {
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    padding: 24px 0;
}
.dash-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 24px;
    color: var(--text-secondary); font-size: 0.88rem; font-weight: 500;
    transition: var(--transition);
}
.dash-nav a:hover, .dash-nav a.active {
    color: var(--gold);
    background: rgba(201,168,76,0.06);
    border-left: 3px solid var(--gold);
}
.dash-nav a i { width: 20px; text-align: center; }
.dash-content { padding: 32px; }
.dash-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px;
}
.dash-header h2 { font-size: 1.8rem; }

/* ── Stats Cards ────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.stat-card .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 700;
    color: var(--gold);
}
.stat-card .stat-label {
    font-size: 0.82rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ── Listing Detail ─────────────────────────────── */
.listing-hero {
    height: 480px;
    background-size: cover; background-position: center;
    border-radius: var(--radius-lg);
    position: relative;
    margin-bottom: 32px;
}
.listing-hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(13,13,13,0.9));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.listing-detail { display: grid; grid-template-columns: 1fr 360px; gap: 40px; }
.listing-info h1 { font-size: 2.4rem; margin-bottom: 12px; }
.listing-sidebar .booking-card {
    position: sticky; top: 88px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

/* ── Rating Stars ───────────────────────────────── */
.stars { color: var(--gold); font-size: 0.9rem; }
.stars .empty { color: var(--text-muted); }

/* ── Messages ───────────────────────────────────── */
.msg-container { display: grid; grid-template-columns: 300px 1fr; height: calc(100vh - 64px); }
.msg-list {
    border-right: 1px solid var(--border);
    overflow-y: auto;
}
.msg-item {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    cursor: pointer; transition: var(--transition);
}
.msg-item:hover, .msg-item.active { background: rgba(201,168,76,0.04); }
.msg-thread { display: flex; flex-direction: column; }
.msg-thread-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}
.msg-thread-body { flex: 1; overflow-y: auto; padding: 24px; }
.msg-bubble {
    max-width: 70%; padding: 12px 18px;
    border-radius: 18px; margin-bottom: 12px;
    font-size: 0.92rem; line-height: 1.5;
}
.msg-bubble.sent {
    background: var(--gold); color: #0d0d0d;
    margin-left: auto; border-bottom-right-radius: 4px;
}
.msg-bubble.received {
    background: var(--bg-input); color: var(--cream);
    border-bottom-left-radius: 4px;
}
.msg-input-bar {
    display: flex; gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}
.msg-input-bar input {
    flex: 1; padding: 12px 18px;
    background: var(--bg-input); border: 1px solid var(--border);
    border-radius: 24px; color: var(--cream);
    font-size: 0.92rem; outline: none;
}
.msg-input-bar button {
    padding: 12px 24px;
    background: var(--gold); border: none; border-radius: 24px;
    color: #0d0d0d; font-weight: 600; cursor: pointer;
}

/* ── Alerts ─────────────────────────────────────── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-bottom: 16px;
}
.alert-success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: var(--success); }
.alert-danger { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: var(--danger); }
.alert-warning { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.3); color: var(--warning); }

/* ── Section Titles ─────────────────────────────── */
.section-header {
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ── How It Works ───────────────────────────────── */
.how-it-works {
    padding: 80px 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
}
.step {
    text-align: center;
    padding: 32px 24px;
}
.step-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    background: rgba(201,168,76,0.08);
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--gold);
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── User Roles Section ─────────────────────────── */
.roles-section { padding: 80px 0; }
.role-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.role-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}
.role-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.role-card i {
    font-size: 2.5rem; color: var(--gold);
    margin-bottom: 20px;
}
.role-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.role-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.7; }

/* ── Footer ─────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}
.footer-desc { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }
.footer h4 {
    font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--cream);
    margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-secondary); font-size: 0.88rem; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--text-muted);
}

/* ── Photo Upload ───────────────────────────────── */
.photo-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.photo-upload:hover { border-color: var(--gold-dim); }
.photo-upload i { font-size: 2rem; color: var(--text-muted); margin-bottom: 12px; }
.photo-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px; margin-top: 16px;
}
.photo-thumb {
    position: relative; aspect-ratio: 1;
    border-radius: var(--radius-sm); overflow: hidden;
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-thumb .remove {
    position: absolute; top: 6px; right: 6px;
    width: 24px; height: 24px;
    background: rgba(0,0,0,0.7); border: none;
    border-radius: 50%; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}

/* ── Loading / Spinner ──────────────────────────── */
.spinner {
    display: flex; align-items: center; justify-content: center;
    padding: 40px; color: var(--text-muted);
}
.spinner i { margin-right: 10px; }

/* ── Badge ──────────────────────────────────────── */
.badge {
    display: inline-block; padding: 4px 10px;
    border-radius: 12px; font-size: 0.72rem;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge-success { background: rgba(74,222,128,0.15); color: var(--success); }
.badge-danger { background: rgba(248,113,113,0.15); color: var(--danger); }
.badge-pending { background: rgba(251,191,36,0.15); color: var(--warning); }

/* ── Table ──────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table {
    width: 100%; border-collapse: collapse;
}
th {
    text-align: left; padding: 12px 16px;
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
tr:hover { background: rgba(201,168,76,0.02); }

/* ── Admin Tabs ─────────────────────────────────── */
.admin-tab {
    padding: 10px 20px;
    background: none; border: none;
    color: var(--text-muted); font-size: 0.88rem;
    font-weight: 600; cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase; letter-spacing: 0.04em;
    font-family: 'Inter', sans-serif;
}
.admin-tab:hover { color: var(--cream); }
.admin-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ── AI Concierge Chat ─────────────────────────── */
.concierge-widget { position: fixed; bottom: 24px; right: 24px; z-index: 200; }
.concierge-toggle {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none; color: #0d0d0d; font-size: 1.3rem;
    cursor: pointer; box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    transition: var(--transition);
}
.concierge-toggle:hover { transform: scale(1.08); }
.concierge-panel {
    display: none; flex-direction: column;
    position: absolute; bottom: 68px; right: 0;
    width: 360px; height: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.concierge-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 600; font-size: 0.95rem;
}
.concierge-messages {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
}
.concierge-msg {
    max-width: 85%; padding: 10px 16px;
    border-radius: 16px; font-size: 0.88rem; line-height: 1.5;
}
.concierge-msg.bot {
    background: var(--bg-input); color: var(--cream);
    border-bottom-left-radius: 4px; align-self: flex-start;
}
.concierge-msg.user {
    background: var(--gold); color: #0d0d0d;
    border-bottom-right-radius: 4px; align-self: flex-end;
}
.concierge-input {
    display: flex; gap: 8px; padding: 12px 16px;
    border-top: 1px solid var(--border);
}
.concierge-input input {
    flex: 1; padding: 10px 16px;
    background: var(--bg-input); border: 1px solid var(--border);
    border-radius: 20px; color: var(--cream);
    font-size: 0.88rem; outline: none;
    font-family: 'Inter', sans-serif;
}
.concierge-input input:focus { border-color: var(--gold); }
.concierge-input button {
    padding: 10px 16px; border-radius: 20px;
    background: var(--gold); border: none;
    color: #0d0d0d; cursor: pointer; font-size: 0.85rem;
    transition: var(--transition);
}
.concierge-input button:hover { background: var(--gold-light); }

@media (max-width: 480px) {
    .concierge-panel { width: calc(100vw - 32px); right: -8px; height: 400px; }
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .grid-3, .steps-grid, .role-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .listing-detail { grid-template-columns: 1fr; }
    .dashboard { grid-template-columns: 1fr; }
    .dash-sidebar { display: none; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.4rem; }
    .grid-2, .grid-3, .grid-4, .steps-grid, .role-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .msg-container { grid-template-columns: 1fr; }
    .msg-list { display: none; }
    .search-bar { flex-direction: column; border-radius: var(--radius); }
    .search-bar button { border-radius: var(--radius); }
    .listing-hero { height: 300px; }
    .auth-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .container { padding: 0 16px; }
    .card-img { height: 180px; }
}
