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

/* ── Global tokens ── */
:root {
    /* Dark surfaces */
    --noir:        #09070B;
    --deep:        #110D14;
    --velvet:      #1A1120;
    --curtain:     #2A0F1E;
    --rim-dark:    #2C2233;
    /* Light surfaces */
    --parchment:   #FAF7F2;
    --paper:       #FFFFFF;
    --paper-alt:   #F4F0EA;
    --rim-light:   #E5DDD0;
    /* Gold */
    --gold:        #C9973A;
    --gold-lt:     #E8B85A;
    --gold-dk:     #9B7020;
    --gold-sf:     rgba(201,151,58,.12);
    --gold-sf2:    rgba(201,151,58,.06);
    /* Text */
    --cream:       #F5EDD8;
    --cream-dim:   #B8A898;
    --ink:         #1C1510;
    --ink-sec:     #5C5048;
    --ink-muted:   #9C9088;
    /* Accent */
    --crimson:     #8B1F35;
    --crimson-sf:  rgba(139,31,53,.12);
    --sage:        #3A7D5E;
    --sage-sf:     rgba(58,125,94,.1);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--noir);
    color: var(--cream);
    overflow-x: hidden;
}

/* ── Keyframes ── */
@keyframes fadeUp  { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes pulse   { 0%,100%{opacity:.18;transform:scale(1)} 50%{opacity:.28;transform:scale(1.06)} }
@keyframes drift   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes shimmer { 0%,100%{opacity:.5} 50%{opacity:1} }

/* ── Shared ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.serif { font-family: 'Playfair Display', Georgia, serif; }

/* ═══════════════════════════════════════════════════════════════
   HERO — Dark theatrical
═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--noir);
    overflow: hidden;
    padding-top: 72px;
}

.hero-glow {
    position: absolute; top: -5%; left: 50%; transform: translateX(-50%);
    width: 860px; height: 860px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,151,58,.20) 0%, transparent 60%);
    animation: pulse 6s ease-in-out infinite;
    pointer-events: none;
}

.curtain-l, .curtain-r {
    position: absolute; top: 0; bottom: 0; width: 20%;
    pointer-events: none; z-index: 1;
}
.curtain-l { left:0;  background: linear-gradient(to right, var(--curtain) 0%, transparent 100%); }
.curtain-r { right:0; background: linear-gradient(to left,  var(--curtain) 0%, transparent 100%); }

.hero-floor {
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
    opacity: .25;
}

.hero-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-masks {
    position: absolute; top: 60px; right: 8%;
    display: flex; gap: 12px;
    opacity: .08; font-size: 80px; user-select: none;
    animation: drift 8s ease-in-out infinite;
    pointer-events: none; z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 780px; padding: 0 20px;
    animation: fadeUp .8s .1s ease both;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
    color: var(--gold); text-transform: uppercase;
    border: 1px solid rgba(201,151,58,.3);
    background: rgba(201,151,58,.08);
    padding: 6px 18px; border-radius: 2px;
    margin-bottom: 28px;
    animation: fadeUp .7s .2s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: '✦'; font-size: 7px; opacity: .7; }

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 9vw, 96px);
    font-weight: 900; line-height: .98; letter-spacing: -3px;
    color: var(--cream);
    animation: fadeUp .7s .35s ease both;
}
.hero-title em { display: block; color: var(--gold); font-style: italic; }

.hero-sub {
    margin: 24px auto 0; max-width: 500px;
    font-size: 16px; color: var(--cream-dim); line-height: 1.75; font-weight: 300;
    animation: fadeUp .7s .5s ease both;
}

.hero-btns {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-top: 42px; flex-wrap: wrap;
    animation: fadeUp .7s .65s ease both;
}

.btn-primary {
    background: var(--gold); color: var(--noir);
    padding: 15px 38px; border-radius: 4px;
    font-size: 14px; font-weight: 700; letter-spacing: .5px;
    text-decoration: none; transition: all .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,151,58,.35); }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(201,151,58,.45); color: var(--gold);
    padding: 14px 38px; border-radius: 4px;
    font-size: 14px; font-weight: 600; letter-spacing: .4px;
    text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: var(--gold-sf); border-color: var(--gold); }

.hero-stats {
    display: flex; justify-content: center; align-items: center; gap: 0;
    margin-top: 72px;
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 40px;
    animation: fadeUp .7s .8s ease both;
}
.hero-stat { text-align: center; flex: 1; max-width: 160px; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,.07); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--gold); }
.hero-stat-lbl { font-size: 11px; color: var(--cream-dim); letter-spacing: .8px; text-transform: uppercase; margin-top: 4px; }

/* ── Wave dividers ── FIX: stretch SVG fully, no background gap ── */
.wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    font-size: 0;       /* kills any inline whitespace gap */
}
.wave svg {
    display: block;
    width: 100%;        /* ensures SVG fills the full container width */
    height: 56px;
}

/* ═══════════════════════════════════════════════════════════════
   EVENTS — Light parchment
═══════════════════════════════════════════════════════════════ */
.events-section {
    background: var(--parchment);
    padding: 96px 0;
}

.section-head { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
    color: var(--gold-dk); text-transform: uppercase; margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: ''; height: 1px; width: 36px;
    background: linear-gradient(to right, transparent, var(--gold-dk));
}
.section-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold-dk)); }

.section-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 50px); font-weight: 900;
    color: var(--ink); letter-spacing: -1.2px; line-height: 1.1;
}
.section-title-dark em { color: var(--gold-dk); font-style: italic; }
.section-sub-dark { font-size: 15px; color: var(--ink-sec); margin-top: 14px; font-weight: 300; max-width: 420px; margin-left: auto; margin-right: auto; }

/* Events grid — 3 columns */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:780px){  .events-grid{ grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px){  .events-grid{ grid-template-columns: 1fr; } }

/* Hidden cards beyond row 2 */
.event-card.hidden-card { display: none; }
.event-card.hidden-card.revealed { display: flex; }

/* Show more / less toggle */
.events-toggle-row {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.btn-events-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(201,151,58,.4);
    color: var(--gold-dk);
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .2s ease;
    font-family: 'DM Sans', sans-serif;
}
.btn-events-toggle:hover {
    background: var(--gold-dk);
    color: var(--parchment);
    border-color: var(--gold-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(155,112,32,.2);
}
.btn-events-toggle svg {
    width: 16px; height: 16px;
    transition: transform .3s ease;
    flex-shrink: 0;
}
.btn-events-toggle.expanded svg { transform: rotate(180deg); }

/* ── Event filter bar ── */
.events-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-input-wrap {
    position: relative;
    flex: 1;
    min-width: 180px;
}
.filter-input-wrap svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--gold-dk);
    pointer-events: none;
}
.filter-input {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--rim-light);
    border-radius: 6px;
    padding: 10px 14px 10px 36px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    outline: none;
    transition: border-color .18s, box-shadow .18s;
}
.filter-input::placeholder { color: var(--ink-muted); }
.filter-input:focus {
    border-color: rgba(155,112,32,.45);
    box-shadow: 0 0 0 3px rgba(201,151,58,.08);
}
.filter-select {
    background: var(--paper);
    border: 1px solid var(--rim-light);
    border-radius: 6px;
    padding: 10px 36px 10px 14px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B7020' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color .18s, box-shadow .18s;
    min-width: 150px;
}
.filter-select:focus {
    border-color: rgba(155,112,32,.45);
    box-shadow: 0 0 0 3px rgba(201,151,58,.08);
}
.filter-reset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--rim-light);
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all .18s ease;
    white-space: nowrap;
}
.filter-reset:hover {
    border-color: rgba(201,151,58,.4);
    color: var(--gold-dk);
}
.filter-reset svg { width: 13px; height: 13px; }

/* No results state */
.events-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    display: none;
}
.events-no-results.visible { display: block; }
.no-results-icon { font-size: 44px; opacity: .18; margin-bottom: 16px; }
.no-results-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.no-results-sub { font-size: 13px; color: var(--ink-muted); }

/* Results count badge */
.filter-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-dk);
    background: rgba(201,151,58,.1);
    border: 1px solid rgba(201,151,58,.25);
    border-radius: 10px;
    padding: 3px 10px;
    white-space: nowrap;
    margin-left: auto;
}

.event-card {
    background: var(--paper);
    border: 1px solid var(--rim-light);
    border-radius: 14px; overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
    animation: fadeUp .55s ease both;
    display: flex;
    flex-direction: column;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0,0,0,.10), 0 0 0 1px rgba(201,151,58,.25);
    border-color: rgba(201,151,58,.3);
}

.event-thumb {
    position: relative; height: 160px; overflow: hidden; flex-shrink: 0;
}
.event-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.event-card:hover .event-thumb img { transform: scale(1.05); }
.event-thumb-placeholder {
    width:100%; height:100%;
    display:flex; align-items:center; justify-content:center;
    font-family: 'Playfair Display', serif;
    font-size: 60px; font-weight: 900; font-style: italic;
    color: rgba(201,151,58,.3);
    background: linear-gradient(135deg, #2A0F1E 0%, #1A1120 100%);
}
.event-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,6,10,.7) 0%, transparent 55%);
}
.event-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--gold); color: var(--noir);
    font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
    padding: 3px 8px; border-radius: 2px;
}

.event-body { padding: 16px 18px; display: flex; flex-direction: column; flex: 1; }
.event-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700; color: var(--ink);
    line-height: 1.3; margin-bottom: 10px; letter-spacing: -.2px;
}
.event-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.event-meta-row {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--ink-sec); font-weight: 500;
}
.event-meta-row svg { width:12px; height:12px; flex-shrink:0; color: var(--gold-dk); }
.event-desc {
    font-size: 12px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1;
}
.event-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--rim-light); padding-top: 12px;
    margin-top: auto;
}
.event-slots {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--ink-sec);
}
.slot-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF82; animation: shimmer 2s infinite ease-in-out; flex-shrink: 0; }
.event-slots strong { color: var(--ink); font-weight: 700; }
.btn-book {
    background: var(--noir); color: var(--gold);
    border: 1px solid rgba(201,151,58,.4);
    padding: 7px 14px; border-radius: 4px;
    font-size: 11px; font-weight: 700; letter-spacing: .3px;
    text-decoration: none; transition: all .18s; cursor: pointer;
    white-space: nowrap;
}
.btn-book:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }

/* Empty */
.events-empty { grid-column:1/-1; text-align:center; padding: 72px 20px; }
.empty-icon { font-size: 52px; opacity: .2; margin-bottom: 20px; }
.empty-title { font-family:'Playfair Display',serif; font-size:20px; color:var(--ink); margin-bottom:8px; }
.empty-sub { font-size:13px; color:var(--ink-muted); }

/* ═══════════════════════════════════════════════════════════════
   WHY SECTION — Dark velvet
═══════════════════════════════════════════════════════════════ */
.why-section { background: var(--velvet); padding: 96px 0; }

.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
@media(max-width:768px){ .why-grid{ grid-template-columns:1fr; gap:48px; } }

.why-title {
    font-family:'Playfair Display',serif;
    font-size: clamp(28px, 4.5vw, 46px); font-weight:900;
    color: var(--cream); letter-spacing:-1px; line-height:1.15; margin-bottom:18px;
}
.why-title em { color: var(--gold); font-style:italic; }
.why-body { font-size:15px; color:var(--cream-dim); line-height:1.75; font-weight:300; margin-bottom:36px; }

.features { display:flex; flex-direction:column; gap:18px; }
.feature {
    display:flex; gap:14px; align-items:flex-start;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--rim-dark);
    border-radius:10px; padding:16px;
    transition: border-color .2s, background .2s;
}
.feature:hover { border-color: rgba(201,151,58,.3); background: var(--gold-sf2); }
.feature-icon {
    width:38px; height:38px; border-radius:9px; flex-shrink:0;
    background: var(--gold-sf); border:1px solid rgba(201,151,58,.25);
    display:flex; align-items:center; justify-content:center;
    font-size:18px;
}
.feature-text strong { display:block; font-size:14px; font-weight:600; color:var(--cream); margin-bottom:3px; }
.feature-text span { font-size:13px; color:var(--cream-dim); line-height:1.5; }

.why-panel {
    background: linear-gradient(145deg, var(--curtain) 0%, var(--deep) 100%);
    border:1px solid var(--rim-dark); border-radius:16px;
    padding:40px 32px; position:relative; overflow:hidden;
}
.why-panel::before {
    content:'🎭'; position:absolute; top:-20px; left:50%; transform:translateX(-50%);
    font-size:140px; opacity:.05; pointer-events:none;
}
.why-panel-glow {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:260px; height:260px; border-radius:50%;
    background: radial-gradient(circle, rgba(201,151,58,.13), transparent 65%);
    pointer-events:none;
}
.why-quote {
    font-family:'Playfair Display',serif;
    font-size:20px; font-style:italic; color:var(--cream); line-height:1.55;
    position:relative; z-index:1;
}
.why-quote::before { content:'\201C'; font-size:56px; color:var(--gold); opacity:.4; display:block; line-height:.5; margin-bottom:16px; }
.why-quote cite { display:block; font-style:normal; font-size:11px; color:var(--cream-dim); letter-spacing:1px; text-transform:uppercase; margin-top:20px; }

.why-numbers { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:22px; position:relative; z-index:1; }
.wn-box {
    background:rgba(255,255,255,.04); border:1px solid var(--rim-dark);
    border-radius:9px; padding:16px 12px; text-align:center;
    transition: border-color .18s;
}
.wn-box:hover { border-color: rgba(201,151,58,.3); }
.wn-num { font-family:'Playfair Display',serif; font-size:26px; font-weight:700; color:var(--gold); }
.wn-lbl { font-size:11px; color:var(--cream-dim); margin-top:3px; }

/* ═══════════════════════════════════════════════════════════════
   CTA — Light parchment
═══════════════════════════════════════════════════════════════ */
.cta-section {
    background: var(--parchment);
    padding: 96px 0;
    position: relative; overflow: hidden;
}
.cta-section::before, .cta-section::after {
    content:''; position:absolute; left:0; right:0; height:1px;
    background: linear-gradient(to right, transparent, var(--gold-dk) 30%, var(--gold-dk) 70%, transparent);
    opacity: .25;
}
.cta-section::before { top:0; } .cta-section::after { bottom:0; }

.cta-inner { text-align:center; }
.cta-title {
    font-family:'Playfair Display',serif;
    font-size:clamp(30px, 5.5vw, 58px); font-weight:900;
    color:var(--ink); letter-spacing:-1.5px; line-height:1.1; margin-bottom:18px;
}
.cta-title em { color:var(--gold-dk); font-style:italic; }
.cta-sub { font-size:15px; color:var(--ink-sec); max-width:440px; margin:0 auto 40px; font-weight:300; line-height:1.7; }

.btn-primary-dark {
    background: var(--noir); color: var(--gold);
    border: 1px solid rgba(201,151,58,.4);
    padding:15px 38px; border-radius:4px;
    font-size:14px; font-weight:700; letter-spacing:.5px;
    text-decoration:none; transition:all .2s; display:inline-block;
}
.btn-primary-dark:hover { background:var(--gold); color:var(--noir); border-color:var(--gold); transform:translateY(-2px); box-shadow:0 10px 28px rgba(0,0,0,.2); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Dark
═══════════════════════════════════════════════════════════════ */
.footer { background:var(--deep); border-top:1px solid var(--rim-dark); padding: 72px 0 36px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:52px; }
@media(max-width:820px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .footer-grid{ grid-template-columns:1fr; } }

.footer-logo { font-family:'Playfair Display',serif; font-size:22px; font-weight:900; font-style:italic; color:var(--gold); margin-bottom:14px; }
.footer-rule { width:32px; height:2px; background:var(--gold); opacity:.4; border-radius:1px; margin-bottom:14px; }
.footer-tagline { font-size:13px; color:var(--cream-dim); line-height:1.65; max-width:230px; }
.footer-col-title { font-size:10px; font-weight:700; letter-spacing:1.8px; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:13px; color:var(--cream-dim); text-decoration:none; transition:color .18s; }
.footer-links a:hover { color:var(--cream); }
.footer-socials { display:flex; gap:10px; margin-top:20px; }
.social-icon {
    width:34px; height:34px; border-radius:8px;
    background:rgba(255,255,255,.04); border:1px solid var(--rim-dark);
    display:flex; align-items:center; justify-content:center;
    color:var(--cream-dim); text-decoration:none; transition:all .18s;
}
.social-icon:hover { border-color:rgba(201,151,58,.4); color:var(--gold); background:var(--gold-sf); }
.social-icon svg { width:14px; height:14px; }
.footer-bottom {
    border-top:1px solid var(--rim-dark); padding-top:24px;
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.footer-copy { font-size:12px; color:var(--cream-dim); }
.footer-copy em { color:var(--gold); font-style:normal; }

/* ── Responsive helpers ── */
@media(max-width:640px){
    .hero-masks { display:none; }
    .hero-stats { gap: 0; flex-wrap:wrap; }
}
