/* ============================================================
   ENGEL TEAM — Klub Kickboxingu i Boksu
   Paleta: czerń / antracyt / biel + czerwony akcent
   ============================================================ */

:root {
  --bg: #0d0d0f;
  --bg-2: #15151a;
  --bg-3: #1d1d24;
  --surface: #1a1a20;
  --line: #2a2a33;
  --text: #f4f4f6;
  --text-dim: #a9a9b4;
  --text-muted: #74747f;
  --accent: #e11d2a;
  --accent-2: #ff3b3b;
  --accent-soft: rgba(225, 29, 42, 0.12);
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(225, 29, 42, 0.35);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(225, 29, 42, 0.5); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}
.site-header.scrolled {
  background: rgba(13, 13, 15, 0.94);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 42px; height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.brand-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.brand-text strong { color: var(--accent); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 9px 13px;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}
.main-nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.05); }
.main-nav .nav-cta {
  color: var(--white);
  background: var(--accent);
  margin-left: 8px;
}
.main-nav .nav-cta:hover { background: var(--accent-2); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero.jpg") center 30% / cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13,13,15,0.96) 0%, rgba(13,13,15,0.82) 45%, rgba(13,13,15,0.45) 100%),
    linear-gradient(0deg, rgba(13,13,15,0.95) 0%, rgba(13,13,15,0) 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 6px; }

.scroll-down {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.6rem;
  color: var(--text-dim);
  animation: bounce 1.8s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section-about { background: var(--bg-2); }
.section-offer { background: var(--bg); }
.section-why { background: var(--bg-2); }
.section-schedule { background: var(--bg); }
.section-gallery { background: var(--bg-2); }
.section-gear { background: var(--bg); }
.section-contact { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.section-intro { color: var(--text-dim); margin-top: 16px; font-size: 1.05rem; }
.subsection-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 56px 0 24px;
  text-align: center;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
}
.about-media-badge {
  position: absolute;
  bottom: -22px; right: -18px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.badge-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; line-height: 1; }
.badge-label { font-size: 0.82rem; line-height: 1.25; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }

.about-text .section-eyebrow { text-align: left; }
.about-text .section-title { text-align: left; margin-bottom: 22px; }
.lead {
  font-family: var(--font-head);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--white);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 26px;
  font-weight: 400;
}
.about-text p { color: var(--text-dim); margin-bottom: 18px; }
.about-text p strong { color: var(--text); }

.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.stats li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  text-align: center;
}
.stat-num { display: block; font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { display: block; font-size: 0.78rem; color: var(--text-dim); margin-top: 8px; line-height: 1.3; }

/* ---------- Cards grids ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow); }
.card-icon {
  font-size: 2rem;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border-radius: 12px;
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.card p { color: var(--text-dim); font-size: 0.96rem; }

.card-featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(225,29,42,0.08), var(--surface)); position: relative; }
.card-featured::before {
  content: "Najczęściej wybierane";
  position: absolute;
  top: -11px; left: 26px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Age pills */
.age-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.age-pill {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 30px;
  text-align: center;
  min-width: 120px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.age-pill:hover { border-color: var(--accent); transform: translateY(-3px); }
.age-num { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--white); }
.age-pill span:last-child { color: var(--text-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }

.offer-cta { text-align: center; margin-top: 48px; }

/* ---------- Schedule ---------- */
.schedule-box {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.schedule-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  background: var(--accent);
}
.schedule-icon { font-size: 3.4rem; flex-shrink: 0; }
.schedule-text h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.5rem; margin-bottom: 12px; }
.schedule-text p { color: var(--text-dim); margin-bottom: 22px; }
.schedule-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Wideo (główny film + lightbox) ---------- */
.section-video { background: var(--bg); }
.video-main { max-width: 960px; margin: 0 auto; }

.yt-facade {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #000;
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.3s ease; }
.yt-facade:hover img { transform: scale(1.04); opacity: 0.82; }
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(225, 29, 42, 0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}
.yt-facade:hover .yt-play { transform: translate(-50%, -50%) scale(1.08); background: var(--accent-2); }
.yt-play::before {
  content: "";
  display: block;
  width: 0; height: 0;
  border-left: 26px solid #fff;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 6px;
}
.yt-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.yt-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.video-grid-intro { text-align: center; margin: -8px auto 30px; max-width: 620px; }
.video-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.video-grid .yt-facade { flex: 1 1 230px; max-width: 280px; border-radius: var(--radius-sm); }
.video-grid .yt-play { width: 56px; height: 56px; }

/* Kafelek filmu z Facebooka — miniatura pionowa (Reels) + mała ikonka źródła */
.fb-tile img { object-position: center 18%; }
.fb-badge {
  position: absolute; top: 10px; left: 10px;
  width: 30px; height: 30px;
  border-radius: 7px;
  background: #1877f2; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.video-grid .yt-play::before {
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

/* Lightbox */
.video-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.video-modal[hidden] { display: none; }
.vm-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.86); backdrop-filter: blur(4px); }
.vm-dialog { position: relative; z-index: 1; width: 100%; max-width: 900px; }
.vm-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.vm-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vm-close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.vm-close:hover { border-color: var(--accent); color: var(--accent); }
.vm-yt {
  display: inline-block;
  margin-top: 16px;
  color: var(--text-dim);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}
.vm-yt:hover { color: var(--accent); }

/* ---------- Odchudzanie / zdrowe odżywianie ---------- */
.section-slim { background: var(--bg-2); }
.slim-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.slim-text .section-eyebrow { text-align: left; }
.slim-text .section-title { text-align: left; margin-bottom: 18px; }
.slim-text .lead { margin-bottom: 22px; }
.slim-text > p { color: var(--text-dim); margin-bottom: 22px; }
.slim-text > p strong { color: var(--text); }
.slim-points { list-style: none; display: grid; gap: 12px; margin: 0 0 30px; }
.slim-points li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-size: 1.02rem;
}
.slim-points li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.ba { display: flex; align-items: stretch; gap: 14px; }
.ba-item {
  position: relative;
  flex: 1;
  margin: 0;
  aspect-ratio: 3/4;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 12px, rgba(255,255,255,0.04) 12px 24px),
    var(--surface);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}
.ba-item-after { border-color: var(--accent); }
.ba-tag {
  margin: 14px;
  background: rgba(0,0,0,0.7);
  color: var(--text);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}
.ba-tag-after { background: var(--accent); color: var(--white); }
.ba-arrow {
  align-self: center;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
}
.ba-note { margin-top: 16px; color: var(--text-muted); font-size: 0.85rem; font-style: italic; text-align: center; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.g-item { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); margin: 0; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ---------- Media / artykuły ---------- */
.section-press { background: var(--bg); }
.press-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.press-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.press-item:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.press-source {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.press-title {
  font-family: var(--font-head);
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--text);
}
.press-arrow {
  margin-top: auto;
  color: var(--accent);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.contact-info .section-eyebrow,
.contact-info .section-title { text-align: left; }
.contact-info .section-intro { text-align: left; margin-bottom: 30px; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  font-size: 1.3rem;
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border-radius: 10px;
}
.ci-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.ci-value { display: inline-block; font-family: var(--font-head); font-size: 1.3rem; color: var(--text); }
a.ci-value:hover { color: var(--accent); }
.ci-note { display: block; font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.social-btn:hover { border-color: var(--accent); transform: translateY(-2px); }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.contact-card img { border-radius: var(--radius-sm); margin-bottom: 16px; width: 100%; }

/* ---------- Footer ---------- */
.site-footer { background: #08080a; border-top: 1px solid var(--line); padding-top: 56px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 10px; border: 1px solid var(--line); }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; max-width: 340px; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a {
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: color 0.18s ease;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom span { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Reveal animation (JS-gated: bez JS treść jest widoczna) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 440px; margin: 0 auto; }
  .about-text .section-eyebrow, .about-text .section-title { text-align: center; }
  .lead { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .slim-grid { grid-template-columns: 1fr; gap: 40px; }
  .slim-text .section-eyebrow, .slim-text .section-title { text-align: center; }
  .slim-media { max-width: 480px; margin: 0 auto; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(13, 13, 15, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .main-nav .nav-cta { margin: 14px 0 0; border-radius: var(--radius-sm); text-align: center; padding: 14px; border-bottom: none; }
  .nav-toggle { display: flex; }

  .section { padding: 72px 0; }
  .cards-3, .cards-4 { grid-template-columns: 1fr; }
  .press-list { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }

  .schedule-box { flex-direction: column; text-align: center; padding: 32px 24px; }
  .schedule-actions { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { justify-content: center; text-align: center; }

  .about-media-badge { right: 50%; transform: translateX(50%); bottom: -26px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .brand-text { font-size: 1.15rem; }
  .hero-actions .btn { width: 100%; }
}
