/* ===========================================================
   EscortMunich24 - Luxury Romantic Theme
   Color palette:
     --blush:    #f4c2c2
     --blush-2:  #e8b4bc
     --charcoal: #1a1a1a
     --charcoal-2: #2c2c2c
     --gold:     #d4af37
     --gold-2:   #c9a961
     --soft:     #faf7f2
   =========================================================== */

:root {
    --blush:     #f4c2c2;
    --blush-2:   #e8b4bc;
    --blush-soft:#fce4ec;
    --charcoal:  #1a1a1a;
    --charcoal-2:#2c2c2c;
    --gold:      #d4af37;
    --gold-2:    #c9a961;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --soft:      #faf7f2;
    --white:     #ffffff;
    --serif:     'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --sans:      'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    background: var(--soft);
    color: var(--charcoal);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--charcoal);
    margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }

a { color: var(--charcoal); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold); }

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

/* ----- Layout ----- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }

/* ----- Top bar / Nav ----- */
.topbar {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gold);
}
.topbar a { color: rgba(255,255,255,0.8); }
.topbar a:hover { color: var(--gold); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }

.nav {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.95);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem; max-width: 1280px; margin: 0 auto;
}
.brand {
    font-family: var(--serif); font-size: 1.8rem; font-weight: 600;
    color: var(--charcoal); letter-spacing: 0.04em;
}
.brand .accent { color: var(--gold); }
.nav-links { display: flex; gap: 1.8rem; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-links a {
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em;
    font-weight: 500; padding: 0.4rem 0; position: relative;
}
.nav-links a:hover::after, .nav-links a.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: var(--gold);
}
.nav-actions { display: flex; gap: 0.6rem; align-items: center; }
.lang-switcher { display: flex; gap: 0.3rem; font-size: .8rem; }
.lang-switcher a {
    padding: 0.2rem 0.5rem; border: 1px solid transparent; border-radius: 2px;
}
.lang-switcher a.active { border-color: var(--gold); color: var(--gold); }
.menu-toggle {
    display: none; background: none; border: 0; font-size: 1.6rem;
    cursor: pointer; color: var(--charcoal); padding: .3rem .5rem;
    z-index: 60;
}

/* Backdrop shown when mobile drawer is open */
.nav-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45);
    z-index: 45; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
    /* Lift the whole nav above the backdrop so the slide-in menu is clickable.
       Without this, the parent .nav (z-index:50, sticky) traps the menu in a
       low stacking context and the body-level backdrop covers it. */
    .nav { z-index: 9200 !important; }
    .menu-toggle { display: block !important; }
    .nav-links {
        position: fixed !important;
        top: 0 !important; right: -100% !important; bottom: 0 !important; left: auto !important;
        width: 82% !important; max-width: 320px !important; height: 100vh !important;
        flex-direction: column !important; align-items: flex-start !important;
        background: var(--white) !important;
        padding: 5rem 2rem 2rem !important; gap: 1.2rem !important;
        transition: right 0.3s ease !important;
        box-shadow: -8px 0 30px rgba(0,0,0,0.15) !important;
        z-index: 9100 !important;
        overflow-y: auto !important;
    }
    .nav-links.open { right: 0 !important; }
    .nav-links a {
        font-size: 1rem !important; padding: .7rem 0 !important; width: 100% !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    }
    .nav-links a:hover::after, .nav-links a.active::after { display: none !important; }
    .nav-inner { padding: .8rem 1rem !important; }
    .brand { font-size: 1.5rem !important; }
    .nav-backdrop { z-index: 9000 !important; }
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: 0.85rem 1.8rem; border-radius: 2px;
    font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    border: 1px solid transparent; cursor: pointer; transition: all .3s;
    text-decoration: none;
}
.btn-primary {
    background: var(--charcoal); color: var(--white);
    border-color: var(--charcoal);
}
.btn-primary:hover {
    background: var(--gold); border-color: var(--gold); color: var(--charcoal);
}
.btn-gold {
    background: var(--gold); color: var(--charcoal); border-color: var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline {
    background: transparent; color: var(--charcoal); border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-ghost {
    background: transparent; color: var(--charcoal); border: 1px solid rgba(0,0,0,0.15);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: .55rem 1.1rem; font-size: .75rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-danger { background: #b00020; border-color: #b00020; color: white; }
.btn-danger:hover { background: #800015; border-color: #800015; }

/* ----- Hero ----- */
.hero {
    position: relative; padding: clamp(4rem, 10vw, 8rem) 0; overflow: hidden;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a1a2a 100%);
    color: var(--soft);
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(244,194,194,0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(212,175,55,0.12) 0%, transparent 50%);
}
.hero-inner { position: relative; text-align: center; max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero .accent { color: var(--gold); font-style: italic; }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 2.5rem; }
.hero-divider {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin: 1.5rem auto; max-width: 200px; color: var(--gold);
}
.hero-divider::before, .hero-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--gold); opacity: 0.5;
}

/* Search bar */
.search-bar {
    display: flex; gap: 0; max-width: 700px; margin: 0 auto;
    background: var(--white); border-radius: 2px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.search-bar input, .search-bar select {
    flex: 1; border: 0; padding: 1.1rem 1.2rem; font-family: var(--sans);
    font-size: 0.95rem; color: var(--charcoal); background: var(--white);
    border-right: 1px solid rgba(0,0,0,0.08);
    min-width: 0;
}
.search-bar input:focus, .search-bar select:focus { outline: none; background: var(--soft); }
.search-bar button {
    padding: 0 2rem; border: 0; background: var(--gold); color: var(--charcoal);
    font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
    font-size: 0.85rem; transition: background .3s;
}
.search-bar button:hover { background: var(--charcoal); color: var(--white); }

@media (max-width: 700px) {
    .search-bar { flex-direction: column; }
    .search-bar input, .search-bar select { border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .search-bar button { padding: 1rem; }
}

/* ----- Section heading ----- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
    color: var(--gold); font-size: 0.8rem; letter-spacing: 0.3em;
    text-transform: uppercase; margin-bottom: 0.6rem;
}
.section-head h2 { margin-bottom: 0.4rem; }
.section-head .underline {
    display: inline-block; width: 60px; height: 1px;
    background: var(--gold); margin-top: 1rem;
}

/* ----- Listing card grid ----- */
.grid {
    display: grid; gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
    background: var(--white); border-radius: 4px; overflow: hidden;
    transition: transform .4s, box-shadow .4s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.card-img {
    position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--charcoal);
}
.card-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .8s;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0.6; transition: opacity .3s;
}
.card:hover .card-img::after { opacity: 0.85; }

.card-tier {
    position: absolute; top: 1rem; right: 1rem; z-index: 2;
    padding: .35rem .8rem; font-size: .65rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px;
}
.tier-vip { background: var(--gold); color: var(--charcoal); }
.tier-featured { background: var(--blush); color: var(--charcoal); }
.tier-standard { background: var(--white); color: var(--charcoal); border: 1px solid rgba(0,0,0,0.1); }

.card-body { padding: 1.25rem 1.4rem 1.5rem; }
.card-title {
    font-family: var(--serif); font-size: 1.3rem; margin: 0 0 .3rem;
}
.card-meta {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .85rem; color: rgba(0,0,0,0.6);
}
.card-meta .price { color: var(--gold); font-weight: 600; font-family: var(--serif); font-size: 1.1rem; }
.card-city { font-size: .8rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* ----- Listing detail ----- */
.profile-hero {
    background: var(--charcoal); color: var(--soft);
    padding: 3rem 0;
}
.profile-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start;
}
@media (max-width: 900px) { .profile-grid { grid-template-columns: 1fr; gap: 2rem; } }

.gallery-main {
    aspect-ratio: 3/4; overflow: hidden; border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.gallery-thumbs {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin-top: .8rem;
}
.gallery-thumbs img {
    aspect-ratio: 1/1; object-fit: cover; cursor: pointer; opacity: .65;
    transition: opacity .25s; border-radius: 2px;
}
.gallery-thumbs img:hover, .gallery-thumbs img.active { opacity: 1; outline: 2px solid var(--gold); }

.profile-info h1 { color: var(--white); }
.profile-info .tier-badge {
    display: inline-block; padding: .35rem .9rem; font-size: .7rem;
    letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1rem;
    background: var(--gold); color: var(--charcoal); border-radius: 2px;
}
.profile-meta {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem;
    margin: 2rem 0; padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.profile-meta dt { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; }
.profile-meta dd { margin: 0; color: var(--soft); font-size: 1rem; }

.contact-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.contact-row .btn { flex: 1; min-width: 140px; }

.profile-body {
    background: var(--white); padding: 4rem 0;
}
.services-table {
    width: 100%; border-collapse: collapse; margin-top: 1rem;
}
.services-table td {
    padding: .8rem 0; border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.services-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; }

/* ----- Filters sidebar ----- */
.listing-layout {
    display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem;
    margin-top: 2rem;
}
@media (max-width: 900px) { .listing-layout { grid-template-columns: 1fr; } }
.filter-box {
    background: var(--white); padding: 1.5rem; border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.filter-box h4 {
    font-family: var(--serif); font-size: 1.1rem; margin-bottom: 1rem;
    padding-bottom: .8rem; border-bottom: 1px solid rgba(0,0,0,0.08);
}
.filter-box label { display: block; font-size: .85rem; margin-bottom: .4rem; color: var(--charcoal-2); }
.filter-box input, .filter-box select {
    width: 100%; padding: .6rem .8rem; border: 1px solid rgba(0,0,0,0.12);
    border-radius: 2px; font-family: var(--sans); font-size: .9rem;
    background: var(--soft); margin-bottom: 1rem;
}
.filter-box input:focus, .filter-box select:focus { outline: none; border-color: var(--gold); }
.filter-row { display: flex; gap: .5rem; }
.filter-row input { flex: 1; }

/* ----- Forms ----- */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; color: var(--charcoal-2); }
.form-control {
    width: 100%; padding: .8rem 1rem; border: 1px solid rgba(0,0,0,0.15);
    border-radius: 2px; font-family: var(--sans); font-size: .95rem;
    background: var(--white); transition: border-color .25s;
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-help { font-size: .78rem; color: rgba(0,0,0,0.55); margin-top: .3rem; }

.alert {
    padding: 1rem 1.2rem; border-radius: 3px; margin-bottom: 1.2rem;
    border-left: 3px solid; font-size: .9rem;
}
.alert-success { background: #f0f9f0; border-color: #2e7d32; color: #1b5e20; }
.alert-error   { background: #fdf0f0; border-color: #b00020; color: #800015; }
.alert-info    { background: #fefbf2; border-color: var(--gold); color: #6b5400; }

/* ----- Age Gate Overlay ----- */
.age-gate {
    position: fixed; inset: 0; z-index: 9999;
    background: linear-gradient(135deg, rgba(26,26,26,0.97), rgba(44,28,44,0.97));
    backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
}
.age-gate-box {
    max-width: 540px; background: var(--soft); padding: 3rem 2.5rem;
    text-align: center; border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    border-top: 3px solid var(--gold);
}
.age-gate-box h2 {
    font-family: var(--serif); color: var(--charcoal); margin-bottom: 1.5rem;
    font-size: 1.8rem;
}
.age-gate-box p { color: var(--charcoal-2); margin-bottom: 1rem; }
.age-gate-box .legal { font-size: .8rem; color: rgba(0,0,0,0.55); margin: 1.5rem 0; }
.age-gate-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.age-gate-lang { display: flex; gap: .5rem; justify-content: center; font-size: .75rem; margin-bottom: 1rem; }
.age-gate-lang a { color: rgba(0,0,0,0.5); padding: .2rem .6rem; }
.age-gate-lang a.active { color: var(--gold); border-bottom: 1px solid var(--gold); }
.age-gate-flower {
    width: 60px; height: 60px; margin: 0 auto 1rem;
    background: radial-gradient(circle, var(--blush) 0%, var(--gold) 70%);
    border-radius: 50%; opacity: 0.85;
    box-shadow: 0 0 40px var(--gold-glow);
}

/* ----- Footer ----- */
.footer {
    background: var(--charcoal); color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem; margin-top: 4rem;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
    color: var(--gold); font-family: var(--sans); font-size: .85rem;
    letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .6rem; }
.footer a { color: rgba(255,255,255,0.65); }
.footer a:hover { color: var(--gold); }
.footer .brand { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem; display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem; font-size: .8rem;
}

/* ----- Pagination ----- */
.pagination {
    display: flex; gap: .4rem; justify-content: center; margin-top: 3rem;
}
.pagination a, .pagination span {
    padding: .55rem .9rem; border: 1px solid rgba(0,0,0,0.12);
    color: var(--charcoal); border-radius: 2px; font-size: .85rem;
}
.pagination a:hover { background: var(--charcoal); color: var(--white); }
.pagination .active { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* ----- Admin layout ----- */
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side {
    background: var(--charcoal); color: var(--soft); padding: 2rem 0;
    position: sticky; top: 0; height: 100vh; overflow-y: auto;
    z-index: 50;
}

/* Mobile hamburger for admin/dev panels — hidden on desktop */
.admin-toggle {
    display: none; background: var(--charcoal); color: var(--white);
    border: 0; padding: .55rem .9rem; border-radius: 3px;
    font-size: 1.3rem; cursor: pointer; line-height: 1;
}
.admin-mobile-bar {
    display: none; position: sticky; top: 0; z-index: 40;
    background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: .7rem 1rem; align-items: center; gap: .8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.admin-mobile-bar .brand { font-size: 1.3rem; flex: 1; }
.admin-backdrop {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 49; opacity: 0; transition: opacity .25s;
}
.admin-backdrop.show { display: block; opacity: 1; }

@media (max-width: 800px) {
    .admin-shell { grid-template-columns: 1fr !important; }
    .admin-mobile-bar { display: flex !important; }
    .admin-toggle { display: inline-flex !important; align-items: center !important; }
    .admin-side {
        position: fixed !important;
        top: 0 !important; left: -280px !important; bottom: 0 !important; right: auto !important;
        width: 270px !important; height: 100vh !important;
        transition: left 0.3s ease !important;
        box-shadow: 8px 0 30px rgba(0,0,0,0.3) !important;
        z-index: 9100 !important;
    }
    .admin-side.open { left: 0 !important; }
    .admin-backdrop.show { display: block !important; opacity: 1 !important; z-index: 9000 !important; }
    .admin-main { padding: 1.2rem; }
    .admin-head { margin-bottom: 1.2rem; }
    .admin-head h1 { font-size: 1.5rem; }
    .admin-card { padding: 1.2rem; margin-bottom: 1rem; }
    .admin-table th, .admin-table td { padding: .6rem; font-size: .82rem; }
    .admin-stats { grid-template-columns: 1fr 1fr; gap: .8rem; }
    .admin-stat { padding: 1rem; }
    .admin-stat .value { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
}
.admin-side .brand { display: block; padding: 0 1.5rem 1.5rem; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-side ul { list-style: none; padding: 1rem 0; margin: 0; }
.admin-side a {
    display: block; padding: .8rem 1.5rem; color: rgba(255,255,255,0.75);
    font-size: .9rem; border-left: 3px solid transparent;
}
.admin-side a:hover, .admin-side a.active {
    background: rgba(255,255,255,0.05); color: var(--gold); border-left-color: var(--gold);
}
.admin-main { padding: 2.5rem; background: var(--soft); }
.admin-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.admin-card {
    background: var(--white); padding: 2rem; border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); margin-bottom: 1.5rem;
}
.admin-table {
    width: 100%; border-collapse: collapse; background: var(--white);
}
.admin-table th, .admin-table td {
    padding: 1rem; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: .9rem;
}
.admin-table th { background: var(--soft); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.admin-table tr:hover { background: var(--soft); }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.admin-stat {
    background: var(--white); padding: 1.5rem; border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.admin-stat .label { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(0,0,0,0.55); }
.admin-stat .value { font-family: var(--serif); font-size: 2.4rem; color: var(--charcoal); margin-top: .3rem; }

/* ----- Auth page ----- */
.auth-shell {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--charcoal), #2a1a2a);
    padding: 2rem;
}
.auth-box {
    background: var(--white); padding: 3rem 2.5rem; border-radius: 4px;
    width: 100%; max-width: 420px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border-top: 3px solid var(--gold);
}
.auth-box .brand { display: block; text-align: center; margin-bottom: 2rem; font-size: 2rem; }

/* ----- Media manager ----- */
.dropzone {
    border: 2px dashed rgba(0,0,0,0.2); border-radius: 4px; padding: 3rem;
    text-align: center; color: rgba(0,0,0,0.55); cursor: pointer;
    transition: all .25s; background: var(--soft);
}
.dropzone:hover, .dropzone.drag { border-color: var(--gold); background: #fefbf2; color: var(--gold); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.media-item { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 3px; }
.media-item img { width: 100%; height: 100%; object-fit: cover; }
.media-item .remove {
    position: absolute; top: .4rem; right: .4rem; padding: .25rem .5rem;
    background: rgba(0,0,0,0.7); color: white; border-radius: 2px;
    font-size: .7rem; cursor: pointer; border: 0;
}

/* ----- Utility ----- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-1 { gap: 1rem; }
.hidden { display: none !important; }

.divider-flower {
    text-align: center; color: var(--gold); margin: 3rem 0;
    font-size: 1.4rem; opacity: 0.6;
}
.divider-flower::before, .divider-flower::after {
    content: '─'; margin: 0 1rem; opacity: 0.5;
}

/* ----- Print page styles for legal pages ----- */
.legal-page { padding: 4rem 0; max-width: 820px; margin: 0 auto; }
.legal-page h1 { margin-bottom: 2rem; }
.legal-page h2 { margin-top: 2.5rem; font-size: 1.5rem; color: var(--gold); }
.legal-page h3 { margin-top: 1.8rem; font-size: 1.15rem; }
.legal-page p, .legal-page li { line-height: 1.8; }

/* ================================================================
   Mobile-first refinements (≤ 600px)
   ================================================================ */
@media (max-width: 600px) {
    .container, .container-sm { padding: 0 1rem; }
    .topbar { font-size: .72rem; padding: .35rem 0; }
    .topbar-inner { gap: .3rem; }
    .topbar-inner > div:first-child { font-size: .7rem; }

    .hero { padding: 3rem 0; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: .95rem; margin-bottom: 1.5rem; }

    .section { padding: 2.5rem 0; }
    .section-head { margin-bottom: 1.8rem; }
    .section-head h2 { font-size: 1.5rem; }

    .grid { gap: 1.2rem; grid-template-columns: 1fr; }
    .card { border-radius: 6px; }
    .card-body { padding: 1rem 1.1rem 1.2rem; }
    .card-title { font-size: 1.1rem; }

    .profile-hero { padding: 2rem 0; }
    .profile-info h1 { font-size: 1.7rem; }
    .profile-meta { grid-template-columns: 1fr 1fr; gap: .8rem 1.2rem; margin: 1.2rem 0; padding: 1rem 0; }
    .profile-body { padding: 2.5rem 0; }
    .contact-row .btn { min-width: 0; flex: 1 1 100%; }

    .footer { padding: 2.5rem 0 1.5rem; margin-top: 2rem; }
    .footer-grid { gap: 1.8rem; margin-bottom: 2rem; }
    .footer-bottom { font-size: .72rem; flex-direction: column; text-align: center; gap: .5rem; }

    .listing-layout { gap: 1.2rem; margin-top: 1rem; }
    .filter-box { padding: 1rem; }

    .auth-box { padding: 2rem 1.5rem; }

    .age-gate-box { padding: 2rem 1.5rem; }
    .age-gate-box h2 { font-size: 1.4rem; }
    .age-gate-actions { flex-direction: column; }
    .age-gate-actions .btn { width: 100%; }

    .chat-fab { width: 52px; height: 52px; bottom: 16px; right: 16px; font-size: 1.4rem; }
    .chat-window { bottom: 80px; right: 16px; left: 16px; width: auto; max-width: none; height: 70vh; }
}
