/* =====================================================
   LUMIÈRE PHOTOGRAPHY — Black & Gold Theme
   ===================================================== */

:root {
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #1a1a1a;
    --gold: #c9a961;
    --gold-bright: #e4c585;
    --gold-dim: #8a7340;
    --cream: #f5efe0;
    --grey: #2a2a2a;
    --grey-light: #4a4a4a;
    --text: #e8e3d5;
    --text-dim: #9a9586;
    --border: rgba(201, 169, 97, 0.15);
    --border-bright: rgba(201, 169, 97, 0.4);

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Jost', -apple-system, sans-serif;

    --container: 1280px;
    --radius: 2px;
    --shadow-gold: 0 0 0 1px var(--border-bright), 0 20px 60px rgba(0,0,0,.6);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============= TOP BAR ============= */
.top-bar {
    background: #000;
    border-bottom: 1px solid var(--border);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.top-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: .55rem 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}
.top-bar-greeting {
    color: var(--text-dim);
    margin-right: auto;
}
.top-bar-link {
    color: var(--text-dim);
    position: relative;
    padding-bottom: 2px;
}
.top-bar-link:hover {
    color: var(--gold);
}
.top-bar-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s;
}
.top-bar-link:hover::after { width: 100%; }

/* ============= HEADER / NAV ============= */
.site-header {
    background: var(--black);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(10,10,10,0.92);
}
.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    display: flex;
    align-items: center;
    gap: .9rem;
    color: var(--cream);
}
.brand-mark {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    border: 1px solid var(--gold);
    padding: .25rem .65rem;
    font-style: italic;
}
.brand-mark.gold { color: var(--gold); }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 400;
}
.main-nav {
    display: flex;
    gap: 2.5rem;
}
.main-nav a {
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .8rem;
    font-weight: 400;
    position: relative;
    padding: .25rem 0;
}
.main-nav a::before {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all .3s;
    transform: translateX(-50%);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--gold);
}
.main-nav a:hover::before, .main-nav a.active::before {
    width: 100%;
}

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.15;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
.eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.eyebrow-line::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 1rem;
}

/* ============= HERO ============= */
.hero {
    height: calc(100vh - 130px);
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201,169,97,0.12), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
    z-index: 1;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1554080353-a576cf803bda?w=2000&q=80');
    background-size: cover;
    background-position: center;
    filter: grayscale(40%) contrast(1.1);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero h1 {
    font-style: italic;
    margin-bottom: 1.5rem;
}
.hero h1 .accent {
    color: var(--gold);
    font-style: normal;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

/* ============= BUTTONS ============= */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .25em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: -1;
}
.btn:hover {
    color: var(--black);
}
.btn:hover::before { transform: scaleX(1); }
.btn-solid {
    background: var(--gold);
    color: var(--black);
}
.btn-solid:hover {
    background: var(--gold-bright);
    color: var(--black);
}
.btn-solid::before { display: none; }
.btn-sm { padding: .65rem 1.5rem; font-size: .7rem; }
.btn-danger {
    border-color: #c54545;
    color: #c54545;
}
.btn-danger::before { background: #c54545; }
.btn-danger:hover { color: #fff; }

/* ============= SECTIONS ============= */
section { padding: 6rem 0; }
.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

/* ============= ALBUMS GRID ============= */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.album-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--black-card);
    border: 1px solid var(--border);
    transition: all .4s;
}
.album-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.album-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.4,0,.2,1), filter .4s;
    filter: brightness(.75);
}
.album-card:hover .album-card-img {
    transform: scale(1.06);
    filter: brightness(.6);
}
.album-card-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
}
.album-card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--cream);
    margin-bottom: .25rem;
}
.album-card-meta {
    font-size: .75rem;
    color: var(--gold);
    letter-spacing: .25em;
    text-transform: uppercase;
}
.album-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dim);
    border: 1px dashed var(--border);
}

/* ============= MEDIA GRID ============= */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.media-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--black-card);
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color .3s;
}
.media-item:hover { border-color: var(--gold); }
.media-item img, .media-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.media-item:hover img, .media-item:hover video { transform: scale(1.05); }
.media-item-badge {
    position: absolute;
    top: .75rem; right: .75rem;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    padding: .25rem .65rem;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: 1px solid var(--border-bright);
}

/* ============= FORMS ============= */
.form-wrap {
    max-width: 480px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--black-soft);
    border: 1px solid var(--border);
}
.form-wrap h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}
.form-control {
    width: 100%;
    padding: .85rem 1rem;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: border-color .25s;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 2rem; }
.form-actions .btn { width: 100%; }
.form-foot {
    text-align: center;
    margin-top: 1.5rem;
    font-size: .85rem;
    color: var(--text-dim);
}

/* ============= ALERTS ============= */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid;
    font-size: .9rem;
}
.alert-success { background: rgba(83,148,80,0.1); border-color: #539450; color: #a4d3a1; }
.alert-error { background: rgba(197,69,69,0.1); border-color: #c54545; color: #e9a4a4; }
.alert-info { background: rgba(201,169,97,0.08); border-color: var(--gold); color: var(--gold-bright); }

/* ============= ABOUT ============= */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-section img {
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 1px solid var(--border);
}
.about-content h2 { font-style: italic; margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.25rem; color: var(--text); line-height: 1.8; }
@media (max-width: 768px) { .about-section { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============= FOOTER ============= */
.site-footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    margin-top: 6rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: .2em;
    text-transform: uppercase;
}
.footer-copy { color: var(--text-dim); font-size: .85rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
    color: var(--text-dim);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .2em;
}
.footer-links a:hover { color: var(--gold); }

/* ============= DASHBOARD ============= */
.dash-wrap {
    display: block;  /* Sidebar removed - using header dropdown menu instead */
    min-height: calc(100vh - 130px);
}
.dash-content {
    padding: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}
.dash-content h1 { font-size: 2rem; margin-bottom: 2rem; font-style: italic; }
.dash-card {
    background: var(--black-soft);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 2rem;
}
.dash-card h2 { font-size: 1.4rem; margin-bottom: 1.25rem; }

/* ============= TABLES ============= */
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th, .table td {
    padding: .85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
}
.table th {
    color: var(--gold);
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: .7rem;
}
.table tr:hover { background: var(--black); }

.badge {
    display: inline-block;
    padding: .25rem .65rem;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: 1px solid;
}
.badge-pending { color: #d4a85b; border-color: #d4a85b; }
.badge-approved { color: #7ab578; border-color: #7ab578; }
.badge-rejected { color: #c54545; border-color: #c54545; }
.badge-verified { color: var(--gold); border-color: var(--gold); }
.badge-unverified { color: var(--text-dim); border-color: var(--text-dim); }

@media (max-width: 768px) {
    .dash-content { padding: 2rem 1.25rem; }
    .main-nav { gap: 1.25rem; }
    .main-nav a { font-size: .7rem; }
    .top-bar-inner { gap: .75rem; }
    .brand-name { font-size: 1rem; }
}

/* ============= MESSAGES ============= */
.msg-list { list-style: none; }
.msg-item {
    padding: 1.25rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    background: var(--black-soft);
}
.msg-item.unread {
    border-left: 3px solid var(--gold);
}
.msg-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
    font-size: .75rem;
    color: var(--text-dim);
    letter-spacing: .1em;
    text-transform: uppercase;
}
.msg-meta strong { color: var(--gold); font-weight: 500; }
.msg-subject {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: .5rem;
}
.msg-content { color: var(--text); line-height: 1.7; }
.msg-replies {
    margin-top: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border);
}

/* ============= COMMENTS ============= */
.comment {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.comment:last-child { border-bottom: none; }
.comment-meta {
    font-size: .75rem;
    color: var(--text-dim);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}
.comment-meta strong { color: var(--gold); }

/* ============= UTIL ============= */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.flex-row { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.divider {
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
    position: relative;
}
.divider::before {
    content: '◆';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--black);
    padding: 0 1rem;
    color: var(--gold);
    font-size: .65rem;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s cubic-bezier(.4,0,.2,1) backwards; }
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .25s; }
.fade-up.d3 { animation-delay: .4s; }

/* ============= PHASE 1 ADDITIONS ============= */

/* Header right section */
.header-right {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.header-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    text-decoration: none;
}
.header-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.online-dot {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--text-dim);
    border: 2px solid var(--black);
}
.online-dot.online { background: #4ade80; }

.notif-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--gold);
    color: var(--black);
    font-size: .65rem;
    font-weight: 600;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-book {
    background: var(--gold);
    color: var(--black);
    padding: .65rem 1.25rem;
    text-transform: none;
    letter-spacing: .05em;
    font-size: .85rem;
    border: 1px solid var(--gold);
    transition: all .25s;
    text-decoration: none;
    font-weight: 500;
}
.btn-book:hover { background: var(--gold-bright); color: var(--black); }

.btn-login {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: .65rem 1.25rem;
    text-transform: none;
    letter-spacing: .05em;
    font-size: .85rem;
    transition: all .25s;
    text-decoration: none;
}
.btn-login:hover { background: var(--gold); color: var(--black); }

/* User menu */
.user-menu { position: relative; }
.avatar-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--black-soft);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.avatar-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.user-dropdown {
    position: absolute;
    right: 0; top: calc(100% + .5rem);
    background: var(--black-soft);
    border: 1px solid var(--border);
    min-width: 220px;
    padding: .5rem 0;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.user-dropdown.show { display: block; }
.user-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}
.user-dropdown-header strong {
    display: block;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.05rem;
}
.user-dropdown-header small {
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.user-dropdown a {
    display: block;
    padding: .65rem 1rem;
    color: var(--text);
    font-size: .85rem;
    text-decoration: none;
}
.user-dropdown a:hover {
    background: var(--black);
    color: var(--gold);
}

/* ============= HERO V2 ============= */
.hero-v2 {
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-v2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-v2-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-v2-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 4rem 2rem;
}
.hero-v2 h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.hero-v2 .hero-sub {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-v2 .btn-hero {
    background: var(--gold);
    color: var(--black);
    padding: 1.1rem 2.5rem;
    border: none;
    font-size: .95rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: .03em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    transition: all .3s;
}
.hero-v2 .btn-hero:hover { background: var(--gold-bright); transform: translateY(-2px); }
.hero-v2 .btn-hero::after { content: '→'; }

/* Video section */
.video-section {
    padding: 5rem 0;
    text-align: center;
}
.video-frame {
    max-width: 1100px;
    margin: 2rem auto 0;
    aspect-ratio: 16/9;
    background: var(--black-soft);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.video-frame iframe,
.video-frame video {
    width: 100%; height: 100%;
    border: none;
}

/* Featured 2x2 grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    background: var(--black-card);
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.feature-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s;
    filter: brightness(.75);
}
.feature-card:hover img { transform: scale(1.05); filter: brightness(.6); }
.feature-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
}
.feature-card-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: .25rem;
    font-weight: 500;
}
.feature-card-content p {
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0;
}
.feature-empty {
    background: linear-gradient(135deg, var(--black-card), var(--black));
    border: 1px dashed var(--border);
}

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}
.faq-q {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    cursor: pointer;
    padding: .5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.5rem; transition: transform .25s; }
details[open] .faq-q::after { content: '−'; }
.faq-a {
    padding: 1rem 0 .5rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Blog cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.blog-card {
    background: var(--black-soft);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color .3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { border-color: var(--gold); }
.blog-card-img {
    aspect-ratio: 16/10;
    background: var(--black-card);
    background-size: cover;
    background-position: center;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-date {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}
.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: .5rem;
    font-weight: 500;
}
.blog-card-excerpt { color: var(--text-dim); font-size: .9rem; line-height: 1.6; }

/* CTA section */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--black-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 500;
}
.cta-section p {
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

/* Footer V2 */
.site-footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    margin-top: 0;
    text-align: center;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.social-circle {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all .25s;
}
.social-circle:hover { background: var(--gold); color: var(--black); }
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.footer-links a {
    color: var(--text);
    font-size: .95rem;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}
.footer-links a:hover { color: var(--gold); }
.footer-dot { color: var(--gold); font-size: .5rem; }
.footer-copy {
    color: var(--text-dim);
    font-size: .8rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Status widget (corner) */
.status-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(20,20,20,0.95);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    padding: .85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    max-width: 280px;
    z-index: 90;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.status-widget .status-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--text-dim);
    margin-top: 5px;
    flex-shrink: 0;
}
.status-widget.is-online .status-dot { background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.status-widget strong {
    display: block;
    color: var(--cream);
    font-size: .85rem;
    margin-bottom: .15rem;
}
.status-widget p { color: var(--text-dim); font-size: .75rem; margin: 0; line-height: 1.4; }

/* Chat bubble */
.chat-bubble {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px; height: 56px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* shown on smaller screens or when widget closed */
    align-items: center;
    justify-content: center;
    z-index: 95;
    box-shadow: 0 10px 30px rgba(201,169,97,.4);
}
@media (max-width: 768px) {
    .status-widget { display: none; }
    .chat-bubble { display: flex; }
}

/* Likes & views row */
.engagement-row {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    color: var(--text-dim);
    font-size: .85rem;
    padding: .5rem 0;
}
.engagement-row .pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(0,0,0,0.5);
    padding: .25rem .65rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}
.like-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: .35rem .85rem;
    border-radius: 16px;
    cursor: pointer;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: all .25s;
}
.like-btn:hover { background: var(--gold); color: var(--black); }
.like-btn.liked { background: var(--gold); color: var(--black); }


/* ============= Phase 1 fixes ============= */

/* Header layout improvements */
.site-header {
    padding: 1.25rem 0;
}
.nav-wrap {
    flex-wrap: wrap;
    gap: 1rem;
}
.main-nav {
    flex: 1;
    justify-content: center;
}

/* Position chat bubble bottom-LEFT so it doesn't fight with status widget on right */
.chat-bubble {
    right: auto;
    left: 1.5rem;
}

/* On mobile, simplify the header - hide some icons */
@media (max-width: 1024px) {
    .header-right .header-icon[title="Facebook"],
    .header-right .header-icon[title="Instagram"],
    .header-right .header-icon[title="WhatsApp"] {
        display: none; /* social icons in footer only on small screens */
    }
}
@media (max-width: 768px) {
    .nav-wrap {
        justify-content: space-between;
    }
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: .5rem;
        border-top: 1px solid var(--border);
        margin-top: .5rem;
        gap: 1rem;
    }
    .main-nav a { font-size: .7rem; letter-spacing: .15em; }
    .header-right { gap: .35rem; }
    .btn-book { padding: .5rem .85rem; font-size: .75rem; }
    .btn-login { padding: .5rem .85rem; font-size: .75rem; }
    .brand-name { font-size: 1rem; letter-spacing: .15em; }
    .status-widget {
        bottom: 5rem;
        right: .5rem;
        left: .5rem;
        max-width: none;
    }
}


/* ============= Gallery (Portfolio) cards ============= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.gallery-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 12px;
    background: var(--black-card);
    text-decoration: none;
    display: block;
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid transparent;
}
.gallery-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
.gallery-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.4,0,.2,1), filter .4s;
    filter: brightness(.7);
}
.gallery-card:hover .gallery-card-img {
    transform: scale(1.06);
    filter: brightness(.55);
}
.gallery-card-empty {
    background: linear-gradient(135deg, var(--black-card), var(--black));
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-card-empty span {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    font-style: italic;
    opacity: .4;
}
.gallery-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 60%, rgba(0,0,0,.95) 100%);
    z-index: 2;
}
.gallery-card-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--cream);
    margin: 0 0 .5rem 0;
    line-height: 1.2;
}
.gallery-card-desc {
    color: var(--text-dim);
    font-size: .8rem;
    line-height: 1.5;
    margin: 0 0 .85rem 0;
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: opacity .35s, max-height .35s;
}
.gallery-card:hover .gallery-card-desc {
    opacity: 1;
    max-height: 4em;
}
.gallery-card-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-dim);
    font-size: .8rem;
}
.gallery-card-stats span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--gold);
}


/* ============= ALBUM QUOTE ============= */
.album-quote {
    max-width: 820px;
    margin: 1rem auto 2.5rem;
    padding: 2rem 2.5rem;
    text-align: center;
    color: var(--text);
    line-height: 1.8;
    font-size: 1.05rem;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.album-quote::before,
.album-quote::after {
    content: '"';
    position: absolute;
    color: var(--gold);
    font-size: 4rem;
    font-family: var(--font-display);
    line-height: 1;
    opacity: .4;
}
.album-quote::before {
    top: -.5rem;
    left: 1rem;
}
.album-quote::after {
    bottom: -2rem;
    right: 1rem;
}
@media (max-width: 600px) {
    .album-quote {
        padding: 1.5rem 1rem;
        font-size: .95rem;
    }
    .album-quote::before, .album-quote::after { font-size: 2.5rem; }
}

/* ============= ROUND PILL BUTTON ============= */
.btn-round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: 1.15rem 2.5rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .03em;
    text-decoration: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 8px 25px rgba(201,169,97,.25);
    cursor: pointer;
}
.btn-round:hover {
    background: var(--gold-bright);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(201,169,97,.4);
}
.btn-round::after {
    content: '→';
    transition: transform .3s;
}
.btn-round:hover::after {
    transform: translateX(4px);
}
.btn-round.outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: none;
}
.btn-round.outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* ============= FOOTER REVIEW SUMMARY ============= */
.footer-reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem 1.25rem;
    background: rgba(201,169,97,.08);
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all .25s;
}
.footer-reviews-summary:hover {
    background: rgba(201,169,97,.18);
    border-color: var(--gold);
}
.footer-stars {
    display: inline-flex;
    gap: 1px;
    font-size: 1rem;
    letter-spacing: .05em;
}
.footer-stars-text {
    color: var(--text);
    font-size: .85rem;
}
.footer-stars-text strong {
    color: var(--gold);
    font-weight: 600;
    margin-right: .25rem;
}

/* ============= PAGE HERO BANNER (for inner pages) ============= */
.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 4rem 2rem;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
}
.page-hero-bg.fallback {
    background: linear-gradient(135deg, var(--black-card) 0%, var(--black) 100%);
}
.page-hero-bg.fallback::after {
    background: radial-gradient(ellipse at center, rgba(201,169,97,0.08) 0%, transparent 70%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.page-hero-content .eyebrow {
    margin-bottom: 1rem;
}
.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.page-hero-content .hero-subtitle {
    color: var(--text);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .page-hero { min-height: 280px; padding: 3rem 1.5rem; }
}

/* ============= NOTIFICATION DROPDOWN ============= */
.notif-menu { position: relative; }
.notif-btn { cursor: pointer; }

.notif-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + .5rem);
    width: 360px;
    max-width: 90vw;
    background: var(--black-soft);
    border: 1px solid var(--border);
    z-index: 100;
    display: none;
    box-shadow: 0 15px 50px rgba(0,0,0,.6);
    border-radius: 4px;
    overflow: hidden;
}
.notif-dropdown.show { display: block; }

.notif-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.4);
}
.notif-dropdown-header strong {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.1rem;
}
.notif-dropdown-header small {
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.notif-dropdown-list {
    max-height: 380px;
    overflow-y: auto;
}

.notif-empty {
    padding: 2rem 1.25rem;
    text-align: center;
    color: var(--text-dim);
    font-size: .9rem;
}

.notif-item {
    display: flex;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background .15s;
    align-items: flex-start;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--black); }
.notif-item.unread {
    background: rgba(201,169,97,.05);
}

.notif-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: transparent;
    margin-top: 6px;
    flex-shrink: 0;
}
.notif-item.unread .notif-dot {
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

.notif-body { flex: 1; min-width: 0; }
.notif-body strong {
    display: block;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: .15rem;
}
.notif-body p {
    color: var(--text-dim);
    font-size: .8rem;
    line-height: 1.4;
    margin: 0 0 .25rem;
}
.notif-body small {
    color: var(--text-dim);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.notif-dropdown-footer {
    display: block;
    text-align: center;
    padding: .85rem;
    border-top: 1px solid var(--border);
    color: var(--gold);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    text-decoration: none;
    transition: background .2s;
}
.notif-dropdown-footer:hover { background: var(--black); color: var(--gold-bright); }

@media (max-width: 480px) {
    .notif-dropdown {
        right: -50px;
        width: 320px;
    }
}

/* ============= HOMEPAGE PROMO VIDEOS ============= */
.promo-videos-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}
.promo-videos-grid {
    display: grid;
    gap: 1.5rem;
}
/* 1 video: full width centered, max 800px */
.promo-videos-grid.promo-count-1 {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}
/* 2 videos: side by side */
.promo-videos-grid.promo-count-2 {
    grid-template-columns: repeat(2, 1fr);
}
/* 3 videos: three columns */
.promo-videos-grid.promo-count-3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    .promo-videos-grid.promo-count-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .promo-videos-grid.promo-count-2,
    .promo-videos-grid.promo-count-3 { grid-template-columns: 1fr; }
}

.promo-video-card {
    background: var(--black-soft);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all .3s;
    border-radius: 4px;
}
.promo-video-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
.promo-video-card video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    background: #000;
}
.promo-video-caption {
    padding: 1.25rem;
    text-align: center;
}
.promo-video-caption h3 {
    font-family: var(--font-display);
    color: var(--cream);
    font-size: 1.3rem;
    font-style: italic;
    margin: 0 0 .25rem;
    font-weight: 400;
}
.promo-video-caption p {
    color: var(--text-dim);
    font-size: .85rem;
    margin: 0;
    line-height: 1.5;
}

/* ============= UNIVERSAL MEDIA LIGHTBOX ============= */
.media-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ml-fade-in .25s ease;
}
@keyframes ml-fade-in { from { opacity: 0; } to { opacity: 1; } }

.ml-loading, .ml-error {
    color: var(--cream);
    text-align: center;
    font-family: var(--font-display);
}
.ml-spinner {
    width: 48px; height: 48px;
    border: 2px solid rgba(201,169,97,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: ml-spin 0.8s linear infinite;
}
@keyframes ml-spin { to { transform: rotate(360deg); } }

.ml-close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.ml-close:hover { background: var(--gold); color: var(--black); transform: rotate(90deg); }

.ml-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    width: min(100%, 1400px);
    height: min(95vh, 900px);
    margin: auto;
    background: var(--black);
    border: 1px solid var(--border);
}
@media (max-width: 900px) {
    .ml-content { grid-template-columns: 1fr; height: 100vh; width: 100%; }
}

.ml-media-wrap {
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ml-media {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .25s ease-out;
}
.ml-image { user-select: none; cursor: zoom-in; }
.ml-video { width: 100%; height: 100%; }

.ml-zoom-controls {
    position: absolute;
    bottom: 1rem; right: 1rem;
    display: flex;
    gap: .25rem;
    background: rgba(0,0,0,0.7);
    padding: .25rem;
    border-radius: 50px;
    border: 1px solid rgba(201,169,97,0.3);
}
.ml-zoom-controls button {
    background: transparent;
    border: none;
    color: var(--gold);
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background .15s;
}
.ml-zoom-controls button:hover { background: rgba(201,169,97,0.2); }

.ml-sidebar {
    background: var(--black-soft);
    padding: 1.5rem;
    overflow-y: auto;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
@media (max-width: 900px) {
    .ml-sidebar { border-left: none; border-top: 1px solid var(--border); max-height: 50vh; }
}

.ml-sidebar h2 {
    font-family: var(--font-display);
    color: var(--cream);
    font-style: italic;
    font-size: 1.3rem;
    margin: 0 0 .25rem;
    font-weight: 400;
}
.ml-context {
    color: var(--text-dim);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.ml-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.ml-like-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: .4rem .85rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: .9rem;
    transition: all .2s;
}
.ml-like-btn:hover { border-color: var(--gold); color: var(--gold); }
.ml-like-btn.active {
    background: rgba(201,169,97,0.15);
    border-color: var(--gold);
    color: var(--gold);
}
.ml-heart { font-size: 1.1rem; line-height: 1; }
.ml-stat {
    color: var(--text-dim);
    font-size: .9rem;
}

.ml-comments-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.ml-comments-wrap h3 {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin: 0 0 .75rem;
    font-style: italic;
}
.ml-comments-list {
    flex: 1;
    overflow-y: auto;
    padding-right: .35rem;
    margin-bottom: 1rem;
}
.ml-loading-comments, .ml-info {
    color: var(--text-dim);
    font-size: .85rem;
    text-align: center;
    padding: 1rem 0;
}

.ml-comment {
    display: flex;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
}
.ml-comment:last-child { border-bottom: none; }
.ml-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--black);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ml-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ml-avatar span {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: .9rem;
}
.ml-comment-body { flex: 1; min-width: 0; }
.ml-comment-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .15rem;
}
.ml-comment-head strong {
    color: var(--gold);
    font-family: var(--font-display);
    font-style: italic;
    font-size: .9rem;
}
.ml-comment-head small {
    color: var(--text-dim);
    font-size: .7rem;
    letter-spacing: .1em;
}
.ml-comment-body p {
    color: var(--text);
    font-size: .85rem;
    line-height: 1.5;
    margin: 0;
}

.ml-comment-form {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}
.ml-comment-form textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .65rem;
    font-family: var(--font-body);
    font-size: .9rem;
    border-radius: 4px;
    resize: vertical;
    min-height: 70px;
    margin-bottom: .5rem;
}
.ml-comment-form textarea:focus { outline: none; border-color: var(--gold); }
.ml-flash {
    margin: .5rem 0 0;
    padding: .5rem;
    font-size: .8rem;
    text-align: center;
    border-radius: 4px;
}
.ml-flash.ok { background: rgba(83,148,80,0.15); color: #7ab578; border: 1px solid rgba(83,148,80,0.3); }
.ml-flash.pending { background: rgba(201,169,97,0.15); color: var(--gold); border: 1px solid rgba(201,169,97,0.3); }
.ml-info a { color: var(--gold); text-decoration: underline; }

/* === Engagement badges shown on cards === */
.eng-badges {
    display: flex;
    gap: .85rem;
    color: var(--text-dim);
    font-size: .8rem;
}
.eng-badges span { display: inline-flex; align-items: center; gap: .25rem; }

/* === Lightbox-trigger cursor hint === */
[data-lightbox-type][data-lightbox-id] {
    cursor: pointer;
    transition: opacity .2s;
}
[data-lightbox-type][data-lightbox-id]:hover { opacity: .92; }

/* Promo video engagement bar */
.promo-video-engage {
    display: flex;
    gap: .85rem;
    padding: .65rem 1.25rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: .8rem;
    align-items: center;
    cursor: pointer;
    transition: background .2s;
}
.promo-video-engage:hover {
    background: rgba(201,169,97,0.05);
    color: var(--gold);
}
.promo-video-engage-cta {
    margin-left: auto;
    color: var(--gold);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .15em;
}

/* === HOMEPAGE BLOG GRID - 4 columns === */
.blog-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 1100px) { .blog-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid-4 { grid-template-columns: 1fr; } }

.blog-card-stats {
    display: flex;
    gap: 1rem;
    padding-top: .85rem;
    margin-top: .85rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: .8rem;
}
.blog-card-stats span { display: inline-flex; align-items: center; gap: .25rem; }

/* === Feature card zoom button === */
.feature-card { position: relative; }
.feature-zoom-btn {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all .25s;
    z-index: 5;
}
.feature-card:hover .feature-zoom-btn {
    opacity: 1;
    transform: scale(1);
}
.feature-zoom-btn:hover {
    background: var(--gold);
    color: var(--black);
}
@media (max-width: 768px) {
    /* On touch devices, always show the button */
    .feature-zoom-btn { opacity: 1; transform: scale(1); }
}

/* === Simple image lightbox (no comments panel) === */
.simple-lightbox .ml-simple-content {
    width: min(95vw, 1400px);
    height: min(95vh, 900px);
    margin: auto;
    display: flex;
    flex-direction: column;
}
.simple-lightbox .ml-media-wrap {
    flex: 1;
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ml-simple-caption {
    background: var(--black-soft);
    color: var(--cream);
    text-align: center;
    padding: 1rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    border-top: 1px solid var(--border);
}

/* ============= GROUPED USER DROPDOWN ============= */
.user-dropdown-grouped {
    width: 820px;
    max-width: calc(100vw - 2rem);
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
    border-radius: 4px;
}
.user-dropdown-grouped .user-dropdown-header {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: rgba(201,169,97,0.06);
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(8px);
}
.user-dropdown-grouped .user-dropdown-header strong {
    display: block;
    color: var(--cream);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.2;
}
.user-dropdown-grouped .user-dropdown-header small {
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: .15rem;
    display: inline-block;
}

/* Mega-menu body: 3-column grid on desktop */
.user-dropdown-grouped .user-dropdown-body {
    padding: 1rem 1.25rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1.5rem;
    align-items: start;
}
.dd-group {
    display: flex;
    flex-direction: column;
    break-inside: avoid;
}
.dd-group-label {
    color: var(--gold);
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: 0 .65rem .55rem;
    font-weight: 500;
    margin: 0;
    border-bottom: 1px solid rgba(201,169,97,0.2);
    margin-bottom: .35rem;
}
.user-dropdown-grouped a {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .5rem .65rem;
    color: var(--text);
    text-decoration: none;
    font-size: .85rem;
    transition: background .15s, color .15s, transform .15s;
    border-radius: 4px;
    line-height: 1.3;
}
.user-dropdown-grouped a:hover {
    background: rgba(201,169,97,0.1);
    color: var(--gold);
    transform: translateX(2px);
}
.user-dropdown-grouped a.is-active {
    background: rgba(201,169,97,0.15);
    color: var(--gold);
    font-weight: 500;
}
.user-dropdown-grouped a.is-active::before {
    content: '';
    position: absolute;
    left: 0;
}
.dd-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    font-size: .95rem;
    opacity: .8;
}
.user-dropdown-grouped a:hover .dd-icon,
.user-dropdown-grouped a.is-active .dd-icon { opacity: 1; }
.dd-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Two columns at smaller dropdown widths */
@media (max-width: 1000px) {
    .user-dropdown-grouped { width: 580px; }
    .user-dropdown-grouped .user-dropdown-body {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1.5rem;
    }
}

/* Single column / accordion on small screens */
@media (max-width: 640px) {
    .user-dropdown-grouped {
        width: 320px;
        max-width: calc(100vw - 1rem);
    }
    .user-dropdown-grouped .user-dropdown-body {
        grid-template-columns: 1fr;
        gap: 0;
        padding: .35rem 0;
    }
    .dd-group {
        border-bottom: 1px solid var(--border);
        padding: 0;
    }
    .dd-group:last-child { border-bottom: none; }
    /* Accordion behavior: clickable header reveals/hides links */
    .dd-group-label {
        cursor: pointer;
        padding: .85rem 1.5rem;
        margin: 0;
        position: relative;
        user-select: none;
        border-bottom: none;
    }
    .dd-group-label::after {
        content: '+';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gold);
        font-size: 1.25rem;
        font-weight: normal;
        line-height: 1;
    }
    .dd-group.open .dd-group-label::after { content: '−'; }
    .dd-group-items {
        display: none;
        padding: 0 0 .75rem;
    }
    .dd-group.open .dd-group-items { display: block; }
    .user-dropdown-grouped a {
        padding: .65rem 1.5rem .65rem 2.25rem;
        font-size: .9rem;
        border-radius: 0;
    }
    .user-dropdown-grouped a:hover {
        transform: none;
    }
}

.user-dropdown-footer-section {
    border-top: 1px solid var(--border);
    padding: .35rem 0;
    background: var(--black);
    position: sticky;
    bottom: 0;
}
.dd-footer-link {
    color: #c54545 !important;
    padding: .75rem 1.5rem !important;
    font-size: .85rem !important;
    display: block !important;
}
.dd-footer-link:hover {
    background: rgba(197,69,69,0.1) !important;
    color: #ff6b6b !important;
    transform: none !important;
}

/* ============= MOBILE DASHBOARD BAR ============= */
.dash-mobile-bar {
    display: none;  /* hidden by default; shown on mobile */
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
    padding: .65rem 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.dash-mobile-user {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
}
.dash-mobile-user img,
.dash-mobile-letter {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    object-fit: cover;
    flex-shrink: 0;
}
.dash-mobile-letter {
    background: var(--black);
    color: var(--gold);
    font-family: var(--font-display);
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.dash-mobile-name { min-width: 0; line-height: 1.2; }
.dash-mobile-name strong {
    display: block;
    color: var(--cream);
    font-family: var(--font-display);
    font-style: italic;
    font-size: .95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dash-mobile-name small {
    color: var(--gold);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.dash-burger {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
    transition: all .2s;
}
.dash-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gold);
    transition: transform .25s, opacity .25s;
}
.dash-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.dash-burger.open span:nth-child(2) { opacity: 0; }
.dash-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.dash-burger:hover { background: rgba(201,169,97,0.1); }

/* Slide-out mobile dashboard menu */
.dash-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 340px);
    height: 100vh;
    background: var(--black);
    border-left: 1px solid var(--gold);
    z-index: 9999;
    overflow-y: auto;
    transition: right .3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.6);
}
.dash-mobile-menu.open { right: 0; }
.dash-mobile-menu-inner { padding: 1rem 0; }
.dash-mobile-menu .dd-group-label {
    color: var(--gold);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 1rem 1.5rem .4rem;
    font-weight: 500;
    border-top: 1px solid var(--border);
    margin-top: .25rem;
}
.dash-mobile-menu .dd-group-label:first-child { margin-top: 0; border-top: none; }
.dash-mobile-menu a {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    transition: all .15s;
}
.dash-mobile-menu a:hover { background: rgba(201,169,97,0.08); color: var(--gold); }
.dash-mobile-menu a.is-active { background: rgba(201,169,97,0.12); color: var(--gold); border-left: 3px solid var(--gold); padding-left: calc(1.5rem - 3px); }
.dash-mobile-menu a .dd-icon {
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    font-size: 1.05rem;
    opacity: .8;
}
.dash-mobile-menu .dd-footer-link { color: #c54545 !important; }

/* Show mobile bar only on mobile */
@media (max-width: 900px) {
    .dash-mobile-bar { display: flex; }
    .dash-mobile-menu { display: block; }
    /* Hide the avatar dropdown on mobile (mobile bar replaces it) */
    .header-right .user-menu { display: none; }
    /* Dashboard content padding tighter on mobile */
    .dash-content { padding: 1.5rem 1rem; }
}

/* Location-mode radio cards on admin services page */
.loc-radio {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem .85rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: all .2s;
    background: var(--black);
    font-size: .85rem;
    color: var(--text);
}
.loc-radio:hover { border-color: var(--gold); }
.loc-radio:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201,169,97,0.1);
    color: var(--gold);
}
.loc-radio input { margin: 0; }
@media (max-width: 600px) {
    .loc-radio { font-size: .8rem; padding: .5rem; }
}

/* Role + password method radio cards on admin user create page */
.role-radio {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .85rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    background: var(--black);
    transition: all .2s;
}
.role-radio:hover { border-color: var(--gold); }
.role-radio:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201,169,97,0.05);
}
.role-radio input { margin: .2rem 0 0 0; flex-shrink: 0; }
.role-radio strong { display: block; color: var(--cream); font-size: .9rem; margin-bottom: .15rem; }
.role-radio small { color: var(--text-dim); font-size: .75rem; line-height: 1.4; display: block; }
@media (max-width: 600px) {
    .role-radio { padding: .65rem; }
    .role-radio strong { font-size: .85rem; }
    .role-radio small { font-size: .7rem; }
}

/* ============= AUTH HERO (login/register/forgot/reset) ============= */
.auth-hero {
    position: relative;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    overflow: hidden;
}
.auth-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1a1a1a;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.auth-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}
.auth-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 900px) {
    .auth-hero-content { grid-template-columns: 1fr; gap: 2rem; max-width: 480px; }
}
.auth-hero-greeting {
    color: var(--cream);
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.auth-hero-greeting .eyebrow {
    color: var(--gold);
    margin-bottom: 1rem;
}
.auth-hero-greeting h1 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--cream);
    line-height: 1.05;
    margin: 0 0 1rem;
    font-weight: 400;
}
.auth-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--gold);
    margin: 0;
    letter-spacing: .02em;
}
.auth-form-card {
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.auth-form-card h2 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.75rem;
    color: var(--cream);
    text-align: center;
    margin: 0 0 1.5rem;
    font-weight: 400;
}
.auth-form-card .form-group { margin-bottom: 1rem; }
.auth-form-card .form-group label {
    color: var(--text-dim);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .35rem;
    display: block;
}
.auth-form-card .form-control {
    width: 100%;
    padding: .75rem .9rem;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: .95rem;
    transition: border-color .2s;
}
.auth-form-card .form-control:focus {
    outline: none;
    border-color: var(--gold);
}
.auth-form-card .form-actions { margin-top: 1.5rem; }
.auth-form-card .btn-block {
    width: 100%;
    padding: .85rem;
    font-size: .95rem;
}
.auth-form-card .form-foot {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-dim);
    font-size: .85rem;
}
.auth-form-card .form-foot a {
    color: var(--gold);
    text-decoration: none;
}
.auth-form-card .form-foot a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .auth-hero { padding: 2rem 1rem; }
    .auth-form-card { padding: 1.75rem 1.25rem; }
    .auth-hero-greeting { text-align: center; }
}

.btn-block { display: block; width: 100%; text-align: center; }

/* Hero title second line - italic gold accent below the main title */
.hero-v2 h1 .hero-title-line2 {
    display: block;
    color: var(--gold);
    font-style: italic;
    margin-top: .25em;
    font-size: 0.85em;
    letter-spacing: 0.01em;
}

/* ========== Shared admin/customer dashboard components ========== */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
}
.stat-card {
    background: var(--black-soft);
    border: 1px solid var(--border);
    padding: 1.5rem 1.25rem;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all .25s;
    display: block;
}
.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.stat-card-alert {
    border-color: var(--gold);
    background: rgba(201,169,97,0.05);
}
.stat-card .stat-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: .5rem;
}
.stat-card .stat-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.25rem;
    color: var(--cream);
    line-height: 1;
}
.stat-card .stat-label {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: .35rem;
}
.stat-card .stat-sub {
    font-size: .7rem;
    color: var(--gold);
    margin-top: .35rem;
}

/* Two-column dashboard layout */
.dash-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 800px) { .dash-two-col { grid-template-columns: 1fr; } }

/* Mini-stats inside cards */
.mini-stat {
    text-align: center;
    padding: 1rem .5rem;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 4px;
}
.mini-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.75rem;
    color: var(--gold);
    line-height: 1;
}
.mini-label {
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: .35rem;
}
.mini-sub { font-size: .65rem; color: var(--gold); margin-top: .15rem; }

/* Quick actions grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: .75rem;
}
.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1.25rem .75rem;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-decoration: none;
    transition: all .25s;
    text-align: center;
}
.quick-action:hover { border-color: var(--gold); background: rgba(201,169,97,0.05); }
.quick-icon { font-size: 1.5rem; }
.quick-label { color: var(--text); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }

/* Welcome banner */
.welcome-banner {
    background: linear-gradient(135deg, rgba(201,169,97,0.08), rgba(201,169,97,0.02));
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 1.75rem 2rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.welcome-banner h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--cream);
    line-height: 1.2;
    font-weight: 400;
}
.welcome-banner h1 em { color: var(--gold); font-style: italic; }
@media (max-width: 600px) {
    .welcome-banner { padding: 1.25rem; }
    .welcome-banner h1 { font-size: 1.35rem; }
}

/* Dashboard tabs */
.dash-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.dash-tab {
    padding: .85rem 1.5rem;
    color: var(--text-dim);
    text-decoration: none;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: all .2s;
}
.dash-tab:hover { color: var(--cream); }
.dash-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
@media (max-width: 600px) { .dash-tab { padding: .65rem 1rem; font-size: .75rem; } }

/* Time range picker */
.range-picker { display: flex; gap: .25rem; }
.range-btn {
    padding: .5rem 1rem;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: .8rem;
    text-decoration: none;
    border-radius: 3px;
    transition: all .2s;
}
.range-btn:hover { border-color: var(--gold); color: var(--cream); }
.range-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Activity rows */
.activity-row { padding: .75rem 0; border-bottom: 1px solid var(--border); }
.activity-row:last-child { border-bottom: none; }
.activity-row-unread {
    border-left: 2px solid var(--gold);
    padding-left: .75rem;
    margin-left: -.75rem;
}
