/* ============================================================
   MOMENTO360 — Design System v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* === VARIABLES === */
:root {
    --bg: #050c1a; --bg-2: #07101f; --bg-3: #0b1628; --bg-4: #101e35;
    --surface: rgba(255,255,255,0.04); --surface-2: rgba(255,255,255,0.07); --surface-3: rgba(255,255,255,0.11);
    --glass: rgba(5,12,26,0.82);
    --border: rgba(255,255,255,0.08); --border-2: rgba(255,255,255,0.14); --border-3: rgba(255,255,255,0.22);
    --text: #eef2ff; --text-2: #98aecf; --text-3: #5d7598;
    --orange: #ff6b35; --orange-2: #ff8c5a; --orange-bg: rgba(255,107,53,0.12);
    --cyan: #00d4ff; --cyan-2: #5ae2ff; --cyan-bg: rgba(0,212,255,0.10);
    --pink: #e040fb; --green: #00e5a0;
    --r-xs:8px; --r-sm:12px; --r-md:18px; --r-lg:24px; --r-xl:32px; --r-2xl:42px; --r-pill:999px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4); --shadow-lg: 0 12px 48px rgba(0,0,0,0.55); --shadow-xl: 0 24px 80px rgba(0,0,0,0.65);
    --t: 220ms cubic-bezier(0.4,0,0.2,1); --t-slow: 380ms cubic-bezier(0.4,0,0.2,1);
    --container: min(1220px, calc(100% - 48px)); --header-h: 70px;
    --font-h: 'Outfit', system-ui, sans-serif; --font-b: 'Inter', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-b); font-size: 16px; line-height: 1.6;
    color: var(--text); background: var(--bg); min-height: 100vh; overflow-x: hidden;
}
body::before {
    content: ''; position: fixed; inset: 0;
    background: radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0,212,255,0.12) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 90% 5%, rgba(255,107,53,0.10) 0%, transparent 45%),
                radial-gradient(ellipse 50% 60% at 50% 110%, rgba(224,64,251,0.08) 0%, transparent 50%);
    pointer-events: none; z-index: 0;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* === LAYOUT === */
.page-shell { position: relative; z-index: 1; min-height: 100vh; }
.site-main  { padding-bottom: 80px; }
body.site-home .site-main { padding-bottom: 0; }

/* === HEADER === */
.site-header {
    position: sticky; top: 0; z-index: 100; height: var(--header-h);
    backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(5,12,26,0.88); border-bottom: 1px solid var(--border);
}
.site-header__inner {
    height: 100%; width: var(--container); margin: 0 auto;
    display: flex; align-items: center; gap: 24px;
}
.site-brand { flex: 0 0 auto; display: flex; align-items: center; }
.site-brand img { height: 42px; width: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.site-nav__link {
    padding: 8px 14px; border-radius: var(--r-pill);
    font-family: var(--font-h); font-size: 0.9rem; font-weight: 500;
    color: var(--text-2); border: 1px solid transparent; transition: var(--t); white-space: nowrap;
}
.site-nav__link:hover { color: var(--text); background: var(--surface-2); border-color: var(--border); }
.site-nav__link.is-active { color: var(--cyan-2); background: var(--cyan-bg); border-color: rgba(0,212,255,0.15); }
.site-header__cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 20px; height: 40px; border-radius: var(--r-pill);
    background: linear-gradient(135deg, #25d366, #128c3e); color: #fff;
    font-family: var(--font-h); font-size: 0.875rem; font-weight: 700;
    transition: var(--t); box-shadow: 0 4px 20px rgba(37,211,102,0.3); margin-left: auto; white-space: nowrap;
}
.site-header__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }

/* Mobile hamburger */
.hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 40px; height: 40px; border-radius: var(--r-sm);
    background: var(--surface-2); border: 1px solid var(--border);
    padding: 11px; cursor: pointer; margin-left: auto;
}
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
    display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: rgba(5,12,26,0.98); backdrop-filter: blur(20px);
    z-index: 99; flex-direction: column; padding: 28px 20px; gap: 6px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu__link {
    padding: 16px 20px; border-radius: var(--r-lg);
    font-family: var(--font-h); font-size: 1.1rem; font-weight: 600;
    color: var(--text-2); border: 1px solid transparent; transition: var(--t);
}
.mobile-menu__link:hover,.mobile-menu__link.is-active { background: var(--surface-2); border-color: var(--border); color: var(--cyan-2); }
.mobile-menu__cta {
    margin-top: 16px; padding: 18px; border-radius: var(--r-lg);
    background: linear-gradient(135deg, #25d366, #128c3e); color: #fff;
    text-align: center; font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
}

/* === TYPOGRAPHY === */
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-h); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }

/* === BUTTONS === */
.button, .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 50px; padding: 0 28px; border-radius: var(--r-pill);
    font-family: var(--font-h); font-size: 0.95rem; font-weight: 700;
    border: 1px solid transparent; transition: var(--t); white-space: nowrap; cursor: pointer;
}
.button:hover, .btn:hover { transform: translateY(-2px); }
.button--primary, .btn-primary {
    background: linear-gradient(135deg, var(--orange), #d94400); color: #fff;
    box-shadow: 0 8px 32px rgba(255,107,53,0.35);
}
.button--primary:hover, .btn-primary:hover { box-shadow: 0 12px 40px rgba(255,107,53,0.5); }
.button--secondary, .btn-secondary {
    background: var(--surface-2); color: var(--text); border-color: var(--border-2);
}
.button--secondary:hover, .btn-secondary:hover { background: var(--surface-3); border-color: var(--border-3); }
.button-row, .btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
/* size modifiers */
.button--sm { height: 36px; padding: 0 16px; font-size: 0.82rem; }
.button--xs { height: 28px; padding: 0 11px; font-size: 0.75rem; border-radius: 6px; }
/* color modifiers */
.button--danger {
    background: linear-gradient(135deg, #e11d48, #9f1239); color: #fff;
    border-color: transparent; box-shadow: 0 4px 16px rgba(225,29,72,0.3);
}
.button--danger:hover { box-shadow: 0 8px 28px rgba(225,29,72,0.5); }
.button--cyan {
    background: linear-gradient(135deg, #0891b2, #06b6d4); color: #fff;
    border-color: transparent; box-shadow: 0 4px 16px rgba(6,182,212,0.3);
}
.button--cyan:hover { box-shadow: 0 8px 28px rgba(6,182,212,0.5); }
.button--ghost {
    background: transparent; color: var(--text-2); border-color: var(--border-2);
}
.button--ghost:hover { background: var(--surface-2); color: var(--text); }
/* icon-only button */
.button--icon { height: 36px; width: 36px; padding: 0; border-radius: 8px; }

/* === BADGES === */
.badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: var(--r-pill);
    font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.badge--cyan   { background: var(--cyan-bg); color: var(--cyan-2); border: 1px solid rgba(0,212,255,0.2); }
.badge--orange { background: var(--orange-bg); color: var(--orange-2); border: 1px solid rgba(255,107,53,0.2); }
.badge--pink   { background: rgba(224,64,251,0.10); color: var(--pink); border: 1px solid rgba(224,64,251,0.2); }
.badge--green  { background: rgba(0,229,160,0.10); color: var(--green); border: 1px solid rgba(0,229,160,0.2); }
.event-card__badge { position: absolute; top: 14px; left: 14px; z-index: 2; }

/* === SECTIONS === */
.content-section { width: var(--container); margin-inline: auto; padding-top: 72px; }
.section-heading { display: grid; gap: 12px; margin-bottom: 40px; }
.section-heading h2 {
    font-family: var(--font-h); font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin: 0;
}
.section-heading p { font-size: 1.05rem; color: var(--text-2); max-width: 56ch; line-height: 1.7; }
.section-heading--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

/* === HERO === */
.hero-panel {
    width: var(--container); margin: 0 auto; padding: 52px 0 0;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center;
    min-height: calc(95vh - var(--header-h));
}
.hero-panel__content { display: grid; gap: 0; }
.hero-panel__content .eyebrow { margin-bottom: 24px; }
.hero-panel__content h1 {
    font-family: var(--font-h); font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 900; line-height: 0.95; letter-spacing: -0.04em; color: var(--text);
}
.hero-copy { margin-top: 28px; font-size: 1.05rem; color: var(--text-2); max-width: 52ch; line-height: 1.8; }
.hero-panel__content .button-row { margin-top: 40px; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; padding: 0; }
.hero-highlights li {
    display: flex; align-items: center; gap: 8px; padding: 8px 16px;
    background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-pill);
    font-family: var(--font-h); font-size: 0.82rem; font-weight: 600; color: var(--text-2);
}
.hero-highlights li::before { display: none; }
.hero-panel__visual { position: relative; height: 600px; }
.event-spotlight {
    position: absolute; inset: 0; border-radius: var(--r-2xl); overflow: hidden;
    border: 1px solid var(--border-2); box-shadow: var(--shadow-xl);
}
.event-spotlight img { width: 100%; height: 100%; object-fit: cover; }
.event-spotlight::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5,12,26,0.95) 100%);
}
.event-spotlight__meta {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 24px;
    display: flex; flex-direction: column; gap: 10px;
}
.event-spotlight__meta span {
    font-family: var(--font-h); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan-2);
}
.event-spotlight__meta strong {
    font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; color: var(--text); line-height: 1.2;
}

/* === EVENT CARDS === */
.event-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.event-card {
    border-radius: var(--r-xl); overflow: hidden;
    background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border); display: flex; flex-direction: column; transition: var(--t);
}
.event-card:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: var(--shadow-lg); }
.event-card__image {
    position: relative; aspect-ratio: 3/4; overflow: hidden; flex-shrink: 0; display: block;
    background: #06101e;
}
.event-card__image img { width: 100%; height: 100%; object-fit: contain; object-position: center center; transition: transform 0.6s ease; }
.event-card:hover .event-card__image img { transform: scale(1.03); }
.event-card__image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(5,12,26,0.8) 100%);
}
.event-card__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.event-card__body h2, .event-card__body h3 {
    font-family: var(--font-h); font-size: 1.2rem; font-weight: 700;
    letter-spacing: -0.02em; color: var(--text); line-height: 1.25; margin: 0;
}
.event-card__body p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; flex: 1; }
.event-card__meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 0; }
.event-card__meta > div {
    padding: 10px 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm);
}
.event-card__meta dt { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin: 0 0 4px; }
.event-card__meta dd { font-family: var(--font-h); font-size: 0.84rem; font-weight: 600; color: var(--text); margin: 0; line-height: 1.3; }
.event-card__body > .button-row, .event-card__footer {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto;
}
.text-link {
    font-family: var(--font-h); font-size: 0.85rem; font-weight: 700; color: var(--cyan-2);
    display: flex; align-items: center; gap: 5px; transition: var(--t);
}
.text-link:hover { color: var(--cyan); gap: 9px; }
.event-card--wide { display: grid; grid-template-columns: 420px 1fr; border-radius: var(--r-xl); }
.event-card--wide .event-card__image { aspect-ratio: unset; min-height: 340px; }
.event-card--wide .event-card__body  { padding: 36px; gap: 20px; }
.event-card--wide .event-card__body h2,.event-card--wide .event-card__body h3 { font-size: 1.8rem !important; }
.event-card--wide .event-card__meta  { grid-template-columns: 1fr 1fr; }

/* === FEATURE CARDS === */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card {
    padding: 28px; border-radius: var(--r-xl);
    background: linear-gradient(155deg, var(--bg-3) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border); display: grid; gap: 14px; transition: var(--t);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 120px; height: 120px; border-radius: 50%;
    opacity: 0.08; background: radial-gradient(circle, var(--cyan), transparent); pointer-events: none;
}
.feature-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.feature-card h2, .feature-card h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 0; }
.feature-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* === STEPS === */
.step-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; position: relative; }
.step-grid::before {
    content: ''; position: absolute; top: 34px; left: 44px; right: 44px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), var(--border-2), transparent); z-index: 0;
}
.step-card {
    position: relative; z-index: 1; padding: 28px 22px; border-radius: var(--r-xl);
    background: linear-gradient(155deg, var(--bg-3), var(--bg-2));
    border: 1px solid var(--border); display: grid; gap: 14px; transition: var(--t);
}
.step-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.step-card__number {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #d94400);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: #fff;
    box-shadow: 0 4px 20px rgba(255,107,53,0.4); flex-shrink: 0;
}
.step-card p, .step-card--detailed p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }
.step-card--detailed h2 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: 1.2fr 1fr 0.85fr; gap: 18px; }
.gallery-card {
    position: relative; border-radius: var(--r-xl); overflow: hidden;
    min-height: 300px; border: 1px solid var(--border); transition: var(--t);
}
.gallery-card:hover { border-color: var(--border-2); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card__overlay {
    position: absolute; inset: auto 16px 16px;
    padding: 12px 16px; background: var(--glass); backdrop-filter: blur(12px);
    border: 1px solid var(--border-2); border-radius: var(--r-md);
    font-family: var(--font-h); font-size: 0.85rem; font-weight: 600; color: var(--text);
}

/* === CTA BANNER === */
.cta-banner {
    width: var(--container); margin: 72px auto 0; padding: 52px 56px;
    border-radius: var(--r-2xl);
    background: linear-gradient(135deg, rgba(255,107,53,0.10), rgba(0,212,255,0.07));
    border: 1px solid var(--border-2);
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    position: relative; overflow: hidden;
}
.cta-banner::after {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.15), transparent 70%); pointer-events: none;
}
.cta-banner h2 {
    font-family: var(--font-h); font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin: 0;
}
.cta-banner > div:first-child p { margin-top: 8px; font-size: 1rem; color: var(--text-2); }
.cta-banner .button-row { flex-shrink: 0; position: relative; z-index: 1; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.contact-card {
    padding: 26px; border-radius: var(--r-xl); background: var(--surface);
    border: 1px solid var(--border); display: grid; gap: 8px; transition: var(--t);
}
.contact-card:hover { background: var(--surface-2); border-color: var(--border-2); }
.contact-card span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }
.contact-card strong { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--text); }
.contact-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* === CHECKOUT === */
.checkout-box {
    padding: 32px; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--border);
}
.checkout-box h2 { font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; margin-bottom: 22px; }
.pill-list { display: grid; gap: 12px; padding: 0; }
.pill-list li {
    padding: 14px 18px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-lg);
    font-size: 0.92rem; color: var(--text-2); line-height: 1.6;
    display: flex; align-items: flex-start; gap: 12px;
}
.pill-list li::before {
    content: '✓'; color: var(--green); font-weight: 800; font-size: 0.8rem;
    width: 20px; height: 20px; border-radius: 50%; background: rgba(0,229,160,0.1);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* === FAQ === */
.faq-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.faq-item { padding: 24px; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--border); }
.faq-item h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.faq-item p  { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* === LEGAL === */
.legal-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.legal-card { padding: 28px; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--border); }
.legal-card h2 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.legal-card ul { display: grid; gap: 10px; padding: 0; }
.legal-card li {
    font-size: 0.9rem; color: var(--text-2); line-height: 1.7;
    padding-left: 18px; position: relative;
}
.legal-card li::before {
    content: ''; position: absolute; left: 0; top: 10px; width: 7px; height: 7px;
    border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--orange));
}

/* === EVENT DETAIL === */
.detail-meta { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 18px; }
.detail-meta > div {
    padding: 14px 16px; border-radius: var(--r-md); background: var(--surface-2); border: 1px solid var(--border);
}
.detail-meta dt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin: 0 0 5px; }
.detail-meta dd { font-family: var(--font-h); font-size: 0.95rem; font-weight: 600; color: var(--text); margin: 0; }
.detail-price-note {
    margin-top: 18px; padding: 18px; border-radius: var(--r-lg);
    background: var(--orange-bg); border: 1px solid rgba(255,107,53,0.2);
    color: #ffe6bb; font-size: 0.9rem; line-height: 1.65;
}
.button-row--compact { margin-top: 2px; }
.content-section--steps .step-grid { margin-top: 4px; }

/* === DEV / DOCS === */
.topbar { width: var(--container); margin: 0 auto; padding: 32px 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand  { font-family: var(--font-h); font-weight: 800; font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-2); }
.tag    { padding: 8px 14px; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--border); font-size: 0.82rem; color: var(--text-2); }
.hero   { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 20px; margin-top: 16px; width: var(--container); margin-inline: auto; }
.hero-card { padding: 36px; border-radius: var(--r-2xl); background: linear-gradient(160deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--border); display: grid; gap: 16px; }
.hero-card h1 { font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; }
.hero-card p  { font-size: 1rem; color: var(--text-2); line-height: 1.7; }
.panel-card { padding: 24px; border-radius: var(--r-2xl); background: var(--surface); border: 1px solid var(--border); display: grid; gap: 16px; }
.metric { padding: 16px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); }
.metric-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.metric-value { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-top: 6px; line-height: 1.4; }
.section { width: var(--container); margin: 0 auto; margin-top: 28px; }
.section-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.doc-card { padding: 26px; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--border); display: grid; gap: 12px; transition: var(--t); }
.doc-card:hover { border-color: var(--border-2); background: var(--surface-2); }
.doc-card h2 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--text); }
.doc-card p  { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin: 0 0 10px; }
.doc-link, .text-link { color: var(--cyan-2); font-weight: 700; }
.notes { margin-top: 24px; padding: 22px 26px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--border); }
.notes p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }
.docs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }

/* === NOT FOUND === */
.not-found-page { display: grid; place-items: center; min-height: 100vh; padding: 24px; }
.not-found-card { max-width: 680px; width: 100%; padding: 64px 48px; border-radius: var(--r-2xl); background: var(--surface); border: 1px solid var(--border); text-align: center; display: grid; gap: 24px; }
.not-found-card h1 { font-family: var(--font-h); font-size: clamp(2rem, 6vw, 4rem); font-weight: 900; }
.not-found-card p  { font-size: 1.05rem; color: var(--text-2); }

/* === FOOTER === */
.site-footer { position: relative; z-index: 1; background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.site-footer__grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer__brand img { height: 48px; width: auto; margin-bottom: 16px; opacity: 0.95; filter: brightness(0) invert(1); }
.site-footer__brand p   { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; max-width: 28ch; }
.site-footer h2 { font-family: var(--font-h); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.site-footer__list { display: grid; gap: 10px; }
.site-footer__list li { font-size: 0.875rem; color: var(--text-2); line-height: 1.5; }
.site-footer__list a:hover { color: var(--text); }
.site-footer__bottom {
    width: var(--container); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    font-size: 0.82rem; color: var(--text-3);
}

/* === ALERTS === */
.alert {
    padding: 14px 18px; border-radius: var(--r-lg); font-size: 0.92rem; line-height: 1.6;
    margin-bottom: 24px;
}
.alert--warn    { background: rgba(255,193,7,0.12); border: 1px solid rgba(255,193,7,0.3); color: #ffe69c; }
.alert--success { background: rgba(0,229,160,0.10); border: 1px solid rgba(0,229,160,0.25); color: var(--green); }
.alert--error   { background: rgba(224,64,251,0.10); border: 1px solid rgba(224,64,251,0.25); color: var(--pink); }

/* === FORM ELEMENTS === */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group--grow { flex: 1; }
.form-group--qty { width: 110px; flex-shrink: 0; }
.form-label { font-family: var(--font-h); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; color: var(--text-2); }
.form-input {
    width: 100%; padding: 13px 16px; border-radius: var(--r-md);
    background: var(--surface-2); border: 1px solid var(--border-2);
    color: var(--text); font-family: var(--font-b); font-size: 0.95rem;
    transition: var(--t); outline: none; appearance: none;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus { border-color: rgba(0,212,255,0.4); box-shadow: 0 0 0 3px rgba(0,212,255,0.08); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235d7598' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-row { display: flex; gap: 16px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row--auto { display: flex; gap: 16px; align-items: flex-end; }
.form-separator { height: 1px; background: var(--border); margin: 4px 0; }
.form-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.form-check {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.88rem; color: var(--text-2); cursor: pointer;
}
.form-check input[type="checkbox"] {
    width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
    background: var(--surface-2); border: 1px solid var(--border-2);
    accent-color: var(--orange); cursor: pointer; margin-top: 2px;
}
.form-check a { color: var(--cyan-2); font-weight: 600; }

/* File drop zone */
.file-drop { position: relative; }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; z-index: 2; }
.file-drop__label {
    display: flex; align-items: center; gap: 12px; padding: 14px 18px;
    border: 1.5px dashed var(--border-2); border-radius: var(--r-md);
    background: var(--surface); cursor: pointer; transition: var(--t);
    font-size: 0.9rem; color: var(--text-2);
}
.file-drop:hover .file-drop__label { border-color: rgba(0,212,255,0.4); color: var(--cyan-2); }
.file-drop__icon { font-size: 1.3rem; }

/* === CHECKOUT PAGE === */
.checkout-main { padding-bottom: 80px; }
.checkout-wrap { width: var(--container); margin: 0 auto; padding-top: 48px; }
.checkout-empty { display: grid; gap: 18px; padding: 64px 0; }
.checkout-empty h1 { font-family: var(--font-h); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: start; margin-top: 32px; }
.checkout-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; display: grid; gap: 20px; }
.checkout-title { font-family: var(--font-h); font-size: 1.6rem; font-weight: 800; margin: 0; }
.checkout-form { display: grid; gap: 16px; }
.checkout-submit { width: 100%; height: 54px; font-size: 1rem; margin-top: 8px; }
.checkout-summary {
    position: sticky; top: calc(var(--header-h) + 20px);
    background: linear-gradient(155deg, var(--bg-3), var(--bg-2));
    border: 1px solid var(--border-2); border-radius: var(--r-xl); padding: 30px; display: grid; gap: 20px;
}
.checkout-summary__title { font-family: var(--font-h); font-size: 1.3rem; font-weight: 800; margin: 0; }
.checkout-summary__meta { display: grid; gap: 12px; }
.checkout-summary__meta > div { display: grid; gap: 3px; padding: 12px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm); }
.checkout-summary__meta dt { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.checkout-summary__meta dd { font-family: var(--font-h); font-size: 0.9rem; font-weight: 600; color: var(--text); margin: 0; }
.checkout-summary__ops { display: grid; gap: 10px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.checkout-summary__op { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-2); }
.op-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.op-dot--green  { background: var(--green); box-shadow: 0 0 8px rgba(0,229,160,0.5); }
.op-dot--cyan   { background: var(--cyan); box-shadow: 0 0 8px rgba(0,212,255,0.5); }
.op-dot--orange { background: var(--orange); box-shadow: 0 0 8px rgba(255,107,53,0.5); }
.op-dot--pink   { background: var(--pink); box-shadow: 0 0 8px rgba(224,64,251,0.5); }
.checkout-summary__admin { font-family: var(--font-h); font-size: 0.82rem; font-weight: 700; color: var(--text-3); transition: var(--t); }
.checkout-summary__admin:hover { color: var(--cyan-2); }

/* === ORDER STATUS PAGE === */
.order-main { padding-bottom: 80px; }
.order-wrap  { width: var(--container); margin: 0 auto; padding-top: 48px; }
.order-empty { display: grid; gap: 18px; padding: 64px 0; }
.order-empty h1 { font-family: var(--font-h); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; }
.order-header {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
    margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
}
.order-code { font-family: var(--font-h); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 900; margin: 8px 0 4px; letter-spacing: -0.03em; }
.order-event { font-size: 0.95rem; color: var(--text-2); }
.order-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px; align-items: start; }
.order-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
    padding: 28px; display: grid; gap: 18px; margin-bottom: 20px;
}
.order-card--approved { border-color: rgba(0,229,160,0.25); background: rgba(0,229,160,0.04); }
.order-card--state { position: sticky; top: calc(var(--header-h) + 20px); }
.order-card__title { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; margin: 0; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.order-meta { display: grid; gap: 10px; margin: 0; }
.order-meta > div { display: grid; grid-template-columns: 130px 1fr; gap: 8px; padding: 10px 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm); align-items: center; }
.order-meta dt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.order-meta dd { font-size: 0.9rem; font-weight: 600; color: var(--text); margin: 0; }
.order-lines { display: grid; gap: 8px; }
.order-line { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); }
.order-line__name { font-size: 0.9rem; color: var(--text); }
.order-line__price { font-family: var(--font-h); font-weight: 700; color: var(--orange-2); }
.order-hint { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }
.receipt-form { display: grid; gap: 14px; }
.receipt-info { padding: 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); display: grid; gap: 6px; font-size: 0.88rem; color: var(--text-2); }
.state-msg { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }
.state-msg--ok  { color: var(--green); }
.state-msg--err { color: var(--pink); }
.order-admin-link { font-family: var(--font-h); font-size: 0.82rem; font-weight: 700; color: var(--cyan-2); }
.ticket-list { display: grid; gap: 10px; }
.ticket-list__item { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); }
.ticket-list__link { font-family: var(--font-h); font-size: 0.88rem; font-weight: 700; color: var(--cyan-2); }
.delivery-details { margin-top: 8px; }
.delivery-details summary { font-size: 0.85rem; color: var(--text-2); cursor: pointer; }
.delivery-details pre { margin-top: 10px; padding: 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); font-size: 0.82rem; color: var(--text-2); white-space: pre-wrap; line-height: 1.6; }

/* === ADMIN PANEL === */
.admin-main { padding-bottom: 80px; }
.admin-wrap  { width: var(--container); margin: 0 auto; padding-top: 48px; }
.admin-topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
.admin-title { font-family: var(--font-h); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -0.03em; margin: 8px 0 0; }
.admin-empty { padding: 48px; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); color: var(--text-2); }
.admin-table-wrap { overflow-x: auto; border-radius: var(--r-xl); border: 1px solid var(--border); position: relative; }
.admin-table-wrap__hint { display: none; font-size: 0.72rem; color: var(--text-3); text-align: center; padding: 6px; letter-spacing: .03em; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 900px; }
/* Tablas extra-anchas (órdenes, boletas, etc.) */
.admin-table--orders { min-width: 1100px; }
.admin-table-wrap--orders .admin-table-wrap__hint { display: block; }
.admin-table thead { background: var(--bg-3); }
.admin-table th { padding: 14px 18px; text-align: left; font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--surface); }
.table-subtle { margin-top: 4px; font-size: 0.74rem; color: var(--text-3); }
.empty-state {
    padding: 22px 24px;
    border-radius: var(--r-lg);
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-2);
}
.order-code-sm { display: block; font-family: var(--font-h); font-size: 0.85rem; font-weight: 700; color: var(--text); }
.order-method  { display: block; font-size: 0.75rem; color: var(--text-3); margin-top: 3px; }
.order-event-name { display: block; font-weight: 600; color: var(--text); font-size: 0.88rem; }
.order-modality   { display: block; font-size: 0.75rem; color: var(--text-3); margin-top: 3px; }
.order-buyer      { display: block; font-weight: 600; color: var(--text); font-size: 0.88rem; }
.order-email      { display: block; font-size: 0.75rem; color: var(--text-3); margin-top: 3px; }
.order-total   { font-family: var(--font-h); font-weight: 700; color: var(--text); }
.order-tickets { text-align: center; font-family: var(--font-h); font-weight: 700; color: var(--text-2); }
.admin-back { font-family: var(--font-h); font-size: 0.85rem; font-weight: 600; color: var(--text-3); transition: var(--t); }
.admin-back:hover { color: var(--cyan-2); }
.btn-action {
    display: inline-flex; align-items: center; padding: 9px 18px; border-radius: var(--r-pill);
    background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text);
    font-family: var(--font-h); font-size: 0.82rem; font-weight: 700; transition: var(--t); white-space: nowrap;
}
.btn-action:hover { background: var(--orange-bg); border-color: rgba(255,107,53,0.3); color: var(--orange-2); }

/* === SITE SECTIONS === */

/* Video Background */
.s-hero, .s-cta-video { position: relative; overflow: hidden; color: #fff; }
.s-video-bg { position: absolute; inset: 0; z-index: 0; }
.s-video-el { width: 100%; height: 100%; object-fit: cover; }
.s-video-overlay { position: absolute; inset: 0; background: rgba(13,19,26,0.42); }
.s-video-overlay--heavy { background: rgba(10,14,32,0.56); }

/* Hero */
.s-hero { min-height: 100svh; display: flex; align-items: center; }
.s-hero__content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; padding: 140px 0 100px; }
.s-tag { display: inline-flex; align-items: center; padding: 7px 18px; border: 1px solid rgba(255,255,255,0.35); border-radius: var(--r-pill); font-family: var(--font-h); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.s-hero__h1 { font-family: var(--font-h); font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 900; line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; margin-bottom: 28px; max-width: 16ch; }
.s-hero__body { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.8; max-width: 52ch; margin-bottom: 44px; }

/* Buttons */
.btn--white { background: #fff; color: rgb(13,19,26); border-color: #fff; }
.btn--white:hover { background: rgba(255,255,255,0.92); }
.btn--dark { background: rgb(13,19,26); color: #fff; border-color: rgb(13,19,26); }
.btn--dark:hover { background: #242556; border-color: #242556; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn--orange { background: linear-gradient(135deg, var(--orange), #d94400); color: #fff; border-color: transparent; box-shadow: 0 8px 28px rgba(255,107,53,0.35); }

/* Common section wrapper */
.s-wrap { width: var(--container); margin: 0 auto; }

/* Section headings */
.s-section-label { display: inline-block; font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.s-section-label--dark { color: var(--orange); }
.s-section-title { font-family: var(--font-h); font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; line-height: 1.08; margin-bottom: 12px; }
.s-section-title--dark { color: rgb(13,19,26); }
.s-section-sub { font-size: 1rem; color: var(--text-2); line-height: 1.75; margin-bottom: 44px; }
.s-section-sub--dark { color: rgb(86,88,94); }
.s-section-head { margin-bottom: 44px; }
.s-section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

/* Featured Event Section */
.s-event { background: #fff; padding: 80px 0; }
.s-event__grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.s-event__img { border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-xl); }
.s-event__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.s-event__img:hover img { transform: scale(1.04); }
.s-event__body { padding: 8px 0; }
.s-event__title { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -0.03em; color: rgb(13,19,26); line-height: 1.08; margin-bottom: 18px; }
.s-event__text { font-size: 1.05rem; color: rgb(86,88,94); line-height: 1.75; margin-bottom: 36px; }
.s-event__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Experience Section (image bg) */
.s-experience { position: relative; overflow: hidden; padding: 110px 0; color: #fff; }
.s-experience__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.s-experience__overlay { position: absolute; inset: 0; background: rgba(5,12,26,0.75); z-index: 1; }
.s-experience__content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; max-width: 820px; }
.s-experience__title { font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.06; color: #fff; margin-bottom: 28px; }
.s-experience__body { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.8; }

/* Solutions */
.s-solutions { padding: 80px 0; background: var(--bg-3); }
.sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sol-card { padding: 32px 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); transition: var(--t); display: grid; gap: 14px; }
.sol-card:hover { background: var(--surface-2); border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sol-card__icon { font-size: 2rem; }
.sol-card__title { font-family: var(--font-h); font-size: 1.08rem; font-weight: 700; color: var(--text); }
.sol-card__body { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* Gallery */
.s-gallery { padding: 80px 0; background: var(--bg); }
.s-gallery__grid { display: grid; grid-template-columns: 1.3fr 1fr 0.9fr; gap: 18px; margin-bottom: 36px; }
.s-gallery__card { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4; display: block; }
.s-gallery__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.s-gallery__card:hover img { transform: scale(1.05); }
.s-gallery__overlay { position: absolute; inset: auto 0 0; padding: 20px 18px; background: linear-gradient(transparent, rgba(5,12,26,0.88)); }
.s-gallery__overlay span { font-family: var(--font-h); font-size: 0.88rem; font-weight: 600; color: #fff; }
.s-gallery__cta { text-align: center; }

/* Projects */
.s-projects { padding: 80px 0; background: #f4f6f9; }
.proj-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.proj-card { padding: 28px 24px; background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--r-xl); display: grid; gap: 16px; transition: var(--t); }
.proj-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
.proj-card__num { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #d94400); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: #fff; }
.proj-card__body { font-size: 0.92rem; color: rgb(50,50,50); line-height: 1.7; }

/* CTA Video */
.s-cta-video { padding: 130px 0; text-align: center; }
.s-cta-video__content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; }
.s-cta-video__title { font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.06; color: #fff; margin-bottom: 24px; }
.s-cta-video__body { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 58ch; margin-inline: auto; margin-bottom: 44px; }

/* ── Page Hero (no video) ── */
.s-page-hero {
    min-height: 72vh; display: flex; align-items: center;
    background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg) 100%);
    position: relative; overflow: hidden;
}
.s-page-hero--video {
    background: #09111f;
}
.s-page-hero--video::before {
    z-index: 1;
}
.s-page-hero--video .s-video-bg {
    z-index: 0;
}
.s-page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 0% 50%, rgba(0,212,255,0.10) 0%, transparent 60%),
                radial-gradient(ellipse 50% 50% at 100% 0%, rgba(255,107,53,0.09) 0%, transparent 55%);
    pointer-events: none;
}
.s-page-hero__content { position: relative; z-index: 1; width: var(--container); margin: 0 auto; padding: 120px 0 90px; }
.s-page-hero__h1 { font-family: var(--font-h); font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 900; line-height: 1.04; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; margin-bottom: 24px; max-width: 18ch; }
.s-page-hero__body { font-size: 1.05rem; color: rgba(255,255,255,0.68); line-height: 1.8; max-width: 52ch; }
.s-page-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }

/* ── Events list ── */
.s-events { padding: 80px 0; background: var(--bg-3); }
.s-events-cta { padding: 80px 0; background: var(--bg); }
.ev-list { display: grid; gap: 28px; }
.ev-card {
    display: grid; grid-template-columns: 420px 1fr; gap: 0;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-2xl); overflow: hidden; transition: var(--t);
}
.ev-card:hover { border-color: var(--border-2); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.ev-card__img { display: block; overflow: hidden; background: #0b1220; }
.ev-card__img img { width: 100%; height: auto; display: block; object-fit: unset; transition: transform 0.6s ease; }
.ev-card:hover .ev-card__img img { transform: scale(1.04); }
.ev-card__body { padding: 40px 44px; display: flex; flex-direction: column; gap: 14px; }
.ev-card__title { font-family: var(--font-h); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 900; letter-spacing: -0.02em; color: var(--text); line-height: 1.1; }
.ev-card__text { font-size: 1rem; color: var(--text-2); line-height: 1.75; }
.ev-card__meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px 8px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ev-card__meta dt { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.ev-card__meta dd { font-family: var(--font-h); font-size: 0.92rem; font-weight: 600; color: var(--text); }
.ev-card__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }

/* ── Event Detail Hero ── */
.s-ev-hero { position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: flex-end; color: #fff; }
.s-ev-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.s-ev-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,12,26,0.95) 0%, rgba(5,12,26,0.45) 60%, rgba(5,12,26,0.15) 100%); z-index: 1; }
.s-ev-hero__content { position: relative; z-index: 2; width: var(--container); margin: 0 auto; padding: 80px 0 70px; }
.s-ev-hero__h1 { font-family: var(--font-h); font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 900; line-height: 1.04; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; margin-bottom: 20px; max-width: 18ch; }
.s-ev-hero__body { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 58ch; margin-bottom: 36px; }
.s-ev-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Event Meta Strip ── */
.s-ev-meta { background: var(--bg-4); border-bottom: 1px solid var(--border); padding: 36px 0; }
.ev-meta-grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.ev-meta-grid > div { padding: 14px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); }
.ev-meta-grid dt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.ev-meta-grid dd { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: var(--text); }
.ev-meta-note { width: var(--container); margin: 14px auto 0; font-size: 0.85rem; color: var(--text-3); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.faq-card { padding: 28px 32px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); transition: var(--t); }
.faq-card:hover { background: var(--surface-2); border-color: var(--border-2); }
.faq-card__q { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
.faq-card__a { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; }

/* ── Contact Channels ── */
.contact-ch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.contact-ch-card { padding: 36px 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); display: flex; flex-direction: column; gap: 10px; min-height: 200px; transition: var(--t); }
.contact-ch-card:hover { background: var(--surface-2); border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-ch-card__label { font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); }
.contact-ch-card__value { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--text); line-height: 1.35; flex: 1; }

.s-contact-cta {
    padding: 0 0 96px;
    background: linear-gradient(180deg, #f3f6fb 0%, #edf2f9 100%);
}
.s-contact-cta__card {
    padding: 40px 42px;
    border-radius: 28px;
    background: linear-gradient(145deg, #0f172a 0%, #111c32 55%, #0d1524 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(4, 10, 25, 0.28);
}
.s-contact-cta__title {
    margin: 10px 0 14px;
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #fff;
}
.s-contact-cta__body {
    max-width: 62ch;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.74);
    font-size: 1rem;
    line-height: 1.8;
}

/* ── Payment Methods ── */
.pay-methods-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pay-method-pill { padding: 14px 28px; background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-pill); font-family: var(--font-h); font-size: 0.92rem; font-weight: 600; color: var(--text); transition: var(--t); }
.pay-method-pill:hover { background: var(--orange-bg); border-color: var(--orange); color: var(--orange); }

/* ── proj-card heading variant ── */
.proj-card__heading { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: rgb(13,19,26); }

/* ── text-link ── */
.text-link { font-family: var(--font-h); font-size: 0.9rem; font-weight: 700; color: var(--text-2); transition: var(--t); white-space: nowrap; }
.text-link:hover { color: var(--orange); }

/* ══════════════════════════════════════════
   CHECKOUT — New design
══════════════════════════════════════════ */
.co-main { background: var(--bg); min-height: 100svh; padding-bottom: 0; }
.co-wrap { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 100svh; }
.co-alert { width: var(--container); margin: 20px auto; padding: 14px 20px; background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3); border-radius: var(--r-md); color: #fca5a5; font-size: 0.92rem; }
.co-alert--err { background: rgba(220,38,38,0.12); border-color: rgba(220,38,38,0.3); }
.co-empty { width: var(--container); margin: 80px auto; text-align: center; display: grid; gap: 20px; }
.co-empty h1 { font-family: var(--font-h); font-size: 2rem; font-weight: 900; }

/* Left side */
.co-left { background: var(--bg-3); border-right: 1px solid var(--border); padding: 60px 44px; display: flex; flex-direction: column; gap: 32px; position: sticky; top: var(--header-h); height: calc(100svh - var(--header-h)); overflow-y: auto; }
.co-ev-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16/9; }
.co-ev-img img { width: 100%; height: 100%; object-fit: cover; }
.co-ev-info { display: flex; flex-direction: column; gap: 10px; }
.co-ev-title { font-family: var(--font-h); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; letter-spacing: -0.02em; color: var(--text); line-height: 1.1; }
.co-ev-meta { display: flex; flex-direction: column; gap: 6px; }
.co-ev-meta li { font-size: 0.88rem; color: var(--text-2); }
.co-section-label { font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); display: block; }

/* Ticket cards */
.co-tickets { display: flex; flex-direction: column; gap: 10px; }
.co-ticket-list { display: flex; flex-direction: column; gap: 10px; }
.co-ticket-card { display: block; cursor: pointer; border-radius: var(--r-lg); border: 2px solid var(--border); background: var(--surface); transition: var(--t); padding: 16px 20px; }
.co-ticket-card input[type=radio] { display: none; }
.co-ticket-card--active { border-color: var(--orange); background: var(--orange-bg); }
.co-ticket-card--sold { opacity: 0.45; cursor: not-allowed; }
.co-ticket-card:not(.co-ticket-card--sold):hover { border-color: var(--border-2); }
.co-ticket-card__body { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.co-ticket-card__name { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: var(--text); display: block; }
.co-ticket-card__desc { font-size: 0.8rem; color: var(--text-2); margin-top: 4px; }
.co-ticket-card__avail { font-size: 0.75rem; color: var(--text-3); margin-top: 4px; display: block; }
.co-ticket-card__price { font-family: var(--font-h); font-size: 1.2rem; font-weight: 800; color: var(--text); white-space: nowrap; text-align: right; }
.co-ticket-card__cur { display: block; font-size: 0.72rem; font-weight: 600; color: var(--text-3); }

/* Qty stepper */
.co-qty-row { display: flex; flex-direction: column; gap: 10px; }
.co-qty-stepper { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--border-2); border-radius: var(--r-pill); overflow: hidden; width: fit-content; }
.co-qty-btn { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: var(--surface-2); color: var(--text); font-size: 1.2rem; font-family: var(--font-h); font-weight: 700; border: none; cursor: pointer; transition: var(--t); }
.co-qty-btn:hover { background: var(--surface-3); color: var(--orange); }
.co-qty-val { width: 52px; text-align: center; font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--text); }

/* Right side */
.co-right { padding: 60px 44px; display: flex; flex-direction: column; gap: 0; overflow-y: auto; }
.co-form { display: flex; flex-direction: column; gap: 28px; flex: 1; }
.co-section { display: flex; flex-direction: column; gap: 14px; }
.co-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-field { display: flex; flex-direction: column; gap: 6px; }
.co-field label { font-size: 0.78rem; font-weight: 600; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; }
.co-field input, .co-field select, .co-field textarea {
    background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-md);
    color: var(--text); font-family: var(--font-b); font-size: 0.95rem; padding: 12px 14px;
    outline: none; transition: var(--t); width: 100%;
}
.co-field input:focus, .co-field select:focus { border-color: var(--orange); background: var(--bg-4); box-shadow: 0 0 0 3px var(--orange-bg); }
.co-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235d7598' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Payment tabs */
.co-pay-tabs { display: flex; flex-direction: column; gap: 10px; }
.co-pay-tab { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--r-lg); cursor: pointer; text-align: left; transition: var(--t); color: var(--text); }
.co-pay-tab:hover { border-color: var(--border-2); }
.co-pay-tab--active { border-color: var(--orange); background: var(--orange-bg); }
.co-pay-tab__icon { font-size: 1.5rem; flex-shrink: 0; }
.co-pay-tab strong { display: block; font-family: var(--font-h); font-size: 0.92rem; font-weight: 700; color: var(--text); }
.co-pay-tab small { font-size: 0.78rem; color: var(--text-2); }
.co-pay-info { padding: 12px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }

/* Checks */
.co-checks { display: flex; flex-direction: column; gap: 10px; }
.co-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.85rem; color: var(--text-2); line-height: 1.5; }
.co-check input[type=checkbox] { margin-top: 3px; accent-color: var(--orange); flex-shrink: 0; }
.co-check a { color: var(--orange); text-decoration: underline; }

/* Total bar */
.co-total-bar { position: sticky; bottom: 0; background: var(--bg-4); border-top: 1px solid var(--border); margin: 0 -44px; padding: 20px 44px; display: flex; flex-direction: column; gap: 14px; margin-top: auto; }
.co-total-row { display: flex; align-items: center; justify-content: space-between; }
.co-total-row span { font-size: 0.88rem; color: var(--text-2); font-weight: 600; }
.co-total-amount { font-family: var(--font-h); font-size: 1.6rem; font-weight: 900; color: var(--text); }
.co-submit { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px; background: linear-gradient(135deg, var(--orange), #c94400); color: #fff; border: none; border-radius: var(--r-pill); font-family: var(--font-h); font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; cursor: pointer; transition: var(--t); box-shadow: 0 8px 28px rgba(255,107,53,0.35); }
.co-submit:hover { background: linear-gradient(135deg, var(--orange-2), var(--orange)); transform: translateY(-1px); }
.co-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Payment Gateway Page ── */
.gw-main { background: var(--bg); padding-bottom: 80px; }
.gw-wrap { width: var(--container); margin: 0 auto; padding-top: 60px; }
.gw-header { display: flex; align-items: center; gap: 24px; margin-bottom: 44px; }
.gw-back { font-family: var(--font-h); font-size: 0.85rem; font-weight: 600; color: var(--text-3); transition: var(--t); }
.gw-back:hover { color: var(--text); }
.gw-title { font-family: var(--font-h); font-size: 1.8rem; font-weight: 900; color: var(--text); }
.gw-grid { display: grid; grid-template-columns: 380px 1fr; gap: 32px; align-items: start; }
.gw-summary { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--header-h) + 20px); }
.gw-summary__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.gw-summary__label { font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); }
.gw-summary__code { font-family: var(--font-h); font-size: 0.88rem; color: var(--text-3); }
.gw-summary__event { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--text); }
.gw-summary__line { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-2); padding: 10px 0; border-top: 1px solid var(--border); }
.gw-summary__total { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border-2); }
.gw-summary__total span { font-size: 0.88rem; color: var(--text-2); }
.gw-summary__total strong { font-family: var(--font-h); font-size: 1.4rem; font-weight: 900; color: var(--text); }
.gw-summary__meta { display: flex; flex-direction: column; gap: 8px; }
.gw-summary__meta dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); }
.gw-summary__meta dd { font-size: 0.88rem; color: var(--text-2); margin-top: 2px; }
.gw-trust { display: flex; flex-direction: column; gap: 8px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); }
.gw-trust span { font-size: 0.82rem; color: var(--text-2); }
.gw-payment__box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; }
.gw-payment__head { padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.gw-manual-channels { display: flex; flex-direction: column; gap: 12px; }
.gw-manual-ch { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: var(--bg-4); border: 1px solid var(--border); border-radius: var(--r-md); }
.gw-manual-ch span { font-size: 0.85rem; color: var(--text-2); }
.gw-manual-ch strong { font-family: var(--font-h); font-weight: 700; color: var(--text); }

@media (max-width: 1100px) {
    .s-event__grid { grid-template-columns: 1fr; gap: 36px; }
    .sol-grid { grid-template-columns: 1fr 1fr; }
    .s-gallery__grid { grid-template-columns: 1fr 1fr; }
    .s-gallery__grid .s-gallery__card:last-child { display: none; }
    .proj-grid { grid-template-columns: 1fr 1fr; }
    .ev-card { grid-template-columns: 320px 1fr; }
    .ev-meta-grid { grid-template-columns: repeat(3,1fr); }
    .contact-ch-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
    .s-hero__h1 { max-width: 100%; }
    .sol-grid { grid-template-columns: 1fr; }
    .s-gallery__grid { grid-template-columns: 1fr; }
    .s-gallery__grid .s-gallery__card:not(:first-child) { display: none; }
    .proj-grid { grid-template-columns: 1fr 1fr; }
    .s-event__actions { flex-direction: column; align-items: flex-start; }
    .ev-card { grid-template-columns: 1fr; }
    .ev-card__img { max-height: 280px; }
    .ev-card__body { padding: 28px 28px; }
    .ev-card__meta { grid-template-columns: 1fr 1fr; }
    .ev-meta-grid { grid-template-columns: repeat(2,1fr); }
    .s-page-hero__content { padding: 100px 0 70px; }
    .contact-ch-grid { grid-template-columns: 1fr; }
    .s-contact-cta__card { padding: 32px 24px; }
}
@media (max-width: 560px) {
    .s-hero__content { padding: 100px 0 70px; }
    .proj-grid { grid-template-columns: 1fr; }
    .s-cta-video { padding: 80px 0; }
    .s-experience { padding: 70px 0; }
    .ev-card__body { padding: 22px 20px; }
    .ev-card__meta { grid-template-columns: 1fr; }
    .ev-meta-grid { grid-template-columns: 1fr 1fr; }
    .s-page-hero { min-height: 60vh; }
    .s-page-hero__content { padding: 80px 0 60px; }
    .s-ev-hero { min-height: 65vh; }
    .pay-methods-grid { gap: 8px; }
    .pay-method-pill { padding: 11px 20px; font-size: 0.85rem; }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .co-wrap { grid-template-columns: 1fr; }
    .co-left { position: static; height: auto; padding: 40px 28px; border-right: none; border-bottom: 1px solid var(--border); }
    .co-right { padding: 40px 28px; }
    .gw-grid { grid-template-columns: 1fr; }
    .gw-summary { position: static; }
    .hero-panel { grid-template-columns: 1fr; min-height: unset; padding-top: 40px; }
    .hero-panel__visual { height: 440px; }
    .event-grid { grid-template-columns: repeat(2,1fr); }
    .feature-grid { grid-template-columns: repeat(2,1fr); }
    .step-grid { grid-template-columns: repeat(2,1fr); }
    .step-grid::before { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid .gallery-card:last-child { display: none; }
    .event-card--wide { grid-template-columns: 1fr; }
    .event-card--wide .event-card__image { min-height: 280px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .cta-banner { flex-direction: column; align-items: flex-start; padding: 36px 32px; }
    .faq-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: repeat(2,1fr); }
    .legal-list { grid-template-columns: 1fr; }
    .hero { grid-template-columns: 1fr !important; }
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .order-grid { grid-template-columns: 1fr; }
    .order-card--state { position: static; }
}
@media (max-width: 820px) {
    :root { --container: min(100% - 32px, 100% - 32px); }
    .site-nav, .site-header__cta { display: none; }
    .hamburger { display: flex; }
    .hero-panel { grid-template-columns: 1fr !important; }
    .hero-panel__visual { height: 340px; }
    .event-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .step-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid .gallery-card:not(:first-child) { display: none; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .legal-list { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: 1fr; }
    .cta-banner { text-align: center; align-items: center; }
    .cta-banner .button-row { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .co-row-2 { grid-template-columns: 1fr; }
    .co-total-bar { margin: 0 -28px; padding: 16px 28px; }
    .form-row--2 { grid-template-columns: 1fr; }
    .form-group--qty { width: 100%; }
    .form-row--auto { flex-direction: column; }
    .order-meta > div { grid-template-columns: 1fr; gap: 3px; }
    .admin-topbar { flex-direction: column; }
    .order-header { flex-direction: column; gap: 12px; }
}
@media (max-width: 560px) {
    :root { --container: min(100% - 24px, 100% - 24px); }
    .content-section { padding-top: 48px; }
    .button-row, .btn-row { flex-direction: column; }
    .button, .btn { width: 100%; }
    .step-grid { grid-template-columns: 1fr; }
    .event-card__meta { grid-template-columns: 1fr; }
    .detail-meta { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__bottom { flex-direction: column; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .faq-list { grid-template-columns: 1fr; }
    .not-found-card { padding: 36px 24px; }
    .hero-highlights li { width: 100%; }
    .checkout-box { padding: 22px; }
    .checkout-summary { padding: 22px; }
    .order-card { padding: 20px; }
    .admin-topbar { gap: 12px; }
}

/* === DASHBOARD STATS === */
.dashboard-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 8px;
}
.stat-card {
    padding: 24px 22px; border-radius: var(--r-xl);
    background: var(--surface); border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 8px; min-width: 0;
}
.stat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.stat-value { font-family: var(--font-h); font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1; }
.stat-card--wide { grid-column: span 2; }
.stat-value--money { font-size: clamp(1.9rem, 2vw, 2.6rem); letter-spacing: -0.03em; white-space: nowrap; }
.stat-value--green { color: var(--green); }
.stat-value--orange { color: var(--orange-2); }
.stat-value--cyan { color: var(--cyan-2); }

@media (max-width: 1100px) { .dashboard-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dashboard-stats { grid-template-columns: 1fr; } .stat-card--wide { grid-column: span 1; } .stat-value--money { white-space: normal; } }

/* === TICKET TEMPLATE (PDF/Print) === */

/* ── Shell ── */
.m360-ticket-shell {
    font-family: 'Outfit', Arial, sans-serif;
    padding: 36px 24px;
    background: #0b0d12;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* ── Main ticket strip ── */
.m360-ticket {
    display: flex;
    flex-direction: row;
    width: 960px;
    max-width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.06);
}

/* ── ZONE 1: Left white strip ── */
.m360-ticket__left {
    width: 68px;
    flex-shrink: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 12px 5px;
    border-right: 2px dashed rgba(0,0,0,0.15);
    overflow: hidden;
}
.m360-ticket__barcode { overflow: hidden; max-height: 230px; display: flex; align-items: flex-start; justify-content: center; }
.m360-ticket__barcode svg { display: block; width: 50px; height: auto; }
.m360-ticket__vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.5rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

/* ── ZONE 1.5: Locality color band ── */
/* Thin colored vertical stripe between barcode strip and photo zone */
.m360-ticket__band {
    width: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.46rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    border-right: 1px solid rgba(0,0,0,0.12);
}

/* ── ZONE 2: Main dark section — concert photo fills entire background ── */
.m360-ticket__main {
    flex: 1;
    position: relative;
    background-color: #111111;
    background-size: cover;
    background-position: left center;
    overflow: hidden;
}

/* Gradient: photo visible on left, pure dark on right */
.m360-ticket__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(0,0,0,0.02) 0%,
        rgba(0,0,0,0.20) 22%,
        rgba(0,0,0,0.72) 40%,
        rgba(0,0,0,0.90) 55%,
        rgba(0,0,0,0.94) 100%
    );
}

/* Heart in photo/dark transition zone */
.m360-ticket__heart {
    position: absolute;
    top: 18px;
    left: 26%;
    z-index: 3;
    color: #e63312;
    font-size: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

/* Musical note — absolute right of dark section, near venue */
.m360-ticket__note-icon {
    position: absolute;
    right: 22px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 3;
    color: #e63312;
    font-size: 2rem;
    line-height: 1;
    pointer-events: none;
}

/* Content above overlay, offset right past photo area */
.m360-ticket__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 52px 12px 37%;
    box-sizing: border-box;
}
/* Info block with configurable Y position (absolute logos mode) */
.m360-ticket__content-info {
    position: absolute;
    z-index: 6;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
/* Absolutely positioned logo layer (Constructor de Ticket mode) */
.m360-ticket__logo-abs {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    transform-origin: center center;
}

/* ── Title block ── */
.m360-ticket__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    flex-shrink: 0;
}
/* Logo real del evento (TDG) */
.m360-ticket__event-logo {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 175px;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.7));
}
.m360-ticket__title-cross {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
}
.m360-ticket__title-line1 { display: block; text-align: center; line-height: 1.1; }
.m360-ticket__title-small {
    display: inline;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.38rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    color: #ffffff;
}
.m360-ticket__title-de {
    display: inline;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 0.92rem;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    margin-left: 4px;
}
.m360-ticket__title-main {
    display: block;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 3.4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 0.88;
    margin-top: 1px;
}
/* Calligraphic swoosh under GRACIA */
.m360-ticket__wave {
    display: block;
    width: 88%;
    height: 22px;
    overflow: visible;
    margin: 4px auto 1px;
}
.m360-ticket__tour {
    color: #e63312;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 2px;
}

/* ── Red separator line ── */
.m360-ticket__line {
    height: 2px;
    background: #e63312;
    border: none;
    border-radius: 1px;
    flex-shrink: 0;
}

/* ── Venue ── */
.m360-ticket__venue-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2px;
}
.m360-ticket__venue-value {
    display: block;
    font-size: 0.84rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}

/* ── Date & Time ── */
.m360-ticket__meta {
    display: flex;
    flex-direction: row;
    gap: 22px;
    justify-content: center;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
}

/* ── Streaming info ── */
.m360-ticket__stream-info {
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 5px;
    padding: 4px 8px;
}
.m360-ticket__stream-token { font-family: monospace; font-size: 0.58rem; color: rgba(0,212,255,0.9); word-break: break-all; }
.m360-ticket__stream-expiry { font-size: 0.55rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── Security hash ── */
.m360-ticket__security-hash {
    font-family: monospace;
    font-size: 0.38rem;
    color: rgba(255,255,255,0.1);
    letter-spacing: 0.05em;
    user-select: none;
    text-align: center;
}

/* ── MOMENTO360 logo ── */
.m360-ticket__logo { display: flex; flex-direction: column; align-items: center; }
.m360-ticket__logo-row { display: flex; align-items: baseline; gap: 1px; }
.m360-ticket__logo-name {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
}
.m360-ticket__logo-360 {
    font-size: 1.7rem;
    font-weight: 900;
    color: #e63312;
    letter-spacing: -0.02em;
    line-height: 1;
}
.m360-ticket__logo-swoosh { display: block; margin: -1px auto 0; }
.m360-ticket__logo-sub {
    display: block;
    font-size: 0.44rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-top: 1px;
}
/* Logo MOMENTO360 imagen real */
.m360-ticket__logo-img {
    display: block;
    width: auto;
    max-width: 130px;
    max-height: 42px;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

/* ── ZONE 3: Right white stub ── */
.m360-ticket__stub {
    width: 210px;
    flex-shrink: 0;
    background: #ffffff;
    border-left: 2px dashed rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}
/* Dense MOMENTO/360 diagonal watermark */
.m360-ticket__stub-watermark {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Ctext x='1' y='20' font-family='Arial' font-weight='900' font-size='7.5' fill='%23000' opacity='0.07' transform='rotate(-45 26 26)'%3EMOMENTO%3C/text%3E%3Ctext x='8' y='31' font-family='Arial' font-weight='900' font-size='12' fill='%23000' opacity='0.09' transform='rotate(-45 26 26)'%3E360%3C/text%3E%3C/svg%3E");
    background-repeat: repeat;
}
/* 3 columnas: [banda color localidad rotada] | [centro: QR+datos+número] | [SCAN ME rotado] */
.m360-ticket__stub-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    height: 100%;
    padding: 0 0 0 0;
    gap: 0;
    align-items: stretch;
}
/* Banda de color de localidad (izquierda del stub) — misma lógica que la banda lateral */
.m360-ticket__stub-side {
    width: 26px; flex-shrink: 0; align-self: stretch;
    display: flex; align-items: center; justify-content: center;
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: 0.46rem; font-weight: 900; letter-spacing: 0.22em;
    text-transform: uppercase; white-space: nowrap;
    overflow: hidden;
    border-right: 1px solid rgba(0,0,0,0.08);
}
/* Centro: QR + número de ticket (sin badge, sin asiento) */
.m360-ticket__stub-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    overflow: hidden;
    padding: 8px 4px;
}
/* Badge heredado — se mantiene pero oculto por defecto (compatibilidad) */
.m360-ticket__stub-badge { display: none; }
.m360-ticket__stub-badge-code { display: none; }
.m360-ticket__stub-badge-label { display: none; }
/* QR — elemento de validación principal */
.m360-ticket__qr {
    width: 116px; height: 116px; display: block;
    border: 2.5px solid #111111; border-radius: 3px;
    flex-shrink: 0;
}
/* Información de asiento / acceso */
.m360-ticket__stub-seat {
    font-size: 0.44rem; font-weight: 600; color: #444;
    text-align: center; letter-spacing: 0.04em; line-height: 1.4;
}
/* Número de ticket */
.m360-ticket__stub-number {
    font-size: 0.42rem; font-weight: 700; color: #e63312;
    text-align: center; letter-spacing: 0.06em;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    max-width: 100%;
}
.m360-ticket__scan-label {
    width: 16px; flex-shrink: 0; align-self: stretch;
    display: flex; align-items: center; justify-content: center;
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: 0.48rem; font-weight: 900; letter-spacing: 0.22em;
    text-transform: uppercase; color: #ffffff; background: #111111;
    padding: 4px 1px; white-space: nowrap;
}

/* ── Info strip below ticket ── */
.m360-ticket-info {
    width: 960px; max-width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px; padding: 14px 20px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.m360-ticket-info strong { color: rgba(255,255,255,0.78); }
.m360-ticket-info__full { grid-column: span 3; }
.m360-ticket-info code { color: rgba(0,212,255,0.8); font-size: 0.7rem; word-break: break-all; }
.m360-ticket-info a { color: #e63312; text-decoration: none; }
.m360-ticket-info a:hover { text-decoration: underline; }

/* ── Streaming theme overrides ── */
.m360-ticket.is-streaming .m360-ticket__main { background-color: #0a1428; }
.m360-ticket.is-streaming .m360-ticket__overlay {
    background: linear-gradient(90deg,
        rgba(10,20,40,0.02) 0%, rgba(10,20,40,0.20) 22%,
        rgba(10,20,40,0.82) 40%, rgba(10,20,40,0.94) 55%,
        rgba(10,20,40,0.97) 100%
    );
}
.m360-ticket.is-streaming .m360-ticket__heart { color: #00d4ff; }
.m360-ticket.is-streaming .m360-ticket__note-icon { color: #00d4ff; }
.m360-ticket.is-streaming .m360-ticket__tour { color: #00d4ff; }
.m360-ticket.is-streaming .m360-ticket__line { background: #00d4ff; }
.m360-ticket.is-streaming .m360-ticket__logo-360 { color: #00d4ff; }
.m360-ticket.is-streaming .m360-ticket__stub-number { color: #00d4ff; }

/* ── Responsive: proportional zones on tablet ── */
@media (max-width: 960px) {
    .m360-ticket-shell { padding: 20px 16px; }

    .m360-ticket { height: auto; aspect-ratio: 3 / 1; }

    .m360-ticket__left { width: 7%;  min-width: 28px; padding: 6px 1px; }
    .m360-ticket__band { width: 3%;  min-width: 10px; font-size: 0.38rem; letter-spacing: 0.15em; }
    .m360-ticket__stub { width: 22%; min-width: 70px; }

    .m360-ticket__barcode svg { width: 100%; max-width: 40px; height: auto; }

    .m360-ticket__qr { width: clamp(48px, 16vw, 116px) !important; height: clamp(48px, 16vw, 116px) !important; }

    .m360-ticket__title-main  { font-size: clamp(0.9rem,  4vw,   3.4rem); }
    .m360-ticket__title-small { font-size: clamp(0.5rem,  1.8vw, 1.38rem); }
    .m360-ticket__tour        { font-size: clamp(0.3rem,  0.9vw, 0.55rem); letter-spacing: 0.08em; }
    .m360-ticket__event-logo  { max-height: clamp(60px, 17vw, 175px); }
    .m360-ticket__venue-label { font-size: clamp(0.44rem, 1.3vw, 0.84rem); }
    .m360-ticket__venue-value { font-size: clamp(0.44rem, 1.3vw, 0.84rem); }
    .m360-ticket__meta        { font-size: clamp(0.4rem,  1.2vw, 0.88rem); gap: clamp(4px, 1.5vw, 22px); }

    .m360-ticket-info { grid-template-columns: 1fr 1fr; }
    .m360-ticket-info__full { grid-column: span 2; }
}

/* ── Mobile (< 700px): keep natural 960×320 size, JS scales to fit viewport ── */
@media (max-width: 700px) {
    .m360-ticket-shell {
        overflow: hidden;
        padding: 16px 0;
        min-height: auto;
        gap: 16px;
        align-items: center;
    }
    /* Natural desktop dimensions — JS will apply transform:scale() to fit */
    .m360-ticket {
        width: 960px !important;
        min-width: 960px !important;
        max-width: 960px !important;
        height: 320px !important;
        aspect-ratio: unset !important;
        transform-origin: top center;
        flex-shrink: 0;
    }
    .m360-ticket-info {
        width: 960px !important;
        min-width: 960px !important;
        max-width: 960px !important;
        transform-origin: top center;
        flex-shrink: 0;
    }
}

/* ── Print ── */
@media print {
    * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
    body { background: #cccccc !important; margin: 0 !important; padding: 0 !important; }
    .m360-ticket-shell {
        background: #cccccc !important;
        padding: 0 !important;
        gap: 6mm !important;
        min-height: 0 !important;
        align-items: center !important;
    }
    .admin-navbar, .site-header, .site-footer, .ticket-toolbar { display: none !important; }
    .m360-ticket {
        box-shadow: none !important;
        width: 100% !important;
        max-width: 273mm !important;
        page-break-inside: avoid;
    }
    .m360-ticket__main {
        background-color: #111111 !important;
    }
    .m360-ticket.is-streaming .m360-ticket__main { background-color: #0d1a2e !important; }
    .m360-ticket-info {
        border: 1px solid #ccc !important;
        background: #f4f4f4 !important;
        color: #222 !important;
        max-width: 273mm !important;
        width: 100% !important;
    }
    .m360-ticket-info strong { color: #000 !important; }
}

/* ── Ticket Preview (layouts/ticket) ─────────────────────────────────────── */
.ticket-body { background: #0b0d12; color: var(--text, #eef2ff); font-family: var(--font-body, sans-serif); margin: 0; }
.ticket-page { min-height: 100vh; padding: 40px 20px 80px; }
.ticket-card { max-width: 780px; margin: 0 auto; background: var(--surface, #131722); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; }
.ticket-hero { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 40px 32px; background: linear-gradient(135deg, #0f172a 60%, #1a2340); border-bottom: 1px solid rgba(255,255,255,0.06); }
.ticket-hero h1 { font-family: var(--font-h, sans-serif); font-size: 1.6rem; font-weight: 800; color: #fff; margin: 6px 0 0; }
.ticket-kicker { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange, #ff6b35); }
.ticket-subtitle { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 6px; }
.ticket-badge { background: var(--orange, #ff6b35); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
.ticket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ticket-panel { padding: 28px 40px; border-right: 1px solid rgba(255,255,255,0.06); }
.ticket-panel:last-child { border-right: none; }
.ticket-panel h2 { font-family: var(--font-h, sans-serif); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin: 0 0 16px; }
.ticket-panel-wide { border-top: 1px solid rgba(255,255,255,0.06); grid-column: span 2; padding: 24px 40px; }
.ticket-list { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.ticket-list div { display: grid; grid-template-columns: 100px 1fr; gap: 8px; align-items: baseline; }
.ticket-list dt { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ticket-list dd { font-size: 0.88rem; color: var(--text, #eef2ff); margin: 0; }
.ticket-security { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.ticket-code-box { flex: 1; padding: 18px 24px; border-right: 1px solid rgba(255,255,255,0.06); }
.ticket-code-box:last-child { border-right: none; }
.ticket-code-box span { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.ticket-code-box strong { font-family: monospace; font-size: 0.78rem; color: var(--cyan, #00d4ff); word-break: break-all; }
.ticket-rules { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ticket-rules li { font-size: 0.85rem; color: rgba(255,255,255,0.7); padding-left: 18px; position: relative; }
.ticket-rules li::before { content: '→'; position: absolute; left: 0; color: var(--orange, #ff6b35); font-size: 0.8rem; }
@media (max-width: 640px) {
    .ticket-hero { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
    .ticket-grid { grid-template-columns: 1fr; }
    .ticket-panel { padding: 20px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .ticket-panel-wide { padding: 20px 24px; }
    .ticket-security { flex-direction: column; }
    .ticket-code-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ── Home event metadata list ─────────────────────────────────────────────── */
.s-event__meta { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.s-event__meta li { font-size: 0.92rem; color: rgb(60,65,75); display: flex; align-items: center; gap: 8px; }
.s-event__meta strong { color: var(--orange, #ff6b35); font-weight: 700; }

/* === Wave 6 UI / CMS / Media === */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.site-brand img {
    height: 56px;
}

.s-hero--cms {
    min-height: 78svh;
}

.s-hero--cms .s-hero__content {
    padding: 116px 0 78px;
}

.s-hero--cms .s-hero__h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.98;
    max-width: 11ch;
    margin-bottom: 18px;
}

.s-hero--cms .s-hero__body {
    max-width: 46ch;
    font-size: 1rem;
    margin-bottom: 30px;
}

.home-slider,
.s-video-showcase,
.home-banners,
.event-media,
.city-directory,
.calendar-board {
    position: relative;
    padding: 68px 0 0;
}

.home-slider__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
}

.home-slider__track::-webkit-scrollbar {
    height: 8px;
}

.home-slider__track::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.14);
    border-radius: 999px;
}

.home-slider__card {
    position: relative;
    min-height: 360px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0d1524;
    scroll-snap-align: start;
}

.home-slider__media {
    position: absolute;
    inset: 0;
}

.home-slider__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.08) saturate(1.06);
}

.home-slider__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,12,22,0.04) 0%, rgba(6,12,22,0.18) 32%, rgba(6,12,22,0.78) 100%);
}

.home-slider__body {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 28px;
}

.home-slider__kicker,
.ev-vcard__hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan-2);
}

.home-slider__body h3 {
    font-family: var(--font-h);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
}

.home-slider__body p {
    max-width: 34ch;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    line-height: 1.7;
}

.city-directory__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.city-directory__card {
    display: grid;
    gap: 8px;
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--t);
}

.city-directory__card:hover {
    transform: translateY(-3px);
    border-color: rgba(0,212,255,0.18);
}

.city-directory__count {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--cyan-2);
}

.city-directory__card strong {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.city-directory__card span:last-child {
    font-size: 0.84rem;
    color: var(--text-2);
}

.calendar-board__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.calendar-board__month {
    border-radius: 24px;
    background: linear-gradient(180deg, #0d1524, #0b1220);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.calendar-board__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.calendar-board__head h3 {
    font-family: var(--font-h);
    font-size: 1.08rem;
    font-weight: 800;
    color: #fff;
}

.calendar-board__head span {
    font-size: 0.8rem;
    color: var(--text-2);
}

.calendar-board__list {
    display: grid;
    gap: 1px;
    background: rgba(255,255,255,0.06);
}

.calendar-board__list--single {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.calendar-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    background: #0d1524;
    transition: var(--t);
}

.calendar-item:hover {
    background: #111b2d;
}

.calendar-item__day {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.calendar-item__body {
    display: grid;
    gap: 4px;
}

.calendar-item__body strong {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.calendar-item__city {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan-2);
}

.calendar-item__meta {
    font-size: 0.88rem;
    color: var(--text-2);
}

.s-video-showcase__grid,
.home-banners__grid,
.event-media__gallery {
    display: grid;
    gap: 20px;
}

.s-video-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.s-video-card {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #0d1524, #0b1220);
    border: 1px solid rgba(255,255,255,0.08);
}

.s-video-card__frame,
.event-media__frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #000;
}

.s-video-card__frame {
    border-radius: 0;
    border: none;
}

.s-video-card__frame iframe,
.s-video-card__frame video,
.event-media__frame iframe,
.event-media__frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}

.s-video-card__body {
    padding: 20px 22px 24px;
}

.s-video-card__body h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.s-video-card__body p {
    margin-top: 8px;
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.7;
}

.home-banners__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ev-vcard {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #0d1524, #0b1220);
    border: 1px solid rgba(255,255,255,0.08);
}

.ev-vcard__img {
    display: block;
    position: relative;
    overflow: hidden;
    background: #0b1220;
    border-radius: 20px 20px 0 0;
}

.ev-vcard__img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
    transition: transform 0.5s ease;
}

.ev-vcard:hover .ev-vcard__img img {
    transform: scale(1.02);
}

.ev-vcard__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px 20px;
}

.ev-vcard__title {
    font-family: var(--font-h);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

.ev-vcard__meta {
    display: grid;
    gap: 8px;
}

.ev-vcard__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-2);
    font-size: 0.88rem;
}

.ev-vcard__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.home-banners__card,
.event-media__item {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0d1524;
    min-height: 240px;
}

.home-banners__card img,
.event-media__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-media__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ev-list--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ev-cities__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.ev-cities__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--text-2);
    font-family: var(--font-h);
    font-size: 0.86rem;
    font-weight: 600;
    transition: var(--t);
}

.ev-cities__pill:hover,
.ev-cities__pill.is-active {
    color: #fff;
    border-color: rgba(0,212,255,0.18);
    background: rgba(0,212,255,0.1);
}

.ev-ttype-price--muted {
    color: var(--cyan-2);
    font-size: 0.92rem;
}

.admin-builder__section {
    padding: 24px 0 6px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.admin-builder__section:first-child {
    padding-top: 0;
    border-top: 0;
}

.admin-builder__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-builder__section-head h2 {
    font-family: var(--font-h);
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.admin-builder__video-grid,
.admin-event-builder__tickets-grid {
    align-items: end;
}

.admin-event-builder__preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.admin-event-builder__preview-card {
    display: grid;
    gap: 8px;
}

.admin-event-builder__preview-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #09101d;
}

.admin-event-builder__preview-delete {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 12px;
    color: #e63312;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(230,51,18,0.08);
    border: 1px solid rgba(230,51,18,0.18);
    transition: background 0.15s;
    user-select: none;
}

.admin-event-builder__preview-delete:hover {
    background: rgba(230,51,18,0.18);
}

.admin-event-builder__preview-delete input[type="checkbox"] {
    accent-color: #e63312;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .city-directory__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .calendar-board__grid,
    .s-video-showcase__grid,
    .home-banners__grid,
    .event-media__gallery,
    .ev-list--premium,
    .admin-event-builder__preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* === Marketplace events and checkout polish === */
.site-events .s-events {
    padding-top: 64px;
    background:
        radial-gradient(circle at 14% 0%, rgba(0, 212, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #050c18 0%, #07111f 48%, #050b15 100%);
}

.site-events .event-search-panel {
    padding: 0 0 34px;
    margin-top: -42px;
    position: relative;
    z-index: 6;
    background: transparent;
}

.site-events .event-search-card {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2fr);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 15, 29, 0.98)),
        radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.18), transparent 38%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.site-events .event-search-field input,
.site-events .event-search-field select {
    min-height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
}

.events-showcase {
    margin-bottom: 72px;
}

.events-showcase__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

.events-showcase__head .s-section-title {
    font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.events-showcase__head .s-section-sub {
    max-width: 650px;
}

.events-showcase__grid {
    display: grid;
    grid-template-columns: minmax(360px, 1.12fr) minmax(0, 1.45fr);
    gap: 22px;
    align-items: stretch;
}

.event-feature-card,
.event-poster-card {
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 25, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.event-feature-card:hover,
.event-poster-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 38px 86px rgba(0, 0, 0, 0.38);
}

.event-feature-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.event-feature-card__media,
.event-poster-card__media {
    display: block;
    overflow: hidden;
    background: #07101f;
}

.event-feature-card__media {
    /* no fixed aspect-ratio: altura natural de la imagen */
}

.event-poster-card__media {
    /* no fixed aspect-ratio: altura natural de la imagen */
}

.event-feature-card__media img,
.event-poster-card__media img {
    display: block;
    width: 100%;
    height: auto;          /* imagen completa, altura natural */
    object-fit: fill;
    transition: transform 680ms ease;
}

.event-feature-card:hover .event-feature-card__media img,
.event-poster-card:hover .event-poster-card__media img {
    transform: scale(1.03);
}

.event-feature-card__body,
.event-poster-card__body {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.event-feature-card__body h3,
.event-poster-card__body h3 {
    margin: 0;
    color: #fff;
    font-family: var(--font-h);
    font-weight: 950;
    letter-spacing: -0.035em;
    line-height: 1.02;
}

.event-feature-card__body h3 {
    font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.event-poster-card__body h3 {
    font-size: 1rem;
    letter-spacing: -0.015em;
}

.event-feature-card__body p,
.event-poster-card__body p {
    margin: 0;
    color: rgba(226, 232, 240, 0.72);
    line-height: 1.55;
}

.event-poster-card__body p {
    font-size: 0.82rem;
}

.event-feature-card__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 8px 0 0;
}

.event-feature-card__meta div {
    padding: 13px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-feature-card__meta dt {
    margin: 0 0 5px;
    color: rgba(125, 232, 255, 0.8);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.event-feature-card__meta dd {
    margin: 0;
    color: #f8fafc;
    font-family: var(--font-h);
    font-size: 0.88rem;
    font-weight: 850;
    line-height: 1.25;
}

.event-feature-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 6px;
}

.events-showcase__posters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.event-poster-card {
    border-radius: 26px;
}

.event-poster-card__body {
    padding: 16px;
}

.event-poster-card__info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

.event-poster-card__date {
    display: grid;
    min-width: 46px;
    justify-items: center;
    padding: 7px 9px;
    border-radius: 15px;
    background: rgba(34, 211, 238, 0.11);
    border: 1px solid rgba(34, 211, 238, 0.18);
    color: #67e8f9;
}

.event-poster-card__date strong {
    font-family: var(--font-h);
    font-size: 1.25rem;
    line-height: 1;
}

.event-poster-card__date span {
    margin-top: 2px;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.site-events .ev-list--premium {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

.site-events .ev-list--premium .ev-card {
    border-radius: 26px !important;
    min-width: 0 !important;
}

.site-events .ev-list--premium .ev-card__img {
    aspect-ratio: 1 / 1 !important;
    max-height: none !important;
    min-height: 0 !important;
}

.site-events .ev-list--premium .ev-card__body {
    padding: 18px !important;
}

.site-events .ev-list--premium .ev-card__title {
    font-size: 1.05rem !important;
    line-height: 1.08 !important;
}

.site-events .ev-list--premium .ev-card__text {
    display: none !important;
}

.site-events .ev-list--premium .ev-card__meta {
    gap: 8px !important;
}

.site-events .ev-list--premium .ev-card__meta div {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.site-events .ev-list--premium .ev-card__meta dt {
    display: none !important;
}

.site-events .ev-list--premium .ev-card__meta dd {
    color: rgba(226, 232, 240, 0.72) !important;
    font-size: 0.82rem !important;
}

.site-events .ev-list--premium .ev-card__actions {
    margin-top: 8px;
}

.site-events .ev-list--premium .ev-card__actions .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.78rem;
}

.market-rail {
    margin: 0 0 54px;
}

.market-rail__head,
.market-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
}

.market-section-heading {
    align-items: start;
    flex-direction: column;
    max-width: 760px;
}

.market-rail__head--compact {
    margin-bottom: 16px;
}

.market-rail__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 330px);
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 4px 2px 18px;
}

.market-rail__track--compact {
    grid-auto-columns: minmax(240px, 292px);
}

.market-rail__track::-webkit-scrollbar {
    height: 8px;
}

.market-rail__track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
}

.market-rail__track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    border-radius: 999px;
}

.market-event-card {
    scroll-snap-align: start;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 58px rgba(2, 6, 23, 0.22);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.market-event-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow: 0 34px 74px rgba(2, 6, 23, 0.34);
}

.market-event-card__media {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0b1220;
}

.market-event-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 620ms ease;
}

.market-event-card:hover .market-event-card__media img {
    transform: scale(1.03);
}

.market-event-card__body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
}

.market-event-card__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.market-event-card__tags .ev-card__badge,
.ev-card__body .ev-card__badge {
    position: static !important;
    display: inline-flex !important;
    box-shadow: none !important;
    left: auto !important;
    top: auto !important;
}

.market-event-card__body h3 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-h);
    font-size: 1.12rem;
    font-weight: 950;
    line-height: 1.08;
}

.market-event-card__body p {
    margin: 0;
    color: var(--text-2);
    font-size: 0.88rem;
    line-height: 1.45;
}

.market-event-card__cta {
    justify-self: start;
    margin-top: 4px;
    color: var(--cyan);
    font-weight: 900;
    text-decoration: none;
}

.market-rail-filter {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.ev-list--premium {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.ev-list--premium .ev-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr !important;
    border-radius: 30px !important;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 25, 0.98)) !important;
    box-shadow: 0 24px 58px rgba(2, 6, 23, 0.22) !important;
}

.ev-list--premium .ev-card__img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 10 !important;
}

.ev-list--premium .ev-card__body {
    padding: 22px !important;
    background: transparent !important;
}

.ev-list--premium .ev-card__title {
    font-size: clamp(1.18rem, 1.9vw, 1.55rem) !important;
}

.ev-list--premium .ev-card__text {
    font-size: 0.93rem !important;
    line-height: 1.6 !important;
}

.ev-list--premium .ev-card__meta {
    grid-template-columns: 1fr !important;
}

.co-pay-tab__icon {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 8px;
    border-radius: 14px;
    background: rgba(34, 211, 238, 0.1);
    color: #67e8f9;
    font-size: 0.68rem !important;
    font-weight: 950;
    letter-spacing: 0.06em;
}

@media (max-width: 1020px) {
    .ev-list--premium {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .market-rail__head {
        align-items: start;
        flex-direction: column;
    }

    .market-rail__track,
    .market-rail__track--compact {
        grid-auto-columns: minmax(238px, 82vw);
        gap: 14px;
        margin-right: -18px;
        padding-right: 18px;
    }

    .ev-list--premium {
        grid-template-columns: 1fr !important;
    }
}

/* Admin styles → admin-panel.css */


@media (max-width: 780px) {
    .site-header__actions {
        display: none;
    }

    .site-brand img {
        height: 48px;
    }

    .s-hero--cms .s-hero__content {
        padding: 92px 0 56px;
    }

    .s-hero--cms .s-hero__h1 {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 3.1rem);
    }

    .city-directory__grid,
    .s-video-showcase__grid,
    .home-banners__grid,
    .event-media__gallery,
    .ev-list--premium,
    .admin-event-builder__preview-grid {
        grid-template-columns: 1fr;
    }

    .calendar-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-slider__track {
        grid-auto-columns: 86%;
    }
}

/* === Wave 6 Visual Polish / structured public experience === */
.site-header__inner {
    gap: 30px;
}

.site-brand {
    min-width: 144px;
}

.site-brand img {
    height: 66px;
    filter: drop-shadow(0 6px 18px rgba(0, 212, 255, 0.12));
}

.site-nav {
    justify-content: center;
}

.site-nav__link {
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 600;
}

.s-hero--cms {
    min-height: 72svh;
}

.s-hero--cms .s-hero__content {
    padding: 104px 0 62px;
}

.s-hero--cms .s-hero__h1 {
    max-width: 10ch;
    font-size: clamp(2.1rem, 4.6vw, 3.8rem);
}

.s-hero--cms .s-hero__body {
    max-width: 52ch;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.s-proof {
    padding-top: 28px;
}

.s-proof__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.s-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-slider__track {
    grid-auto-columns: minmax(280px, 360px);
    gap: 20px;
}

.home-slider__card {
    min-height: 300px;
    border-radius: 26px;
}

.home-slider__body {
    gap: 8px;
    padding: 22px 22px 24px;
}

.home-slider__body h3 {
    font-size: 1.28rem;
    line-height: 1.04;
}

.home-slider__body p {
    max-width: none;
    font-size: 0.9rem;
}

.ev-vcard {
    position: relative;
    border-radius: 26px;
    background: linear-gradient(180deg, #111827 0%, #0b1220 100%);
}

.ev-vcard__img {
    aspect-ratio: unset;
    max-height: none;
}

.ev-vcard__body {
    gap: 12px;
    padding: 16px 18px 20px;
}

.ev-vcard__title {
    min-height: 2.5em;
    font-size: 1.06rem;
}

.ev-vcard__hint {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.16);
}

.ev-vcard__actions .btn {
    height: 44px;
    padding: 0 18px;
}

.city-directory__grid {
    grid-template-columns: repeat(6, minmax(140px, 1fr));
    gap: 16px;
}

.city-directory__card {
    position: relative;
    min-height: 148px;
    align-content: end;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(0, 212, 255, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(17,24,39,0.96), rgba(11,18,32,0.98));
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}

.city-directory__card::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 18px;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), transparent);
}

.city-directory__count {
    margin-top: 16px;
    font-size: 1.55rem;
}

.calendar-board__month,
.calendar-board__list--single {
    background: linear-gradient(180deg, #101828, #0b1220);
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.calendar-item {
    grid-template-columns: 88px 1fr;
    gap: 16px;
    padding: 16px 18px;
}

.calendar-item__date-box {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.12), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.calendar-item__date-number {
    font-family: var(--font-h);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.calendar-item__date-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan-2);
}

.s-page-hero__content {
    max-width: 880px;
    padding: 108px 0 72px;
}

.ev-filters__inner {
    display: grid;
    gap: 14px;
}

.ev-card {
    display: grid;
    grid-template-columns: 36% 1fr;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #111827, #0c1525);
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.ev-card__img {
    aspect-ratio: auto;
    min-height: 100%;
}

.ev-card__body {
    padding: 28px 30px;
    gap: 16px;
}

.ev-card__title {
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

.calendar-board--compact .calendar-board__list--single {
    display: grid;
    gap: 12px;
    background: transparent;
    border: 0;
}

.calendar-board--compact .calendar-item {
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, #111827, #0d1524);
}

@media (max-width: 1180px) {
    .s-featured__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .city-directory__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ev-card {
        grid-template-columns: 42% 1fr;
    }
}

@media (max-width: 900px) {
    .site-brand img {
        height: 58px;
    }

    .s-proof__grid,
    .s-featured__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ev-card {
        grid-template-columns: 1fr;
    }

    .ev-card__img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 780px) {
    .site-brand {
        min-width: 120px;
    }

    .site-brand img {
        height: 52px;
    }

    .s-featured__grid,
    .city-directory__grid {
        grid-template-columns: 1fr;
    }

    .home-slider__track {
        grid-auto-columns: 84%;
    }

    .calendar-item {
        grid-template-columns: 1fr;
    }

    .calendar-item__date-box {
        min-height: 62px;
    }

    .s-page-hero__content {
        padding: 92px 0 60px;
    }
}

/* === Wave 6 hard layout fixes for oversized media === */
:root {
    --header-h: 80px;
}

.site-header {
    height: var(--header-h);
}

.site-header__inner {
    min-height: var(--header-h);
    justify-content: space-between;
}

.site-brand {
    display: flex;
    align-items: center;
    min-width: 156px;
    padding-right: 8px;
}

.site-brand img {
    height: 74px !important;
    max-width: 168px;
    width: auto;
}

.site-nav {
    flex: 1;
    justify-content: flex-start;
    gap: 4px;
}

.home-slider__track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: unset !important;
    grid-auto-columns: unset !important;
    overflow: visible !important;
    align-items: stretch;
}

.home-slider__card {
    min-height: 0 !important;
    height: 340px;
    max-height: 340px;
}

.home-slider__media {
    position: absolute;
    inset: 0;
}

.home-slider__media img {
    object-fit: cover;
    object-position: center;
}

.home-slider__body {
    justify-content: flex-end;
}

.home-slider__body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-featured {
    padding-top: 70px;
}

.s-featured__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: start;
}

.ev-vcard {
    height: 100%;
}

.ev-vcard__img {
    aspect-ratio: unset !important;
    max-height: none !important;
}

.ev-vcard__img img {
    object-fit: unset !important;
    height: auto !important;
}

.ev-vcard__title {
    min-height: auto;
}

.s-gallery {
    padding-top: 70px;
}

.s-gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px;
}

.s-gallery__card {
    aspect-ratio: 4 / 5 !important;
    min-height: 0;
}

.s-gallery__overlay {
    padding: 16px 14px;
}

.home-banners {
    padding-top: 54px;
}

.home-banners__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px;
}

.home-banners__card {
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
}

.home-banners__card img {
    object-fit: cover;
    object-position: center;
}

.city-directory__card {
    min-height: 126px;
}

.calendar-board__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.ev-list--premium {
    grid-template-columns: 1fr !important;
}

.ev-card {
    display: grid !important;
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr) !important;
    align-items: stretch;
}

.ev-card__img {
    min-height: 100%;
    max-height: none;
}

.ev-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ev-card__body {
    padding: 24px 26px !important;
}

.ev-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ev-card__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.s-video-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 1180px) {
    .home-slider__track,
    .s-featured__grid,
    .home-banners__grid,
    .s-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .site-brand img {
        height: 62px !important;
        max-width: 140px;
    }

    .site-nav {
        justify-content: center;
    }

    .ev-card {
        grid-template-columns: 1fr !important;
    }

    .ev-card__img {
        aspect-ratio: 16 / 9;
    }

    .calendar-board__grid,
    .s-video-showcase__grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 780px) {
    :root {
        --header-h: 74px;
    }

    .site-brand img {
        height: 54px !important;
        max-width: 120px;
    }

    .home-slider__track,
    .s-featured__grid,
    .s-gallery__grid,
    .home-banners__grid {
        grid-template-columns: 1fr !important;
    }

    .home-slider__card {
        height: 300px;
        max-height: 300px;
    }
}

/* === Production pass: ticket marketplace layout === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: blur(18px);
}

.site-brand {
    min-width: 172px !important;
}

.site-brand img {
    height: 68px !important;
    max-width: 190px !important;
    object-fit: contain !important;
}

.s-page-hero--slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    isolation: isolate;
}

.events-hero-slider,
.events-hero-slide,
.events-hero-overlay {
    position: absolute;
    inset: 0;
}

.events-hero-slide {
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 900ms ease, transform 5200ms ease;
}

.events-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.events-hero-slide img,
.events-hero-slide video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(1.12) saturate(1.08);
}

.events-hero-overlay {
    z-index: 2;
    background:
        radial-gradient(circle at 72% 32%, rgba(0, 212, 255, 0.2), transparent 36%),
        linear-gradient(90deg, rgba(3, 8, 19, 0.72) 0%, rgba(5, 12, 26, 0.42) 48%, rgba(5, 12, 26, 0.64) 100%),
        linear-gradient(180deg, rgba(5, 12, 26, 0.04), rgba(5, 12, 26, 0.58));
}

.s-page-hero--slider .s-page-hero__content {
    position: relative;
    z-index: 3;
}

.events-hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 34px;
}

.events-hero-dots button {
    width: 36px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.28);
    transition: width 180ms ease, background 180ms ease;
}

.events-hero-dots button.is-active {
    width: 64px;
    background: var(--cyan);
}

.ev-list--premium {
    display: grid !important;
    gap: 26px !important;
}

.ev-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr) !important;
    align-items: stretch !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: linear-gradient(180deg, #111827, #0b1220) !important;
}

.ev-card__img {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 280px !important;
    height: 100% !important;
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
    background: #0b1220 !important;
}

.ev-card__img img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.ev-card__body {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    min-width: 0 !important;
    padding: 30px !important;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(9, 16, 31, 0.98)) !important;
}

.ev-card__title,
.ev-card__text,
.ev-card__meta,
.ev-card__actions {
    position: static !important;
}

.ev-card__badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.s-ev-hero__content > .ev-card__badge {
    position: static !important;
    display: inline-flex !important;
    box-shadow: none !important;
}

/* Badge dentro del body de la card (no superpuesto a la imagen) */
.ev-card__badge--inline {
    position: static !important;
    display: inline-flex !important;
    align-self: flex-start;
    box-shadow: none !important;
    margin-bottom: 2px;
}

.ev-vcard {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, #111827, #0b1220) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ev-vcard__img {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: unset !important;
    max-height: none !important;
    overflow: hidden !important;
    background: #0b1220 !important;
}

.ev-vcard__img img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
}

.ev-vcard__body {
    position: static !important;
    padding: 20px !important;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(9, 16, 31, 0.98)) !important;
}

.ev-vcard__title,
.ev-vcard__meta,
.ev-vcard__hint,
.ev-vcard__actions {
    position: static !important;
}

.home-slider__card,
.home-banners__card,
.s-gallery__card {
    max-height: 320px !important;
}

.home-slider__media,
.home-banners__card,
.s-gallery__card {
    overflow: hidden !important;
}

.home-slider__media img,
.home-banners__card img,
.s-gallery__card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

@media (max-width: 900px) {
    .site-brand {
        min-width: 138px !important;
    }

    .site-brand img {
        height: 58px !important;
        max-width: 150px !important;
    }

    .s-page-hero--slider {
        min-height: 440px;
    }

    .ev-card {
        grid-template-columns: 1fr !important;
    }

    .ev-card__img {
        min-height: 220px !important;
        max-height: 260px !important;
        aspect-ratio: 16 / 9 !important;
    }
}

@media (max-width: 640px) {
    .site-brand img {
        height: 48px !important;
        max-width: 126px !important;
    }

    .s-page-hero--slider {
        min-height: 390px;
    }

    .events-hero-dots {
        margin-top: 24px;
    }

    .ev-card__body,
    .ev-vcard__body {
        padding: 20px !important;
    }
}

/* === Event discovery/search experience === */
/* ── Event finder animations ── */
@keyframes ef-rise {
    from { opacity: 0; transform: translateY(20px) scale(.985); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes ef-glow {
    0%, 100% { box-shadow: 0 28px 80px rgba(0,0,0,.32), 0 0  0  1px rgba(255,255,255,.1); }
    50%       { box-shadow: 0 28px 80px rgba(0,0,0,.32), 0 0 28px rgba(34,211,238,.14), 0 0 0 1px rgba(34,211,238,.26); }
}
@keyframes ef-btn-sweep {
    0%   { background-position: -200% center; }
    100% { background-position: 200%  center; }
}

.home-event-finder {
    position: relative;
    z-index: 6;
    margin-top: -58px;
    padding: 0 0 42px;
}

.event-finder-card,
.event-search-card {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) minmax(190px, 1.2fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) minmax(150px, 0.78fr) auto;
    gap: 14px;
    align-items: end;
    padding: 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(8, 15, 29, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    animation: ef-rise 0.55s cubic-bezier(.22,1,.36,1) both,
               ef-glow 5s ease-in-out 0.9s infinite;
}

/* Staggered entrance for each field/button */
.event-finder-card > *:nth-child(1) { animation: ef-rise .5s cubic-bezier(.22,1,.36,1) .06s both; }
.event-finder-card > *:nth-child(2) { animation: ef-rise .5s cubic-bezier(.22,1,.36,1) .13s both; }
.event-finder-card > *:nth-child(3) { animation: ef-rise .5s cubic-bezier(.22,1,.36,1) .20s both; }
.event-finder-card > *:nth-child(4) { animation: ef-rise .5s cubic-bezier(.22,1,.36,1) .27s both; }
.event-finder-card > *:nth-child(5) { animation: ef-rise .5s cubic-bezier(.22,1,.36,1) .34s both; }
.event-finder-card > *:nth-child(6) { animation: ef-rise .5s cubic-bezier(.22,1,.36,1) .41s both; }

/* Animated submit button */
.event-finder-card .btn {
    background-image: linear-gradient(90deg, #fff 0%, #e0f9ff 40%, #fff 80%);
    background-size: 300% auto;
    transition: background-position .35s ease, box-shadow .25s ease, transform .2s ease;
}
.event-finder-card .btn:hover {
    background-position: 100% center;
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
    transform: translateY(-2px);
}

.event-finder-card__intro,
.event-search-card__head {
    align-self: center;
}

.event-finder-card__intro h2,
.event-search-card__head h2 {
    margin: 4px 0 8px;
    color: #fff;
    font-family: var(--font-h);
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    line-height: 1.05;
}

.event-finder-card__intro p {
    margin: 0;
    color: rgba(226, 232, 240, 0.65);
    line-height: 1.55;
    font-size: 0.9rem;
}

.event-search-panel {
    padding: 28px 0 18px;
    background: linear-gradient(180deg, rgba(5, 12, 26, 0.96), rgba(5, 12, 26, 0.86));
}

.event-search-card {
    grid-template-columns: minmax(210px, 0.95fr) minmax(0, 2.1fr);
    align-items: center;
}

.event-search-card__controls {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(140px, 0.9fr));
    gap: 12px;
}

.event-search-field {
    display: grid;
    gap: 8px;
}

.event-search-field span {
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(203, 213, 225, 0.72);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-search-field input,
.event-search-field select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 0 15px;
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.06);
    outline: none;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease, transform 200ms ease;
}

.event-search-field select option {
    color: #0f172a;
}

.event-search-field input:focus,
.event-search-field select:focus {
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15), 0 0 20px rgba(34, 211, 238, 0.1);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.event-empty-state {
    margin-top: 26px;
    padding: 30px;
    border-radius: 24px;
    border: 1px dashed rgba(148, 163, 184, 0.34);
    text-align: center;
    color: rgba(226, 232, 240, 0.76);
    background: rgba(15, 23, 42, 0.62);
}

.event-empty-state strong {
    display: block;
    color: #fff;
    font-family: var(--font-h);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

@media (max-width: 1180px) {
    .event-finder-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-finder-card__intro,
    .event-search-field--wide,
    .event-search-field--full {
        grid-column: 1 / -1;
    }

    .event-search-card,
    .event-search-card__controls {
        grid-template-columns: 1fr 1fr;
    }

    .event-search-card__head,
    .event-search-card__controls .event-search-field--wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .home-event-finder {
        margin-top: -28px;
        padding-bottom: 28px;
    }

    .event-finder-card,
    .event-search-card,
    .event-search-card__controls {
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding: 18px;
    }

    .event-finder-card .btn {
        width: 100%;
    }
}

/* === Mobile conversion navigation === */
.mobile-bottom-nav {
    display: none;
}





/* Final marketplace overrides: keep event information below images. */
.ev-list--premium {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.ev-list--premium .ev-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr !important;
    overflow: hidden !important;
    border-radius: 30px !important;
}

.ev-list--premium .ev-card__img {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    overflow: hidden !important;
}

.ev-list--premium .ev-card__body {
    position: static !important;
    padding: 22px !important;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 25, 0.98)) !important;
}

.ev-list--premium .ev-card__badge,
.market-event-card__tags .ev-card__badge {
    position: static !important;
    left: auto !important;
    top: auto !important;
    display: inline-flex !important;
    box-shadow: none !important;
}

@media (max-width: 1020px) {
    .ev-list--premium {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .ev-list--premium {
        grid-template-columns: 1fr !important;
    }
}

/* Final premium ticketing view overrides. */
body.site-events .s-page-hero--slider {
    min-height: clamp(390px, 48vw, 560px) !important;
}

body.site-events .s-page-hero__content {
    max-width: 760px;
}

body.site-events .s-page-hero__h1 {
    max-width: 720px;
}

body.site-events .event-search-panel {
    position: relative;
    z-index: 8;
    margin-top: -46px;
    padding: 0 0 36px;
    background: transparent !important;
}

body.site-events .event-search-card {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2fr) !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.16), transparent 38%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(8, 15, 29, 0.99)) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38) !important;
}

body.site-events .event-search-card__controls {
    grid-template-columns: minmax(220px, 1.55fr) repeat(3, minmax(140px, 0.9fr)) !important;
}

body.site-events .events-showcase {
    margin: 0 0 72px !important;
}

body.site-events .events-showcase__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

body.site-events .events-showcase__head .s-section-title {
    font-size: clamp(2.2rem, 4vw, 4.3rem);
}

body.site-events .events-showcase__grid {
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(0, 1.48fr);
    gap: 22px;
    align-items: stretch;
}

body.site-events .event-feature-card,
body.site-events .event-poster-card {
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 25, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

body.site-events .event-feature-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

body.site-events .event-feature-card__media,
body.site-events .event-poster-card__media {
    display: block;
    overflow: hidden;
    background: #07101f;
}

body.site-events .event-feature-card__media {
    /* sin aspect-ratio fijo: la imagen define la altura */
}

body.site-events .event-poster-card__media {
    /* sin aspect-ratio fijo: la imagen define la altura */
}

body.site-events .event-feature-card__media img,
body.site-events .event-poster-card__media img {
    display: block;
    width: 100%;
    height: auto;          /* imagen completa sin recorte */
    object-fit: fill;
}

body.site-events .event-feature-card__body,
body.site-events .event-poster-card__body {
    display: grid;
    gap: 14px;
    padding: 24px;
}

body.site-events .event-feature-card__body h3,
body.site-events .event-poster-card__body h3 {
    margin: 0;
    color: #fff;
    font-family: var(--font-h);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.03;
}

body.site-events .event-feature-card__body h3 {
    font-size: clamp(1.7rem, 3vw, 2.8rem);
}

body.site-events .event-poster-card__body h3 {
    font-size: 1rem;
}

body.site-events .event-feature-card__body p,
body.site-events .event-poster-card__body p {
    margin: 0;
    color: rgba(226, 232, 240, 0.72);
    line-height: 1.55;
}

body.site-events .event-feature-card__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 6px 0 0;
}

body.site-events .event-feature-card__meta div {
    padding: 13px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.site-events .event-feature-card__meta dt {
    margin: 0 0 5px;
    color: rgba(125, 232, 255, 0.8);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.site-events .event-feature-card__meta dd {
    margin: 0;
    color: #f8fafc;
    font-family: var(--font-h);
    font-size: 0.88rem;
    font-weight: 850;
    line-height: 1.25;
}

body.site-events .event-feature-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 6px;
}

body.site-events .events-showcase__posters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

body.site-events .event-poster-card {
    border-radius: 26px;
}

body.site-events .event-poster-card__body {
    padding: 16px;
}

body.site-events .event-poster-card__info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

body.site-events .event-poster-card__body p {
    font-size: 0.82rem;
}

body.site-events .event-poster-card__date {
    display: grid;
    min-width: 46px;
    justify-items: center;
    padding: 7px 9px;
    border-radius: 15px;
    background: rgba(34, 211, 238, 0.11);
    border: 1px solid rgba(34, 211, 238, 0.18);
    color: #67e8f9;
}

body.site-events .event-poster-card__date strong {
    font-family: var(--font-h);
    font-size: 1.25rem;
    line-height: 1;
}

body.site-events .event-poster-card__date span {
    margin-top: 2px;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

body.site-events .ev-list--premium {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

body.site-events .ev-list--premium .ev-card__img {
    aspect-ratio: 1 / 1 !important;
}

body.site-events .ev-list--premium .ev-card__text {
    display: none !important;
}

body.site-events .ev-list--premium .ev-card__title {
    font-size: 1.05rem !important;
}

@media (max-width: 1180px) {
    body.site-events .events-showcase__grid {
        grid-template-columns: 1fr;
    }

    body.site-events .event-feature-card__media {
        aspect-ratio: 16 / 9;
        max-height: 520px;
    }

    body.site-events .ev-list--premium {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    body.site-events .event-search-card,
    body.site-events .event-search-card__controls {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 760px) {
    body.site-events .s-page-hero--slider {
        min-height: 420px !important;
    }

    body.site-events .event-search-panel {
        margin-top: -24px;
    }

    body.site-events .events-showcase__head {
        align-items: start;
        flex-direction: column;
    }

    body.site-events .events-showcase__posters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    body.site-events .event-feature-card__meta,
    body.site-events .event-search-card,
    body.site-events .event-search-card__controls {
        grid-template-columns: 1fr !important;
    }

    body.site-events .ev-list--premium {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    body.site-events .event-poster-card__body,
    body.site-events .ev-list--premium .ev-card__body {
        padding: 14px !important;
    }
}

@media (max-width: 520px) {
    body.site-events .events-showcase__posters,
    body.site-events .ev-list--premium {
        grid-template-columns: 1fr !important;
    }

    body.site-events .event-feature-card__media {
        aspect-ratio: 4 / 5;
    }
}

/* Premium event detail: poster + guided purchase panel. */
body.site-page .s-ev-hero {
    min-height: auto !important;
    padding: 86px 0 64px;
    align-items: center !important;
    background: #050c18;
}

body.site-page .s-ev-hero__overlay {
    background:
        radial-gradient(circle at 78% 24%, rgba(34, 211, 238, 0.14), transparent 32%),
        linear-gradient(90deg, rgba(5, 12, 26, 0.96), rgba(5, 12, 26, 0.82)),
        linear-gradient(180deg, rgba(5, 12, 26, 0.28), rgba(5, 12, 26, 0.94)) !important;
}

body.site-page .s-ev-hero__content {
    padding: 0 !important;
}

.event-detail-stage {
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.event-detail-stage__poster {
    margin: 0;
    overflow: hidden;
    border-radius: 34px;
    aspect-ratio: 4 / 5;
    background: #07101f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.event-detail-stage__poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-stage__panel {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 107, 53, 0.13), transparent 36%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.91), rgba(8, 15, 29, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.event-detail-stage__panel .ev-card__badge {
    position: static !important;
    display: inline-flex !important;
    width: max-content;
    box-shadow: none !important;
}

.event-detail-stage__panel .s-ev-hero__h1 {
    max-width: 15ch;
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 5.1rem);
}

.event-detail-stage__panel .s-ev-hero__body {
    max-width: 62ch;
    margin: 0;
}

.event-detail-stage__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 10px 0 4px;
}

.event-detail-stage__facts div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-detail-stage__facts dt {
    margin: 0 0 5px;
    color: #67e8f9;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.event-detail-stage__facts dd {
    margin: 0;
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.25;
}

body.site-page .s-ev-meta {
    display: none;
}

body.site-page .s-ev-tickets {
    padding: 72px 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.1), transparent 30%),
        linear-gradient(180deg, #050c18, #07111f);
}

body.site-page .ev-ttype-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

body.site-page .ev-ttype-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 13, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

body.site-page .ev-ttype-name {
    color: #fff;
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 950;
}

body.site-page .ev-ttype-desc {
    color: rgba(226, 232, 240, 0.7);
    line-height: 1.55;
}

body.site-page .ev-ttype-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    margin-top: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b35, #ea580c);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 980px) {
    .event-detail-stage {
        grid-template-columns: 1fr;
    }

    .event-detail-stage__poster {
        max-width: 560px;
        width: 100%;
    }

    .event-detail-stage__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.site-page .s-ev-hero {
        padding: 34px 0 38px;
    }

    .event-detail-stage {
        gap: 18px;
    }

    .event-detail-stage__poster,
    .event-detail-stage__panel {
        border-radius: 26px;
    }

    .event-detail-stage__facts {
        grid-template-columns: 1fr;
    }
}

/* Final marketplace controls: search, event detail ticket rows and mobile flow. */
body.site-events .event-search-card__controls {
    grid-template-columns: minmax(220px, 1.55fr) repeat(3, minmax(140px, 0.9fr)) auto !important;
}

body.site-events .event-search-card__submit {
    min-height: 58px;
    padding: 0 28px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, #05d9ff, #00a8d9);
    color: #02111f;
    cursor: pointer;
    font-family: var(--font-h);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(5, 217, 255, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

body.site-events .event-search-card__submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 24px 54px rgba(5, 217, 255, 0.3);
}

body.site-events .event-search-card__submit:active {
    transform: translateY(0);
}

body.site-events .event-feature-card__cta,
body.site-events .event-poster-card,
body.site-events .ev-list--premium .ev-card {
    will-change: transform;
}

body.site-events .event-feature-card__cta:focus-visible,
body.site-events .event-poster-card:focus-within,
body.site-events .ev-list--premium .ev-card:focus-within,
body.site-page .event-ticket-row__cta:focus-visible {
    outline: 3px solid rgba(5, 217, 255, 0.45);
    outline-offset: 4px;
}

body.site-page .event-ticket-board {
    display: grid;
    gap: 14px;
    margin-top: 22px;
    padding: 18px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 100% 0, rgba(5, 217, 255, 0.12), transparent 35%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(8, 13, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

body.site-page .event-ticket-board__top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 10px 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.site-page .event-ticket-board__top strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-h);
    font-size: clamp(1.18rem, 2.2vw, 1.7rem);
    font-weight: 950;
}

body.site-page .event-ticket-board__top span {
    display: block;
    margin-top: 6px;
    color: rgba(226, 232, 240, 0.66);
    font-size: 0.94rem;
    line-height: 1.45;
}

body.site-page .event-ticket-board__badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.28);
    color: #b7f7d2 !important;
    font-size: 0.68rem !important;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.site-page .event-ticket-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, 220px) auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

body.site-page .event-ticket-row:hover {
    transform: translateY(-2px);
    border-color: rgba(5, 217, 255, 0.34);
    background: rgba(255, 255, 255, 0.065);
}

body.site-page .event-ticket-row__main {
    display: grid;
    gap: 7px;
}

body.site-page .event-ticket-row__eyebrow,
body.site-page .event-ticket-row__info span {
    color: #67e8f9;
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

body.site-page .event-ticket-row__main strong {
    color: #ffffff;
    font-family: var(--font-h);
    font-size: 1.16rem;
    font-weight: 950;
    line-height: 1.1;
}

body.site-page .event-ticket-row__main p {
    max-width: 58ch;
    margin: 0;
    color: rgba(226, 232, 240, 0.68);
    line-height: 1.5;
}

body.site-page .event-ticket-row__info {
    display: grid;
    justify-items: end;
    gap: 4px;
}

body.site-page .event-ticket-row__info strong {
    color: #ffffff;
    font-family: var(--font-h);
    font-size: 1.06rem;
    font-weight: 950;
}

body.site-page .event-ticket-row__info small {
    color: rgba(226, 232, 240, 0.55);
    font-weight: 750;
}

body.site-page .event-ticket-row__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b35, #ea580c);
    color: #ffffff;
    font-family: var(--font-h);
    font-size: 0.82rem;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(234, 88, 12, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

body.site-page .event-ticket-row__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 22px 46px rgba(234, 88, 12, 0.3);
}

body.site-events .market-event-card__summary,
body.site-events .ev-card__date-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

body.site-events .market-date-chip {
    display: inline-grid;
    place-items: center;
    min-width: 54px;
    min-height: 58px;
    padding: 7px 8px;
    border-radius: 17px;
    background:
        linear-gradient(180deg, rgba(5, 217, 255, 0.16), rgba(5, 217, 255, 0.045));
    border: 1px solid rgba(5, 217, 255, 0.22);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
}

body.site-events .market-date-chip strong {
    display: block;
    font-family: var(--font-h);
    font-size: 1.28rem;
    font-weight: 950;
    line-height: 1;
}

body.site-events .market-date-chip span {
    display: block;
    margin-top: 4px;
    color: #67e8f9;
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.site-events .ev-card__date-row {
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

body.site-events .ev-card__date-row span,
body.site-events .ev-card__date-row small {
    display: block;
}

body.site-events .ev-card__date-row span {
    color: #ffffff;
    font-weight: 900;
    line-height: 1.25;
}

body.site-events .ev-card__date-row small {
    margin-top: 5px;
    color: rgba(226, 232, 240, 0.58);
    font-size: 0.82rem;
    font-weight: 750;
}

body.site-events .market-event-card__summary h3 {
    margin-top: 2px;
}

@media (max-width: 1180px) {
    body.site-events .event-search-card__controls {
        grid-template-columns: 1fr 1fr !important;
    }

    body.site-events .event-search-card__submit {
        width: 100%;
    }
}

@media (max-width: 760px) {
    body.site-events .event-search-card__controls {
        grid-template-columns: 1fr !important;
    }

    body.site-page .event-ticket-board {
        padding: 14px;
        border-radius: 26px;
    }

    body.site-page .event-ticket-board__top {
        align-items: flex-start;
        flex-direction: column;
        padding: 6px 6px 12px;
    }

    body.site-page .event-ticket-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    body.site-page .event-ticket-row__main p {
        display: none;
    }

    body.site-page .event-ticket-row__info {
        justify-items: stretch;
    }

    body.site-page .event-ticket-row__cta {
        width: 100%;
    }
}

/* Events polish after removing the duplicated quick-filter bar. */
body.site-events .ev-filters {
    display: none !important;
}

body.site-events .s-events {
    padding-top: 52px !important;
}

body.site-events .events-showcase {
    max-width: 1180px;
    margin-right: auto !important;
    margin-left: auto !important;
}

body.site-events .events-showcase__grid {
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.25fr) !important;
}

body.site-events .events-showcase__posters {
    align-content: start;
}

body.site-events .event-feature-card__media {
    aspect-ratio: 16 / 12 !important;
    max-height: 480px !important;
}

body.site-events .event-poster-card__media {
    aspect-ratio: 16 / 11 !important;
}

body.site-events .event-feature-card__body {
    padding: 24px 26px 26px !important;
}

body.site-events .event-poster-card__body {
    min-height: 142px;
}

body.site-events .event-feature-card__body h3,
body.site-events .event-poster-card__body h3,
body.site-events .ev-card__title {
    text-wrap: balance;
}

@media (max-width: 1180px) {
    body.site-events .events-showcase__grid {
        grid-template-columns: 1fr !important;
    }

    body.site-events .events-showcase__posters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.site-events .s-events {
        padding-top: 38px !important;
    }

    body.site-events .events-showcase__posters {
        grid-template-columns: 1fr;
    }

    body.site-events .event-feature-card__media,
    body.site-events .event-poster-card__media {
        aspect-ratio: 16 / 10 !important;
    }
}

/* Professional website constructor. */
.admin-builder-pro {
    max-width: 1280px;
}

.builder-hero,
.builder-panel,
.builder-savebar {
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

.builder-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 22px;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 88% 10%, rgba(5, 217, 255, 0.14), transparent 34%),
        linear-gradient(135deg, #ffffff, #eef7fb);
}

.builder-hero .order-code {
    margin: 0;
    color: #07111f;
    font-size: clamp(2rem, 4vw, 4rem);
}

.builder-hero .order-event {
    max-width: 680px;
    color: #516172;
}

.builder-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.builder-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 22px;
}

.builder-stats div {
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.builder-stats span,
.builder-stats small {
    display: block;
    color: #64748b;
    font-weight: 800;
}

.builder-stats strong {
    display: block;
    margin: 6px 0 2px;
    color: #06111f;
    font-family: var(--font-h);
    font-size: 2rem;
    line-height: 1;
}

.builder-form {
    display: grid;
    gap: 22px;
}

.builder-tabs {
    position: sticky;
    top: 16px;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
    padding: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.builder-tab {
    appearance: none;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    cursor: pointer;
    font-family: var(--font-h);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.builder-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(5, 217, 255, 0.36);
}

.builder-tab.is-active {
    background: linear-gradient(135deg, #07111f, #0b2b3a);
    border-color: rgba(5, 217, 255, 0.38);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(5, 217, 255, 0.16);
}

.builder-panel {
    display: none;
    padding: clamp(18px, 3vw, 30px);
    border-radius: 34px;
    background: #ffffff;
}

.builder-panel.is-active {
    display: block;
}

.builder-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.builder-panel__head h2 {
    margin: 0;
    color: #08111f;
    font-family: var(--font-h);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 950;
}

.builder-panel__head span {
    display: block;
    max-width: 720px;
    margin-top: 6px;
    color: #64748b;
    line-height: 1.5;
}

.builder-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.24);
    color: #c2410c;
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.builder-badge--cyan {
    background: rgba(5, 217, 255, 0.1);
    border-color: rgba(5, 217, 255, 0.24);
    color: #036d88;
}

.builder-badge--orange {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.26);
}

.builder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 16px;
}

.builder-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.builder-card {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.96));
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.builder-card--wide {
    min-width: 0;
}

.builder-textarea {
    min-height: 116px;
    resize: vertical;
}

.builder-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.builder-preview-card {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.builder-preview-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.builder-preview-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #020617;
}

.builder-preview-card figcaption {
    overflow: hidden;
    padding: 9px 10px;
    color: #cbd5e1;
    font-size: 0.68rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.builder-preview-card__remove,
.builder-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px 11px;
    color: #f8fafc;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 900;
}

.builder-check {
    padding: 0;
    color: #b45309;
}

.builder-preview-card__remove input,
.builder-check input {
    width: 16px;
    height: 16px;
    accent-color: #ff5b1f;
}

.builder-preview-card.is-marked-remove {
    opacity: 0.58;
    border-color: rgba(255, 91, 31, 0.72);
}

.builder-preview-card.is-marked-remove img {
    filter: grayscale(1);
}

.builder-empty-preview {
    margin-top: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.035);
    border: 1px dashed rgba(15, 23, 42, 0.2);
    color: #64748b;
    font-weight: 800;
}

.builder-preview-split {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.builder-savebar {
    position: sticky;
    bottom: 18px;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.builder-savebar strong,
.builder-savebar span {
    display: block;
}

.builder-savebar strong {
    color: #07111f;
    font-family: var(--font-h);
    font-size: 1rem;
}

.builder-savebar span {
    margin-top: 3px;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 750;
}

@media (max-width: 1100px) {
    .builder-stats,
    .builder-grid,
    .builder-grid--three,
    .builder-preview-split {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .builder-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 8px;
        border-radius: 18px;
        scrollbar-width: none;
    }

    .builder-tabs::-webkit-scrollbar {
        display: none;
    }

    .builder-tab {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.68rem;
    }

    .builder-hero,
    .builder-panel__head,
    .builder-savebar {
        align-items: stretch;
        flex-direction: column;
    }

    .builder-stats,
    .builder-grid,
    .builder-grid--three,
    .builder-preview-split {
        grid-template-columns: 1fr;
    }
}



/* Admin builder expansion + public shell refinements */
.admin-builder-pro--full {
    max-width: 1420px;
}

.builder-card__title {
    display: grid;
    gap: 4px;
    margin-bottom: 4px;
}

.builder-card__title h3 {
    margin: 0;
    color: #07111f;
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 900;
}

.builder-card__title p {
    margin: 0;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.55;
}

.builder-inline-grid {
    display: grid;
    gap: 16px;
}

.builder-inline-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.builder-inline-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.builder-mini-grid {
    display: grid;
    gap: 12px;
}

.builder-repeater {
    display: grid;
    gap: 12px;
}

.builder-repeater--stacked {
    gap: 14px;
}

.builder-repeater__row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.9fr;
    gap: 10px;
}

.builder-repeater__row--two {
    grid-template-columns: 1fr 1fr;
}

.builder-repeater__block {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.builder-repeater__block--legal {
    align-content: start;
}

.builder-divider {
    height: 1px;
    margin: 2px 0;
    background: rgba(15, 23, 42, 0.08);
}

.builder-media-frame {
    display: grid;
    place-items: center;
    min-height: 160px;
    padding: 18px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.98));
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.builder-media-frame img {
    display: block;
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

.builder-media-frame--logo img {
    max-height: 72px;
}

.builder-legal-stack {
    display: grid;
    gap: 18px;
}


.site-header__account,
.site-header__points {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.34);
    color: #f8fafc;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.site-header__account:hover,
.site-header__points:hover {
    transform: translateY(-1px);
    border-color: rgba(5, 217, 255, 0.34);
    background: rgba(11, 32, 48, 0.72);
    color: #ffffff;
}

.mobile-menu__sep {
    height: 1px;
    margin: 6px 0 10px;
    background: rgba(255, 255, 255, 0.12);
}

.mobile-menu__account,
.mobile-menu__points {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #f8fafc;
    font-weight: 800;
}

.site-footer__links {
    display: grid;
    gap: 10px;
}

.site-footer__links a {
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.55;
    transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer__links a:hover {
    color: var(--text);
    transform: translateX(2px);
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.site-footer__trust {
    width: var(--container);
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
}

.site-footer__trust span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    box-shadow: none;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.site-footer__trust span::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #20c7e8 0%, #06b6d4 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-footer__trust span:hover {
    background: rgba(32, 199, 232, 0.04);
    border-color: rgba(32, 199, 232, 0.28);
    color: #fff;
    transform: translateY(-2px);
}

.site-footer__trust span:hover::before {
    transform: scaleY(1);
}

.site-footer__trust span svg {
    flex-shrink: 0;
    color: #20c7e8;
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.site-footer__trust span:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.site-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.s-cta-video__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.s-solutions--muted {
    background: var(--bg);
    padding-top: 0;
}

.s-solutions--faq {
    padding: 80px 0;
}

.sol-card--security .sol-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 107, 53, 0.12);
    color: #ff6b35;
}

@media (max-width: 1180px) {
    .builder-inline-grid--three,
    .site-footer__trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .builder-inline-grid--two,
    .builder-inline-grid--three,
    .builder-repeater__row,
    .builder-repeater__row--two {
        grid-template-columns: 1fr;
    }

    .site-header__actions {
        display: none;
    }

    .admin-sidebar-reveal {
        top: 92px;
        left: 12px;
    }
}

@media (max-width: 720px) {
    .site-footer__trust {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom-links {
        justify-content: center;
    }
}

/* Media cards: text must always live below the image. */
.home-slider__card {
    display: grid !important;
    grid-template-rows: auto 1fr !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #101827, #0b1220) !important;
}

.home-slider__media {
    position: relative !important;
    inset: auto !important;
    aspect-ratio: 3 / 4 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #06101e !important;
    display: grid !important;
    place-items: center !important;
}

.home-slider__card::after {
    display: none !important;
}

.home-slider__media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
}

.home-slider__body {
    position: static !important;
    z-index: auto !important;
    height: auto !important;
    justify-content: flex-start !important;
    padding: 20px 22px 24px !important;
    background: linear-gradient(180deg, rgba(13, 21, 36, 0.98), rgba(10, 16, 29, 0.98)) !important;
}

.home-slider__body h3 {
    font-size: 1.28rem !important;
    line-height: 1.08 !important;
    margin: 0 !important;
}

.home-slider__body p {
    max-width: none !important;
    margin: 0 !important;
}

.builder-preview-card {
    display: grid !important;
    grid-template-rows: auto auto auto !important;
    overflow: hidden !important;
}

.builder-preview-card figcaption {
    padding: 10px 12px 6px !important;
    background: #0f172a !important;
}

.builder-preview-card__remove {
    padding: 0 12px 12px !important;
    background: #0f172a !important;
}

.s-gallery__card {
    display: grid !important;
    grid-template-rows: auto auto !important;
    aspect-ratio: auto !important;
    background: #0d1524 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}

.s-gallery__card img {
    aspect-ratio: 3 / 4 !important;
}

.s-gallery__overlay {
    position: static !important;
    inset: auto !important;
    padding: 14px 16px 16px !important;
    background: linear-gradient(180deg, rgba(13, 21, 36, 0.98), rgba(10, 16, 29, 0.98)) !important;
}

.s-gallery__overlay span {
    display: block !important;
    color: #f8fafc !important;
}

/* Event posters and showcase media should preserve the piece, not crop it harshly. */
body.site-events .event-feature-card__media,
body.site-events .event-poster-card__media,
body.site-events .market-event-card__media,
body.site-events .ev-card__img,
body.site-events .ev-vcard__img {
    display: grid !important;
    place-items: center !important;
    background:
        radial-gradient(circle at 50% 16%, rgba(34, 211, 238, 0.08), transparent 38%),
        linear-gradient(180deg, #09111f, #07101a) !important;
    overflow: hidden !important;
}

body.site-events .event-feature-card__media {
    aspect-ratio: 4 / 3 !important;
    max-height: 520px !important;
    padding: 16px !important;
}

body.site-events .event-poster-card__media {
    aspect-ratio: 3 / 4 !important;
    padding: 12px !important;
}

body.site-events .market-event-card__media,
body.site-events .ev-card__img,
body.site-events .ev-vcard__img {
    padding: 12px !important;
}

body.site-events .event-feature-card__media img,
body.site-events .event-poster-card__media img,
body.site-events .market-event-card__media img,
body.site-events .ev-card__img img,
body.site-events .ev-vcard__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    background: transparent !important;
}

@media (max-width: 760px) {
    body.site-events .event-feature-card__media,
    body.site-events .event-poster-card__media,
    body.site-events .market-event-card__media,
    body.site-events .ev-card__img,
    body.site-events .ev-vcard__img {
        padding: 10px !important;
    }
}


/* Final media-fit pass: keep event artwork fully visible across catalog cards. */
.event-feature-card__media,
.event-poster-card__media,
.market-event-card__media,
.ev-card__img {
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 50% 16%, rgba(34, 211, 238, 0.08), transparent 38%),
        linear-gradient(180deg, #09111f, #07101a) !important;
}

.event-feature-card__media {
    padding: 16px !important;
}

.event-poster-card__media,
.market-event-card__media,
.ev-card__img {
    padding: 12px !important;
}

.event-feature-card__media img,
.event-poster-card__media img,
.market-event-card__media img,
.ev-card__img img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    background: transparent !important;
}

.event-feature-card:hover .event-feature-card__media img,
.event-poster-card:hover .event-poster-card__media img,
.market-event-card:hover .market-event-card__media img,
.ev-card:hover .ev-card__img img {
    transform: none !important;
}

@media (max-width: 720px) {
    .event-feature-card__media,
    .event-poster-card__media,
    .market-event-card__media,
    .ev-card__img {
        padding: 10px !important;
    }
}

/* ============================================================
   Tarjetas de eventos — imagen cubre el contenedor sin barras
   object-position: top center prioriza la parte superior del
   flyer (donde está el título/artista del evento).
   ============================================================ */

/* Tarjetas "Próximos eventos" (s-featured) — imagen completa sin recorte */
.ev-vcard__img {
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    background: #090e1d !important;
    padding: 0 !important;
    aspect-ratio: unset !important;
    min-height: unset !important;
    max-height: none !important;
    height: auto !important;
    width: 100% !important;
}

.ev-vcard__img img {
    display: block !important;
    position: static !important;
    inset: unset !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: fill !important;
    object-position: unset !important;
    transition: transform 0.5s ease !important;
}

.ev-vcard:hover .ev-vcard__img img {
    transform: scale(1.02) !important;
}

/* Tarjetas "Destacados" (home-slider) */
.home-slider__media {
    display: grid !important;
    place-items: center !important;
    position: relative !important;
    overflow: hidden !important;
    background: #090e1d !important;
    aspect-ratio: 3 / 4 !important;
    min-height: unset !important;
    max-height: unset !important;
    height: auto !important;
    width: 100% !important;
}

.home-slider__media img {
    display: block !important;
    position: static !important;
    inset: unset !important;
    width: 100% !important;
    height: 100% !important;
    max-height: unset !important;
    object-fit: contain !important;
    object-position: center center !important;
    transition: transform 0.5s ease !important;
}

.home-slider__card {
    max-height: unset !important;
    height: auto !important;
}

/* Restore showcase balance and tune category rails independently. */
body.site-events .events-showcase__posters {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

body.site-events .event-poster-card__media {
    aspect-ratio: 16 / 11 !important;
    min-height: 0 !important;
}

body.site-events .event-poster-card__body {
    gap: 12px !important;
    padding: 16px !important;
    min-height: 142px !important;
}

body.site-events .event-poster-card__body h3 {
    font-size: 1rem !important;
    line-height: 1.06 !important;
}

body.site-events .event-poster-card__body p {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
}

body.site-events .event-poster-card__date {
    min-width: 46px !important;
    padding: 7px 9px !important;
}

body.site-events .event-poster-card__date strong {
    font-size: 1.25rem !important;
}

body.site-events .event-poster-card__date span {
    font-size: 0.68rem !important;
}

body.site-events .market-rail--category .market-rail__track--compact {
    grid-auto-columns: minmax(248px, 308px) !important;
    gap: 20px !important;
}

body.site-events .market-rail--category .market-event-card--compact {
    border-radius: 24px !important;
}

body.site-events .market-rail--category .market-event-card__media {
    aspect-ratio: 4 / 5 !important;
    min-height: 220px !important;
}

body.site-events .market-rail--category .market-event-card__body {
    padding: 16px 16px 18px !important;
}

body.site-events .market-rail--category .market-event-card__body h3 {
    font-size: 1rem !important;
    line-height: 1.08 !important;
}

body.site-events .market-rail--category .market-event-card__body p {
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
}

@media (max-width: 760px) {
    body.site-events .events-showcase__posters {
        grid-template-columns: 1fr !important;
    }

    body.site-events .market-rail--category .market-rail__track--compact {
        grid-auto-columns: minmax(210px, 250px) !important;
    }

    body.site-events .market-rail--category .market-event-card__media {
        min-height: 196px !important;
    }
}


/* Admin events, vendors, tickets → admin-panel.css */

/* event card + vendors + tickets + scanner → admin-panel.css */


/* ============================================================
   Mapa de zonas — banner y botón en event-detail
   ============================================================ */
.ev-zona-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #0d1f3c 0%, #0a1628 100%);
    border: 1px solid rgba(255,107,53,.25);
    border-radius: 20px;
    padding: 22px 28px;
    margin-bottom: 32px;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .18s;
    box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.ev-zona-banner:hover {
    border-color: rgba(255,107,53,.55);
    box-shadow: 0 8px 40px rgba(255,107,53,.15);
    transform: translateY(-2px);
}
.ev-zona-banner__left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}
.ev-zona-banner__left svg { flex-shrink: 0; }
.ev-zona-banner__left strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: .02em;
}
.ev-zona-banner__left span {
    font-size: .84rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}
.ev-zona-banner__cta {
    background: linear-gradient(135deg, #ff6b35, #e63312);
    color: #fff;
    font-size: .85rem;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: .03em;
    box-shadow: 0 4px 16px rgba(255,107,53,.35);
    transition: filter .2s;
}
.ev-zona-banner:hover .ev-zona-banner__cta { filter: brightness(1.12); }
.btn--orange:hover { filter: brightness(1.1); transform: translateY(-1px); }
@media (max-width: 600px) {
    .ev-zona-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 20px; }
    .ev-zona-banner__cta { width: 100%; text-align: center; padding: 12px; }
}


/* ── Mobile menu: portal cards (embajadores + publica tu evento) ─────── */
.mobile-menu__portals {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}
.mobile-menu__portal-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #f8fafc;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}
.mobile-menu__portal-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(34,211,238,0.25);
}
.mobile-menu__portal-card--buyer  { border-left: 3px solid #22d3ee; }
.mobile-menu__portal-card--vendor { border-left: 3px solid #f97316; }
.mobile-menu__portal-card--producer { border-left: 3px solid #a78bfa; }
.mobile-menu__portal-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}
.mobile-menu__portal-card--buyer  .mobile-menu__portal-icon { color: #22d3ee; }
.mobile-menu__portal-card--vendor .mobile-menu__portal-icon { color: #f97316; }
.mobile-menu__portal-card--producer .mobile-menu__portal-icon { color: #a78bfa; }
.mobile-menu__portal-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mobile-menu__portal-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #f1f5f9;
}
.mobile-menu__portal-sub {
    font-size: 0.74rem;
    color: #64748b;
}
.mobile-menu__portal-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(34,211,238,0.12);
    color: #22d3ee;
    font-size: 0.72rem;
    font-weight: 700;
}
.mobile-menu__portal-arrow {
    flex-shrink: 0;
    color: #475569;
}
.mobile-menu__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 16px;
}
.mobile-menu__trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #64748b;
    font-size: 0.72rem;
}

/* ── Header: "Publica tu evento" CTA pill ─────────────────────────────── */
.site-header__account--cta {
    background: rgba(167,139,250,0.12);
    border-color: rgba(167,139,250,0.3);
    color: #c4b5fd;
}
.site-header__account--cta:hover {
    background: rgba(167,139,250,0.22);
    border-color: rgba(167,139,250,0.55);
    color: #ddd6fe;
}

/* ── Header: "Productores" portal pill ────────────────────────────────── */
.site-header__account--productor {
    background: rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.28);
    color: #6ee7b7;
}
.site-header__account--productor:hover {
    background: rgba(16,185,129,0.2);
    border-color: rgba(16,185,129,0.5);
    color: #a7f3d0;
}

/* ── Mobile portal card: Productores ──────────────────────────────────── */
.mobile-menu__portal-card--productor { border-left: 3px solid #10b981; }
.mobile-menu__portal-card--productor .mobile-menu__portal-icon { color: #10b981; }


/* ── Footer: animated accent border (replaces static border-top) ──────── */
.site-footer { border-top-color: transparent; }
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #22d3ee 28%, #ff6b35 58%, #22d3ee 82%, transparent 100%);
    background-size: 200% 100%;
    animation: footer-shimmer 7s linear infinite;
}
@keyframes footer-shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

/* ── Footer: social icon hover micro-animation ── */
.site-footer__social a {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.site-footer__social a:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 6px 20px rgba(34,211,238,0.22), 0 2px 8px rgba(0,0,0,0.15);
}

/* ════════════════════════════════════════════════════════════════
   FOOTER — MOBILE REFINEMENT (≤600px)
   Compact: logo+social row · 2-col links · legal pills · trust scroll
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {

    /* ── Outer padding ── */
    .site-footer { padding: 30px 0 12px; }

    /* ── Grid: brand full-width, then 2-col link columns ── */
    .site-footer__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 16px;
    }

    /* brand spans both cols */
    .site-footer__brand {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 12px;
        align-items: center;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .site-footer__brand img {
        height: 28px;
        margin-bottom: 0;
        grid-column: 1;
        grid-row: 1;
    }

    .site-footer__brand .site-footer__social {
        grid-column: 2;
        grid-row: 1;
        margin-top: 0;
        justify-content: flex-end;
        gap: 7px;
    }

    .site-footer__brand .site-footer__social a {
        width: 32px;
        height: 32px;
    }

    .site-footer__brand .site-footer__social a svg {
        width: 14px;
        height: 14px;
    }

    .site-footer__brand-desc {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 9px;
        font-size: 0.77rem;
        line-height: 1.48;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* ── Legal section: full-width row of pill links ── */
    .site-footer__grid > section:last-child {
        grid-column: 1 / -1;
    }

    .site-footer__grid > section:last-child .site-footer__links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .site-footer__grid > section:last-child .site-footer__links a {
        display: inline-flex;
        align-items: center;
        padding: 5px 11px;
        border-radius: 20px;
        background: rgba(255,255,255,0.055);
        border: 1px solid rgba(255,255,255,0.1);
        font-size: 0.74rem;
        line-height: 1.3;
        transform: none !important;
        transition: background 0.18s ease, border-color 0.18s ease !important;
    }

    .site-footer__grid > section:last-child .site-footer__links a:hover {
        background: rgba(34,211,238,0.1);
        border-color: rgba(34,211,238,0.3);
        color: #22d3ee;
        transform: none !important;
    }

    /* ── Link columns: smaller, tighter ── */
    .site-footer h2 {
        font-size: 0.65rem;
        margin-bottom: 9px;
        letter-spacing: 0.14em;
    }

    .site-footer__links { gap: 7px; }

    .site-footer__links a { font-size: 0.79rem; }

    /* ── Trust strip: horizontal scroll ── */
    .site-footer__trust {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding: 12px;
        margin-top: 18px;
    }

    .site-footer__trust::-webkit-scrollbar { display: none; }

    .site-footer__trust span {
        flex: 0 0 auto;
        scroll-snap-align: start;
        min-height: 42px;
        font-size: 0.74rem;
        padding: 0 14px;
        border-radius: 8px;
        white-space: nowrap;
        box-shadow: none;
    }

    /* ── Bottom bar ── */
    .site-footer__bottom {
        margin-top: 16px !important;
        padding-top: 13px;
        gap: 5px;
        font-size: 0.71rem;
    }

    .site-footer__bottom-links {
        gap: 10px;
        justify-content: center;
    }

    /* ── Entrance animations: stagger fade-up ── */
    .site-footer__brand,
    .site-footer__grid > section:nth-child(2),
    .site-footer__grid > section:nth-child(3),
    .site-footer__grid > section:nth-child(4),
    .site-footer__trust,
    .site-footer__bottom {
        opacity: 0;
        transform: translateY(14px);
        transition: opacity 0.44s ease, transform 0.44s ease;
    }

    .site-footer.footer--in .site-footer__brand                        { opacity: 1; transform: none; transition-delay: 0.00s; }
    .site-footer.footer--in .site-footer__grid > section:nth-child(2)  { opacity: 1; transform: none; transition-delay: 0.08s; }
    .site-footer.footer--in .site-footer__grid > section:nth-child(3)  { opacity: 1; transform: none; transition-delay: 0.15s; }
    .site-footer.footer--in .site-footer__grid > section:nth-child(4)  { opacity: 1; transform: none; transition-delay: 0.22s; }
    .site-footer.footer--in .site-footer__trust                        { opacity: 1; transform: none; transition-delay: 0.29s; }
    .site-footer.footer--in .site-footer__bottom                       { opacity: 1; transform: none; transition-delay: 0.35s; }
}

/* ════════════════════════════════════════════════════════════════
   SHOWCASE DESTACADOS — imagen completa, bloque definitivo
   Este bloque viene al final y gana toda la cascada.
   Muestra el poster/flyer completo sin ningún recorte.
   ════════════════════════════════════════════════════════════════ */
.event-feature-card__media,
.event-poster-card__media,
body.site-events .event-feature-card__media,
body.site-events .event-poster-card__media {
    display: block !important;
    overflow: hidden !important;
    background: #07101f !important;
    aspect-ratio: unset !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    padding: 0 !important;
    place-items: unset !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
}

.event-feature-card__media img,
.event-poster-card__media img,
body.site-events .event-feature-card__media img,
body.site-events .event-poster-card__media img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: fill !important;
    object-position: unset !important;
    position: static !important;
    inset: unset !important;
    max-height: none !important;
    background: transparent !important;
    transition: transform 680ms ease !important;
}

.event-feature-card:hover .event-feature-card__media img,
.event-poster-card:hover .event-poster-card__media img {
    transform: scale(1.02) !important;
}

/* ════════════════════════════════════════════════════════════════
   SITE HEADER USERDROP — Login dropdown unificado
   Reemplaza los 4 botones (Mi cuenta / Embajadores / Productores)
   por un único botón "Iniciar sesión" o avatar con menú desplegable.
   ════════════════════════════════════════════════════════════════ */

/* CTA "Publica tu evento" — botón naranja prominente */
.site-header__cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #ff6b35 0%, #e63312 100%);
    color: #fff;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 4px 14px -4px rgba(230, 51, 18, 0.5);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    white-space: nowrap;
}
.site-header__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px -6px rgba(230, 51, 18, 0.6);
    filter: brightness(1.05);
}
.site-header__cta svg { flex-shrink: 0; }

/* Dropdown details element */
.site-userdrop {
    position: relative;
    margin-left: 4px;
}
.site-userdrop > summary { list-style: none; cursor: pointer; }
.site-userdrop > summary::-webkit-details-marker { display: none; }

.site-userdrop__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #eef2ff;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 180ms ease, border-color 180ms ease, transform 120ms ease;
}
.site-userdrop[open] .site-userdrop__btn,
.site-userdrop__btn:hover {
    background: rgba(34, 211, 238, 0.10);
    border-color: rgba(34, 211, 238, 0.32);
}

.site-userdrop__icon {
    margin-left: 8px;
    color: rgba(238, 242, 255, 0.75);
}

.site-userdrop__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #20C7E8 0%, #00D4FF 100%);
    color: #052236;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(32, 199, 232, 0.35);
}
.site-userdrop__avatar--lg {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
}

.site-userdrop__label { white-space: nowrap; }
.site-userdrop__label--name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-userdrop__chevron {
    color: rgba(238, 242, 255, 0.55);
    transition: transform 220ms cubic-bezier(.4, 0, .2, 1);
    flex-shrink: 0;
}
.site-userdrop[open] .site-userdrop__chevron {
    transform: rotate(180deg);
    color: #20C7E8;
}

/* Panel desplegable */
.site-userdrop__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 280px;
    background: #07111f;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(34, 211, 238, 0.05);
    z-index: 200;
    animation: siteUserdropIn 200ms cubic-bezier(.4, 0, .2, 1);
}
@keyframes siteUserdropIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.site-userdrop__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px 14px;
}
.site-userdrop__head strong {
    display: block;
    color: #eef2ff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}
.site-userdrop__head small {
    display: block;
    color: rgba(184, 196, 214, 0.65);
    font-size: 0.74rem;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

.site-userdrop__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 4px 8px;
}

.site-userdrop__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    color: #cbd5e1;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease, transform 120ms ease;
}
.site-userdrop__item:hover {
    background: rgba(34, 211, 238, 0.08);
    color: #fff;
    transform: translateX(2px);
}
.site-userdrop__item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(184, 196, 214, 0.85);
    flex-shrink: 0;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.site-userdrop__item:hover .site-userdrop__item-icon {
    background: rgba(34, 211, 238, 0.14);
    border-color: rgba(34, 211, 238, 0.32);
    color: #20C7E8;
}
.site-userdrop__item-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1 1 auto;
    min-width: 0;
}
.site-userdrop__item-text strong {
    font-size: 0.84rem;
    font-weight: 700;
    color: inherit;
    line-height: 1.2;
}
.site-userdrop__item-text small {
    font-size: 0.7rem;
    color: rgba(148, 163, 184, 0.7);
    line-height: 1.3;
}

.site-userdrop__item--ghost .site-userdrop__item-icon {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.22);
    color: #20C7E8;
}

.site-userdrop__item--danger { color: #fca5a5; }
.site-userdrop__item--danger:hover {
    background: rgba(239, 68, 68, 0.10);
    color: #fda4af;
}
.site-userdrop__item--danger .site-userdrop__item-icon {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.22);
    color: #fca5a5;
}
.site-userdrop__item--danger:hover .site-userdrop__item-icon {
    background: rgba(239, 68, 68, 0.16);
    border-color: rgba(239, 68, 68, 0.4);
}

.site-userdrop__points {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    margin: 4px 8px 8px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.04));
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 10px;
    color: #fcd34d;
    font-size: 0.74rem;
    font-weight: 600;
}
.site-userdrop__points strong {
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
}

/* Mobile: oculta el dropdown desktop, deja el menú móvil hacer el trabajo */
@media (max-width: 1080px) {
    .site-userdrop { display: none; }
    .site-header__cta {
        padding: 7px 12px;
        font-size: 0.75rem;
    }
    .site-header__cta span { display: none; }
}

/* Cerrar dropdown al hacer click fuera (vía JS abajo) */
