/* ============================================================
   TITANCLUB — Editorial Club Design
   Roma · Via della Meloria, 48
   Influence: Italian fashion editorial, raw luxury nightlife
   NO gradients, NO glassmorphism, NO glow effects
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ── TOKENS ── */
:root {
    --black:   #05040a;
    --dark:    #0a0914;
    --surface: #110f22;
    --panel:   #17152e;

    --red:     #E51B24;
    --red-h:   #FF3B43;

    --white:   #F5F4F0;
    --off:     #BBBAC8;
    --faint:   rgba(245,244,240,0.05);
    --rule:    rgba(75, 70, 109, 0.15);

    --font-title: 'Montserrat', sans-serif;
    --font-ser:   'Cormorant Garamond', serif;
    --font-body:  'Inter', sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── PRELOADER ── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.preloader-logo {
    font-family: var(--font-title);
    font-size: clamp(5rem, 14vw, 11rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    animation: preloader-pulse 1.4s ease-in-out infinite;
}
.preloader-logo span { color: var(--red); }

/* Also style custom logo img inside preloader */
#preloader .site-logo img,
#preloader img {
    max-height: 80px;
    width: auto;
    animation: preloader-pulse 1.4s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(217,26,40,0.3));
}

@keyframes preloader-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(0.97); }
}

.preloader-bar {
    width: 160px;
    height: 1px;
    background: rgba(245,244,240,0.08);
    position: relative;
    overflow: hidden;
}
.preloader-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--red);
    animation: preloader-load 1s var(--ease) forwards;
}
@keyframes preloader-load {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}

/* ── AOS GPU FIX ── */
[data-aos] {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}
[data-aos].aos-animate {
    will-change: auto;
}

/* ── GRAIN ── */
body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
}

/* ── LAYOUT ── */
.container    { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.header-wide  { width: 100%; padding: 0 48px; }
.section      { padding: 100px 0; }
.section--alt { background: var(--surface); }
.section--black { background: var(--black); }

/* ── TYPE ── */
.t-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--red);
}
.t-display {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 2.8vw, 3rem);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}
.t-display-xl {
    font-family: var(--font-title);
    font-size: clamp(4rem, 8vw, 9rem);
    line-height: 1.0;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.t-serif {
    font-family: var(--font-ser);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    color: var(--off);
    line-height: 1.5;
    letter-spacing: 0.02em;
}
.t-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--off);
    font-weight: 400;
}
.t-red  { color: var(--red); }
.t-off  { color: var(--off); }

/* ── RULE ── */
.rule { border: none; border-top: 1px solid var(--rule); }
.rule-red { border-color: var(--red); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.3s var(--ease);
    white-space: nowrap;
    padding: 16px 40px;
}
.btn:hover { transform: translateY(-2px); }
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-h); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--rule);
    padding: 15px 39px;
}
.btn-outline:hover { border-color: var(--white); background: var(--faint); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: #e8e7e2; }

/* ════════════════════════════════════
   HEADER — canvas, full-width, two-row
════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 200;
    background: transparent;
    transition: background 0.5s var(--ease);
}
.site-header.scrolled {
    background: rgba(6,6,8,0.97);
    border-bottom: 1px solid var(--rule);
}

/* Topbar — slides in on scroll */
.header-topbar {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: var(--red);
    transition: max-height 0.45s var(--ease), opacity 0.35s;
}
.site-header.scrolled .header-topbar {
    max-height: 40px;
    opacity: 1;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}
.topbar-info {
    display: flex;
    align-items: center;
    gap: 32px;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}
.topbar-socials {
    display: flex;
    gap: 0;
}
.topbar-socials a {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.8);
    padding: 0 14px;
    border-left: 1px solid rgba(255,255,255,0.2);
    line-height: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    transition: color 0.2s, background 0.2s;
}
.topbar-socials a:hover { color: #fff; background: rgba(0,0,0,0.15); }

/* Main nav row */
.header-main { padding: 0; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.site-branding {
    display: flex;
    align-items: center;
    height: 100%;
}
.logo-link {
    font-family: var(--font-title);
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    color: var(--white);
    display: flex;
    align-items: center;
    padding-right: 48px;
    border-right: 1px solid var(--rule);
    flex-shrink: 0;
    transition: border-color 0.3s;
    height: 100%;
}
.logo-link .t-red { -webkit-text-fill-color: var(--red); background: none; }
.site-logo {
    display: flex;
    align-items: center;
    padding-right: 48px;
    border-right: 1px solid var(--rule);
    height: 100%;
}
.site-logo a {
    display: flex;
    align-items: center;
    height: 100%;
}
.site-logo img { max-height: 42px; width: auto; display: block; }

/* Nav */
.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 48px;
}
.main-nav ul {
    display: flex;
    gap: 0;
    align-items: center;
    height: 100%;
}
.main-nav li { display: flex; align-items: center; }
.main-nav a {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,244,240,0.55);
    padding: 0 22px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.25s;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 22px; right: 22px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }

/* Right: reserve button */
.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-reserve {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    padding: 10px 22px;
    border: 1px solid var(--red);
    outline: none;
    transition: background 0.25s, transform 0.25s;
    white-space: nowrap;
}
.nav-reserve:hover { background: rgba(229,27,36,0.12); color: #fff; transform: translateY(-1px); }
.nav-reserve .arrow { font-size: 0.85rem; transition: transform 0.3s var(--ease); }
.nav-reserve:hover .arrow { transform: translateX(4px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--rule);
    z-index: 210;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    height: 1px;
    background: var(--white);
    transition: transform 0.35s var(--ease), opacity 0.3s, width 0.3s;
}
.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.open span:nth-child(1) { width: 28px; transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { width: 28px; transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
    position: fixed; inset: 0;
    background: var(--black);
    z-index: 205;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu li { border-bottom: 1px solid var(--rule); }
.mobile-menu a {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(245,244,240,0.4);
    padding: 18px 0;
    transition: color 0.25s, padding-left 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--white); padding-left: 16px; }
.mobile-menu .m-footer {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-menu .m-footer span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--off);
}
.mobile-menu .m-cta {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 32px;
    width: fit-content;
    transition: background 0.25s;
}
.mobile-menu .m-cta:hover { background: var(--red-h); }

/* ════════════════════════════════════
   HERO — Cinematic split, 88vh
════════════════════════════════════ */
.hero {
    position: relative;
    height: 88vh;
    min-height: 620px;
    max-height: 900px;
    display: block;
    overflow: hidden;
}

/* ─ Left: video side ─ */
.hero-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-media {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
}
.hero-media video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.9);
}
.yt-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.yt-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(5, 4, 10, 0.62);
}
.yt-wrap iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    will-change: transform;
}
.hero-grad {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to right,  rgba(6,6,8,0.0) 55%, rgba(6,6,8,1) 100%),
        linear-gradient(to bottom, rgba(6,6,8,0.7) 0%,  rgba(6,6,8,0) 22%),
        linear-gradient(to top,    rgba(6,6,8,0.9) 0%,  rgba(6,6,8,0) 45%);
}

/* Red vertical stripe accent */
.hero-stripe {
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--red);
    z-index: 3;
}

/* Centered text area */
.hero-body {
    position: absolute;
    top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    z-index: 4;
    padding: 0 60px;
    max-width: calc(100% - 480px);
    display: flex;
    flex-direction: column;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.hero-eyebrow .h-rule { width: 40px; height: 1px; background: var(--red); }

.hero-title {
    font-family: var(--font-title);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}
.hero-title .line-1 {
    display: block;
    font-size: clamp(3.2rem, 6vw, 7.5rem);
    color: var(--white);
    font-weight: 300;
}
.hero-title .line-2 {
    display: block;
    font-size: clamp(3.2rem, 6vw, 7.5rem);
    color: #5a5375;
    font-weight: 600;
}
.hero-title .line-3 {
    display: block;
    font-size: clamp(1.8rem, 3.2vw, 3.8rem);
    color: var(--red);
    letter-spacing: 0.15em;
    margin-top: 8px;
    font-weight: 400;
}

.hero-sub {
    font-family: var(--font-ser);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    color: var(--off);
    max-width: 500px;
    line-height: 1.55;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    right: 24px; bottom: 56px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-cue span {
    font-family: var(--font-body);
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--off);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.scroll-cue .track {
    width: 1px; height: 56px;
    background: var(--rule);
    position: relative; overflow: hidden;
}
.scroll-cue .track::after {
    content: '';
    position: absolute; left: 0;
    width: 100%; height: 35%;
    background: var(--red);
    animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop { from { top: -35%; } to { top: 135%; } }

/* ─ Right: info panel ─ */
.hero-panel {
    background: rgba(10, 9, 20, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(75, 70, 109, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    right: 48px;
    top: 100px;
    bottom: 40px;
    width: 380px;
    z-index: 5;
}
.hero-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
}
.hero-panel-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 24px;
    overflow-y: auto;
    scrollbar-width: none;
}
.hero-panel-inner::-webkit-scrollbar { display: none; }

/* Event block */
.hp-event {
    border-bottom: 1px solid var(--rule);
}
.hp-event-cover {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
}
.hp-event-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.hero-panel:hover .hp-event-cover img {
    transform: scale(1.04);
}
.hp-event-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,4,10,0.25) 0%, rgba(5,4,10,0.72) 100%);
}
.hp-event-cover .hp-event-tag {
    position: absolute;
    top: 14px;
    left: 16px;
    margin: 0;
}
.hp-event-badge {
    position: absolute;
    top: 14px;
    right: 16px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
}
.hp-event-name,
.hp-event-date {
    padding-left: 32px;
    padding-right: 32px;
}
.hp-event-name { padding-top: 20px; }
.hp-event-date { padding-bottom: 0; }
.hp-event > .hp-countdown,
.hp-event > .hp-price-row { padding-left: 32px; padding-right: 32px; }
/* fallback: no cover image */
.hp-event > .hp-event-tag:first-child {
    padding: 32px 32px 0;
}
.hp-event-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.pulse-dot {
    width: 5px; height: 5px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-a 1.8s ease-in-out infinite;
}
@keyframes pulse-a {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
.hp-event-name {
    font-family: var(--font-title);
    font-size: clamp(0.95rem, 2.2vw, 1.25rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1;
}
.hp-event-date {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--off);
    margin-bottom: 24px;
}

/* Countdown */
.hp-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(75, 70, 109, 0.2);
    border: 1px solid rgba(75, 70, 109, 0.25);
    margin-bottom: 24px;
}
.hp-cd-unit {
    background: rgba(20, 18, 38, 0.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 14px 6px;
    text-align: center;
}
.hp-cd-unit .num {
    display: block;
    font-family: var(--font-title);
    font-size: 2rem;
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}
.hp-cd-unit .lbl {
    display: block;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--off);
    margin-top: 5px;
}
.hp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
}
.hp-price-row .from {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--off);
}
.hp-price-row .amount {
    font-family: var(--font-title);
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--white);
}

/* Stats */
.hp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.hp-stat {
    padding: 20px 24px;
    border-bottom: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
}
.hp-stat:nth-child(2n) { border-right: none; }
.hp-stat:nth-last-child(-n+2) { border-bottom: none; }
.hp-stat-num {
    font-family: var(--font-title);
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
}
.hp-stat-lbl {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--off);
}

/* Info */
.hp-info {
    flex: 1;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--rule);
}
.hp-info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.hp-info-row .ico { color: var(--red); font-size: 0.85rem; margin-top: 1px; flex-shrink: 0; }
.hp-info-row span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--off);
    line-height: 1.55;
}

/* CTA */
.hp-cta { padding: 24px 32px; }
.hp-cta .btn { width: 100%; justify-content: center; padding: 15px 24px; font-size: 0.68rem; }

/* RESPONSIVE hero */
@media (max-width: 1100px) {
    .hero { height: 75vh; min-height: 540px; max-height: 800px; }
    .hero-panel { display: none; }
    .hero-body { padding: 0 32px 52px; max-width: 100%; }
    .scroll-cue { right: 20px; bottom: 32px; }
}
@media (max-width: 640px) {
    .hero { height: 70vh; min-height: 500px; }
    .hero-body { padding: 0 24px 44px; }
}

/* ════════════════════════════════════
   TICKER
════════════════════════════════════ */
.ticker {
    background: var(--red);
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
    display: flex;
    border-top: none;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-move 28s linear infinite;
}
.ticker-list {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.ticker-list span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 0 40px;
    color: rgba(255,255,255,0.95);
    white-space: nowrap;
}
.ticker-list .sep {
    padding: 0;
    opacity: 0.4;
    letter-spacing: 0;
}
@keyframes ticker-move {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ════════════════════════════════════
   SPLIT SECTIONS
════════════════════════════════════ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
    position: relative;
    overflow: hidden;
    background: var(--black);
}
.split-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.85);
    transition: transform 0.8s var(--ease), filter 0.5s;
}
.split:hover .split-img img { transform: scale(1.03); filter: brightness(0.9) saturate(1); }

/* Number label on image */
.split-num {
    position: absolute;
    top: 32px; right: 32px;
    font-family: var(--font-title);
    font-size: 4rem;
    line-height: 1;
    color: rgba(255,255,255,0.12);
    letter-spacing: 0.04em;
    user-select: none;
}
.split.reverse .split-num { right: auto; left: 32px; }

.split-body {
    background: #0a0a0d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    border-left: 1px solid var(--rule);
}
.split-body.section--black {
    background: var(--black);
}
.split.reverse .split-body { border-left: none; border-right: 1px solid var(--rule); }
.split-body .t-label { margin-bottom: 18px; }
.split-body .t-display { margin-bottom: 24px; }
.split-body .t-body { margin-bottom: 40px; max-width: 440px; }

/* ════════════════════════════════════
   PACKAGES
════════════════════════════════════ */
.packages-section { background: var(--black); padding: 100px 0; }

.section-head { margin-bottom: 64px; }
.section-head .t-label { display: block; margin-bottom: 14px; }
.section-head .t-display { margin-bottom: 0; }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
}
.pkg {
    padding: 52px 40px 44px;
    border-right: 1px solid var(--rule);
    position: relative;
    background: var(--black);
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
}
.pkg:last-child { border-right: none; }
.pkg:hover { background: var(--surface); }
.pkg.featured {
    background: var(--dark);
}
.pkg.featured:hover { background: var(--panel); }

/* top accent */
.pkg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--rule);
    transition: background 0.3s;
}
.pkg:hover::before { background: var(--red); }
.pkg.featured::before { background: var(--red); }

.pkg-badge {
    display: inline-flex;
    align-self: flex-start;
    background: var(--red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 28px;
}
.pkg-tier {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--off);
    margin-bottom: 10px;
}
.pkg-name {
    font-family: var(--font-title);
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.pkg-desc {
    font-family: var(--font-ser);
    font-style: italic;
    font-weight: 300;
    font-size: 1rem;
    color: var(--off);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
}
.pkg-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
}
.pkg-price .cur {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--off);
}
.pkg-price .amt {
    font-family: var(--font-title);
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
}
.pkg.featured .amt { color: var(--red); }
.pkg-price .per {
    font-size: 0.75rem;
    color: var(--off);
    margin-left: 4px;
}
.pkg-list {
    flex: 1;
    margin-bottom: 36px;
}
.pkg-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--off);
    line-height: 1.4;
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list li .dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--rule);
    flex-shrink: 0;
    margin-top: 6px;
}
.pkg-list li.on .dot { background: var(--red); }
.pkg-list li.on { color: var(--white); }
.pkg-btn { width: 100%; justify-content: center; }
.pkg-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.82rem;
    color: var(--off);
}
.pkg-note a { color: var(--white); border-bottom: 1px solid var(--rule); transition: border-color 0.25s; }
.pkg-note a:hover { border-color: var(--white); }

/* ════════════════════════════════════
   EVENTS
════════════════════════════════════ */
.events-section { background: var(--black); padding: 100px 0; }

.events-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
}
.events-header-cta { flex-shrink: 0; }

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
}

/* Card */
.ev-card {
    background: #0a0a0d;
    display: flex;
    flex-direction: column;
    transition: background 0.3s var(--ease);
    overflow: hidden;
}
.ev-card:hover { background: #111116; }

.ev-card-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0d0c14;
}
.ev-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.7);
    transition: transform 0.6s var(--ease), filter 0.4s;
}
.ev-card:hover .ev-card-img img {
    transform: scale(1.04);
    filter: brightness(0.9) saturate(0.8);
}
.ev-card-img-placeholder {
    width: 100%; height: 100%;
    background: #0d0c14;
}

.ev-badge {
    position: absolute;
    top: 16px; left: 16px;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: 5px 10px;
}

.ev-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.ev-card-date {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ev-day {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    letter-spacing: 0.02em;
}
.ev-date-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ev-weekday {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
}
.ev-month {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--off);
}

.ev-card-divider {
    height: 1px;
    background: var(--rule);
}

.ev-card-info { flex: 1; }
.ev-title {
    font-family: var(--font-title);
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}
.ev-time, .ev-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--off);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.ev-price { color: var(--white); font-weight: 600; }

.ev-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    transition: gap 0.3s var(--ease), color 0.25s;
}
.ev-card:hover .ev-card-cta { gap: 14px; color: var(--red-h); }

.ev-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 0;
    color: var(--off);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .events-grid { grid-template-columns: 1fr; }
    .events-header { flex-direction: column; align-items: flex-start; }
    .events-header-cta { display: none; }
}

/* ════════════════════════════════════
   GALLERY
════════════════════════════════════ */
.gallery-section { background: var(--black); padding: 100px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 3px;
    margin-top: 48px;
}
.g-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--surface);
}
.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.75);
    transition: transform 0.7s var(--ease), filter 0.4s;
}
.g-item:hover img { transform: scale(1.06); filter: brightness(0.95) saturate(1); }
.g-item.tall  { grid-row: span 2; }
.g-item.wide  { grid-column: span 2; }

/* ════════════════════════════════════
   COUNTDOWN BAND
════════════════════════════════════ */
.countdown-band {
    background: var(--surface);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 64px 0;
}
.countdown-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}
.countdown-layout .t-label { display: block; margin-bottom: 12px; }
.countdown-nums {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--rule);
}
.cd-unit {
    padding: 24px 32px;
    text-align: center;
    border-right: 1px solid var(--rule);
    min-width: 90px;
}
.cd-unit:last-child { border-right: none; }
.cd-unit .num {
    display: block;
    font-family: var(--font-title);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}
.cd-unit .lbl {
    display: block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--off);
    margin-top: 8px;
}

/* ════════════════════════════════════
   RESERVATION
════════════════════════════════════ */
.reservation-section { background: var(--dark); padding: 100px 0; }
.res-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.res-info .t-label { display: block; margin-bottom: 16px; }
.res-info .t-display { margin-bottom: 20px; }
.res-info .t-body { margin-bottom: 40px; }
.res-perks { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--rule); }
.res-perk {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--rule);
}
.res-perk:last-child { border-bottom: none; }
.res-perk .ico { color: var(--red); font-size: 1rem; flex-shrink: 0; }
.res-perk-text .title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2px;
}
.res-perk-text .desc { font-size: 0.8rem; color: var(--off); }

.res-form-wrap {
    background: var(--black);
    border: 1px solid var(--rule);
    padding: 48px 40px;
}
.res-form-wrap h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-col { display: flex; flex-direction: column; gap: 8px; }
.form-col.full { grid-column: 1 / -1; }
.form-col label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--off);
}
.form-col input,
.form-col select,
.form-col textarea {
    background: var(--surface);
    border: 1px solid var(--rule);
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}
.form-col select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23BBBAC8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-col select option { background: var(--dark); }
.form-col input:focus,
.form-col select:focus,
.form-col textarea:focus { border-color: var(--red); }
.form-col input::placeholder,
.form-col textarea::placeholder { color: rgba(187,186,200,0.3); }
.form-col textarea { min-height: 88px; resize: none; }
.form-submit { margin-top: 20px; width: 100%; justify-content: center; padding: 17px; font-size: 0.72rem; letter-spacing: 0.22em; border-radius: 0; }

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testimonials-section { background: var(--surface); padding: 100px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    margin-top: 56px;
}
.testi {
    padding: 44px 36px;
    border-right: 1px solid var(--rule);
    transition: background 0.3s;
}
.testi:last-child { border-right: none; }
.testi:hover { background: var(--panel); }
.stars { color: var(--red); letter-spacing: 4px; font-size: 0.75rem; margin-bottom: 24px; }
.testi-text {
    font-family: var(--font-ser);
    font-style: italic;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--off);
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 2px solid var(--red);
}
.testi-author strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 3px;
}
.testi-author span {
    font-size: 0.75rem;
    color: var(--off);
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer {
    background: var(--black);
    border-top: 1px solid var(--rule);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--rule);
}
.f-col {
    padding: 60px 40px;
    border-right: 1px solid var(--rule);
}
.f-col:last-child { border-right: none; }
.f-logo {
    font-family: var(--font-title);
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    margin-bottom: 16px;
}
.f-logo .t-red { color: var(--red); }
.f-desc { font-size: 0.85rem; color: var(--off); line-height: 1.75; margin-bottom: 28px; }
.f-socials { display: flex; gap: 0; border: 1px solid var(--rule); width: fit-content; }
.f-soc {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--off);
    padding: 10px 16px;
    border-right: 1px solid var(--rule);
    transition: background 0.25s, color 0.25s;
}
.f-soc:last-child { border-right: none; }
.f-soc:hover { background: var(--red); color: #fff; }
.f-col h5 {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
}
.f-col li {
    padding: 9px 0;
    border-bottom: 1px solid var(--rule);
}
.f-col li:last-child { border-bottom: none; }
.f-col li a,
.f-col li span {
    font-size: 0.82rem;
    color: var(--off);
    transition: color 0.25s;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.f-col li a:hover { color: var(--white); }
.f-col .f-ico { color: var(--red); flex-shrink: 0; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    gap: 20px;
    flex-wrap: wrap;
}
.f-copy {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--off);
}
.f-legal { display: flex; gap: 0; }
.f-legal a {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--off);
    padding: 0 20px;
    border-left: 1px solid var(--rule);
    transition: color 0.25s;
}
.f-legal a:first-child { border-left: none; padding-left: 0; }
.f-legal a:hover { color: var(--white); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .f-col:nth-child(2n) { border-right: none; }
    .f-col { padding: 44px 28px; }
    .packages-grid { grid-template-columns: 1fr; }
    .pkg { border-right: none; border-bottom: 1px solid var(--rule); }
    .pkg:last-child { border-bottom: none; }
    .split { grid-template-columns: 1fr; min-height: auto; }
    .split.reverse { direction: ltr; }
    .split-img { height: 360px; }
    .split-body { padding: 56px 36px; }
    .res-layout { grid-template-columns: 1fr; gap: 48px; }
    .countdown-layout { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testi { border-right: none; border-bottom: 1px solid var(--rule); }
    .testi:last-child { border-bottom: none; }
    .header-wide { padding: 0 28px; }
}
@media (max-width: 900px) {
    .main-nav  { display: none; }
    .hamburger { display: flex; }
    .nav-reserve { display: none; }
    .event-row { grid-template-columns: 64px 1fr; }
    .event-cta { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .g-item.tall { grid-row: span 1; }
    .g-item.wide { grid-column: span 2; }
    .form-grid { grid-template-columns: 1fr; }
    .form-col.full { grid-column: 1; }
}
@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .header-wide { padding: 0 20px; }
    .section { padding: 72px 0; }
    .footer-top { grid-template-columns: 1fr; }
    .f-col { border-right: none; border-bottom: 1px solid var(--rule); padding: 36px 20px; }
    .footer-bottom { padding: 20px; flex-direction: column; align-items: flex-start; }
    .res-form-wrap { padding: 32px 24px; }
    .countdown-nums { flex-wrap: wrap; }
    .cd-unit { min-width: 50%; border-bottom: 1px solid var(--rule); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
}

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 9, 20, 0.85);
    border: 1px solid rgba(75, 70, 109, 0.35);
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.25s, border-color 0.25s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--red);
    border-color: var(--red-h);
    transform: translateY(-3px);
}
.back-to-top .arrow {
    display: block;
    line-height: 1;
    transition: transform 0.25s var(--ease);
}
.back-to-top:hover .arrow {
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 42px;
        height: 42px;
    }
}

/* ════════════════════════════════════
   SINGLE EVENT STYLES & RSVP FORM
   ════════════════════════════════════ */
.event-single-layout {
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
}
.single-event-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px 0;
    border-bottom: 1px solid var(--rule);
}
.hero-event-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 60px;
}
.event-hero-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.event-hero-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) saturate(0.8);
}
@media (max-width: 900px) {
    .hero-event-wrapper { grid-template-columns: 1fr; }
    .event-hero-thumb { display: none; }
}
.event-meta-info {
    max-width: 800px;
}
.btn-back {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--off);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    transition: color 0.3s var(--ease);
}
.btn-back:hover {
    color: var(--red);
}
.event-tag-price {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}
.event-label-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--panel);
    border: 1px solid var(--rule);
    padding: 4px 10px;
    border-radius: 3px;
    color: var(--off);
}
.event-price-tag {
    font-family: var(--font-title);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
}
.event-main-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.event-date-display {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--off);
    display: flex;
    align-items: center;
    gap: 8px;
}
.single-event-details {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.grid-event-details {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
}
@media (max-width: 991px) {
    .grid-event-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.event-wysiwyg-content {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--off);
    font-size: 1.05rem;
}
.event-wysiwyg-content p {
    margin-bottom: 20px;
}
.event-rsvp-card {
    background: rgba(23, 21, 46, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(75, 70, 109, 0.25);
    border-radius: 8px;
    padding: 40px;
    position: sticky;
    top: 100px;
}
.event-rsvp-card .form-group {
    margin-bottom: 20px;
}
.event-rsvp-card label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--off);
    margin-bottom: 8px;
    font-weight: 500;
}
.event-rsvp-card input[type="text"],
.event-rsvp-card input[type="tel"],
.event-rsvp-card input[type="email"] {
    width: 100%;
    background: rgba(5, 4, 10, 0.5);
    border: 1px solid rgba(75, 70, 109, 0.3);
    padding: 14px 16px;
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
}
.event-rsvp-card input:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(5, 4, 10, 0.7);
    box-shadow: 0 0 10px rgba(229, 27, 36, 0.15);
}
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
}
.rsvp-feedback-box {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.4;
}
.rsvp-feedback-box.success {
    background: rgba(0, 163, 42, 0.1);
    border: 1px solid rgba(0, 163, 42, 0.3);
    color: #00ff44;
}
.rsvp-feedback-box.error {
    background: rgba(214, 54, 56, 0.1);
    border: 1px solid rgba(214, 54, 56, 0.3);
    color: #ff5255;
}
