/* ===========================================================
   Club Napoli Dublin — landing page
   Palette: Napoli azure + centenary gold over deep navy
   =========================================================== */

:root {
  --azure: #1ca7ec;
  --azure-deep: #0a6fb0;
  --azure-soft: #5fd0ff;
  --gold: #f5c518;
  --gold-soft: #ffe08a;
  --ink: #06121f;
  --ink-2: #0a2740;
  --white: #f4f9ff;
  --muted: rgba(244, 249, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  --radius: 20px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--white);
  background: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Animated background ---- */
.aurora,
.stars {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.aurora {
  background:
    radial-gradient(48% 42% at 18% 22%, rgba(28, 167, 236, 0.35), transparent 60%),
    radial-gradient(42% 46% at 82% 18%, rgba(245, 197, 24, 0.16), transparent 60%),
    radial-gradient(60% 50% at 50% 100%, rgba(10, 111, 176, 0.4), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink) 100%);
  animation: auroraShift 18s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0%   { filter: hue-rotate(0deg) saturate(1);   transform: scale(1); }
  100% { filter: hue-rotate(-12deg) saturate(1.1); transform: scale(1.06); }
}

.stars {
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 75% 15%, #fff, transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 60% 45%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 12% 85%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 55% 90%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 30% 10%, rgba(255,255,255,0.8), transparent);
  background-size: 600px 600px;
  background-repeat: repeat;
  opacity: 0.5;
  animation: twinkle 8s ease-in-out infinite, drift 120s linear infinite;
  will-change: transform, opacity;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.7; }
}
@keyframes drift {
  from { background-position: 0 0; }
  to   { background-position: 600px 600px; }
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
  background: linear-gradient(180deg, rgba(6,18,31,0.55), transparent);
}

.nav.scrolled {
  background: rgba(6, 18, 31, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.8);
  padding: 12px 32px;
}

.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 38px; height: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.nav__name { font-weight: 800; letter-spacing: .5px; font-size: 1.05rem; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: .92rem; font-weight: 600; letter-spacing: .3px;
  color: var(--muted); position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--azure-soft); border-radius: 2px; transition: width .3s var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__cta { padding: 10px 20px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .3px;
  cursor: pointer; border: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn i { font-size: .95em; }
.btn--solid {
  color: var(--ink);
  background: linear-gradient(135deg, var(--azure-soft), var(--azure));
  box-shadow: 0 10px 30px -10px rgba(28, 167, 236, 0.8);
}
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 16px 38px -10px rgba(28, 167, 236, 0.95); }
.btn--ghost {
  color: var(--white);
  background: transparent;
  border: 1.5px solid var(--line);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--azure-soft); background: rgba(28, 167, 236, 0.12); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}
.hero__inner { max-width: 760px; }

.hero__emblem { position: relative; display: inline-block; margin-bottom: 28px; }
.hero__logo {
  width: 160px; height: auto; margin: 0 auto;
  filter: drop-shadow(0 0 28px rgba(28, 167, 236, 0.55)) drop-shadow(0 10px 24px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero__badge {
  position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -.5px;
  background: linear-gradient(180deg, #ffffff 0%, var(--azure-soft) 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__tagline {
  margin: 16px auto 34px;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--muted); font-weight: 500;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.hero__scroll { margin-top: 70px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); }
.hero__scrolllabel { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; }
.mouse {
  width: 26px; height: 42px; border: 2px solid var(--muted); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.wheel { width: 4px; height: 9px; background: var(--azure-soft); border-radius: 4px; animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(10px); } }

/* ---- Section base ---- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 100px 24px; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--azure-soft);
  padding: 6px 14px; border: 1px solid rgba(28,167,236,0.4); border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--gold); border-color: rgba(245,197,24,0.4); }
.section__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.15;
}
.section__title--light { color: var(--white); }
.section__sub { margin-top: 14px; color: var(--muted); }

/* ---- About ---- */
.about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.about__panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  position: relative; overflow: hidden;
}
.about__panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% -20%, rgba(28, 167, 236, 0.18), transparent 60%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.about__panel:hover { transform: translateY(-8px); background: var(--card-strong); border-color: rgba(28,167,236,0.4); }
.about__panel:hover::before { opacity: 1; }
.about__icon {
  width: 96px; height: 96px; margin: 0 auto 22px;
  display: grid; place-items: center; font-size: 2rem; color: var(--ink);
  background: linear-gradient(135deg, var(--azure-soft), var(--azure));
  border-radius: 50%;
  box-shadow: 0 10px 26px -12px rgba(28, 167, 236, 0.9);
}
.about__emblem {
  width: 96px; height: 96px; margin: 0 auto 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.about__logo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}
.about__panel h3 { font-size: 1.2rem; margin-bottom: 10px; position: relative; z-index: 1; }
.about__panel p { color: var(--muted); font-size: .95rem; position: relative; z-index: 1; }

/* ---- Gallery ---- */
.gallery__slider { max-width: 900px; margin: 0 auto; }
.gallery__viewport {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--card);
}
.gallery__track {
  display: flex;
  transition: transform .8s var(--ease);
  will-change: transform;
}
.gallery__slide {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  flex: 0 0 100%;
  background: linear-gradient(160deg, #10283f, #0a1726);
}
.gallery__slide figure {
  width: 100%; height: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.gallery__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
/* LiveCaption placed over the slide */
.gallery__caption {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
  font-size: .95rem; font-weight: 600;
  color: var(--white);
  background: rgba(6, 18, 31, 0.72);
  border-left: 3px solid var(--gold);
  padding: 8px 14px;
  border-radius: 8px;
  max-width: 86%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gallery__controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.gallery__btn {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
  cursor: pointer;
  color: var(--white);
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.gallery__btn:hover { transform: translateY(-3px); background: var(--azure); border-color: var(--azure-soft); color: var(--ink); }
.gallery__btn:active { transform: translateY(-1px); }
.gallery__dots {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery__dots::-webkit-scrollbar { display: none; }
.gallery__dot {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  width: 9px; height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.28);
  transition: background .3s var(--ease), width .3s var(--ease), height .3s var(--ease);
}
.gallery__dot:hover { background: rgba(255, 255, 255, 0.55); }
.gallery__dot[aria-current="true"] { background: var(--gold); width: 12px; height: 12px; }
.gallery__more { margin-top: 46px; text-align: center; }
.gallery__more p { color: var(--muted); margin-bottom: 18px; }

/* ---- Gallery page (gallery.html) ---- */
.gallery__section { margin-bottom: 58px; }
.gallery__sections .gallery__section:last-child { margin-bottom: 0; }
.gallery__section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem; font-weight: 700;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.gallery__section-title::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--azure));
  flex-shrink: 0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-height: 640px;
  overflow-y: auto;
  overscroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 14px 10px 2px;
  margin: -10px -14px -10px -2px;
  scrollbar-width: thin;
  scrollbar-color: var(--azure-soft) transparent;
}
.gallery__grid::-webkit-scrollbar { width: 8px; }
.gallery__grid::-webkit-scrollbar-track { background: transparent; }
.gallery__grid::-webkit-scrollbar-thumb { background: var(--card-strong); border-radius: 8px; }
.gallery__grid::-webkit-scrollbar-thumb:hover { background: var(--azure-soft); }
.gallery__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #10283f, #0a1726);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  box-shadow: 0 14px 34px -20px rgba(0, 0, 0, 0.8);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.gallery__card:hover { transform: translateY(-6px); border-color: rgba(28, 167, 236, 0.45); }
.gallery__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__card:hover img { transform: scale(1.06); }
.gallery__card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 16px 12px;
  font-size: .85rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(6, 18, 31, 0.92));
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: rgba(4, 12, 22, 0.94);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: min(92vw, 1200px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
  opacity: 1;
  transform: scale(1);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.lightbox__img.is-switching { opacity: 0; transform: scale(.97); }
.lightbox__caption {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  padding: 8px 16px; border-radius: 8px;
  background: rgba(6, 18, 31, 0.8); border-left: 3px solid var(--gold);
  max-width: 86%; color: var(--white);
}
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  color: var(--white); background: var(--card-strong); border: 1px solid var(--line);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lightbox__btn:hover { background: var(--azure); color: var(--ink); }
.lightbox__prev { left: 22px; }
.lightbox__next { right: 22px; }
.lightbox__close {
  position: absolute; top: 22px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  color: var(--white); background: var(--card-strong); border: 1px solid var(--line);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lightbox__close:hover { background: var(--gold); color: var(--ink); }

@media (max-width: 920px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); max-height: 560px; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; max-height: 60vh; }
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
}

/* ---- Venues ---- */
.venues__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.venue {
  display: block;
  text-align: center;
  color: inherit;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 34px;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  cursor: pointer;
}
.venue:hover { transform: translateY(-8px); background: var(--card-strong); border-color: rgba(28,167,236,0.4); }
.venue:focus-visible { outline: 2px solid rgba(28,167,236,0.6); outline-offset: 2px; }
.venue__tile {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
  overflow: hidden;
}
.venue__logo {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.venue__logo--up { transform: translateY(-5%); }
.venue h3 { font-size: 1.15rem; margin-bottom: 8px; }
.venue p { color: var(--muted); font-size: .92rem; }

/* ---- App ---- */
.app__card {
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 50px;
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(28,167,236,0.25), transparent 55%),
    linear-gradient(160deg, rgba(8,30,54,0.9), rgba(4,16,30,0.92));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 60px 56px;
  box-shadow: var(--shadow);
}
.app__lead { color: var(--muted); margin: 16px 0 30px; max-width: 460px; }
.app__badges { display: flex; flex-wrap: wrap; gap: 16px; }

.app-badge {
  display: block; height: 56px; width: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 26px -12px rgba(0,0,0,0.7);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.app__badges a:hover .app-badge {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px -12px rgba(0,0,0,0.85);
}

/* App phone mockup */
.app__art { display: flex; justify-content: center; }
.phone {
  width: 230px; height: 460px;
  border-radius: 38px;
  background: linear-gradient(160deg, #0e2238, #05121f);
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.8), inset 0 0 0 8px rgba(0,0,0,0.4);
  padding: 14px;
  position: relative;
  animation: floatTilt 7s ease-in-out infinite;
}
@keyframes floatTilt {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-10px); }
}
.phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 90px; height: 16px; background: #05121f; border-radius: 0 0 14px 14px; z-index: 2; }
.phone__screen {
  height: 100%; border-radius: 26px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, rgba(28,167,236,0.3), transparent 55%), linear-gradient(180deg, #08243f, #04101f);
  display: flex; flex-direction: column; align-items: center; padding: 46px 18px 20px; gap: 14px;
}
.phone__logo { width: 88px; filter: drop-shadow(0 0 16px rgba(28,167,236,0.6)); }
.phone__line { width: 100%; height: 10px; border-radius: 5px; background: rgba(255,255,255,0.18); }
.phone__line--short { width: 60%; }
.phone__chip {
  font-size: .72rem; font-weight: 600; color: var(--ink);
  background: linear-gradient(135deg, var(--azure-soft), var(--azure));
  padding: 8px 14px; border-radius: 10px;
}
.phone__chip--ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid var(--line); }

/* ---- Connect ---- */
.connect__row { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; max-width: 760px; margin: 0 auto; }
.social {
  flex: 1 1 280px; max-width: 340px;
  display: flex; align-items: center; gap: 18px;
  padding: 24px 26px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.social:hover { transform: translateY(-6px); background: var(--card-strong); border-color: rgba(28,167,236,0.45); }
.social__icon { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; color: #fff; }
.social__icon--fb { background: linear-gradient(135deg, #1877f2, #0a5bc4); }
.social__icon--ig { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
.social__icon--maps { background: linear-gradient(135deg, #ea4335, #fbbc04); }
.social__body { display: flex; flex-direction: column; line-height: 1.3; }
.social__body strong { font-size: 1.05rem; }
.social__body small { color: var(--muted); font-size: .82rem; }
.social__arrow { margin-left: auto; color: var(--muted); transition: transform .3s var(--ease), color .3s var(--ease); }
.social:hover .social__arrow { transform: translateX(4px); color: var(--azure-soft); }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--line); background: rgba(4,12,22,0.7); padding: 50px 32px 30px; margin-top: 40px; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo { width: 48px; }
.footer__name { display: block; font-weight: 800; font-size: 1.1rem; }
.footer__motto { color: var(--muted); font-size: .9rem; }
.footer__colinks { display: flex; gap: 14px; }
.footer__colinks a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line); color: var(--white);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.footer__colinks a:hover { transform: translateY(-3px); background: var(--azure); color: var(--ink); }
.footer__bottom { max-width: var(--maxw); margin: 34px auto 0; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; color: var(--muted); font-size: .84rem; }
.footer__centenario { color: var(--gold); font-weight: 600; letter-spacing: .5px; }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Responsive ---- */
@media (max-width: 920px) {
  .app__card { grid-template-columns: 1fr; padding: 40px 30px; gap: 40px; }
  .about__grid { grid-template-columns: 1fr; }
  .venues__grid { grid-template-columns: 1fr; }
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 60px 30px; gap: 22px;
    background: rgba(6,18,31,0.96); backdrop-filter: blur(16px);
    transform: translateX(110%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.9);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { font-size: 1.2rem; }
  .nav__cta { width: 100%; justify-content: center; }
  .nav__toggle { display: flex; }
}

@media (max-width: 560px) {
  .section { padding: 70px 18px; }
  .hero { padding: 110px 18px 60px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .app__card { padding: 34px 22px; }
  .phone { width: 200px; height: 400px; }
}
