/* ===========================================================
   CLUB A — Sistema de design
   Paleta: magenta + ciano sobre fundo noturno
   Display: Bricolage Grotesque · Corpo: Inter
   =========================================================== */

:root {
  /* Cores base */
  --ink: #07060B;
  --ink-2: #0C0A14;
  --surface: #110E1A;
  --surface-2: #16121F;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Acentos */
  --magenta: #FF2D78;
  --cyan: #22E6E6;
  --gold: #E8C36B;
  --grad: linear-gradient(100deg, var(--magenta), var(--cyan));
  --grad-soft: linear-gradient(100deg, rgba(255,45,120,.18), rgba(34,230,230,.18));

  /* Texto */
  --text: #F4F1FB;
  --muted: #A79FBA;
  --muted-2: #6F6883;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;

  /* Tipografia */
  --font-display: "Bricolage Grotesque", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Atmosfera de fundo ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(70% 50% at 15% 0%, rgba(255,45,120,.16), transparent 60%),
    radial-gradient(60% 50% at 90% 10%, rgba(34,230,230,.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Utilitários ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { position: relative; z-index: 1; padding-block: clamp(72px, 10vw, 130px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad);
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.02; font-weight: 700; letter-spacing: -0.02em; }

.section-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  margin-top: 14px;
  max-width: 16ch;
}
.section-title .glow {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 56ch; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--grad);
  color: #0a0710;
  box-shadow: 0 8px 30px rgba(255,45,120,.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(255,45,120,.5); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--cyan); box-shadow: 0 0 0 1px var(--cyan), 0 12px 30px rgba(34,230,230,.18); }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7,6,11,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.brand img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  color: var(--muted);
  padding: 6px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; }
.nav-actions { display: flex; align-items: center; gap: 18px; }

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--line); }
.burger span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: .3s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: .3s; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 78px 0 auto 0;
  background: rgba(7,6,11,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 24px var(--gutter) 34px;
  display: grid;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: .3s var(--ease);
  z-index: 49;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a { padding: 14px 4px; font-size: 1.15rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ===========================================================
   EQUALIZER (elemento-assinatura)
   =========================================================== */
.eq { display: inline-flex; align-items: flex-end; gap: 4px; height: 24px; }
.eq span {
  width: 4px; height: 100%;
  background: var(--grad);
  border-radius: 4px;
  transform-origin: bottom;
  animation: eq 1.1s var(--ease) infinite alternate;
}
.eq span:nth-child(1){ animation-delay: -.2s; }
.eq span:nth-child(2){ animation-delay: -.5s; }
.eq span:nth-child(3){ animation-delay: -.1s; }
.eq span:nth-child(4){ animation-delay: -.7s; }
.eq span:nth-child(5){ animation-delay: -.35s; }
@keyframes eq { from { transform: scaleY(.25); } to { transform: scaleY(1); } }

/* Divisor de seção em barras */
.eq-divider { display: flex; align-items: flex-end; gap: 5px; height: 30px; justify-content: center; opacity: .5; }
.eq-divider span { width: 5px; background: var(--grad); border-radius: 4px; transform-origin: bottom; animation: eq 1.4s var(--ease) infinite alternate; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 78px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,6,11,.55) 0%, rgba(7,6,11,.4) 40%, var(--ink) 96%),
    radial-gradient(80% 80% at 70% 30%, transparent, rgba(7,6,11,.7));
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }

/* Hero centralizado com logo grande */
.hero-inner--center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-inner--center .hero-sub { margin-inline: auto; }
.hero-inner--center .hero-actions { justify-content: center; }
.hero-inner--center .hero-eq { justify-content: center; }
.hero-logo {
  width: min(300px, 82vw);
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 40px rgba(255,45,120,.35)) drop-shadow(0 0 80px rgba(34,230,230,.25));
  animation: logoIn 1s var(--ease) both;
}
@keyframes logoIn { from { opacity: 0; transform: translateY(18px) scale(.94); } to { opacity: 1; transform: none; } }
.hero h1 {
  font-size: clamp(2.8rem, 8.5vw, 6.4rem);
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 22px 0 0;
}
.hero h1 .glow {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 26px; font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--muted); max-width: 44ch; font-weight: 400; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-eq { margin-top: 54px; height: 40px; gap: 6px; }
.hero-eq span { width: 6px; }

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2);
}
.scroll-hint i { width: 1px; height: 38px; background: linear-gradient(var(--cyan), transparent); animation: drop 1.8s ease-in-out infinite; }
@keyframes drop { 0%,100%{ opacity:.3; transform: scaleY(.6); } 50%{ opacity:1; transform: scaleY(1); } }

/* ===========================================================
   STATS
   =========================================================== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat { padding: 48px 24px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: var(--line); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { margin-top: 12px; color: var(--muted); font-size: .92rem; letter-spacing: .03em; }

/* ===========================================================
   SOBRE
   =========================================================== */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-copy p { color: var(--muted); margin-top: 18px; }
.about-copy p strong { color: var(--text); font-weight: 600; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
  padding: 8px 16px; border-radius: 100px; font-size: .85rem; font-weight: 500;
  border: 1px solid var(--line); background: rgba(255,255,255,.02); color: var(--muted);
}
.about-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.about-visual:hover img { transform: scale(1.05); }
.about-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,6,11,.4)); }

/* ===========================================================
   AMBIENTES
   =========================================================== */
.rooms-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 50px; }
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  isolation: isolate;
}
.room img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s var(--ease); }
.room::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,6,11,.1) 0%, rgba(7,6,11,.55) 55%, rgba(7,6,11,.92) 100%); }
.room:hover img { transform: scale(1.07); }
.room-cap { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
.room h3 { font-size: 1.7rem; margin-top: 8px; }
.room p { color: var(--muted); margin-top: 8px; font-size: .95rem; }
.room-pill { position: absolute; top: 20px; right: 20px; padding: 7px 14px; border-radius: 100px; font-size: .8rem; font-weight: 600; background: rgba(7,6,11,.6); backdrop-filter: blur(8px); border: 1px solid var(--line-strong); }

/* ===========================================================
   GALERIA (grid)
   =========================================================== */
.gallery-grid { columns: 4; column-gap: 14px; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 14px; border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; border: 1px solid var(--line); }
.gallery-grid .g-item img { width: 100%; transition: transform .6s var(--ease), filter .4s; filter: saturate(.92); }
.gallery-grid .g-item::after { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .35s; }
.gallery-grid .g-item:hover img { transform: scale(1.06); filter: saturate(1.15); }
.gallery-grid .g-item:hover::after { opacity: 1; }

/* ===========================================================
   INFRAESTRUTURA
   =========================================================== */
.infra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.infra-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.infra-card:hover { transform: translateY(-5px); border-color: var(--line-strong); background: var(--surface-2); }
.infra-ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--grad-soft); border: 1px solid var(--line-strong);
}
.infra-ico svg { width: 22px; height: 22px; stroke: var(--cyan); }
.infra-card h4 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; }
.infra-card p { color: var(--muted); font-size: .9rem; margin-top: 6px; }

/* ===========================================================
   TIPOS DE EVENTO
   =========================================================== */
.events-band { background: var(--ink-2); border-block: 1px solid var(--line); }
.event-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.event-item {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface);
  transition: transform .3s var(--ease), border-color .3s;
}
.event-item:hover { transform: translateX(6px); border-color: var(--magenta); }
.event-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--muted-2); font-weight: 700; min-width: 34px; }
.event-name { font-weight: 600; font-size: 1.05rem; }

/* ===========================================================
   CTA FINAL / CONTATO
   =========================================================== */
.contact-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(255,45,120,.16), transparent 55%),
    radial-gradient(90% 120% at 100% 100%, rgba(34,230,230,.16), transparent 55%),
    var(--surface);
  padding: clamp(40px, 6vw, 72px);
}
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.contact-card h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.contact-card .lede { margin-top: 18px; }
.contact-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.contact-info { display: grid; gap: 18px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-ico { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line-strong); }
.info-ico svg { width: 20px; height: 20px; stroke: var(--cyan); }
.info-row .label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.info-row .value { font-weight: 500; margin-top: 3px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { border-top: 1px solid var(--line); background: var(--ink-2); position: relative; z-index: 1; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-block: 56px; }
.footer-brand img { height: 46px; }
.footer-brand p { color: var(--muted); margin-top: 16px; max-width: 34ch; font-size: .92rem; }
.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); padding: 5px 0; font-size: .94rem; transition: color .25s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .85rem; }

/* ===========================================================
   PÁGINA: HUB DE FOTOS (álbuns)
   =========================================================== */
.page-hero { padding: 150px 0 60px; text-align: center; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
.page-hero h1 .glow { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero .lede { margin: 22px auto 0; text-align: center; }

.albums { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.album {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px; border: 1px solid var(--line); isolation: isolate;
}
.album img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s var(--ease); }
.album::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,6,11,.15), rgba(7,6,11,.9)); }
.album:hover img { transform: scale(1.06); }
.album-date { font-size: .82rem; letter-spacing: .1em; color: var(--cyan); font-weight: 600; }
.album h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 10px 0 6px; }
.album p { color: var(--muted); }
.album .arrow { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text); }
.album .arrow svg { width: 20px; height: 20px; transition: transform .3s var(--ease); }
.album:hover .arrow svg { transform: translateX(6px); }

/* ===========================================================
   LIGHTBOX
   =========================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5,4,9,.94);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s;
  padding: 30px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-strong);
  display: grid; place-items: center; transition: background .25s, border-color .25s;
}
.lb-btn:hover { background: rgba(255,255,255,.12); border-color: var(--cyan); }
.lb-btn svg { width: 24px; height: 24px; stroke: var(--text); }
.lb-prev { left: 22px; } .lb-next { right: 22px; }
.lb-close { top: 22px; right: 22px; transform: none; }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .9rem; letter-spacing: .05em; }

/* ===========================================================
   REVEAL (scroll)
   =========================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ===========================================================
   WHATSAPP FLUTUANTE
   =========================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(255,45,120,.4);
  transition: transform .3s var(--ease);
  animation: pulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #0a0710; }
@keyframes pulse { 0%,100%{ box-shadow: 0 10px 30px rgba(255,45,120,.4); } 50%{ box-shadow: 0 10px 44px rgba(34,230,230,.5); } }

/* ===========================================================
   RESPONSIVO
   =========================================================== */
@media (max-width: 1024px) {
  .gallery-grid { columns: 3; }
  .infra-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms { grid-template-columns: 1fr; }
  .room { min-height: 300px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 16/10; max-height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-list { grid-template-columns: 1fr 1fr; }
  .albums { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat { border-top: 1px solid var(--line); }
  .stats-grid .stat:first-child { border-top: none; }
  .gallery-grid { columns: 2; column-gap: 10px; }
  .gallery-grid .g-item { margin-bottom: 10px; }
  .infra-grid { grid-template-columns: 1fr; }
  .event-list { grid-template-columns: 1fr; }
  .footer-nav { gap: 36px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 46px; height: 46px; }
}

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