/* ============================================================
   Champion Digital Media — Styles
   ============================================================
   Sections:
   1. Variables & Reset
   2. Nav
   3. Hero
   4. About
   5. Clients
   6. Reel
   7. Jump To
   8. Testimonials
   9. CTA
   10. Footer
   11. Modals (Video + Contact)
   12. Mobile Nav
   13. Animations
   14. Fixed-Width Scaling
   15. Accessibility & Reduced Motion
   ============================================================ */

/* ══ 1. VARIABLES & RESET ══ */
:root {
  --yellow: #FF9900;
  --yellow-hover: #FFB033;
  --pale: #F7F3E9;
  --dark: #000000;
  --dark-gray: #141414;
  --dark-mid: #0E0E0E;
  --blue: #005686;
  --white: #FFFFFF;
  --gray: #888880;
  --font-display: 'podium-sharp-variable', sans-serif;
  --font-body: 'Azeret Mono', monospace;
  --highlight: #F9AC24;
  --nav-height: 56px;
  --page-padding: 60px;
  --content-max: 1100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
button { cursor: pointer; }

/* ══ 2. NAV ══ */
header nav {
  position: fixed; top: 0; left: 0; width: 1440px; transform-origin: top left;
  height: var(--nav-height); display: flex; align-items: center;
  justify-content: space-between; padding: 0 36px; z-index: 1000;
  background: var(--pale);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 20px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; color: var(--dark-gray);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--dark); }
.nav-links a.active {
  color: var(--dark); font-weight: 700;
  text-decoration: none; position: relative;
  isolation: isolate;
}
.nav-links a.active::after {
  content: ''; position: absolute;
  left: -4%; top: 5%; width: 108%; height: 90%;
  background: url("../assets/images/brush-stroke.svg") center/100% 100% no-repeat;
  z-index: -1;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  z-index: 1001; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active { z-index: 1001; }
.hamburger.active span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ 3. HERO ══ */
.hero {
  position: relative; aspect-ratio: 2048 / 813; width: 100%;
  overflow: hidden; margin-top: var(--nav-height); background: #000;
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center bottom;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.0) 30%,
    rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.85) 100%);
}
.hero-content {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, calc(-50% - 60px));
  z-index: 2; text-align: center;
}
.hero-h1 {
  font-family: var(--font-display); font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 400; font-style: italic; font-variation-settings: "wdth" 100, "wght" 400;
  text-transform: uppercase; line-height: 0.95; color: var(--dark-gray); letter-spacing: 2px;
  white-space: nowrap;
}
.hero-h1 .line2 { display: block; }
.hero-h1 .move-wrap {
  position: relative; display: inline-block;
  font-weight: 700; font-variation-settings: "wdth" 100, "wght" 700;
  color: var(--dark-gray);
}
.hero-h1 .move-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130%; height: auto; pointer-events: none; z-index: -1;
}
.hero-subtext {
  margin-top: 16px; font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 400;
  color: var(--dark-gray); letter-spacing: 0.5px; line-height: 1.7;
  text-transform: uppercase;
}
.btn-reel {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  padding: 9px 24px; background: var(--blue);
  border: none; border-radius: 24px; color: var(--white);
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: all 0.3s;
}
.btn-reel:hover,
.btn-reel:focus-visible { background: #006da8; }

/* ══ 4. ABOUT ══ */
.about {
  position: relative; color: var(--white);
  padding: 60px 44px 48px;
  background: url("../assets/images/bg-about.jpg") center/cover no-repeat;
  background-color: #0a0a0a;
}
.about-inner { max-width: 1040px; margin: 0 auto; position: relative; z-index: 1; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: start;
}
.about-text p {
  font-family: var(--font-body); font-size: 0.72rem; line-height: 1.9;
  color: var(--pale); margin-bottom: 12px; font-weight: 400;
  text-transform: uppercase;
}
.about-text .highlight { color: #F9AC24; font-weight: 600; }
.about-right h3 {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 400;
  font-style: italic; font-variation-settings: "wdth" 100, "wght" 400;
  text-transform: uppercase; margin-bottom: 14px; color: var(--pale); letter-spacing: 1px;
}
.about-right h3 .accent {
  color: var(--yellow); font-weight: 700;
  font-variation-settings: "wdth" 100, "wght" 700;
}
.service-list { list-style: none; margin-bottom: 40px; }
.service-list li {
  font-family: var(--font-body); font-size: 0.72rem;
  color: var(--pale); padding: 7px 0 7px 20px;
  position: relative; letter-spacing: 0.3px; text-transform: uppercase;
}
.service-list li::before {
  content: '›'; position: absolute; left: 0; color: var(--yellow); font-weight: 700;
}
.about-cta { text-align: center; margin-top: 36px; }
.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 30px; background: var(--yellow); color: var(--white);
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 28px; cursor: pointer; transition: background 0.3s;
}
.btn-pill:hover,
.btn-pill:focus-visible { background: var(--yellow-hover); }

/* ══ 5. CLIENTS ══ */
.clients {
  position: relative; padding: 28px 44px 52px; text-align: center;
  background: url("../assets/images/bg-clients.jpg") center bottom/cover no-repeat;
  background-color: #0a0a0a;
}
.clients img { max-width: 780px; width: 100%; height: auto; }

/* ══ 6. REEL ══ */
.reel {
  position: relative; aspect-ratio: 1920 / 760; width: 100%;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: #000;
}
.reel video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.reel-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.reel::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.reel-content {
  position: relative; z-index: 2; width: 100%; display: flex; align-items: center;
}
.reel-play-center {
  width: 100%; display: flex; justify-content: center;
}
.reel-content h2 {
  position: absolute; left: calc((100% - 1100px) / 2);
  font-family: var(--font-display); font-size: 3.5rem;
  font-weight: 400; font-style: italic; font-variation-settings: "wdth" 100, "wght" 400;
  text-transform: uppercase; color: var(--white); letter-spacing: 2px;
}
.reel-content h2 .accent {
  color: var(--yellow); font-weight: 700;
  font-variation-settings: "wdth" 100, "wght" 700;
}
.play-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 22px; background: var(--blue);
  border: none; border-radius: 20px;
  color: var(--white); font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.play-btn:hover,
.play-btn:focus-visible { background: #006da8; }
.play-btn svg { width: 12px; height: 12px; fill: currentColor; }

/* ══ 7. JUMP TO ══ */
.jump-to { background: var(--dark); text-align: center; padding: 68px 0 80px; }
.jump-headline-img { max-width: 320px; width: 50%; height: auto; margin: 0 auto 32px; }

.jump-links {
  display: flex; flex-direction: column; gap: 10px;
  padding: 0 40px; box-sizing: border-box;
}
.jump-row {
  display: flex; align-items: stretch; text-decoration: none;
}
.jump-row .jump-text {
  font-family: var(--font-display); font-size: 9rem;
  font-weight: 700; font-style: italic; font-variation-settings: "wdth" 100, "wght" 700;
  text-transform: uppercase; letter-spacing: 2px; line-height: 1;
  color: var(--pale); white-space: nowrap;
  display: flex; align-items: center;
  position: relative; z-index: 2;
  transition: color 0.3s;
  flex-shrink: 0;
}
.jump-row:hover .jump-text,
.jump-row:focus-visible .jump-text { color: var(--yellow); }
.jump-row .jump-vid {
  flex: 1; overflow: hidden; position: relative; z-index: 1;
  align-self: center; height: 101px;
}
.jump-row .jump-vid video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.jump-cta { margin-top: 48px; text-align: center; }
.jump-cta .contact-btn-svg,
.about-cta .contact-btn-svg { max-width: 260px; height: auto; cursor: pointer; transition: opacity 0.3s; }
.jump-cta .contact-btn-svg:hover,
.about-cta .contact-btn-svg:hover { opacity: 0.85; }

/* ══ 8. TESTIMONIALS ══ */
.testimonials {
  padding: 64px 60px 72px; overflow: hidden;
  background: url("../assets/images/bg-testimonials.jpg") center/cover no-repeat;
  background-color: var(--pale);
}
.test-header {
  display: flex; align-items: baseline; justify-content: space-between;
  max-width: 1100px; margin: 0 auto 40px; flex-wrap: wrap; gap: 14px;
}
.test-header h2 {
  font-family: var(--font-display); font-size: 3.5rem;
  font-weight: 700; font-style: italic; font-variation-settings: "wdth" 100, "wght" 700;
  text-transform: uppercase; color: var(--dark-gray); letter-spacing: 2px;
}
.test-carousel-wrap { max-width: 1100px; margin: 0 auto; position: relative; }
.test-carousel { overflow: hidden; }
.test-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.test-slide { min-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.test-card { display: flex; gap: 20px; align-items: flex-start; }
.test-card-left { display: flex; flex-direction: column; align-items: flex-start; min-width: 110px; }
.test-photo { width: 110px; height: 110px; object-fit: cover; filter: grayscale(100%); margin-bottom: 10px; }
.test-author {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  font-variation-settings: "wdth" 100, "wght" 700;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark-gray);
  text-align: left; line-height: 1.3;
}
.test-role {
  font-family: var(--font-body); font-size: 0.55rem; color: var(--dark-gray); font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.3px; text-align: left; line-height: 1.4;
}
.test-quote {
  font-family: var(--font-body); font-size: 0.68rem; line-height: 1.75;
  color: #444; flex: 1;
}
.carousel-arrows {
  position: absolute; top: 50%; left: -48px; right: -48px;
  display: flex; justify-content: space-between;
  transform: translateY(-50%); pointer-events: none; z-index: 5;
}
.carousel-arrow {
  width: 32px; height: 32px; background: none;
  border: none; color: #999;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: all 0.3s; pointer-events: all;
}
.carousel-arrow:hover,
.carousel-arrow:focus-visible { opacity: 0.6; }
.carousel-arrow img { width: 32px; height: auto; }

/* ══ 9. CTA ══ */
.cta {
  position: relative; aspect-ratio: 2048 / 813; width: 100%; display: flex; align-items: flex-start;
  background: url("../assets/images/bg-cta.jpg") center/cover no-repeat;
}
.cta-overlay { display: none; }
.cta-content {
  position: relative; z-index: 2; padding: 48px 0;
  max-width: 1040px; width: 100%;
  margin-left: max(24px, calc((100% - 1040px) / 2 - 20px));
}
.cta-content h2 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400; font-style: italic; font-variation-settings: "wdth" 100, "wght" 400;
  text-transform: uppercase; line-height: 0.95;
  color: var(--dark-gray); margin-bottom: 22px; letter-spacing: 2px;
}
.cta-content h2 strong {
  display: block; font-weight: 700;
  font-variation-settings: "wdth" 100, "wght" 700;
}

/* ══ 10. FOOTER ══ */
footer {
  background: var(--dark-mid); padding: 80px 80px 40px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 50px;
  align-items: start;
}
.footer-logo { margin-bottom: 28px; text-decoration: none; display: block; }
.footer-logo img { width: 260px; height: auto; }
.footer-tagline {
  font-family: var(--font-body); font-size: 0.78rem; color: var(--pale);
  line-height: 1.8; max-width: 320px; opacity: 0.7;
}
.footer-links {
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-end;
}
.footer-links a {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--pale);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--yellow); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 24px;
  font-family: var(--font-body); font-size: 0.65rem;
  color: var(--pale); text-align: center; opacity: 0.4;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ══ 11. MODALS ══ */
.modal {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.94); align-items: center;
  justify-content: center; backdrop-filter: blur(6px);
}
.modal.active { display: flex; }
.modal-close {
  position: absolute; top: 14px; right: 18px; background: none;
  border: none; color: var(--gray); font-size: 1.3rem;
  cursor: pointer; transition: color 0.3s;
}
.modal-close:hover,
.modal-close:focus-visible { color: var(--yellow); }
.video-inner { width: 80%; max-width: 960px; aspect-ratio: 16/9; position: relative; }
.video-inner iframe { width: 100%; height: 100%; border: none; }
.video-inner .modal-close { top: -38px; color: var(--white); }
.contact-box {
  background: var(--dark); padding: 40px 36px; max-width: 540px;
  width: 92%; position: relative; border: 1px solid rgba(255,255,255,0.06);
}
.contact-box h3 {
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; color: var(--pale); margin-bottom: 26px;
}
.f-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.f-row label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--pale);
  min-width: 72px; flex-shrink: 0;
}
.f-row .f-inputs { flex: 1; display: flex; gap: 8px; }
.f-row input {
  flex: 1; padding: 8px 11px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12); color: var(--gray);
  font-family: var(--font-body); font-size: 0.72rem; transition: border-color 0.3s;
}
.f-row input:focus { outline: none; border-color: var(--yellow); color: var(--white); }
.f-row input::placeholder { color: rgba(255,255,255,0.18); }
.f-msg { margin-bottom: 22px; }
.f-msg label {
  display: block; font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--pale); margin-bottom: 8px;
}
.f-msg textarea {
  width: 100%; min-height: 100px; resize: vertical; padding: 8px 11px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray); font-family: var(--font-body); font-size: 0.72rem;
  transition: border-color 0.3s;
}
.f-msg textarea:focus { outline: none; border-color: var(--yellow); color: var(--white); }
.f-msg textarea::placeholder { color: rgba(255,255,255,0.18); }
.btn-send {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--yellow); color: var(--dark);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; border: none;
  border-radius: 24px; cursor: pointer; transition: background 0.3s;
}
.btn-send:hover,
.btn-send:focus-visible { background: var(--yellow-hover); }
.btn-send svg { width: 14px; height: 14px; fill: var(--dark); }
.form-status {
  margin-top: 16px; font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.form-status.success { color: #4CAF50; }
.form-status.error { color: #f44336; }

/* ══ 12. MOBILE NAV ══ */
.mobile-nav {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.98);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 24px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 4px; color: var(--white);
  text-decoration: none; transition: color 0.3s;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible { color: var(--yellow); }

/* ══ 13. ANIMATIONS ══ */
.reveal {
  opacity: 0; transform: translateY(24px);
}
.reveal.visible {
  animation: revealIn 0.7s ease-out forwards;
}
@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ══ 14. FIXED-WIDTH SCALING ══ */
.page-wrapper {
  width: 1440px;
  transform-origin: top left;
}

/* ══ 15. CONTACT BUTTON SVG ══ */
.contact-btn-svg {
  height: 50px; width: auto; cursor: pointer;
  transition: opacity 0.3s; display: inline-block;
}
.contact-btn-svg:hover,
.contact-btn-svg:focus-visible { opacity: 0.85; }

/* ══ 16. SKIP LINK ══ */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--yellow); color: var(--dark);
  padding: 8px 16px; z-index: 10000;
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}

/* ══ 17. ACCESSIBILITY & REDUCED MOTION ══ */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  .test-track { transition: none; }
  html { scroll-behavior: auto; }
}

/* ══ 18. RESPONSIVE ══ */
@media (max-width: 1024px) {
  :root {
    --page-padding: 24px;
    --nav-height: 52px;
  }

  /* Page wrapper — disable fixed width */
  .page-wrapper {
    width: 100% !important;
    zoom: 1 !important;
  }

  /* Nav */
  header nav {
    width: 100%; padding: 0 20px;
    zoom: 1 !important;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Homepage Hero */
  .hero { aspect-ratio: auto; min-height: 60vh; }
  .hero-content {
    position: relative; top: auto; left: auto; transform: none;
    padding: 40px var(--page-padding);
  }
  .hero-h1 { font-size: 3rem; white-space: normal; }
  .hero-subtext { font-size: 0.65rem; }

  /* About */
  .about { padding: 40px var(--page-padding); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-right h3 { font-size: 2.4rem; }

  /* Clients */
  .clients { padding: 24px var(--page-padding); }

  /* Reel */
  .reel { aspect-ratio: 16/9; }
  .reel-content { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .reel-content h2 { position: static; font-size: 2rem; }

  /* Jump To */
  .jump-to { padding: 40px 0 50px; }
  .jump-links { padding: 0 var(--page-padding); }
  .jump-row .jump-text { font-size: 3.5rem; }
  .jump-row .jump-vid { height: 70px; }
  .jump-headline-img { width: 40%; max-width: 200px; }

  /* Testimonials */
  .testimonials { padding: 40px var(--page-padding); }
  .test-slide { grid-template-columns: 1fr; gap: 0; }
  .test-slide .test-card:nth-child(2) { display: none; }
  .test-card { flex-direction: column; }
  .test-card-left { flex-direction: row; align-items: center; gap: 12px; min-width: auto; }
  .test-photo { width: 60px; height: 60px; margin-bottom: 0; }
  .test-header h2 { font-size: 2.4rem; }
  .test-carousel-wrap { overflow: visible; display: flex; flex-direction: column; }
  .test-carousel { order: 1; }
  .carousel-arrows {
    position: static; transform: none; order: 2;
    display: flex; justify-content: center; gap: 32px;
    margin-top: 32px; pointer-events: all;
  }
  .carousel-arrow { pointer-events: all; }
  .carousel-arrow img { width: 24px; }

  /* CTA */
  .cta { aspect-ratio: auto; padding: 40px var(--page-padding); }
  .cta-content { margin-left: 0; padding: 0; }

  /* Footer */
  footer { padding: 40px var(--page-padding) 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { align-items: flex-start; }
  .footer-logo img { width: 180px; }

  /* Modals */
  .video-inner { width: 95%; }
  .contact-box { width: 95%; padding: 28px 20px; }
  .f-row { flex-direction: column; align-items: stretch; gap: 6px; }
  .f-row label { min-width: auto; }

  /* Contact button */
  .contact-btn-svg { height: 40px; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: 2.2rem; }
  .hero-subtext { font-size: 0.6rem; }
  .about-right h3 { font-size: 2rem; }
  .jump-row .jump-text { font-size: 2.4rem; }
  .jump-row .jump-vid { height: 50px; }
  .reel-content h2 { font-size: 1.6rem; }
  .test-header h2 { font-size: 2rem; }
  .footer-tagline { font-size: 0.65rem; }
}

/* ══ 19. PRINT ══ */
@media print {
  nav, .mobile-nav, .modal, .hero video, .reel video, .jump-vid video { display: none; }
  body { background: #fff; color: #000; }
  .page-wrapper { width: auto; transform: none !important; }
}
