/* =========================================================
   Vesyra Studios — editorial dark theme (gold + magenta)
   ========================================================= */

:root {
    --black: #070707;
    --near-black: #0e0e0e;
    --surface: #161616;
    --surface-2: #202020;
    --surface-3: #2c2c2a;
    --gold: #c9a24b;
    --gold-bright: #eccb7c;
    --gold-dark: #8a6c2c;
    --magenta: #e6205f;
    --magenta-dark: #ad1747;
    --white: #ffffff;
    --gray-100: #ece9e2;
    --gray-300: #b8b3aa;
    --gray-500: #8a847b;
    --gray-700: #4d4a44;
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --header-h: 76px;
    --max-width: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--black);
    color: var(--gray-100);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: 0.2px;
    font-weight: 700;
    margin: 0 0 0.5em;
    text-transform: none;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: #14100a;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-secondary {
    background: rgba(120, 112, 96, 0.35);
    color: var(--white);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 162, 75, 0.3);
}
.btn-secondary:hover { background: rgba(120, 112, 96, 0.55); border-color: var(--gold); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--gray-500);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    transition: background 0.35s ease;
}

.site-header.scrolled {
    background: rgba(7,7,7,0.96);
    box-shadow: 0 2px 16px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(201,162,75,0.12);
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.brand img { height: 40px; width: 40px; object-fit: contain; flex-shrink: 0; }
.brand-word {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--gold-bright);
    line-height: 1.1;
}
.brand-word span {
    display: block;
    font-family: var(--font-body);
    color: var(--gray-300);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 26px;
    flex: 1;
}
.main-nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--gray-100);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-bright); border-bottom-color: var(--gold); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; }

@media (max-width: 900px) {
    .header-inner { padding: 0 20px; gap: 16px; }
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--black);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        flex: none;
        width: 100%;
    }
    .main-nav.open { max-height: 400px; border-top: 1px solid var(--surface-3); }
    .main-nav a { padding: 16px 20px; border-bottom: 1px solid var(--surface-2); width: 100%; }
    .header-cta { display: none; }
    .nav-toggle { display: flex; }
}

/* ---------- Messages ---------- */
.messages-wrap {
    position: fixed;
    top: calc(var(--header-h) + 12px);
    right: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
}
.alert {
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.alert-success { background: #1f7a3f; color: #fff; }
.alert-error { background: var(--magenta); color: #fff; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 44px;
    background-size: cover;
    background-position: center 28%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        repeating-linear-gradient(115deg, rgba(255,224,160,0.025) 0px, rgba(255,224,160,0.025) 2px, transparent 2px, transparent 60px);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
    padding: 0 48px;
}

.hero-title {
    font-size: clamp(28px, 4.4vw, 46px);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-title .accent { color: var(--gold-bright); font-style: italic; }

.hero-sub {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--gray-100);
    max-width: 480px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-tags {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.hero-tag {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-300);
    border: 1px solid rgba(201,162,75,0.35);
    padding: 6px 14px;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .hero-content { padding: 0 20px; }
    .hero { padding-bottom: 32px; min-height: 58vh; }
}

/* ---------- Rows (horizontal scroll) ---------- */
.row-section { padding: 50px 0; }
.row-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 48px;
    margin-bottom: 18px;
}
.row-header h2 { font-size: clamp(22px, 3vw, 30px); color: var(--white); margin: 0; }
.row-header a { font-size: 14px; color: var(--gray-300); font-weight: 600; }
.row-header a:hover { color: var(--gold-bright); }

.row-scroller {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 10px 48px 24px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--surface-3) transparent;
}
.row-scroller::-webkit-scrollbar { height: 8px; }
.row-scroller::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 10px; }

@media (max-width: 768px) {
    .row-header, .row-scroller { padding-left: 20px; padding-right: 20px; }
}

/* ---------- Cards ---------- */
.card {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 280px;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    background: var(--surface);
    border: 1px solid var(--surface-3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.65);
}
.card-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--surface-2);
}
.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.92) 100%);
}
.card-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--magenta);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 3px;
    z-index: 2;
}
.card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 14px;
    z-index: 2;
}
.card-body h3 {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: var(--white);
    margin: 0 0 3px;
}
.card-body p {
    font-size: 12px;
    color: var(--gray-300);
    margin: 0;
}

.card-icon {
    font-size: 40px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -60%);
    opacity: 0.35;
}

/* Service card variant (not horizontal scroll, used in grids) */
.service-card {
    background: var(--surface);
    border-radius: 10px;
    padding: 32px 26px;
    border: 1px solid var(--surface-3);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: var(--surface-2);
}
.service-icon { font-size: 34px; margin-bottom: 16px; display: block; }
.service-card h3 {
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
    font-size: 19px;
    color: var(--white);
    margin-bottom: 8px;
}
.service-card p { color: var(--gray-300); font-size: 14.5px; margin: 0; }
.service-card .service-tagline {
    color: var(--gold);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

/* ---------- Spotlight (single flagship project) ---------- */
.spotlight-section { padding: 30px 0 70px; }
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.spotlight-media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--surface-3);
    box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.spotlight-media img { width: 100%; display: block; }
.spotlight-copy .spotlight-meta {
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
.spotlight-copy p { color: var(--gray-300); font-size: 16px; margin-bottom: 26px; max-width: 520px; }

@media (max-width: 850px) {
    .spotlight-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Generic page hero (banner for inner pages) ---------- */
.page-banner {
    position: relative;
    padding: calc(var(--header-h) + 90px) 0 70px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.5), var(--black) 90%),
        linear-gradient(120deg, #191207 0%, #0e0e0e 50%, #070707 100%);
    border-bottom: 1px solid var(--surface-2);
}
.page-banner h1 { color: var(--white); font-size: clamp(38px, 6vw, 62px); margin-bottom: 10px; }
.page-banner p { color: var(--gray-300); font-size: 17px; max-width: 640px; }

/* ---------- About page ---------- */
.about-block { padding: 80px 0; }
.about-block.alt { background: var(--surface); }
.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-visual-frame {
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201,162,75,0.35);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.about-visual-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-flex p { color: var(--gray-300); font-size: 16px; margin-bottom: 16px; }

@media (max-width: 850px) {
    .about-flex { grid-template-columns: 1fr; gap: 32px; }
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.stat {
    text-align: center;
    padding: 26px 14px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid var(--surface-3);
}
.stat .num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: var(--gold-bright);
    display: block;
}
.stat .label { color: var(--gray-300); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.value-item {
    padding: 24px;
    border-left: 3px solid var(--gold);
    background: var(--surface);
}
.value-item h4 { color: var(--white); font-size: 16px; text-transform: none; letter-spacing: 0; margin-bottom: 6px; }
.value-item p { color: var(--gray-300); font-size: 14px; margin: 0; }

/* ---------- Services page ---------- */
.services-page { padding: 70px 0 100px; }
.service-category { margin-bottom: 60px; }
.service-category h2 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--surface-3);
}

/* ---------- Portfolio page ---------- */
.portfolio-page { padding: 70px 0 100px; }
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.filter-tab {
    padding: 9px 20px;
    border-radius: 100px;
    border: 1px solid var(--surface-3);
    color: var(--gray-300);
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--gray-100); color: var(--white); }
.filter-tab.active { background: var(--gold); border-color: var(--gold); color: #14100a; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}
.portfolio-grid .card { width: 100%; }

/* Gallery album cards: layered "stack of photos" look so it's obvious there's
   more than one image behind the thumbnail before you click in. */
.stack-card {
    position: relative;
}
.stack-card::before,
.stack-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.stack-card::before {
    z-index: 0;
    transform: translate(6px, 6px) rotate(1.4deg);
}
.stack-card::after {
    z-index: -1;
    opacity: 0.7;
    transform: translate(11px, 10px) rotate(-1.8deg);
}
.stack-card .card {
    position: relative;
    z-index: 1;
    width: 100%;
}
.stack-card:hover::before { transform: translate(8px, 8px) rotate(2.4deg); }
.stack-card:hover::after { transform: translate(14px, 13px) rotate(-2.8deg); }
.card-photo-count {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(10,9,7,0.72);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(2px);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

/* ---------- Portfolio detail ---------- */
.detail-hero {
    position: relative;
    padding: calc(var(--header-h) + 80px) 0 60px;
    background: linear-gradient(180deg, rgba(0,0,0,0.4), var(--black)), linear-gradient(120deg, #191207, #0e0e0e);
    border-bottom: 1px solid var(--surface-2);
}
.detail-hero .card-badge { position: static; display: inline-block; margin-bottom: 14px; }
.detail-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 50px); }
.detail-meta { color: var(--gray-300); font-size: 14px; margin-top: 10px; }
.detail-body { padding: 60px 0; max-width: 800px; }
.detail-body p { color: var(--gray-300); font-size: 16px; margin-bottom: 18px; }
.back-link { color: var(--gray-300); font-size: 14px; margin-bottom: 24px; display: inline-block; }
.back-link:hover { color: var(--gold-bright); }

/* ---------- Contact page ---------- */
.contact-page { padding: 70px 0 100px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}
.contact-info-item .ci-icon {
    font-size: 22px;
    width: 44px; height: 44px;
    background: var(--surface);
    border: 1px solid var(--surface-3);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-item h4 { color: var(--white); font-size: 15px; text-transform: none; letter-spacing: 0; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--gray-300); font-size: 14.5px; }

.contact-form {
    background: var(--surface);
    border: 1px solid var(--surface-3);
    border-radius: 10px;
    padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; color: var(--gray-300); margin-bottom: 6px; font-weight: 600; }
.form-input {
    width: 100%;
    background: var(--near-black);
    border: 1px solid var(--surface-3);
    color: var(--white);
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14.5px;
    font-family: var(--font-body);
    transition: border-color 0.2s;
}
.form-input:focus {
    outline: none;
    border-color: var(--gold);
}
.errorlist { color: #ff7a9a; font-size: 12.5px; margin: 4px 0 0; padding: 0; list-style: none; }

/* ---------- CTA band ---------- */
.cta-band {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--surface), var(--black));
    border-top: 1px solid rgba(201,162,75,0.18);
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta-band p { color: var(--gray-300); margin-bottom: 28px; font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--near-black);
    border-top: 1px solid var(--surface-2);
    padding: 64px 0 24px;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand p { color: var(--gray-500); font-size: 13.5px; margin: 14px 0 18px; max-width: 320px; }
.footer-col h4 {
    color: var(--gray-100);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--gray-500); font-size: 13.5px; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 34px; height: 34px;
    border: 1px solid var(--surface-3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    color: var(--gray-300);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold-bright); }

.footer-bottom {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding: 20px 48px 0;
    border-top: 1px solid var(--surface-2);
    display: flex;
    justify-content: space-between;
    color: var(--gray-700);
    font-size: 12.5px;
}

@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
    .footer-bottom { padding: 20px 20px 0; flex-direction: column; gap: 8px; }
}
@media (max-width: 500px) {
    .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Team (About page) ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 34px;
}
.team-card {
    background: var(--surface);
    border: 1px solid var(--surface-3);
    border-radius: 12px;
    padding: 26px;
    text-align: center;
}
.team-photo-frame {
    width: 160px;
    height: 160px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: var(--surface-2);
}
.team-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.team-card h3 { font-size: 20px; margin-bottom: 2px; }
.team-role {
    display: block;
    color: var(--gold-bright);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.team-card p { color: var(--gray-300); font-size: 14.5px; margin: 0; text-align: left; }

/* ---------- Upcoming event banner (homepage) ---------- */
.upcoming-banner {
    display: block;
    background: linear-gradient(90deg, rgba(201,162,75,0.14), rgba(230,32,95,0.1));
    border-top: 1px solid rgba(201,162,75,0.3);
    border-bottom: 1px solid rgba(201,162,75,0.3);
    padding: 16px 0;
}
.upcoming-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.upcoming-banner-label {
    background: var(--magenta);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    flex-shrink: 0;
}
.upcoming-banner-title { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 17px; }
.upcoming-banner-date { color: var(--gray-300); font-size: 13.5px; flex: 1; }
.upcoming-banner-cta { color: var(--gold-bright); font-weight: 700; font-size: 14px; white-space: nowrap; }

/* ---------- Events calendar / dashboard ---------- */
.events-page { padding: 60px 0 40px; }
.event-list { display: flex; flex-direction: column; gap: 16px; }
.event-row {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--surface);
    border: 1px solid var(--surface-3);
    border-radius: 12px;
    padding: 22px 26px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.event-row:hover { transform: translateY(-4px); border-color: var(--gold); }
.event-date-block {
    flex-shrink: 0;
    width: 82px;
    text-align: center;
    background: var(--near-black);
    border: 1px solid var(--surface-3);
    border-radius: 8px;
    padding: 12px 6px;
}
.event-date-day { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold-bright); line-height: 1; }
.event-date-month { display: block; font-size: 11px; color: var(--gray-300); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.event-row-body { flex: 1; min-width: 0; }
.event-row-body h3 { font-size: 19px; margin: 0 0 4px; }
.event-row-body p { color: var(--gray-300); font-size: 14px; margin: 0; }
.event-row-body .event-summary { margin-top: 6px; }
.event-row-action { flex-shrink: 0; }

@media (max-width: 700px) {
    .event-row { flex-wrap: wrap; }
    .event-row-action { width: 100%; }
    .event-row-action .btn { width: 100%; justify-content: center; }
}

/* ---------- Event detail + registration ---------- */
.event-detail-grid { padding: 60px 0 100px; }
.event-detail-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: var(--max-width);
}
.event-price-info { color: var(--gray-100) !important; }
@media (max-width: 900px) {
    .event-detail-inner { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gallery-album-header { padding: calc(var(--header-h) + 60px) 0 20px; }
.gallery-album-header .back-link { margin-bottom: 14px; display: inline-block; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    padding: 20px 0 100px;
}
.gallery-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--surface-2);
    cursor: zoom-in;
    background: var(--surface-1);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-thumb .gallery-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 18px 12px 10px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
    color: var(--gray-100);
    font-size: 12.5px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.gallery-thumb:hover .gallery-caption { opacity: 1; }

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,5,3,0.94);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img {
    max-width: min(1100px, 92vw);
    max-height: 84vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-caption {
    position: absolute;
    bottom: 28px; left: 0; right: 0;
    text-align: center;
    color: var(--gray-300);
    font-size: 14px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    color: var(--white);
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: #14100a; border-color: var(--gold); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
    .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 17px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 14px; right: 14px; }
}
