/* ═══════════════════════════════════════════════════ */
/*              YOUNG AVIATORS LAB — STYLES            */
/* ═══════════════════════════════════════════════════ */

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

:root {
  --navy: #1a2b4a;
  --navy-light: #2d3f5e;
  --white: #ffffff;
  --off-white: #f8fafb;
  --sky-50: #f0f7ff;
  --sky-100: #e0efff;
  --sky-200: #b9dbff;
  --sky-300: #7cbcff;
  --sky-400: #4da3f7;
  --sky-500: #2b8ae6;
  --sky-600: #1a6fc4;
  --gray-100: #f1f3f5;
  --gray-200: #e2e5e9;
  --gray-300: #cdd1d8;
  --gray-400: #9ba3ae;
  --gray-500: #6e7888;
  --gray-600: #4a5568;
  --gray-700: #374151;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(26, 43, 74, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 43, 74, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 43, 74, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --glow-blue: 0 6px 24px rgba(43, 138, 230, 0.35);
  --glow-blue-hover: 0 10px 36px rgba(43, 138, 230, 0.45);
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
p { line-height: 1.75; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ NAVIGATION ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px, 5vw, 64px);
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 43, 74, 0.06);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}

.nav-logo-img {
  height: 42px; width: auto; display: block; object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy);
}

.nav-links { display: flex; align-items: center; gap: 36px; }

.nav-links a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--gray-600); text-decoration: none; transition: color 0.25s;
}

.nav-links a:hover, .nav-links a.active { color: var(--navy); }

.nav-cta-btn {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  padding: 10px 24px; border-radius: 8px;
  background: var(--sky-500); color: var(--white) !important;
  text-decoration: none; transition: all 0.3s var(--ease);
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(43, 138, 230, 0.3);
}

.nav-cta-btn:hover {
  background: var(--sky-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(43, 138, 230, 0.4);
  color: var(--white) !important;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span { width: 20px; height: 1.5px; background: var(--navy); transition: all 0.3s; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: rgba(255,255,255,0.98);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: var(--radius-sm);
  background: var(--sky-500); color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s var(--ease); letter-spacing: 0.01em;
  box-shadow: var(--glow-blue);
}

.btn-primary:hover {
  background: var(--sky-600);
  transform: translateY(-3px);
  box-shadow: var(--glow-blue-hover);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 16px 32px; border-radius: var(--radius-sm);
  background: transparent; color: var(--navy);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1.5px solid var(--gray-300);
  cursor: pointer; transition: all 0.25s;
}

.btn-secondary:hover { border-color: var(--sky-400); color: var(--sky-600); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--sky-500); text-decoration: none; transition: gap 0.25s;
}

.link-arrow:hover { gap: 10px; }

/* ═══ SECTIONS ═══ */
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section-sky { background: linear-gradient(180deg, var(--sky-50) 0%, var(--white) 100%); }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }

.section-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sky-500); margin-bottom: 12px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 20px; color: var(--navy);
}
.section-navy .section-title { color: var(--white); }

.section-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.08rem); color: var(--gray-500);
  max-width: 560px; font-weight: 400; line-height: 1.75;
}

/* ═══ DIVIDER ═══ */
.sky-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky-200), transparent);
}

/* ═══ PHOTO PLACEHOLDERS ═══ */
.photo-placeholder {
  background: linear-gradient(135deg, var(--sky-50), var(--sky-100));
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; text-align: center;
  position: relative; overflow: hidden;
}

.photo-placeholder-text {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sky-500); font-weight: 500;
}

.photo-icon { font-size: 28px; opacity: 0.25; line-height: 1; }

/* ═══════════════════════════════════════════════════ */
/*                   HOME — HERO                      */
/* ═══════════════════════════════════════════════════ */

.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(170deg, #e8f4ff 0%, #f0f7ff 30%, #ffffff 70%);
  position: relative; overflow: hidden; padding-top: 68px;
}

.hero-cloud {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.45;
}
.hero-cloud-1 { width: 600px; height: 400px; background: var(--sky-200); top: -100px; right: -100px; }
.hero-cloud-2 { width: 400px; height: 300px; background: var(--sky-100); bottom: 10%; left: -80px; }
.hero-cloud-3 { width: 300px; height: 200px; background: #dceeff; top: 40%; right: 15%; opacity: 0.3; }

.hero-watermark {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 420px; height: auto; opacity: 0.035; pointer-events: none; z-index: 1;
}

.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}

.hero-content {
  position: relative; z-index: 2; max-width: 640px; padding: 60px 0;
}

.hero-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sky-500); font-weight: 500;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.7s 0.2s var(--ease-out) forwards;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 4.8rem); color: var(--navy); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.35s var(--ease-out) forwards;
}

.hero h1 em { font-style: italic; color: var(--sky-500); }

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.08rem); color: var(--gray-600);
  max-width: 540px; margin-bottom: 12px; font-weight: 400; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.8s 0.5s var(--ease-out) forwards;
}

.hero-audience {
  font-size: 0.95rem; color: var(--sky-500); font-weight: 600; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s 0.6s var(--ease-out) forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.7s var(--ease-out) forwards;
}

.hero-note {
  margin-top: 16px; font-size: 13px; color: var(--gray-400); font-weight: 400;
  opacity: 0; animation: fadeUp 0.7s 0.85s var(--ease-out) forwards;
}

.hero-note strong { color: var(--navy); font-weight: 600; }

.hero-visual {
  position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}

.hero-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius);
  object-fit: cover; box-shadow: var(--shadow-lg);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-content { padding: 32px 0 16px; }
  .hero-visual {
    margin-top: 8px; margin-bottom: -20px;
  }
  .hero-photo {
    aspect-ratio: 16/9; border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }
  .hero-watermark { display: none; }
}

/* ═══ WHAT MAKES YAL DIFFERENT ═══ */
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}

.diff-card {
  padding: 36px 32px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-200);
  transition: box-shadow 0.3s, transform 0.3s;
}

.diff-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.diff-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--sky-400); margin-bottom: 16px; letter-spacing: 0.05em;
}

.diff-card h3 { font-size: 1.35rem; margin-bottom: 12px; }

.diff-card p { font-size: 0.95rem; color: var(--gray-500); font-weight: 400; line-height: 1.7; }

@media (max-width: 768px) { .diff-grid { grid-template-columns: 1fr; } }

/* ═══ REVIEWS ═══ */
/* ═══ REVIEWS — ARROW CAROUSEL ═══ */
.reviews-carousel {
  position: relative; margin-top: 48px;
}

.reviews-viewport {
  overflow: hidden; border-radius: var(--radius);
}

.reviews-track {
  display: flex; gap: 20px; padding: 8px 0;
  transition: transform 0.45s var(--ease-out);
}

.review-card {
  flex: 0 0 100%; max-width: 100%; padding: 32px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}

.review-card:hover { box-shadow: var(--shadow-md); }

.review-text {
  font-family: var(--font-display); font-size: 1.15rem;
  font-style: italic; line-height: 1.55; color: var(--navy);
  margin-bottom: 20px;
}

.review-text::before {
  content: '\201C'; display: block;
  font-family: var(--font-display); font-size: 2.4rem;
  color: var(--sky-400); line-height: 1; margin-bottom: 6px;
}

.review-author {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-400); font-weight: 500;
}

.reviews-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 28px;
}

.reviews-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--gray-300); background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; color: var(--navy); font-size: 18px;
}

.reviews-nav button:hover {
  border-color: var(--sky-400); color: var(--sky-500);
  box-shadow: var(--shadow-sm);
}

.reviews-dots {
  display: flex; gap: 8px; align-items: center;
}

.reviews-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-300); transition: all 0.3s;
}

.reviews-dots span.active {
  background: var(--sky-500); width: 24px; border-radius: 4px;
}

@media (max-width: 768px) {
  .review-card { max-width: 100%; padding: 24px; }
  .review-text { font-size: 1.02rem; }
}

/* ═══ PHOTO GALLERY GRID (Flight #001 + Career in Frames) ═══ */
.gallery-grid {
  display: grid; margin-top: 48px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px; border-radius: var(--radius); overflow: hidden;
}

.gallery-item {
  background: linear-gradient(135deg, var(--sky-50), var(--sky-100));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

/* Photo images inside gallery */
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

.gallery-inner {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
}

.gallery-inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.gallery-caption {
  margin-top: 20px; text-align: center;
  font-size: 14px; color: var(--gray-500); font-weight: 500;
}

.gallery-caption strong { color: var(--navy); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 2; }
}

/* ═══ INSTRUCTOR ═══ */
.section-instructor { padding-top: clamp(48px, 6vw, 72px); }

.instructor-layout {
  display: grid; grid-template-columns: 0.85fr 1fr;
  gap: 64px; align-items: center; margin-top: 48px;
}

.instructor-photo {
  aspect-ratio: 3/4; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
}

.instructor-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.instructor-photo.placeholder {
  background: linear-gradient(135deg, var(--sky-100), var(--sky-200));
  display: flex; align-items: center; justify-content: center;
}

.instructor-text h3 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: 20px; }

.instructor-text p {
  font-size: 1.02rem; color: var(--gray-600); font-weight: 400; margin-bottom: 14px;
}

.instructor-text .emphasis {
  color: var(--navy); font-weight: 500; font-style: italic;
  font-family: var(--font-display); font-size: 1.1rem;
}

@media (max-width: 768px) { .instructor-layout { grid-template-columns: 1fr; gap: 32px; } }

/* ═══ FINAL CTA ═══ */
.final-cta {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--navy); text-align: center;
  position: relative; overflow: hidden;
}

.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(77, 163, 247, 0.12) 0%, transparent 60%);
}

.final-cta .container { position: relative; z-index: 2; }

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); max-width: 620px;
  margin: 0 auto 12px;
}

.final-cta .personal-note {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--sky-300); margin-bottom: 40px;
}

.final-cta .btn-primary {
  margin: 0 auto; background: var(--sky-400);
  box-shadow: 0 6px 28px rgba(77, 163, 247, 0.4);
}

.final-cta .btn-primary:hover {
  background: var(--sky-300);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(77, 163, 247, 0.5);
}

/* ═══════════════════════════════════════════════════ */
/*                    ABOUT PAGE                      */
/* ═══════════════════════════════════════════════════ */

.about-hero {
  padding: 160px 0 80px;
  background: linear-gradient(170deg, #e8f4ff 0%, #f0f7ff 40%, var(--white) 100%);
}

.about-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--navy); margin-bottom: 28px;
}

.about-intro {
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  color: var(--gray-600); max-width: 640px;
  font-weight: 400; line-height: 1.85;
}

.about-intro strong { color: var(--navy); font-weight: 500; }

/* Timeline */
.timeline { margin-top: 56px; position: relative; padding-left: 48px; }

.timeline::before {
  content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--sky-300), var(--sky-100));
  border-radius: 1px;
}

.timeline-item {
  position: relative; margin-bottom: 40px; padding-bottom: 40px;
}

.timeline-item:last-child { margin-bottom: 0; padding-bottom: 0; }

.timeline-dot {
  position: absolute; left: -42px; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sky-400); box-shadow: 0 0 0 4px var(--sky-50);
}

.timeline-year {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--sky-500);
  text-transform: uppercase; margin-bottom: 8px;
}

.timeline-item h3 { font-size: 1.3rem; margin-bottom: 10px; }

.timeline-item p {
  font-size: 0.95rem; color: var(--gray-500);
  font-weight: 400; line-height: 1.75; max-width: 580px;
}

@media (max-width: 768px) {
  .timeline { padding-left: 36px; }
  .timeline::before { left: 8px; }
  .timeline-dot { left: -32px; }
}

/* Career in Frames — 6-item variant */
.gallery-grid-6 {
  display: grid; margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px; border-radius: var(--radius); overflow: hidden;
}

.gallery-grid-6 .gallery-item { grid-column: auto !important; }

.gallery-grid-6 .gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

@media (max-width: 768px) {
  .gallery-grid-6 { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
}

/* Why YAL Exists */
.why-block { max-width: 620px; }

.why-block p {
  font-size: 1.05rem; color: var(--gray-600);
  line-height: 1.85; margin-bottom: 16px; font-weight: 400;
}

.why-block p.standout {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; color: var(--navy); line-height: 1.5;
}

/* Philosophy */
.philosophy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 40px;
}

.philosophy-item {
  padding: 28px 24px; text-align: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
}

.philosophy-item h4 {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--white); margin-bottom: 4px;
}

.philosophy-item p {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.5); font-weight: 400;
}

.philosophy-footer-note {
  font-size: 1.05rem; color: rgba(255,255,255,0.55);
  max-width: 500px; margin: 28px auto 0; line-height: 1.7; text-align: center;
}

.philosophy-footer-note em {
  font-family: var(--font-display); color: var(--sky-300);
}

.section-navy .btn-primary {
  background: var(--sky-400);
  box-shadow: 0 6px 28px rgba(77, 163, 247, 0.4);
}

.section-navy .btn-primary:hover {
  background: var(--sky-300);
  box-shadow: 0 10px 40px rgba(77, 163, 247, 0.5);
}

@media (max-width: 768px) { .philosophy-grid { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════════════════════════ */
/*                   SIGN UP PAGE                     */
/* ═══════════════════════════════════════════════════ */

.signup-hero {
  padding: 160px 0 72px;
  background: linear-gradient(170deg, #e8f4ff 0%, #f0f7ff 40%, var(--white) 100%);
}

.signup-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--navy); margin-bottom: 10px;
}

.signup-meta {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--sky-500); margin-bottom: 24px;
}

.signup-hero-text {
  font-size: 1.05rem; color: var(--gray-600);
  font-weight: 400; max-width: 540px; line-height: 1.8;
}

.curriculum-list { list-style: none; margin-top: 36px; max-width: 540px; }

.curriculum-list li {
  padding: 14px 0; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.95rem; color: var(--gray-600); font-weight: 400;
}

.curriculum-list li:first-child { border-top: 1px solid var(--gray-200); }

.curriculum-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sky-50); border: 1.5px solid var(--sky-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 11px; color: var(--sky-500); font-weight: 700;
}

/* Form section */
.signup-form-section {
  padding: clamp(72px, 10vw, 100px) 0; background: var(--off-white);
}

.form-layout {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 64px; align-items: start;
}

.form-sidebar h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 16px; }

.form-sidebar p {
  font-size: 0.98rem; color: var(--gray-500);
  font-weight: 400; line-height: 1.75; margin-bottom: 12px;
}

.sold-out-note {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; background: var(--sky-50);
  border-left: 3px solid var(--sky-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 28px;
}

.sold-out-note span { font-size: 13px; color: var(--navy); font-weight: 600; }

.stat-row { display: flex; gap: 40px; margin-top: 36px; }

.stat-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--sky-500); }

.stat-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-400); margin-top: 2px;
}

.airtable-wrapper {
  background: var(--white); padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); overflow: hidden;
}

.airtable-wrapper iframe { border-radius: var(--radius-sm); border: none !important; }

@media (max-width: 768px) {
  .form-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══ FOOTER ═══ */
footer {
  padding: 48px 0 32px; background: var(--navy);
}

.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px; flex-wrap: wrap; gap: 24px;
}

.footer-brand-group {
  display: flex; align-items: center; gap: 16px;
}

.footer-logo-img {
  height: 40px; width: auto; display: block;
  object-fit: contain; opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.25rem; color: rgba(255,255,255,0.45);
}

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

.footer-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--sky-300); }

.footer-bottom {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}

.footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 400;
}
