/* =============================================================
   Vivacloud Gallery — Stylesheet
   Brand: blu #2B6FC4 · magenta #E63A77
   ============================================================= */

:root {
  /* Brand */
  --vc-blue: #2B6FC4;
  --vc-blue-600: #1F5BAA;
  --vc-pink: #E63A77;
  --vc-pink-600: #C72861;
  --vc-grad: linear-gradient(135deg, #2B6FC4 0%, #6B4FB8 50%, #E63A77 100%);
  --vc-grad-soft: linear-gradient(135deg, rgba(43,111,196,0.08), rgba(230,58,119,0.08));

  /* Neutrals */
  --ink: #0E1530;
  --ink-2: #3A4566;
  --ink-3: #6B7691;
  --line: #E6E9F2;
  --line-2: #F0F2F8;
  --bg: #FBFBFD;
  --surface: #FFFFFF;

  /* Type */
  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radii + shadow */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-1: 0 1px 2px rgba(14,21,48,0.04), 0 4px 14px rgba(14,21,48,0.05);
  --shadow-2: 0 10px 30px rgba(14,21,48,0.10), 0 2px 6px rgba(14,21,48,0.04);
  --shadow-glow: 0 18px 40px rgba(230,58,119,0.22), 0 8px 24px rgba(43,111,196,0.22);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,251,253,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 28px; width: auto; }
.brand__divider {
  width: 1px;
  height: 22px;
  background: var(--line);
}
.brand__product {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-2);
}
.brand__product .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vc-grad);
  margin-right: 8px;
  vertical-align: middle;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav a:hover { background: var(--line-2); color: var(--ink); }
.nav a.is-active {
  background: var(--ink);
  color: white;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--vc-blue);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--vc-grad);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-1px); }
.btn--hero {
  padding: 18px 36px;
  font-size: 17px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 32px rgba(230,58,119,0.35), 0 4px 16px rgba(43,111,196,0.3);
}
.btn--hero:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(230,58,119,0.45), 0 6px 20px rgba(43,111,196,0.35); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--line-2); }
.btn--icon { padding: 12px; border-radius: 50%; }

/* ============================================================
   Homepage / Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 28px 100px;
}
.hero__bg {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 700px;
  background:
    radial-gradient(50% 50% at 20% 30%, rgba(43,111,196,0.18), transparent 70%),
    radial-gradient(45% 50% at 80% 40%, rgba(230,58,119,0.18), transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  box-shadow: var(--shadow-1);
}
.eyebrow__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--vc-grad);
  color: white;
  font-size: 11px;
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
}
.hero h1 .accent {
  background: var(--vc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Event meta card under hero */
.event-card {
  margin: 64px auto 0;
  max-width: 760px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.event-card__cover {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 26px 32px 28px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* Ticket header: brand label + logo */
.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.ticket-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.ticket-brand span {
  color: var(--vc-pink);
  margin: 0 5px;
}
.ticket-logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* Ticket body: big date + details */
.ticket-body {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ticket-day {
  font-size: 74px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--vc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}
.ticket-sep {
  width: 1px;
  height: 54px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.ticket-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ticket-month {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: white;
}
.ticket-place {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.ticket-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vc-pink);
  margin-top: 4px;
}

/* Perforated bottom edge */
.ticket-perf {
  margin-top: 24px;
  height: 1px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.18) 0px,
    rgba(255,255,255,0.18) 7px,
    transparent 7px,
    transparent 14px
  );
}
.event-card__body {
  padding: 28px 32px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 10px;
}
.event-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.event-card__meta svg { width: 16px; height: 16px; }
.event-card h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.event-card__count {
  text-align: right;
  white-space: nowrap;
}
.event-card__count .num {
  font-size: 30px;
  font-weight: 700;
  background: var(--vc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.event-card__count .label {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Feature pills */
.features {
  max-width: 1100px;
  margin: 72px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--vc-grad-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature__icon svg { width: 20px; height: 20px; }
.feature h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}
.feature p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.feature--link {
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s;
}
.feature--link:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: var(--shadow-2);
}
.feature__arrow {
  display: inline-block;
  transition: transform .2s ease;
  background: var(--vc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  margin-left: 2px;
}
.feature--link:hover .feature__arrow { transform: translateX(4px); }

/* ============================================================
   Discover cards (Vivacloud + Sangfor)
   ============================================================ */
.discover {
  max-width: 1100px;
  margin: 96px auto 0;
  padding: 0 28px;
}
.discover__head {
  text-align: center;
  margin-bottom: 28px;
}
.discover__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.discover__head h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.discover__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dcard {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
  position: relative;
}
.dcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.dcard--viva::before { background: var(--vc-grad); }
.dcard--sang::before { background: linear-gradient(90deg, #00A651 0%, #0071C5 100%); }
.dcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: transparent;
}

.dcard__mark {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.dcard__mark--viva {
  background:
    radial-gradient(60% 80% at 30% 50%, rgba(43,111,196,0.10), transparent 70%),
    radial-gradient(60% 80% at 70% 50%, rgba(230,58,119,0.10), transparent 70%),
    #FAFAFD;
}
.dcard__mark--viva img {
  height: 36px;
  width: auto;
  display: block;
}
.dcard__mark--sang {
  background: linear-gradient(135deg, #0D1E3D 0%, #0F2347 100%);
}
.sang-word {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #00A651 0%, #0071C5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dcard__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.dcard__tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.dcard__body h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.dcard__body p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  text-wrap: pretty;
}
.dcard__cta {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.dcard--viva .dcard__cta {
  background: var(--vc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dcard--viva .dcard__cta svg { stroke: var(--vc-pink); }
.dcard--sang .dcard__cta {
  background: linear-gradient(135deg, #00A651 0%, #0071C5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dcard--sang .dcard__cta svg { stroke: #00A651; }
.dcard__cta svg { transition: transform .2s ease; }
.dcard:hover .dcard__cta svg { transform: translateX(4px); }

@media (max-width: 760px) {
  .discover { margin-top: 64px; padding: 0 22px; }
  .discover__grid { grid-template-columns: 1fr; gap: 14px; }
  .dcard__mark { height: 100px; }
  .sang-word { font-size: 30px; }
  .dcard__mark--viva img { height: 30px; }
}

/* ============================================================
   Gallery page
   ============================================================ */
.gallery-hero {
  padding: 56px 28px 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.gallery-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery-hero h1 {
  margin: 12px 0 8px;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.gallery-hero h1 .accent {
  background: var(--vc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gallery-hero .crumb {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.gallery-hero .crumb a:hover { color: var(--ink); }
.gallery-hero p.lede {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  max-width: 560px;
}

.gallery-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.tag .dot-pink { width: 7px; height: 7px; border-radius: 50%; background: var(--vc-pink); }
.tag .dot-blue { width: 7px; height: 7px; border-radius: 50%; background: var(--vc-blue); }

/* Grid (CSS Columns = masonry-like, simple and rock solid) */
.gallery {
  max-width: 1240px;
  margin: 8px auto 80px;
  padding: 0 28px;
  column-count: 4;
  column-gap: 14px;
}
@media (max-width: 1100px) { .gallery { column-count: 3; } }
@media (max-width: 720px)  { .gallery { column-count: 2; column-gap: 10px; } }
@media (max-width: 440px)  { .gallery { column-count: 1; } }

.tile {
  position: relative;
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--line-2);
  cursor: zoom-in;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
  box-shadow: 0 0 0 1px rgba(14,21,48,0.04);
}
.tile:hover { will-change: transform; }
@media (max-width: 720px) { .tile { margin-bottom: 10px; } }

.tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}

/* Watermark — visible on every tile, top-right.
   Pure CSS overlay: zero render cost, sharp at every resolution. */
.watermark {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px 5px 9px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(14,21,48,0.18);
  pointer-events: none;
  z-index: 2;
  transition: opacity .2s ease;
}
.watermark img {
  height: 12px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.tile:hover .watermark { opacity: 0.85; }
@media (max-width: 720px) {
  .watermark { top: 7px; right: 7px; padding: 4px 7px; }
  .watermark img { height: 10px; }
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.tile:hover img { transform: scale(1.04); }

.tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,21,48,0) 50%, rgba(14,21,48,0.55) 100%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.tile:hover .tile__overlay { opacity: 1; }

.tile__meta {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
}
.tile:hover .tile__meta {
  opacity: 1;
  transform: translateY(0);
}
.tile__dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  cursor: pointer;
  pointer-events: auto;
  transition: background .2s, transform .2s;
}
.tile__dl:hover {
  background: var(--vc-pink);
  border-color: var(--vc-pink);
  transform: scale(1.06);
}
.tile__dl svg { width: 15px; height: 15px; }

/* Skeleton while loading */
.tile.is-loading {
  background: linear-gradient(120deg, #eef0f6 30%, #f6f7fb 50%, #eef0f6 70%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
  min-height: 220px;
}
.tile.is-loading img { opacity: 0; }
@keyframes shimmer {
  to { background-position: -200% 0; }
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 12, 28, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 80px;
  opacity: 0;
  transition: opacity .2s ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  user-select: none;
  -webkit-user-drag: none;
  animation: lbZoom .25s ease;
}
.lightbox__watermark {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  pointer-events: none;
  z-index: 2;
}
.lightbox__watermark img { height: 16px; width: auto; display: block; }
@media (max-width: 720px) {
  .lightbox__watermark { top: 10px; right: 10px; padding: 5px 9px; }
  .lightbox__watermark img { height: 12px; }
}
@keyframes lbZoom {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox__topbar {
  position: absolute;
  top: 22px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 14px;
  font-weight: 500;
}
.lightbox__count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.lightbox__actions {
  display: flex;
  gap: 10px;
}
.lb-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, transform .15s, border-color .15s;
}
.lb-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.05);
}
.lb-btn--download:hover {
  background: var(--vc-pink);
  border-color: var(--vc-pink);
}
.lb-btn svg { width: 18px; height: 18px; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.lightbox__nav:hover {
  background: var(--vc-grad);
  border-color: transparent;
}
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__nav svg { width: 22px; height: 22px; }

.lightbox__caption {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 80vw;
}

@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__topbar { top: 14px; left: 14px; right: 14px; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: white;
  padding: 32px 28px 28px;
}
.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__legal {
  border-top: 1px solid var(--line-2);
  padding-top: 18px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}
.site-footer__legal strong {
  color: var(--ink-2);
  font-weight: 600;
}
.site-footer .powered {
  font-size: 13.5px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer .powered .grad {
  background: var(--vc-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.site-footer .small-nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--ink-3);
}
.site-footer .small-nav a:hover { color: var(--ink); }

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 820px) {
  .features { grid-template-columns: 1fr; gap: 12px; }
  .event-card__body { grid-template-columns: 1fr; gap: 16px; }
  .event-card__count { text-align: left; }
  .hero { padding: 56px 22px 72px; }
  .event-card__cover { padding: 22px 24px 24px; }
  .ticket-day { font-size: 54px; }
  .ticket-month { font-size: 16px; }
}
@media (max-width: 560px) {
  .site-header__inner { padding: 14px 18px; }
  .nav a { padding: 8px 10px; font-size: 13px; }
  .brand__divider, .brand__product { display: none; }
}
