/* ============================================
   THE ASK LANDING PAGE - STYLES
   (Based on Unboring clone design)
   ============================================ */

/* --- CUSTOM FONTS --- */
@font-face {
  font-family: 'Druk Wide';
  src: url('Druk-Wide-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Freight Big Pro';
  src: url('garagefonts_-_freightbig_pro_book-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Freight Big Pro';
  src: url('garagefonts_-_freightbig_pro_light_italic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Sk Modernist';
  src: url('Sk-modernist-regular-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sk Modernist';
  src: url('Sk-modernist-bold-webfont.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('roboto-100.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('roboto-300.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rebond';
  src: url('rebond-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #1a1a1a;
  --dark: #222222;
  --darker: #181818;
  --cream: #f5f0e8;
  --warm-white: #faf7f2;
  --coral: #e8573a;
  --hot-pink: #e63b6f;
  --burnt-orange: #d4622b;
  --gold: #c9a84c;
  --olive: #6b6b4e;
  --text-light: #f5f0e8;
  --text-dark: #1a1a1a;
  --serif: 'Freight Big Pro', 'Playfair Display', Georgia, serif;
  --sans: 'Sk Modernist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans-light: 'Roboto', 'Inter', sans-serif;
  --display: 'Druk Wide', 'Bebas Neue', 'Impact', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background-color: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

strong { font-weight: 700; }
em { font-style: italic; }

/* --- SECTION LABEL (reusable) --- */
.section-label {
  font-family: var(--sans-light);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid var(--coral);
}

.btn-primary:hover {
  background: transparent;
  color: var(--coral);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--cream);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 12px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--dark);
}

.btn-large {
  font-size: 1rem;
  padding: 20px 52px;
}

/* --- TOP NAV --- */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(24, 24, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--cream);
}

.nav-cta {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  transition: opacity 0.3s;
}

.nav-cta:hover { opacity: 0.7; }

/* --- MARQUEE ANIMATIONS --- */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track.marquee-reverse {
  animation: marqueeReverse 20s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: var(--darker);
  padding-top: 70px;
  overflow: hidden;
}

.hero-marquee {
  position: absolute;
  top: 80px;
  width: 100%;
  overflow: hidden;
  opacity: 0.06;
}

.hero-marquee .marquee-track span {
  font-family: var(--display);
  font-size: 12vw;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--sans-light);
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--coral);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--sans-light);
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 100;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-subtitle strong {
  color: var(--cream);
  font-weight: 600;
}

.hero-bottom-marquee {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  background: var(--coral);
  padding: 12px 0;
}

.hero-bottom-marquee .marquee-track span {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

/* --- COUNTDOWN BAR --- */
.countdown-bar {
  background: var(--black);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  padding: 28px 24px;
}

.countdown-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.countdown-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

.countdown-timer {
  display: flex;
  gap: 20px;
}

.countdown-unit {
  text-align: center;
}

.countdown-unit span {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--coral);
  line-height: 1;
}

.countdown-unit small {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

/* --- SPICY DIVIDER --- */
.spicy-divider {
  background: var(--cream);
  padding: 14px 0;
  overflow: hidden;
}

.spicy-divider .marquee-track span {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* --- PROBLEM SECTION --- */
.problem-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: 120px 40px;
}

.problem-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.problem-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--dark);
}

.problem-highlight {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  font-style: italic;
  color: var(--coral);
  margin-bottom: 40px;
  line-height: 1;
}

.problem-body {
  max-width: 750px;
  margin: 0 auto 16px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.problem-section .section-label {
  color: var(--coral);
}

/* --- LEARN SECTION --- */
.learn-section {
  background: var(--darker);
  padding: 100px 40px;
  text-align: center;
}

.learn-intro {
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 60px;
}

.learn-items {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.learn-item:last-child {
  border-bottom: none;
}

.learn-number {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--coral);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  opacity: 0.5;
}

.learn-item h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.learn-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.55);
}

/* --- RSVP SECTION --- */
.rsvp-section {
  background: var(--coral);
  color: var(--cream);
  text-align: center;
  padding: 80px 40px;
}

.rsvp-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.8;
}

.rsvp-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

.rsvp-date {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.rsvp-note {
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

.rsvp-section .btn-primary {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.rsvp-section .btn-primary:hover {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

/* --- RSVP FORM --- */
.rsvp-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
}

.rsvp-form input {
  flex: 1;
  padding: 18px 24px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 2px solid var(--dark);
  border-right: none;
  border-radius: 50px 0 0 50px;
  background: transparent;
  color: var(--dark);
  outline: none;
}

.rsvp-form input::placeholder {
  color: rgba(0,0,0,0.35);
}

.btn-form {
  border-radius: 0 50px 50px 0;
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
  white-space: nowrap;
}

.btn-form:hover {
  background: var(--darker);
  color: var(--cream);
}

.rsvp-thanks {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  padding: 20px 0;
}

/* --- COURSE SECTION --- */
.course-section {
  background: var(--dark);
  text-align: center;
  padding: 120px 40px 60px;
}

.course-title {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1;
}

.course-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--coral);
  margin-bottom: 28px;
}

.course-description {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.55);
}

/* --- MODULES SECTION --- */
.modules-section {
  background: var(--dark);
  padding: 60px 40px 120px;
}

.modules-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.module-card {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.module-card:hover {
  border-color: var(--coral);
  background: rgba(232, 87, 58, 0.06);
  transform: translateY(-4px);
}

.module-num {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--coral);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.module-card:hover .module-num { opacity: 0.5; }

.module-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.module-keyword {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.module-question {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.5;
}

.modules-note {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.4);
  font-style: italic;
}

/* --- ACCENT MARQUEE --- */
.accent-marquee {
  background: var(--darker);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  padding: 16px 0;
  overflow: hidden;
}

.accent-marquee .marquee-track span {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--coral);
  opacity: 0.4;
  letter-spacing: 0.02em;
}

/* --- AUDIENCE SECTION --- */
.audience-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: 100px 40px;
  text-align: center;
}

.audience-cards {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  background: white;
  border-radius: 8px;
  padding: 44px 32px;
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.audience-card:hover { transform: translateY(-4px); }

.audience-icon {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--coral);
  margin-bottom: 20px;
  opacity: 0.4;
}

.audience-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

/* --- BOLD SECTION --- */
.bold-section {
  background: var(--darker);
  text-align: center;
  padding: 120px 40px;
}

.bold-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 44px;
}

/* --- AGENDA SECTION --- */
.agenda-section {
  background: var(--dark);
  padding: 100px 40px;
}

.agenda-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--cream);
  text-align: center;
  margin-bottom: 60px;
}

.agenda-items {
  max-width: 750px;
  margin: 0 auto;
}

.agenda-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.agenda-item:last-child { border-bottom: none; }

.agenda-time {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--coral);
  flex-shrink: 0;
  min-width: 90px;
  padding-top: 4px;
}

.agenda-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.agenda-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.55);
}

/* --- STATS BAR --- */
.stats-bar {
  background: var(--coral);
  padding: 50px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--cream);
  line-height: 1;
}

.stat-plus {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--cream);
}

.stat p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-top: 6px;
}

/* --- HOST SECTION --- */
.host-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: 100px 40px;
}

.host-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.host-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.host-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #444;
}

.host-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  margin-bottom: 20px;
}

.host-facts h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.host-facts ul {
  list-style: none;
  padding: 0;
}

.host-facts li {
  font-size: 0.85rem;
  padding: 5px 0;
  color: #555;
  letter-spacing: 0.03em;
}

.btn-host {
  display: block;
  max-width: 300px;
  margin: 44px auto 0;
  text-align: center;
}

/* --- FINAL CTA --- */
.final-cta-section {
  background: var(--darker);
  text-align: center;
  padding: 120px 40px;
}

.final-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 20px;
}

.final-subtitle {
  font-family: var(--sans);
  font-size: 1.1rem;
  color: var(--coral);
  margin-bottom: 40px;
}

.final-note {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 20px;
}

/* --- FOOTER --- */
.footer {
  background: var(--darker);
  padding: 60px 40px 30px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.5;
}

.footer-by {
  font-style: italic;
}

.footer-links-col {
  display: flex;
  gap: 28px;
}

.footer-links-col a {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-links-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.08em;
}

/* --- STICKY CTA (mobile) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--coral);
  text-align: center;
  padding: 16px;
}

.sticky-cta a {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

/* --- SCROLL ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .host-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar { gap: 40px; }
}

@media (max-width: 768px) {
  .top-nav { padding: 14px 20px; }
  .hero { min-height: 90vh; }

  .problem-section,
  .learn-section,
  .rsvp-section,
  .course-section,
  .modules-section,
  .audience-section,
  .bold-section,
  .agenda-section,
  .host-section,
  .final-cta-section {
    padding: 70px 24px;
  }

  .modules-grid { grid-template-columns: 1fr; }

  .learn-item,
  .agenda-item {
    flex-direction: column;
    gap: 12px;
  }

  .countdown-inner {
    flex-direction: column;
    gap: 16px;
  }

  .rsvp-form {
    flex-direction: column;
  }

  .rsvp-form input {
    border-right: 2px solid var(--dark);
    border-bottom: none;
    border-radius: 50px;
    margin-bottom: 12px;
  }

  .btn-form {
    border-radius: 50px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links-col {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stats-bar { gap: 30px; }
  .stat-number { font-size: 2.2rem; }

  .sticky-cta { display: block; }
  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .rsvp-title { font-size: 2rem; }
  .course-title { font-size: 3.5rem; }
  .btn-primary { padding: 14px 30px; font-size: 0.85rem; }
  .btn-large { padding: 16px 36px; }
}
