/* ═══════════════════════════════════════════════════════
   AFN DESIGN SYSTEM — SHARED COMPONENTS (Part 2)
   ═══════════════════════════════════════════════════════ */

/* ── PAGE HERO ─────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 9rem 2rem 5.5rem;
  text-align: center;
  background: var(--gold-tint);
  overflow: hidden;
}
.page-hero.hero-left { text-align: left; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 20%, rgba(200,149,42,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 8% 80%, rgba(122,58,16,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 92% 75%, rgba(139,31,47,.06) 0%, transparent 60%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(168,114,14,.22) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 15%, transparent 100%);
}
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: var(--radius-full);
  border: 1px solid rgba(168,114,14,.11);
  pointer-events: none;
}
.r1 { width: 680px; height: 680px; }
.r2 { width: 510px; height: 510px; border-color: rgba(168,114,14,.08); }
.r3 { width: 340px; height: 340px; border-color: rgba(168,114,14,.06); }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.page-hero.hero-left .hero-inner { margin: 0; max-width: 1100px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.55);
}
.hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.hero-inner h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.page-hero.hero-left .hero-sub { margin: 0 0 2rem; }
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero.hero-left .hero-actions { justify-content: flex-start; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a {
  color: var(--gold);
  transition: opacity var(--dur-fast);
}
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb-sep { color: var(--border-mid); }

/* ── COUNTDOWN ─────────────────────────────────────── */
.countdown-bar {
  background: var(--gold);
  padding: 1.5rem 2rem;
  text-align: center;
}
.countdown-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 0.8rem;
}
.countdown-units {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.countdown-unit { text-align: center; }
.cd-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  min-width: 3ch;
}
.cd-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 0.2rem;
}

/* ── SAVE THE DATE BAND ────────────────────────────── */
.date-band {
  background: var(--ink);
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}
.date-band-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.date-band-cell { text-align: center; }
.date-band-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.35rem;
}
.date-band-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.date-band-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── QUOTE BAND ────────────────────────────────────── */
.quote-band {
  background: var(--ink);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(200,149,42,.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.quote-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--gold-mid);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-style: italic;
  line-height: 1.75;
  color: rgba(253,250,244,.9);
  margin-bottom: 1.5rem;
}
.quote-attr {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── FAQ ACCORDION ─────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  gap: 1rem;
  transition: background var(--dur-fast);
}
.faq-q:hover { background: var(--gold-pale); }
.faq-chevron {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--dur-med);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0.25rem 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA STRIP ─────────────────────────────────────── */
.cta-strip {
  background: var(--gold-tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(253,250,244,.8);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.footer-brand .tagline {
  font-size: 0.78rem;
  color: rgba(253,250,244,.38);
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-col h4 {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.85rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-col a {
  font-size: 0.82rem;
  color: rgba(253,250,244,.45);
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(253,250,244,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.acknowledgement {
  font-size: 0.78rem;
  color: rgba(253,250,244,.32);
  line-height: 1.65;
  max-width: 620px;
}
.copy {
  font-size: 0.72rem;
  color: rgba(253,250,244,.2);
  white-space: nowrap;
}

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fu { animation: fadeUp 0.65s ease both; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .22s; }
.d3 { animation-delay: .34s; }
.d4 { animation-delay: .46s; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0.75rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0 1rem;
    min-width: 0;
    background: transparent;
  }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .sec { padding: 4rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 4rem; }
  .date-band-divider { display: none; }
  .hero-inner h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
}
@media (max-width: 540px) {
  .footer-nav-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

/* ── SPONSOR MARQUEE BANNER ────────────────────────── */
.sponsor-marquee {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}
.sponsor-marquee-label {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.sponsor-marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.sponsor-marquee:hover .sponsor-marquee-track {
  animation-play-state: paused;
}
.sponsor-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 120px;
}
.sponsor-marquee-item img {
  display: block;
  height: 40px;
  width: 120px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}
.sponsor-marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .sponsor-marquee-item {
    height: 30px;
    width: 90px;
  }
  .sponsor-marquee-item img {
    height: 30px;
    width: 90px;
  }
  .sponsor-marquee-track {
    gap: 2rem;
    animation-duration: 25s;
  }
}
