/* ═══════════════════════════════════════════════════════
   ENKUUKA Y'OMWAKA — Balanced Desktop + Mobile CSS
   Desktop-first layout, gracefully adapted for mobile
   ═══════════════════════════════════════════════════════ */
:root {
  --bg:       #F7EEEB;
  --bg2:      #EDD8D0;
  --bg3:      #E4CBBF;
  --bgNav:    #FDF6F3;
  --ink:      #1C1A13;
  --ink2:     #3D3925;
  --muted:    #7A5252;
  --red:      #A62E2E;
  --red2:     #C43C3C;
  --red3:     #D45E5E;
  --white:    #FAF5E8;
  --line:     rgba(166,124,46,.18);
  --linesoft: rgba(166,124,46,.10);
  --gold-bg:  rgba(166,124,46,.07);
  --shadow-sm: 0 2px 8px rgba(28,26,19,.08);
  --shadow-md: 0 8px 28px rgba(28,26,19,.12);
  --shadow-lg: 0 20px 56px rgba(28,26,19,.16);
  --nav-h: 60px;
  --tab-h: 60px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--ink); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--red3); border-radius: 3px; }
::selection { background: var(--red3); color: var(--ink); }
.f-display { font-family: 'Cormorant Garamond', serif; }
.f-block   { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes ticker  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.page-enter { animation: fadeUp .4s ease both; }
.fu { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.fu.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   DESKTOP NAV
════════════════════════════════════════ */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  background: rgba(253,246,243,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(166,124,46,.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  box-shadow: 0 1px 0 rgba(166,124,46,.08), 0 4px 20px rgba(28,26,19,.06);
  transition: height .3s;
}
.top-nav.slim { height: 50px; }
.top-nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); white-space: nowrap; letter-spacing: .3px; }
.top-nav-logo em { color: var(--red); font-style: italic; }
.top-nav-links { display: flex; gap: 0; list-style: none; }
.top-nav-links li a {
  font-size: .6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); padding: 8px 11px; display: block;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.top-nav-links li a:hover,
.top-nav-links li.active a { color: var(--ink); border-bottom-color: var(--red); }
.top-nav-cta {
  background: var(--red); color: #fff;
  padding: 8px 18px; border-radius: 3px;
  font-size: .65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: background .2s; white-space: nowrap; display: inline-block;
}
.top-nav-cta:hover { background: var(--red2); color: #fff; }
.top-nav-cbs {
  background: transparent; color: var(--red);
  padding: 7px 14px; border-radius: 20px;
  border: 1.5px solid var(--red);
  font-size: .6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all .2s; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px;
}
.top-nav-cbs:hover { background: var(--red); color: #fff; }
.top-nav-tickets {
  background: var(--red); color: #fff;
  padding: 8px 18px; border-radius: 3px;
  font-size: .65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: background .2s; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 8px rgba(166,46,46,.3);
}
.top-nav-tickets:hover { background: var(--red2); }
/* Hamburger — hidden on desktop */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 1px; transition: .3s; }
/* Mobile drawer */
.mob-drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--bgNav); padding: 8px 0; z-index: 998; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }
.mob-drawer.open { display: block; animation: fadeIn .2s ease; }
.mob-drawer a { display: flex; align-items: center; gap: 12px; padding: 13px 24px; font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--linesoft); transition: background .15s, color .15s; }
.mob-drawer a:hover, .mob-drawer a.active { color: var(--red); background: var(--gold-bg); }
.mob-drawer-cta { margin: 12px 20px 16px; display: block; text-align: center; }

/* ── BOTTOM TABS (mobile only) ── */
.bottom-tabs { display: none; }

/* ════════════════════════════════════════
   PAGE WRAPPER
════════════════════════════════════════ */
.page-wrap { padding-top: var(--nav-h); }

/* ════════════════════════════════════════
   TICKER
════════════════════════════════════════ */
.ticker { background: var(--red); padding: 9px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 52px; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-item { font-family: 'Bebas Neue', sans-serif; font-size: .82rem; letter-spacing: 3px; color: rgba(255,255,255,.88); display: inline-flex; align-items: center; gap: 16px; flex-shrink: 0; }
.ticker-dot { width: 4px; height: 4px; background: rgba(255,255,255,.45); border-radius: 50%; }

/* ════════════════════════════════════════
   HERO (full-viewport — dark cinematic split)
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: #080808;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Right-half performer photo */
.hero-photo {
  position: absolute;
  inset: 0;
  left: 42%;
  background-size: cover;
  background-position: center top;
  z-index: 1;
}

/* Fade the photo into pure black on the left */
.hero-photo-fade {
  position: absolute;
  inset: 0;
  left: 42%;
  z-index: 2;
  background: linear-gradient(to right, #080808 0%, rgba(8,8,8,.55) 28%, rgba(8,8,8,.0) 60%);
}

/* Subtle red radial glow behind performer */
.hero-glow {
  position: absolute;
  top: 10%;
  right: 0;
  width: 55%;
  height: 85%;
  z-index: 1;
  background: radial-gradient(ellipse at 70% 40%, rgba(160,30,30,.45) 0%, transparent 70%);
  pointer-events: none;
}

/* Sunburst lines (decorative) */
.hero-deco {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  z-index: 1;
  opacity: .06;
  background: repeating-conic-gradient(from 0deg at 82% 44%, #fff 0deg 2deg, transparent 2deg 12deg);
  pointer-events: none;
}

/* Bottom accent line */
.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  z-index: 10;
  background: linear-gradient(to right, transparent, var(--red), #c43c3c, var(--red), transparent);
}

/* Left-side content panel */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 64px 80px;
  width: 55%;
  min-height: 100vh;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .58rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.4);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8.5vw, 8rem);
  line-height: .86;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.hero-title em {
  color: var(--red3);
  font-style: italic;
  display: block;
}

.hero-sub {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-sub::before, .hero-sub::after {
  content: '';
  display: block;
  height: 1px;
  width: 28px;
  background: rgba(255,255,255,.25);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ── COUNTDOWN (dark theme) ── */
.countdown { display: flex; gap: 6px; align-items: center; margin-bottom: 36px; }
.cd-block {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px 20px;
  min-width: 76px;
  text-align: center;
  backdrop-filter: blur(8px);
  border-radius: 2px;
}
.cd-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; line-height: 1; display: block; }
.cd-lbl { font-size: .48rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 5px; display: block; }
.cd-sep { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--red3); align-self: center; padding-bottom: 18px; }

/* Dark-theme buttons for hero */
.hero-content .btn-red {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: .68rem;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.hero-content .btn-red:hover { background: #c43c3c; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(166,46,46,.4); color: #fff; }

.hero-content .btn-outline {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 13px 28px;
  font-size: .68rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: border-color .2s, color .2s, transform .15s;
}
.hero-content .btn-outline:hover { border-color: rgba(255,255,255,.55); color: #fff; transform: translateY(-1px); }

.hero-content .btn-gold {
  background: transparent;
  color: #C9A227;
  border: 1.5px solid rgba(201,162,39,.45);
  padding: 13px 28px;
  font-size: .68rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color .2s, background .2s, transform .15s;
}
.hero-content .btn-gold:hover { border-color: #C9A227; background: rgba(201,162,39,.08); transform: translateY(-1px); color: #C9A227; }

/* ════════════════════════════════════════
   PAGE HERO (sub-pages)
════════════════════════════════════════ */
.page-hero { position: relative; height: 340px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 44px; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.28) saturate(.85); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg) 0%, rgba(247,238,235,.15) 55%, transparent 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 64px; }
.page-hero-content .s-label { color: var(--red3); }
.page-hero-content .s-label::before { background: var(--red3); }
.page-hero-content .s-title { color: var(--white); font-size: clamp(2rem, 5.5vw, 3.6rem); }
.page-hero-content .s-title em { color: var(--red3); }

/* ════════════════════════════════════════
   SECTION LABELS + TITLES
════════════════════════════════════════ */
.s-label { display: inline-flex; align-items: center; gap: 8px; font-size: .62rem; letter-spacing: 5px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 10px; }
.s-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--red); }
.s-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 3.1rem); line-height: 1.02; color: var(--ink); font-weight: 700; margin-bottom: 14px; }
.s-title em { color: var(--red); font-style: italic; }
.s-body { font-size: .9rem; color: var(--muted); line-height: 1.85; max-width: 560px; }
.section-pad { padding: 64px 64px 0; }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn-red { background: var(--red); color: #fff; border: none; padding: 13px 30px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s; display: inline-block; border-radius: 3px; }
.btn-red:hover { background: var(--red2); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(166,46,46,.2); }
.btn-outline { background: transparent; color: var(--red); border: 1.5px solid var(--red); padding: 12px 28px; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background .2s, transform .15s; display: inline-block; border-radius: 3px; }
.btn-outline:hover { background: var(--gold-bg); transform: translateY(-1px); color: var(--red); }

/* ════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.stats-strip { display: grid; grid-template-columns: repeat(3,1fr); background: var(--bg2); border-bottom: 1px solid var(--line); }
.stat-cell { padding: 28px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--red); display: block; line-height: 1; }
.stat-lbl { font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 4px; display: block; }

/* ════════════════════════════════════════
   SPLIT SECTIONS
════════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }
.split-img { position: relative; overflow: hidden; min-height: 440px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.58); transition: transform .6s ease; display: block; }
.split:hover .split-img img { transform: scale(1.04); }
.split-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(247,238,235,.08), transparent); }
.split.rev .split-img-overlay { background: linear-gradient(to left, rgba(247,238,235,.08), transparent); }
.split-content { background: var(--bg2); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.split-content::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--red), transparent); }
.split.rev .split-content::before { left: auto; right: 0; }

/* ════════════════════════════════════════
   EVENT CARDS — proper 3-col grid
════════════════════════════════════════ */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.event-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; background: var(--bg2); }
.event-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.52); transition: filter .5s, transform .5s; display: block; }
.event-card:hover img { filter: brightness(.28); transform: scale(1.05); }
.event-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,26,19,.95) 0%, rgba(28,26,19,.1) 55%, transparent 100%); }
.event-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 20px; }
.event-card-tag { font-size: .58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red3); font-weight: 700; margin-bottom: 6px; display: block; }
.event-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); line-height: 1.1; font-weight: 700; }
.event-card-desc { font-size: .76rem; color: rgba(250,245,232,.45); line-height: 1.55; max-height: 0; overflow: hidden; transition: max-height .4s ease; margin-top: 5px; }
.event-card:hover .event-card-desc { max-height: 72px; }

/* ════════════════════════════════════════
   INFO ROWS (list items with image)
════════════════════════════════════════ */
.info-row { display: flex; align-items: stretch; gap: 0; border-bottom: 1px solid var(--linesoft); background: #fff; transition: background .15s; cursor: default; }
.info-row:hover { background: var(--bg2); }
.info-row-img { width: 120px; flex-shrink: 0; overflow: hidden; }
.info-row-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.65); transition: filter .3s; }
.info-row:hover .info-row-img img { filter: brightness(.5); }
.info-row-body { padding: 18px 20px; flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.info-row-tag { font-size: .55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 4px; display: block; }
.info-row-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; line-height: 1.1; }
.info-row-desc { font-size: .8rem; color: var(--muted); line-height: 1.65; }
.info-row-arrow { align-self: center; padding: 0 20px 0 12px; color: var(--red); font-size: .85rem; flex-shrink: 0; }

/* ════════════════════════════════════════
   CLAN GRID — photo wall
════════════════════════════════════════ */
/* Masonry Pinterest-style: CSS columns give varying natural heights per column */
/* ════════════════════════════════════════
   CLAN GRID — Pinterest-style masonry
════════════════════════════════════════ */
.clan-grid-wrap { width: 100%; }
.clan-grid {
  columns: 6;
  column-gap: 6px;
  width: 100%;
}

/* ── Base card ── */
.clan-card {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 6px;
  display: block;
  border-radius: 10px;
  transition: box-shadow .3s ease, transform .35s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* Height rhythm — staggered like a real Pinterest board */
.clan-card:nth-child(5n+1) { height: 230px; }
.clan-card:nth-child(5n+2) { height: 175px; }
.clan-card:nth-child(5n+3) { height: 295px; }
.clan-card:nth-child(5n+4) { height: 205px; }
.clan-card:nth-child(5n+5) { height: 260px; }
.clan-card[data-royal="true"]  { height: 340px !important; }
.clan-card[data-orig="true"]:not([data-royal="true"]) { height: 250px !important; }

/* Hover lift */
.clan-card:hover { box-shadow: 0 10px 40px rgba(28,26,19,.22); transform: translateY(-3px); }

/* Image */
.clan-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.52); transition: filter .45s, transform .5s; display: block; border-radius: 10px; }
.clan-card:hover img { filter: brightness(.28); transform: scale(1.05); }

/* Gradient overlay */
.clan-card-grad { position: absolute; inset: 0; border-radius: 10px; background: linear-gradient(to top, rgba(28,26,19,.92) 0%, rgba(28,26,19,.08) 55%, transparent 100%); transition: background .3s; }
.clan-card:hover .clan-card-grad { background: linear-gradient(to top, rgba(28,26,19,.98) 0%, rgba(28,26,19,.55) 65%, rgba(28,26,19,.05) 100%); }

/* Badges */
.clan-badge-row { position: absolute; top: 8px; left: 8px; display: flex; gap: 4px; flex-wrap: wrap; z-index: 3; }
.clan-badge { padding: 3px 7px; font-size: .42rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 20px; }
.clan-badge-num { background: rgba(28,26,19,.65); color: rgba(250,245,232,.65); backdrop-filter: blur(6px); }
.clan-badge-orig { background: var(--red); color: #fff; }
.clan-badge-royal { background: #7A1515; color: var(--white); }

/* Bottom label (always visible) */
.clan-card-bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 11px 12px; z-index: 2; transition: opacity .25s; }
.clan-totem-lbl { font-size: .42rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red3); font-weight: 700; margin-bottom: 1px; display: block; }
.clan-name { font-family: 'Cormorant Garamond', serif; font-size: .92rem; font-weight: 700; color: var(--white); line-height: 1; }
.clan-totem-name { font-size: .6rem; color: rgba(250,245,232,.48); margin-top: 2px; }

/* Hover info panel (slides up on hover) */
.clan-hover-panel { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 13px; z-index: 4; transform: translateY(100%); transition: transform .38s cubic-bezier(.25,.46,.45,.94); }
.clan-card:hover .clan-hover-panel { transform: translateY(0); }
.clan-card:hover .clan-card-bottom { opacity: 0; pointer-events: none; }
.clan-hover-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.clan-hover-totem { font-size: .7rem; color: rgba(250,245,232,.6); margin-bottom: 7px; }
.clan-hover-head-row { display: flex; align-items: center; gap: 7px; padding-top: 7px; border-top: 1px solid rgba(250,245,232,.15); }
.clan-hover-head-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: .55rem; flex-shrink: 0; color: #fff; }
.clan-hover-head-lbl { font-size: .52rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(250,245,232,.38); display: block; }
.clan-hover-head-name { font-size: .74rem; color: rgba(250,245,232,.72); font-weight: 500; }

/* ════════════════════════════════════════
   PINTEREST EXPAND — click to grow card
════════════════════════════════════════ */

/* ── Selected card: subtle highlight ring only (no in-card expand) ── */
.clan-card.selected {
  outline: 2px solid var(--red3);
  outline-offset: 2px;
  z-index: 2;
}

/* Dim non-selected cards when one is open */
.clan-grid.has-selected .clan-card:not(.selected) {
  opacity: .45;
  pointer-events: none;
  transition: opacity .3s;
}

/* Hide the old in-card detail panel and close button entirely */
.clan-pin-detail { display: none !important; }
.clan-pin-close   { display: none !important; }

/* ══════════════════════════════════════════════════════════
   PINTEREST EXPAND ROW  — full-width panel below the grid
   Image (large) on left  ·  Details on right
══════════════════════════════════════════════════════════ */
.clan-expand-row {
  /* sits inside .clan-grid-wrap, spans full width below the masonry */
  width: 100%;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  background: var(--bg2, #1c1a13);
  border-radius: 14px;
  overflow: hidden;
  /* slide-in animation */
  max-height: 0;
  opacity: 0;
  transition: max-height .5s cubic-bezier(.25,.46,.45,.94), opacity .4s ease;
  pointer-events: none;
  margin-top: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.clan-expand-row.open {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
}

/* Left: large image */
.clan-expand-img {
  position: relative;
  height: 480px;
  overflow: hidden;
  flex-shrink: 0;
}
.clan-expand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.clan-expand-row.open .clan-expand-img img {
  transform: scale(1.03);
}
/* subtle gradient overlay on the image */
.clan-expand-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--bg2, #1c1a13) 100%);
  pointer-events: none;
}

/* Right: detail content */
.clan-expand-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow-y: auto;
  max-height: 480px;
}

/* Eyebrow */
.clan-expand-eyebrow {
  font-size: .6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red3, #a62e2e);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.clan-expand-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--red3, #a62e2e);
  flex-shrink: 0;
}

/* Title */
.clan-expand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white, #faf5e8);
  line-height: 1;
  margin-bottom: 6px;
}

/* Totem line */
.clan-expand-totem {
  font-size: .82rem;
  color: rgba(250,245,232,.5);
  margin-bottom: 22px;
}
.clan-expand-totem strong { color: var(--red3, #a62e2e); }

/* Divider */
.clan-expand-divider {
  height: 1px;
  background: rgba(250,245,232,.1);
  margin-bottom: 20px;
}

/* Meta rows */
.clan-expand-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.clan-expand-meta-row { display: flex; align-items: flex-start; gap: 12px; }
.clan-expand-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(166,46,46,.2);
  border: 1px solid rgba(166,46,46,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--red3, #a62e2e);
  flex-shrink: 0;
}
.clan-expand-lbl {
  font-size: .55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,245,232,.32);
  display: block;
  margin-bottom: 2px;
}
.clan-expand-val {
  font-size: .88rem;
  color: rgba(250,245,232,.8);
  font-weight: 500;
}

/* Tags */
.clan-expand-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; }
.clan-expand-tag {
  padding: 5px 12px;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(250,245,232,.18);
  color: rgba(250,245,232,.5);
  border-radius: 30px;
}
.clan-expand-tag.red  { border-color: rgba(166,46,46,.4); color: var(--red3, #a62e2e); }
.clan-expand-tag.gold { border-color: rgba(122,21,21,.5); color: #c97a7a; }

/* Close button */
.clan-expand-close {
  align-self: flex-start;
  padding: 9px 22px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(250,245,232,.22);
  color: rgba(250,245,232,.65);
  background: transparent;
  border-radius: 30px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  margin-top: auto;
}
.clan-expand-close:hover {
  background: var(--red, #8b1c1c);
  color: #fff;
  border-color: var(--red, #8b1c1c);
}

/* Badges inside expand panel */
.clan-expand-badges { display: flex; gap: 6px; margin-bottom: 14px; }
.clan-expand-badge {
  padding: 3px 10px;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
}
.clan-expand-badge-orig { background: rgba(166,46,46,.2); color: var(--red3, #a62e2e); border: 1px solid rgba(166,46,46,.35); }
.clan-expand-badge-royal { background: rgba(122,21,21,.2); color: #c97a7a; border: 1px solid rgba(122,21,21,.35); }

/* Responsive: stack on narrow screens */
@media (max-width: 900px) {
  .clan-expand-row { grid-template-columns: 1fr; }
  .clan-expand-img { height: 240px; }
  .clan-expand-img::after { background: linear-gradient(to bottom, transparent 70%, var(--bg2, #1c1a13) 100%); }
  .clan-expand-title { font-size: 2rem; }
}

/* ── CLAN BOTTOM SHEET (mobile) ── */
.clan-sheet { display: none; position: fixed; inset: 0; z-index: 400; }
.clan-sheet.open { display: block; }
.clan-sheet-bg { position: absolute; inset: 0; background: rgba(28,26,19,.5); backdrop-filter: blur(4px); animation: fadeIn .2s ease; }
.clan-sheet-panel { position: absolute; left: 0; right: 0; bottom: 0; background: var(--bg); border-radius: 16px 16px 0 0; max-height: 80vh; overflow-y: auto; animation: slideUp .3s cubic-bezier(.25,.46,.45,.94); }
.clan-sheet-handle { width: 36px; height: 4px; background: rgba(28,26,19,.15); border-radius: 2px; margin: 12px auto 0; }
.clan-sheet-img { width: 100%; height: 190px; object-fit: cover; filter: brightness(.6); }
.clan-sheet-body { padding: 18px 20px 32px; }
.clan-sheet-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.clan-sheet-totem { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 14px; }
.clan-sheet-row { display: flex; gap: 10px; margin-bottom: 8px; }
.clan-sheet-tag { font-size: .58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; min-width: 76px; }
.clan-sheet-val { font-size: .84rem; color: var(--ink); font-weight: 500; }

/* ════════════════════════════════════════
   MASAZA LIST + MAP
════════════════════════════════════════ */
.masaza-grid { display: grid; grid-template-columns: 1fr 420px; min-height: 600px; border: 1px solid var(--line); }
.masaza-list-panel { overflow-y: auto; max-height: 600px; border-right: 1px solid var(--line); }
.masaza-list-panel::-webkit-scrollbar { width: 4px; }
.masaza-row { display: flex; align-items: center; gap: 0; border-bottom: 1px solid var(--linesoft); cursor: pointer; transition: background .15s; }
.masaza-row:hover, .masaza-row.active { background: var(--bg3); }
.masaza-row-num { font-family: 'Bebas Neue', sans-serif; font-size: .72rem; color: var(--red); min-width: 48px; text-align: center; padding: 18px 0; border-right: 1px solid var(--linesoft); flex-shrink: 0; letter-spacing: 1.5px; }
.masaza-row-thumb { width: 56px; height: 56px; flex-shrink: 0; overflow: hidden; margin: 10px 12px; border-radius: 6px; }
.masaza-row-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75); }
.masaza-row-info { flex: 1; min-width: 0; padding: 14px 12px 14px 0; }
.masaza-row-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.masaza-row-meta { font-size: .68rem; color: var(--muted); }
.masaza-row-arrow { color: var(--red); font-size: .75rem; padding: 0 14px; flex-shrink: 0; opacity: 0; transition: opacity .2s; }
.masaza-row:hover .masaza-row-arrow, .masaza-row.active .masaza-row-arrow { opacity: 1; }
/* Map panel */
.masaza-map-panel { position: sticky; top: var(--nav-h); height: 600px; background: var(--bg2); display: flex; flex-direction: column; overflow: hidden; }
.masaza-map-header { padding: 18px 22px 14px; border-bottom: 1px solid var(--linesoft); flex-shrink: 0; }
.masaza-map-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 14px; overflow: hidden; }
.masaza-map-img { width: 100%; height: 100%; object-fit: contain; }
.masaza-detail-card { padding: 14px 22px 18px; border-top: 1px solid var(--linesoft); background: #fff; flex-shrink: 0; min-height: 108px; }
.masaza-detail-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.masaza-detail-chief { font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; font-weight: 600; }
.masaza-detail-desc { font-size: .76rem; color: var(--muted); line-height: 1.72; }
/* Masaza bottom sheet (mobile) */
.masaza-sheet { display: none; position: fixed; inset: 0; z-index: 400; }
.masaza-sheet.open { display: block; }
.masaza-sheet-bg { position: absolute; inset: 0; background: rgba(28,26,19,.5); backdrop-filter: blur(4px); animation: fadeIn .2s ease; }
.masaza-sheet-panel { position: absolute; left: 0; right: 0; bottom: 0; background: var(--bg); border-radius: 16px 16px 0 0; max-height: 82vh; overflow-y: auto; animation: slideUp .3s cubic-bezier(.25,.46,.45,.94); }
.masaza-sheet-handle { width: 36px; height: 4px; background: rgba(28,26,19,.15); border-radius: 2px; margin: 12px auto 0; }

/* ════════════════════════════════════════
   MASAZA CARD GRID (6-col)
════════════════════════════════════════ */
.masaza-cards-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
.masaza-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 2/3; background: var(--bg3); }
.masaza-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.48); transition: filter .5s, transform .5s; display: block; }
.masaza-card:hover img { filter: brightness(.26); transform: scale(1.06); }
.masaza-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,26,19,.96) 0%, rgba(28,26,19,.08) 55%, transparent 100%); }
.masaza-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 10px; }
.masaza-card-num { font-family: 'Bebas Neue', sans-serif; font-size: .58rem; letter-spacing: 2px; color: var(--red3); display: block; margin-bottom: 2px; }
.masaza-card-name { font-family: 'Cormorant Garamond', serif; font-size: .92rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.masaza-card-chief { font-size: .62rem; color: rgba(250,245,232,.45); margin-top: 2px; display: none; }
.masaza-card:hover .masaza-card-chief { display: block; }

/* ════════════════════════════════════════
   EVENTS PAGE
════════════════════════════════════════ */
.ev-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; border-bottom: 1px solid var(--linesoft); }
.ev-block.flip { direction: rtl; }
.ev-block.flip > * { direction: ltr; }
.ev-media { position: relative; overflow: hidden; background: var(--ink); }
.ev-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); transition: transform .7s ease, filter .7s ease; display: block; }
.ev-block:hover .ev-media img { transform: scale(1.04); filter: brightness(.48); }
.ev-time-chip { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.ev-time-line { width: 28px; height: 1px; background: var(--red); }
.ev-time-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--red); letter-spacing: 3px; }
.ev-time-phase { font-size: .56rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-left: 4px; font-weight: 600; }
.ev-text { background: var(--bg2); padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; }
.ev-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--ink); line-height: 1.0; margin-bottom: 6px; }
.ev-title em { color: var(--red); font-style: italic; }
.ev-subtitle { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; font-weight: 600; }
.ev-desc { font-size: .88rem; color: var(--muted); line-height: 1.9; margin-bottom: 22px; }
.ev-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.ev-fact { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); padding: 6px 12px; font-size: .66rem; color: var(--ink2); font-weight: 500; border-radius: 3px; }
.ev-highlights { border-top: 1px solid var(--line); padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.ev-highlight { display: flex; align-items: flex-start; gap: 10px; font-size: .8rem; color: var(--muted); line-height: 1.6; }
.ev-highlight-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.ev-phase-divider { padding: 20px 64px; display: flex; align-items: center; gap: 20px; background: var(--bg); border-bottom: 1px solid var(--linesoft); }
.ev-phase-divider-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 4px; color: var(--red); white-space: nowrap; }
.ev-phase-divider-line { flex: 1; height: 1px; background: var(--line); }
.ev-phase-divider-time { font-family: 'Bebas Neue', sans-serif; font-size: .82rem; letter-spacing: 3px; color: var(--muted); white-space: nowrap; }
/* Phase sticky nav */
.ev-phase-nav { position: sticky; top: var(--nav-h); z-index: 90; background: var(--bgNav); border-bottom: 1px solid var(--line); padding: 0 64px; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; box-shadow: 0 2px 12px rgba(28,26,19,.05); }
.ev-phase-nav::-webkit-scrollbar { display: none; }
.ev-phase-btn { padding: 14px 20px; white-space: nowrap; font-size: .62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: .2s; display: flex; align-items: center; gap: 7px; text-decoration: none; }
.ev-phase-btn.active, .ev-phase-btn:hover { color: var(--ink); border-bottom-color: var(--red); }
/* Midnight banner */
.midnight-banner { position: relative; min-height: 580px; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.midnight-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.2); display: block; }
.midnight-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(166,46,46,.1) 0%, rgba(28,26,19,.6) 100%); }
.midnight-content { position: relative; z-index: 2; padding: 60px 64px; max-width: 720px; }
.midnight-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; color: var(--white); line-height: .88; margin-bottom: 14px; }
.midnight-title em { color: var(--red3); font-style: italic; }

/* ════════════════════════════════════════
   PROGRAMME TIMELINE
════════════════════════════════════════ */
.programme-list { display: flex; flex-direction: column; }
.prog-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--linesoft); }
.prog-row:last-child { border-bottom: none; }
.prog-time { font-family: 'Bebas Neue', sans-serif; font-size: .84rem; color: var(--red); min-width: 68px; flex-shrink: 0; padding-top: 1px; letter-spacing: .5px; text-align: right; }
.prog-dot-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 16px; }
.prog-dot { width: 10px; height: 10px; background: var(--red); border-radius: 50%; margin-top: 4px; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(166,46,46,.14); }
.prog-line { width: 1px; flex: 1; background: var(--line); min-height: 28px; margin-top: 4px; }
.prog-row:last-child .prog-line { display: none; }
.prog-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; line-height: 1.1; }
.prog-desc { font-size: .78rem; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.gal-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.62); transition: filter .45s, transform .45s; display: block; }
.gal-item:hover img { filter: brightness(.28); transform: scale(1.05); }
.gal-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(28,26,19,.3); opacity: 0; transition: opacity .3s; }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--white); }
.gal-sub { font-size: .58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red3); margin-top: 4px; }
/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(247,238,235,.97); flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 24px; cursor: pointer; }
.lightbox.open { display: flex; animation: fadeIn .2s ease; }
.lightbox img { max-width: 100%; max-height: 74vh; object-fit: contain; border-radius: 4px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: rgba(28,26,19,.1); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }

/* ════════════════════════════════════════
   BUSINESS
════════════════════════════════════════ */
.tab-bar { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: none; }
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn { padding: 12px 22px; white-space: nowrap; font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: .2s; flex-shrink: 0; }
.tab-btn.active, .tab-btn:hover { color: var(--ink); border-bottom-color: var(--red); }
.biz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.biz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 2px 10px rgba(28,26,19,.06);
  display: flex;
  flex-direction: column;
}
.biz-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(28,26,19,.13); }
.biz-card img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  transition: transform .5s;
}
.biz-card:hover img { transform: scale(1.04); }
.biz-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.biz-tag {
  font-size: .52rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); background: rgba(166,46,46,.08);
  padding: 4px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px;
}
.biz-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.biz-desc { font-size: .78rem; color: var(--muted); line-height: 1.75; flex: 1; margin-bottom: 14px; }
.biz-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); border: 1.5px solid var(--red);
  padding: 8px 16px; border-radius: 4px;
  transition: all .2s; align-self: flex-start;
}
.biz-cta:hover { background: var(--red); color: #fff; }
.biz-panel { display: none; }
.biz-panel.active { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

/* ════════════════════════════════════════
   VENDOR PACKAGES
════════════════════════════════════════ */
.vendor-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.vendor-card { background: #fff; padding: 28px; border: 1px solid var(--linesoft); position: relative; }
.vendor-card.highlight { border-color: var(--red); border-width: 1.5px; }
.vendor-badge { position: absolute; top: -10px; right: 16px; background: var(--red); color: #fff; font-size: .52rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 3px; }
.vendor-tier { font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 5px; }
.vendor-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.vendor-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.vendor-features li { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.vendor-features li::before { content: '✓'; color: var(--red); font-size: .72rem; font-weight: 700; }

/* ════════════════════════════════════════
   HOTELS
════════════════════════════════════════ */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.hotel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 2px 12px rgba(28,26,19,.06);
}
.hotel-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(28,26,19,.14); }
.hotel-card img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  transition: transform .5s;
}
.hotel-card:hover img { transform: scale(1.05); }
.hotel-body { padding: 18px 20px 20px; }
.hotel-stars { font-size: 1rem; margin-bottom: 6px; }
.hotel-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; line-height: 1.2; }
.hotel-loc { font-size: .72rem; color: var(--muted); margin-bottom: 6px; }
.hotel-price { font-size: .8rem; font-weight: 700; color: var(--red); margin-bottom: 14px; }
.hotel-book {
  width: 100%; padding: 10px 16px;
  background: var(--red); color: #fff;
  border-radius: 6px;
  font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: background .2s;
}
.hotel-book:hover { background: var(--red2); }

/* ════════════════════════════════════════
   KABAKA BAND
════════════════════════════════════════ */
.kabaka-band { background: linear-gradient(135deg, var(--bg3), var(--bg2)); padding: 60px 64px; text-align: center; border-top: 2px solid var(--red3); border-bottom: 2px solid var(--red3); }
.kab-stats-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.kab-stat { padding: 18px 22px; border: 1px solid var(--line); background: rgba(255,255,255,.48); text-align: center; min-width: 130px; border-radius: 4px; }
.kab-stat-icon { font-size: 1.4rem; margin-bottom: 6px; }
.kab-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: .9rem; color: var(--ink); letter-spacing: 1px; display: block; }
.kab-stat-lbl { font-size: .58rem; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; display: block; }

/* ════════════════════════════════════════
   DARK STRIP
════════════════════════════════════════ */
.dark-strip { background: var(--bg2); padding: 56px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; border-top: 1px solid var(--line); }
.dark-strip-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--ink); margin-bottom: 16px; line-height: 1; }
.dark-strip-title em { color: var(--red); font-style: italic; }
.dark-strip-body { font-size: .88rem; color: var(--muted); line-height: 1.9; margin-bottom: 14px; }
.dark-facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.dark-fact { background: #fff; border: 1px solid var(--line); padding: 22px 16px; text-align: center; border-radius: 4px; }
.dark-fact-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--red); display: block; line-height: 1; margin-bottom: 4px; }
.dark-fact-lbl { font-size: .55rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.hier-list { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.hier-row { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.08); padding: 10px 12px; }
.hier-num { font-family: 'Bebas Neue', sans-serif; font-size: .7rem; color: var(--red3); width: 18px; flex-shrink: 0; text-align: center; }
.hier-name { font-size: .82rem; color: rgba(250,245,232,.55); }

/* ════════════════════════════════════════
   MASAZA CUP
════════════════════════════════════════ */
.masaza-cup { padding: 56px 64px; background: var(--bg2); display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; border-top: 1px solid var(--line); }
.masaza-cup-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.masaza-cup-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); transition: transform .6s; display: block; }
.masaza-cup-img:hover img { transform: scale(1.04); }
.masaza-cup-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-size: .58rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 12px; border-radius: 3px; }

/* ════════════════════════════════════════
   INVITATION
════════════════════════════════════════ */
.inv-card { max-width: 460px; margin: 0 auto; background: #fff; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-lg); border-radius: 4px; }
.inv-top { background: linear-gradient(135deg, var(--bg3), var(--bg2)); padding: 30px 38px; text-align: center; border-bottom: 1px solid var(--line); }
.inv-body { padding: 32px 38px; text-align: center; }
.inv-divider { height: 1px; background: var(--line); margin: 16px 0; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-info-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--linesoft); }
.contact-info-icon { width: 42px; height: 42px; border-radius: 8px; background: var(--gold-bg); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-lbl { font-size: .56rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-weight: 600; display: block; margin-bottom: 2px; }
.contact-info-val { font-size: .88rem; color: var(--ink); font-weight: 500; }
.form-input { width: 100%; padding: 12px 14px; background: #fff; border: 1px solid var(--line); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: .88rem; outline: none; transition: border-color .2s, box-shadow .2s; display: block; margin-bottom: 12px; border-radius: 3px; }
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(166,46,46,.1); }
.form-input::placeholder { color: var(--muted); opacity: .55; }
textarea.form-input { resize: vertical; min-height: 100px; }

/* ════════════════════════════════════════
   SEARCH BAR + FILTER PILLS
════════════════════════════════════════ */
.search-wrap { position: relative; max-width: 480px; }
.search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: .9rem; pointer-events: none; }
.search-input { width: 100%; padding: 11px 13px 11px 36px; background: #fff; border: 1px solid var(--line); color: var(--ink); font-size: .88rem; outline: none; transition: border-color .2s, box-shadow .2s; border-radius: 3px; }
.search-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(166,46,46,.1); }
.search-input::placeholder { color: var(--muted); opacity: .5; }
.filter-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.filter-pill { padding: 5px 14px; font-size: .6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: 1.5px solid var(--line); background: #fff; color: var(--muted); cursor: pointer; border-radius: 20px; transition: .2s; }
.filter-pill.active, .filter-pill:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ════════════════════════════════════════
   SPONSORS
════════════════════════════════════════ */
.sponsors-band { background: var(--bg2); border-top: 1px solid var(--linesoft); border-bottom: 1px solid var(--linesoft); padding: 24px 64px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: center; }
.sponsor-chip { padding: 8px 18px; border: 1px solid var(--line); font-size: .62rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); background: #fff; border-radius: 20px; transition: .2s; cursor: default; }
.sponsor-chip:hover { border-color: var(--red); color: var(--ink); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: var(--bg3); border-top: 2px solid var(--red2); padding: 56px 64px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.footer-brand em { color: var(--red); }
.footer-tagline { font-size: .82rem; color: var(--muted); line-height: 1.78; margin-bottom: 18px; max-width: 290px; }
.footer-col-head { font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; font-weight: 700; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li a, .footer-links li { font-size: .82rem; color: var(--muted); transition: color .2s; }
.footer-links li a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: .72rem; color: var(--muted); opacity: .6; }
.social-row { display: flex; gap: 7px; }
.social-btn { width: 32px; height: 32px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: .78rem; color: var(--muted); background: #fff; border-radius: 5px; cursor: pointer; transition: .2s; }
.social-btn:hover { border-color: var(--red); color: var(--red); }

/* ════════════════════════════════════════
   MOBILE — max-width: 768px
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .top-nav { padding: 0 24px; }
  .top-nav-links li a { padding: 8px 8px; font-size: .56rem; }
  .hero-content { padding: 80px 40px 60px; width: 65%; }
  .hero-photo { left: 52%; }
  .hero-photo-fade { left: 52%; }
  .section-pad { padding: 52px 40px 0; }
  .page-hero-content { padding: 0 40px; }
  .kabaka-band { padding: 52px 40px; }
  .dark-strip { padding: 52px 40px; }
  .masaza-cup { padding: 52px 40px; }
  .footer { padding: 48px 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .clan-grid { columns: 4; }
  .masaza-cards-grid { grid-template-columns: repeat(4,1fr); }
  .ev-phase-nav { padding: 0 40px; }
  .ev-phase-divider { padding: 18px 40px; }
  .midnight-content { padding: 52px 40px; }
  .sponsors-band { padding: 24px 40px; }
  .masaza-grid { grid-template-columns: 1fr 360px; }
}

@media (max-width: 768px) {
  /* Nav: show hamburger, hide links */
  .top-nav-links, .top-nav-cta, .top-nav-cbs, .top-nav-tickets { display: none; }
  .hamburger { display: flex; }
  .top-nav { padding: 0 20px; }

  /* Bottom tabs visible on mobile */
  .bottom-tabs { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: rgba(253,246,243,.97); backdrop-filter: blur(20px); border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(28,26,19,.08); padding-bottom: var(--safe-bottom); }
  .bottom-tabs-inner { display: flex; height: var(--tab-h); width: 100%; }
  .tab-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--muted); font-size: .42rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; position: relative; padding: 6px 0; cursor: pointer; transition: color .2s; }
  .tab-item.active { color: var(--ink); }
  .tab-item .tab-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
  .tab-item .tab-icon svg { width: 22px; height: 22px; stroke: currentColor; transition: stroke .2s; }
  .tab-item.active .tab-icon { transform: translateY(-2px); }
  .tab-item::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--ink); transition: width .25s; border-radius: 0 0 2px 2px; }
  .tab-item.active::after { width: 20px; }

  /* ══ RADIO TAB ACTIVE STATE ══ */
  #radioTabBtn.radio-active { color: var(--red); }
  #radioTabBtn.radio-active::after { width: 24px; }
  .page-wrap { padding-bottom: calc(var(--tab-h) + var(--safe-bottom)); }

  /* Layout adjustments */
  .hero-content { padding: 80px 22px 44px; width: 100%; }
  .hero-photo { left: 0; opacity: .35; }
  .hero-photo-fade { left: 0; background: linear-gradient(to right, rgba(8,8,8,.92) 0%, rgba(8,8,8,.7) 100%); }
  .hero-title { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-glow { display: none; }
  .page-hero { height: 240px; }
  .page-hero-content { padding: 0 22px; }
  .section-pad { padding: 40px 22px 0; }

  /* Grids collapse */
  .split, .ev-block, .dark-strip, .masaza-cup { grid-template-columns: 1fr; }
  .split.rev, .ev-block.flip { direction: ltr; }
  .split-img { min-height: 240px; }
  .split-content { padding: 32px 22px; }
  .ev-text { padding: 32px 22px; }
  .ev-phase-nav { padding: 0 16px; }
  .ev-phase-divider { padding: 14px 22px; }
  .midnight-content { padding: 40px 22px; }
  .dark-strip { padding: 36px 22px; gap: 28px; }
  .masaza-cup { padding: 36px 22px; gap: 24px; }
  .kabaka-band { padding: 40px 22px; }
  .sponsors-band { padding: 18px 22px; }

  .event-grid { grid-template-columns: repeat(2,1fr); }
  .clan-grid { columns: 3; }
  .masaza-cards-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .hotel-grid { grid-template-columns: repeat(2,1fr); }
  .vendor-grid { grid-template-columns: 1fr; }
  .biz-panel.active { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding: 36px 22px 22px; }
  .masaza-grid { grid-template-columns: 1fr; }
  .masaza-map-panel { position: static; height: 380px; }
  .masaza-list-panel { max-height: 360px; }
  .dark-facts { grid-template-columns: 1fr 1fr; }
  .kab-stats-row { flex-wrap: wrap; gap: 10px; }
  .kab-stat { min-width: 110px; }
}

@media (max-width: 480px) {
  .event-grid, .gallery-grid, .hotel-grid { grid-template-columns: 1fr; }
  .clan-grid { columns: 2; }
  .masaza-cards-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cd-block { min-width: 58px; padding: 10px 12px; }
}

/* ══════════════════════════════════════════════
   SMALL SCREEN OPTIMIZATIONS — ALL SECTIONS
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Page padding: 64px → 20px ── */
  [style*="padding:64px 64px"],
  [style*="padding:52px 64px"],
  [style*="padding:60px 64px"],
  [style*="padding:56px 64px"],
  [style*="padding:0 64px 64px"],
  [style*="padding:24px 64px"],
  [style*="padding:64px 64px 0"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* ── Stats strip: horizontal scroll ── */
  .stats-strip {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding: 0;
  }
  .stats-strip::-webkit-scrollbar { display: none; }
  .stat-cell {
    min-width: 120px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 18px 14px;
  }

  /* ── Event highlights: horizontal scroll ── */
  .event-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding: 0 20px 12px !important;
    margin: 0 -20px !important;
  }
  .event-grid::-webkit-scrollbar { display: none; }
  .event-card {
    min-width: 220px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
    height: 280px !important;
  }

  /* ── Two-day grid: stack ── */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  /* ── Tourist attractions: horizontal scroll ── */
  .tourist-scroll-wrap {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 20px 12px;
    margin: 0 -20px;
  }
  .tourist-scroll-wrap::-webkit-scrollbar { display: none; }
  .tourist-card-mob {
    min-width: 240px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
  }

  /* ── Sponsor chips: horizontal scroll ── */
  .sponsors-band {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding: 16px 20px !important;
    gap: 8px !important;
  }
  .sponsors-band::-webkit-scrollbar { display: none; }
  .sponsor-chip { flex-shrink: 0; }

  /* ── CBS FM section: stack ── */
  [style*="grid-template-columns:auto 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 32px 20px !important;
  }

  /* ── Omuzira section ── */
  .masaza-grid,
  [style*="grid-template-columns:1fr 1fr"][style*="gap:64px"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* ── Museum mini grid ── */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:2px"] {
    grid-template-columns: 1fr 1fr !important;
  }



  /* ── Scroll hint fade on scrollable rows ── */
  .event-grid-wrap, .tourist-scroll-wrap { position: relative; }

  /* ── Hero actions wrap better ── */
  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-actions a {
    flex: 0 0 auto;
    font-size: .78rem;
    padding: 10px 16px;
  }

  /* ── Countdown tighter ── */
  .countdown { gap: 8px; }
  .cd-sep { font-size: 1.2rem; }

  /* ── Clan grid on mobile: masonry 2-col ── */
  .clan-grid { columns: 2 !important; }

  /* ── Name search max-width full on mobile ── */
  .ns-wrap, .ns-results { max-width: 100% !important; }

  /* ── Two-day cards padding ── */
  [style*="padding:36px 32px"] { padding: 24px 20px !important; }

  /* ── Dark CTA ── */
  [style*="padding:60px 64px;text-align:center"] {
    padding: 40px 20px !important;
  }
}

@media (max-width: 480px) {
  /* Tighter hero on very small screens */
  .hero-title { font-size: clamp(2.6rem, 11vw, 4rem) !important; }
  .hero-sub { font-size: .82rem !important; }
  .stat-num { font-size: 2rem !important; }
}
