/* ==========================================================================
   K.I.M. Keep It Moving — Avada visual port
   Body bg #282a2b w/ pattern overlay · white text · #1aaeca teal accent
   Fonts: Poppins (headings), Quattrocento Sans (body), Allan (nav)
   ========================================================================== */

:root {
  /* Avada theme tokens (lifted from --bg_color, --primary_color, etc.) */
  --bg-color: #282a2b;
  --header-bg: #141414;
  --copyright-bg: #1d242d;
  --footer-bg: #212934;
  --section-very-dark: #020202;

  --text: #ffffff;
  --text-muted: rgba(255,255,255,.78);
  --text-soft: rgba(255,255,255,.55);

  --accent: #1aaeca;
  --accent-hover: #1ec6e8;
  --link: #1aaeca;

  --color1: #ffffff;
  --color2: #f6f6f6;
  --color3: #ebeaea;
  --color4: #e0dede;
  --color5: #1aaeca;
  --color6: #747474;
  --color7: #333333;
  --color8: #000000;

  --font-heading: 'Poppins', Arial, Helvetica, sans-serif;
  --font-body: 'Quattrocento Sans', 'Open Sans', Arial, sans-serif;
  --font-nav: 'Allan', 'Poppins', Georgia, serif;

  --max-width: 1200px;
  --row-width: 1248px; /* original Avada row */

  --btn-radius: 35px;
  --btn-pad-y: 11px;
  --btn-pad-x: 23px;
}

*, *::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);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
ul, ol { padding-left: 1.25em; }
li + li { margin-top: 4px; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 45px; }
h2 { font-size: 36px; font-weight: 700; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* === Container / row === */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 1024px) { .container { padding: 0 20px; } }

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

/* === Sections === */

section { background: transparent; }
.section { padding: 60px 0; }
.section-tight { padding: 30px 0; }
.section-loose { padding: 100px 0; }
.bg-dark { background-color: var(--header-bg); }
.bg-darker { background-color: var(--section-very-dark); }
.bg-bg { background-color: var(--bg-color); }
.bg-white { background-color: #ffffff; color: var(--color7); }
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4 { color: var(--color7); }

/* === Header === */

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--header-bg);
  border-bottom: 0;
}
.header-row {
  max-width: var(--row-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-link { display: inline-flex; align-items: center; }
.brand-link img { height: 45px; width: auto; }

.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 32px; }
.main-nav li { margin: 0; position: relative; }
.main-nav a {
  font-family: var(--font-nav);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.02em;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--accent-hover); }
.main-nav .has-children > a::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  opacity: .8;
}
.main-nav .submenu {
  position: absolute;
  top: 100%; left: 0;
  background: var(--header-bg);
  list-style: none;
  padding: 8px 0;
  min-width: 240px;
  display: none;
  border-top: 2px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  flex-direction: column;
  gap: 0;
  z-index: 10;
}
.main-nav .submenu li { width: 100%; margin: 0; }
.main-nav .has-children:hover > .submenu,
.main-nav .has-children:focus-within > .submenu { display: flex; }
.main-nav .submenu a { display: block; padding: 10px 20px; font-size: 16px; }
.main-nav .submenu a:hover { background: rgba(26,174,202,.12); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 11px 20px !important;
  border-radius: var(--btn-radius);
}
.nav-cta:hover { background: var(--accent-hover); color: #fff !important; }
.nav-cta::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 26px; height: 2px; background: var(--accent);
  transition: transform .2s, top .2s;
}
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--header-bg);
    border-top: 2px solid var(--accent);
    box-shadow: 0 12px 24px rgba(0,0,0,.5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 12px 0; align-items: stretch; }
  .main-nav li { width: 100%; }
  .main-nav a { display: block; padding: 14px 24px; width: 100%; }
  .main-nav .submenu {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(0,0,0,.35);
    padding: 0;
    display: flex !important;
    width: 100%;
  }
  .main-nav .submenu a { padding-left: 44px; font-size: 15px; }
  .main-nav .has-children > a::after { display: none; }
  .nav-cta { margin: 12px 24px; justify-content: center; }
  .nav-cta::after { display: none; }
}

/* === Member-login dark band (section 1 home) === */

.member-band {
  background: var(--header-bg);
  padding: 20px 0 25px;
  margin-bottom: 75px;
  text-align: center;
}
.member-band img { max-width: 150px; height: auto; margin: 0 auto; }
.member-band .band-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
}
.member-band .band-cta:hover { background: var(--accent-hover); color: #fff; }

/* === Buttons === */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { background: var(--accent-hover); color: #fff; box-shadow: 0 6px 16px rgba(30,198,232,.3); }
.btn .arrow { width: 14px; height: 14px; }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-large { padding: 14px 30px; font-size: 15px; }

/* === Hero (split: text left, video right) === */

.hero-split {
  padding: 80px 0;
}
.hero-split .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-split h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}
.hero-split .lead {
  text-align: center;
  margin: 24px 0 28px;
  font-size: 18px;
  color: #fff;
}
.hero-split .actions {
  display: flex; justify-content: center; margin: 0;
}
.hero-split .price-line {
  text-align: center;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 16px;
}
.hero-split .video-frame {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  background: #000;
  overflow: hidden;
}
.hero-split .video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
@media (max-width: 1024px) {
  .hero-split .row { grid-template-columns: 1fr; gap: 32px; }
  .hero-split h1 { font-size: 36px; }
}

/* === LIVE | CHOREO | FITNESS feature row === */

.feature-row {
  background: var(--section-very-dark);
  padding: 115px 150px;
}
.feature-row .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
  max-width: none;
  padding: 0;
}
.feature-row .col {
  position: relative;
  padding: 25px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.feature-row .col::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.25);
  z-index: -1;
}
.feature-row h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  margin: 0;
}
@media (max-width: 1024px) { .feature-row { padding: 60px 30px; } .feature-row .row { grid-template-columns: 1fr; gap: 24px; } .feature-row .col { min-height: 220px; } }
@media (max-width: 768px)  { .feature-row { padding: 40px 20px; } .feature-row h2 { font-size: 28px; } }

/* === Split section (image + text) === */

.split-section { padding: 100px 0 80px; }
.split-section .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.split-section p { color: var(--text); }
.split-section img { width: 100%; border-radius: 12px; }
.split-section.image-right .row > :first-child { order: 1; }
.split-section.image-right .row > :last-child { order: 2; }
.split-section.image-left .row > :first-child { order: 1; }
.split-section.image-left .row > :last-child { order: 2; }
@media (max-width: 1024px) {
  .split-section { padding: 60px 0; }
  .split-section .row { grid-template-columns: 1fr; gap: 32px; }
  .split-section h2 { font-size: 28px; }
}

/* === Generic content section === */

.content-section { padding: 80px 0; }
.content-section h2 { font-family: var(--font-heading); font-weight: 700; font-size: 36px; text-align: center; margin-bottom: 30px; line-height: 1.1; }
.content-section h3 { font-size: 24px; margin: 40px 0 12px; }
.content-section .lead { text-align: center; max-width: 760px; margin: 0 auto 32px; font-size: 18px; color: var(--text-muted); }
@media (max-width: 768px) { .content-section { padding: 60px 0; } .content-section h2 { font-size: 28px; } }

/* === Image grid (Take a Peek Inside thumbnails) === */

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.thumb-grid img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .25s, opacity .25s; }
.thumb-grid img:hover { transform: scale(1.03); opacity: .9; }
@media (max-width: 1024px) { .thumb-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .thumb-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Testimonials with author photo === */

.testimonial-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.testimonial-row:last-child { border-bottom: none; }
.testimonial-row .avatar {
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.testimonial-row blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}
.testimonial-row cite { font-style: normal; font-weight: 700; color: var(--accent); display: block; }
@media (max-width: 768px) {
  .testimonial-row { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .testimonial-row .avatar { margin: 0 auto; width: 110px; height: 110px; }
  .testimonial-row blockquote { border-left: none; padding-left: 0; padding-top: 8px; }
}

/* === Gallery === */

.gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .25s, opacity .25s;
}
.gallery img:hover { transform: scale(1.04); opacity: .92; cursor: zoom-in; }

/* === Lightbox === */
.lb {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  opacity: 0;
  transition: opacity .2s;
}
.lb.is-open { display: flex; opacity: 1; }
.lb-img-wrap {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lb-caption {
  position: absolute;
  bottom: -36px; left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  pointer-events: none;
}
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lb-btn:hover { background: var(--accent); border-color: var(--accent); }
.lb-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-btn { width: 40px; height: 40px; }
}
@media (max-width: 1024px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* === Logo grid === */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  align-items: center;
}
.logo-grid .logo-cell {
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}
.logo-grid img { max-height: 80px; max-width: 100%; width: auto; }

/* === FAQ === */

.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
}
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details > *:not(summary) { margin-top: 14px; color: var(--text-muted); }

/* === Forms === */

.form-stack { display: grid; gap: 16px; }
.form-stack label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: #fff; letter-spacing: 0.04em; }
.form-stack input, .form-stack textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: #fff;
  font: inherit;
  border-radius: 4px;
  transition: border-color .2s, background .2s;
}
.form-stack input::placeholder, .form-stack textarea::placeholder { color: rgba(255,255,255,.4); }
.form-stack input:focus, .form-stack textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(26,174,202,.18);
}
.form-stack textarea { min-height: 140px; resize: vertical; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-msg { margin-top: 12px; padding: 12px 14px; border-radius: 4px; font-size: 15px; display: none; }
.form-msg.is-success { background: rgba(26,174,202,.18); color: #cdeef5; display: block; }
.form-msg.is-error { background: rgba(220,80,80,.18); color: #ffd4d4; display: block; }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-meta dl { display: grid; gap: 18px; }
.contact-meta dt { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 4px; }
.contact-meta dd { font-size: 17px; color: #fff; }

/* === Pricing card === */

.pricing-card {
  background: rgba(255,255,255,.04);
  border: 2px solid var(--accent);
  border-radius: 4px;
  padding: 40px 32px;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}
.pricing-card .price { font-family: var(--font-heading); font-size: 56px; font-weight: 700; color: #fff; line-height: 1; }
.pricing-card .price small { font-size: 18px; color: var(--text-muted); font-weight: 400; }
.pricing-card ul { list-style: none; padding: 0; text-align: left; margin: 28px 0; }
.pricing-card li { padding-left: 28px; position: relative; padding-bottom: 10px; color: var(--text); }
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* === Video thumbnail (for music videos page) === */

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  background: #000;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: none;
  width: 100%;
  padding: 0;
  overflow: hidden;
  display: block;
}
.video-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.5));
}
.video-thumb .play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.video-thumb .play svg { width: 64px; height: 64px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); position: relative; z-index: 2; }
.video-thumb:hover .play svg { transform: scale(1.08); transition: transform .2s; }

/* === Generic card (community partners, music videos) === */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card-grid .card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
}
.card-grid .card .card-body { padding: 24px; flex: 1; }
.card-grid .card h3 { font-size: 20px; margin-bottom: 10px; color: #fff; }
.card-grid .card p { color: var(--text-muted); }
.card-grid .card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* === Footer === */

.site-footer {
  background: var(--header-bg);
  padding: 0;
  margin-top: 0;
  color: var(--text-muted);
}

/* Top brand band — brick wall texture, dark inset newsletter panel */
.footer-brand-band {
  background-image: url('/images/brick-wall-footerr.jpg');
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}
.footer-brand-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
.footer-brand-band .footer-brand {
  text-align: center;
}
.footer-brand-band .footer-brand img {
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}
.footer-newsletter-panel {
  background: rgba(20,20,20,.92);
  padding: 36px 40px;
  border-radius: 0;
}
.footer-newsletter-panel .newsletter-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.footer-newsletter-panel label {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 4px;
}
.footer-newsletter-panel form { display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 768px) {
  .footer-brand-band .container { grid-template-columns: 1fr; gap: 32px; }
  .footer-newsletter-panel { padding: 28px 24px; }
}

/* Nav band — back on the dark site bg */
.footer-nav-band {
  background: var(--bg-color);
  padding: 60px 0;
}
.footer-nav-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.footer-newsletter input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: #fff;
  color: #222;
  border-radius: 0;
  font: inherit;
  font-size: 15px;
}
.footer-newsletter input[type="email"]::placeholder { color: rgba(0,0,0,.4); }
.footer-newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}
.footer-newsletter button {
  margin-top: 6px;
  padding: 9px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  align-self: flex-start;
}
.footer-newsletter button:hover { background: var(--accent-hover); }

.footer-nav h4 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-weight: 700;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin: 0 0 8px; line-height: 1.15; }
.footer-nav a { color: var(--accent); font-size: 20px; line-height: 1.15; }
.footer-nav a:hover { color: var(--accent-hover); }

.footer-socials { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  color: #fff;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  background: var(--bg-color);
  margin-top: 0;
  padding: 28px 0 32px;
  font-size: 18px;
  color: rgba(255,255,255,.6);
}
.footer-bottom .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-bottom .legal { flex: 1; min-width: 280px; }
.footer-bottom .legal p { margin: 0 0 14px; }
.footer-bottom .legal a { color: var(--accent); }
.footer-bottom .legal a:hover { color: var(--accent-hover); }
.footer-bottom .footer-socials { justify-content: flex-start; margin: 0; gap: 14px; }
.footer-bottom .footer-socials a {
  width: 28px; height: 28px;
  border: none;
  background: transparent;
  border-radius: 0;
  color: rgba(255,255,255,.6);
}
.footer-bottom .footer-socials a:hover { background: transparent; color: var(--accent); }
.footer-bottom .footer-socials svg { width: 18px; height: 18px; }
.footer-bottom .ascap { display: inline-flex; align-items: center; }
.footer-bottom .ascap img { max-height: 64px; width: auto; opacity: 1; }
@media (max-width: 768px) {
  .footer-bottom .row { justify-content: center; text-align: center; }
  .footer-bottom .footer-socials { justify-content: center; }
}

@media (max-width: 1024px) {
  .footer-nav-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 640px) {
  .footer-nav-row { grid-template-columns: 1fr; gap: 32px; }
}

/* === Page title bar === */

.page-title-bar {
  background: var(--section-very-dark);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 4px solid var(--accent);
}
.page-title-bar h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}
.page-title-bar .crumbs {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-title-bar .crumbs a { color: var(--text-muted); }
.page-title-bar .crumbs a:hover { color: var(--accent); }
@media (max-width: 768px) { .page-title-bar { padding: 60px 0 40px; } .page-title-bar h1 { font-size: 36px; } }

/* === Reveal === */

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-animate] { opacity: 1; transform: none; }
}

/* === Misc helpers === */

.center { text-align: center; }
.muted { color: var(--text-muted); }
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.divider { height: 1px; background: rgba(255,255,255,.1); margin: 48px 0; }
.lead { font-size: 18px; color: var(--text-muted); }
.actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.text-list ul, .text-list ol { padding-left: 1.5em; color: var(--text); }
.text-list li { margin-bottom: 6px; }
.credits-list { list-style: none; padding: 0; max-width: 720px; margin: 0 auto; display: grid; gap: 20px; }
.credits-list li { padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); color: var(--text-muted); }
.credits-list strong { color: #fff; font-family: var(--font-heading); }
