/* ==================================================================
   Music & Events: site styles
   Bones: big-brand homepage layout (sticky global nav, full-bleed
   key-visual carousel, round category shortcuts, tabbed card grids,
   feature banners, horizontal showcase, multi-column footer).
   Skin: night-out navy with orange + blue.
   ================================================================== */

:root {
  --ink: #070b14;
  --ink-2: #0b1220;
  --panel: #101828;
  --panel-2: #16213a;
  --line: rgba(150, 205, 255, .12);
  --line-2: rgba(150, 205, 255, .22);
  --text: #f3f6fb;
  --muted: #9aa7bf;
  --dim: #6c7891;
  --orange: #ff8c1a;
  --orange-2: #ff6a00;
  --blue: #3aa0ff;
  --blue-2: #1d6fe0;
  --peach: #ffbe78;
  --sky: #96cdff;
  --green: #22c47a;
  --radius: 24px;
  --radius-sm: 16px;
  --gnb-h: 68px;
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--gnb-h) + 16px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 16px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding-inline: clamp(16px, 4vw, 48px); }

/* ---------- global nav ---------- */
.gnb {
  position: sticky; top: 0; z-index: 100;
  height: var(--gnb-h);
  background: rgba(7, 11, 20, .72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.gnb.scrolled { border-bottom-color: var(--line); background: rgba(7, 11, 20, .9); }
.gnb .container { height: 100%; display: flex; align-items: center; gap: 28px; }
.logo {
  font: 800 1.2rem/1 var(--font-head);
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
  display: flex; align-items: baseline; gap: .15em;
}
.logo .amp {
  background: linear-gradient(90deg, var(--orange), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo small { font: 600 .62rem var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-left: .6em; }
.gnb nav { display: flex; gap: 26px; margin-inline: auto; }
.gnb nav a {
  font: 600 .92rem var(--font-head);
  text-decoration: none;
  color: var(--text);
  opacity: .82;
  padding-block: 8px;
  position: relative;
}
.gnb nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.gnb nav a:hover { opacity: 1; }
.gnb nav a:hover::after { transform: scaleX(1); }
.city-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 16px;
  font: 600 .88rem var(--font-head);
  color: var(--sky);
  text-decoration: none;
  white-space: nowrap;
}
.city-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 140, 26, .18); }
.menu-btn { display: none; background: none; border: 0; padding: 8px; margin-left: auto; cursor: pointer; }
.menu-btn svg { width: 26px; height: 26px; }
@media (max-width: 960px) {
  .gnb nav {
    position: fixed; inset: var(--gnb-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(7, 11, 20, .97);
    border-bottom: 1px solid var(--line);
    padding: 8px clamp(16px, 4vw, 48px) 20px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s var(--ease);
  }
  .gnb nav a { padding-block: 14px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .gnb.open nav { transform: none; opacity: 1; pointer-events: auto; }
  .menu-btn { display: block; }
  .gnb .city-pill { margin-left: 0; }
}
@media (max-width: 520px) { .logo small { display: none; } .city-pill .label { display: none; } }

/* ---------- key visual carousel ---------- */
.kv {
  position: relative;
  height: min(88vh, 860px);
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.kv-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
}
.kv-slide.is-active { opacity: 1; visibility: visible; }
.kv-slide picture, .kv-slide img { position: absolute; inset: 0; width: 100%; height: 100%; }
.kv-slide img { object-fit: cover; object-position: var(--focus, 50% 50%); transform: scale(1.08); }
.kv-slide.is-active img { animation: kenburns 9s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.kv-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(7,11,20,.96) 0%, rgba(7,11,20,.55) 32%, rgba(7,11,20,0) 62%),
    linear-gradient(90deg, rgba(7,11,20,.7) 0%, rgba(7,11,20,0) 55%);
}
.kv-copy {
  position: absolute; z-index: 2;
  left: 0; right: 0; bottom: clamp(92px, 12vh, 140px);
}
.kv-copy .inner { max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 .8rem var(--font-head);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--peach);
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.kv h1, .kv h2.kv-title {
  font: 800 clamp(2.8rem, 7.4vw, 6.2rem)/.98 var(--font-head);
  letter-spacing: -.035em;
  margin: 0 0 20px;
}
.grad {
  background: linear-gradient(95deg, var(--orange) 10%, #ffb25e 45%, var(--blue) 95%);
  background: linear-gradient(95deg in oklch, var(--orange) 15%, var(--blue) 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kv p.lede { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: #d5dcea; margin: 0 0 30px; max-width: 34rem; }
.kv-slide .kv-copy > .container > .inner > * { opacity: 0; transform: translateY(18px); }
.kv-slide.is-active .kv-copy > .container > .inner > * { animation: rise .9s var(--ease) forwards; }
.kv-slide.is-active .kv-copy .inner > *:nth-child(2) { animation-delay: .12s; }
.kv-slide.is-active .kv-copy .inner > *:nth-child(3) { animation-delay: .24s; }
.kv-slide.is-active .kv-copy .inner > *:nth-child(4) { animation-delay: .36s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.kv-controls {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 32px;
}
.kv-controls .container { display: flex; align-items: center; gap: 18px; }
.kv-bars { display: flex; gap: 10px; }
.kv-bar {
  width: 56px; height: 4px; border-radius: 4px; border: 0; padding: 0;
  background: rgba(255, 255, 255, .25);
  overflow: hidden; cursor: pointer; position: relative;
}
.kv-bar::before { content: ""; position: absolute; inset: -12px 0; }
.kv-bar span { display: block; height: 100%; width: 0; background: #fff; border-radius: 4px; }
.kv-bar.is-active span { animation: fill var(--kv-time, 7s) linear forwards; }
.kv.paused .kv-bar.is-active span { animation-play-state: paused; }
.kv-bar.is-done span { width: 100%; }
@keyframes fill { to { width: 100%; } }
.kv-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s;
}
.kv-btn:hover { background: rgba(255, 255, 255, .22); }
.kv-btn svg { width: 16px; height: 16px; }
.kv-count { font: 600 .85rem var(--font-head); color: var(--muted); font-variant-numeric: tabular-nums; }
.kv-count b { color: #fff; }

/* ---------- buttons ---------- */
.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font: 600 .98rem var(--font-head);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #fff; color: #05070d; }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(255, 255, 255, .18); }
.btn-orange { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #1a0d00; }
.btn-orange:hover { box-shadow: 0 10px 30px rgba(255, 140, 26, .35); }
.btn-ghost { border-color: rgba(255, 255, 255, .7); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.btn-sm { min-height: 38px; padding: 0 18px; font-size: .86rem; }

/* ---------- category shortcuts ---------- */
.shortcuts { padding-block: 56px 24px; }
.shortcuts ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.shortcuts a {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-decoration: none;
  font: 600 .9rem var(--font-head);
  color: var(--text);
}
.shortcuts .ico {
  width: 88px; height: 88px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), background .35s, border-color .35s;
}
.shortcuts .ico svg { width: 36px; height: 36px; stroke: var(--sky); transition: stroke .35s; }
.shortcuts a:hover .ico { transform: translateY(-4px); background: var(--panel-2); border-color: var(--orange); }
.shortcuts a:hover .ico svg { stroke: var(--orange); }
@media (max-width: 760px) {
  .shortcuts ul { grid-template-columns: repeat(6, 76px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
  .shortcuts ul::-webkit-scrollbar { display: none; }
  .shortcuts li { scroll-snap-align: start; }
  .shortcuts .ico { width: 68px; height: 68px; }
  .shortcuts .ico svg { width: 28px; height: 28px; }
  .shortcuts a { font-size: .78rem; text-align: center; }
}

/* ---------- section headings ---------- */
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { text-align: center; max-width: 52rem; margin: 0 auto clamp(28px, 4vw, 44px); }
.section-head h2 {
  font: 800 clamp(2rem, 4.4vw, 3.4rem)/1.05 var(--font-head);
  letter-spacing: -.03em;
  margin: 0 0 14px;
}
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.note-sample {
  display: inline-flex; gap: 8px; align-items: center;
  margin-top: 16px;
  font: 600 .8rem var(--font-head);
  color: var(--peach);
  background: rgba(255, 190, 120, .08);
  border: 1px solid rgba(255, 190, 120, .25);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ---------- tabs ---------- */
.tabs {
  display: flex; justify-content: center; gap: 6px;
  margin: 0 auto 36px;
  overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  background: none; border: 0; cursor: pointer;
  font: 600 1rem var(--font-head);
  color: var(--muted);
  padding: 10px 18px 14px;
  position: relative;
  white-space: nowrap;
  transition: color .25s;
}
.tab::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 4px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0); transition: transform .35s var(--ease);
}
.tab[aria-selected="true"] { color: var(--text); }
.tab[aria-selected="true"]::after { transform: scaleX(1); }
.tab .n { font-size: .78rem; color: var(--dim); margin-left: 4px; }

/* ---------- event cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.ev {
  container-type: inline-size;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), border-color .3s, box-shadow .45s var(--ease);
}
.ev:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 24px 60px rgba(0, 0, 0, .45); }
.ev .poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 0% 0%, var(--c1) 0%, transparent 55%),
    radial-gradient(120% 90% at 100% 100%, var(--c2) 0%, transparent 60%),
    linear-gradient(135deg, #0d1424, #111b30);
}
.ev .poster::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 14px);
}
.ev[data-kind="music"] .poster { --c1: rgba(255, 140, 26, .75); --c2: rgba(255, 106, 0, .35); }
.ev[data-kind="social"] .poster { --c1: rgba(58, 160, 255, .75); --c2: rgba(29, 111, 224, .35); }
.ev[data-kind="both"] .poster { --c1: rgba(255, 140, 26, .7); --c2: rgba(58, 160, 255, .6); }
.ev .day {
  position: absolute; left: 22px; bottom: 16px;
  font: 800 4.4rem/.85 var(--font-head); letter-spacing: -.05em;
  color: rgba(255, 255, 255, .95);
}
.ev .day small { display: block; font: 700 .78rem var(--font-head); letter-spacing: .18em; margin-bottom: 10px; color: rgba(255,255,255,.85); }
.ev .glyph { position: absolute; right: 18px; top: 16px; width: 44px; height: 44px; stroke: rgba(255,255,255,.9); }
.ev .score {
  position: absolute; right: 18px; bottom: 18px;
  font: 700 .8rem var(--font-head);
  background: rgba(7, 11, 20, .6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 12px;
}
.ev .score b { color: var(--orange); }
.ev .body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ev h3 { font: 700 1.14rem/1.3 var(--font-head); margin: 0; letter-spacing: -.01em; }
.ev .where { color: var(--muted); font-size: .9rem; margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font: 700 .72rem var(--font-head); letter-spacing: .02em;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(150, 205, 255, .1); color: var(--sky);
}
.chip.price { background: rgba(255, 190, 120, .12); color: var(--peach); }
.chip.free { background: var(--green); color: #031a0d; }
.ev .why { margin: 2px 0 0; font-size: .92rem; color: #d8dfec; font-style: italic; }
.ev .why::before { content: "Why it's here: "; font-style: normal; font-weight: 600; color: var(--orange); }
.ev .foot { margin-top: auto; padding-top: 8px; display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--dim); }
@container (max-width: 280px) { .ev .day { font-size: 3.4rem; } }

/* ---------- feature banner ---------- */
.feature {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: clamp(520px, 62vw, 720px);
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.feature > picture, .feature > picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.feature > picture img { object-fit: cover; object-position: 40% 60%; z-index: -2; }
.feature::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(7,11,20,.95) 0%, rgba(7,11,20,.55) 45%, rgba(7,11,20,.1) 75%);
}
.feature .copy { padding: clamp(28px, 5vw, 64px); width: 100%; }
.feature h2 { font: 800 clamp(2.2rem, 5vw, 4rem)/1.02 var(--font-head); letter-spacing: -.035em; margin: 0 0 16px; max-width: 16ch; }
.feature p.lede { color: #d5dcea; font-size: 1.15rem; max-width: 36rem; margin: 0 0 32px; }
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promise {
  background: rgba(16, 24, 40, .6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.promise .num { font: 800 .8rem var(--font-head); letter-spacing: .16em; color: var(--orange); }
.promise h3 { font: 700 1.2rem var(--font-head); margin: 8px 0 6px; }
.promise p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 860px) { .promises { grid-template-columns: 1fr; } }

/* ---------- showcase strip (venues) ---------- */
.strip-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.strip-head h2 { font: 800 clamp(1.8rem, 3.6vw, 2.8rem)/1.05 var(--font-head); letter-spacing: -.03em; margin: 0; }
.strip-head p { margin: 8px 0 0; color: var(--muted); }
.strip-nav { display: flex; gap: 10px; }
.strip-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--panel); cursor: pointer; display: grid; place-items: center; }
.strip-nav button:hover { border-color: var(--orange); }
.strip-nav svg { width: 18px; height: 18px; }
.strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 23%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
@media (max-width: 760px) { .strip { grid-auto-columns: 78%; } }
.venue {
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background:
    radial-gradient(90% 60% at 50% 0%, var(--v1, rgba(255,140,26,.55)), transparent 70%),
    linear-gradient(180deg, #121c33, #0a1020);
  border: 1px solid var(--line);
}
.venue:nth-child(even) { --v1: rgba(58, 160, 255, .55); }
.venue .tag {
  position: absolute; top: 20px; left: 20px;
  font: 700 .72rem var(--font-head); letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(7,11,20,.55); border: 1px solid rgba(255,255,255,.18);
}
.venue .tag.fav { background: var(--orange); color: #1a0d00; border-color: var(--orange); }
.venue h3 { font: 800 1.7rem/1.05 var(--font-head); letter-spacing: -.03em; margin: 0 0 6px; }
.venue p { margin: 0; color: var(--muted); }
.venue .rings { position: absolute; inset: 0; pointer-events: none; opacity: .5; }

/* ---------- cities ---------- */
.cities { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, minmax(200px, auto)); gap: 18px; }
.city {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
  min-height: 200px;
}
.city.big { grid-row: span 2; min-height: 420px; }
.city.big > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 75% 55%; z-index: -2; transition: transform 1.2s var(--ease); }
.city.big::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7,11,20,.92), rgba(7,11,20,.1) 65%); }
.city.big:hover > img { transform: scale(1.04); }
.city .status { font: 700 .75rem var(--font-head); letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.city.big .status { color: var(--peach); }
.city h3 { font: 800 clamp(1.6rem, 3vw, 2.6rem)/1.05 var(--font-head); letter-spacing: -.03em; margin: 6px 0 0; }
.city.big h3 { font-size: clamp(2.4rem, 5vw, 4rem); }
.city p { color: var(--muted); margin: 8px 0 0; }
.city.soon { background: linear-gradient(160deg, #0f1728, #0b1120); }
@media (max-width: 860px) {
  .cities { grid-template-columns: 1fr 1fr; }
  .city.big { grid-column: span 2; grid-row: auto; }
}

/* ---------- launch band ---------- */
.band {
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(36px, 6vw, 72px);
  background:
    radial-gradient(80% 140% at 0% 0%, rgba(255,140,26,.45), transparent 60%),
    radial-gradient(80% 140% at 100% 100%, rgba(58,160,255,.45), transparent 60%),
    var(--panel);
  border: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.band h2 { font: 800 clamp(1.8rem, 4vw, 3rem)/1.05 var(--font-head); letter-spacing: -.03em; margin: 0 0 10px; }
.band p { margin: 0; color: #d5dcea; max-width: 36rem; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); margin-top: clamp(64px, 9vw, 120px); padding-block: 56px 36px; background: var(--ink-2); font-size: .9rem; }
.footer .cols { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer h4 { font: 700 .95rem var(--font-head); margin: 0 0 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }
.footer .about p { color: var(--muted); margin: 12px 0 0; max-width: 28rem; }
.footer .legal { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; color: var(--dim); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
@media (max-width: 760px) { .footer .cols { grid-template-columns: 1fr 1fr; } .footer .about { grid-column: span 2; } }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.cards .ev.reveal:nth-child(3n+2) { transition-delay: .08s; }
.cards .ev.reveal:nth-child(3n+3) { transition-delay: .16s; }

/* View Transitions: smooth card filtering where supported */
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .kv-slide img { transform: none; }
  .reveal { opacity: 1; transform: none; }
}
