/* ================================================================
   SUNSTATE POWERED BY ACADEMY OF AVIATION — sunstate-shared.css
   Design System

   TYPE SYSTEM
   ─────────────────────────────────────────────
   Display  Space Grotesk 500–700   Headings, hero, program names
   Body     Inter 300–500           Paragraphs, descriptions, buttons
   Mono     Space Mono 400/700      Labels, eyebrows, badges, codes

   Space Grotesk + Space Mono share the same foundry and geometry.
   Inter is the industry standard for readable body copy.
   They don't fight. They work like a machine.
   ================================================================ */

/* ─── Tokens ─── */
:root {
  /* Brand */
  --blue:      #2E3E89;
  --blue-dk:   #1C2660;
  --yellow:    #FFC11E;
  --yellow-lt: #FCDB72;

  /* Neutrals */
  --black:  #07070E;
  --ink:    #0F0F1E;
  --white:  #FFFFFF;
  --chalk:  #F4F3EE;
  --smoke:  #E6E5DF;
  --mid:    #7878A0;
  --dim:    #4A4A6A;

  /* Type */
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display',
                  'Helvetica Neue', Arial, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text',
                  'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'Fragment Mono', monospace;

  /* Layout */
  --nav-height: 64px;
  --container:  1280px;
  --pad-xl:     8rem;
  --pad-lg:     6rem;
  --pad-md:     4rem;

  /* Rules */
  --rule:       2px solid var(--ink);
  --rule-light: 1px solid rgba(15, 15, 30, 0.10);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1.5rem);
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── Base type ─── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
p {
  font-family: var(--font-body);
  line-height: 1.75;
}

/* ─── Label (Space Mono eyebrows) ─── */
.label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1;
}
.label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.label-white { color: rgba(255,255,255,0.45); }
.label-white::before { background: var(--yellow); }

/* ─── Layout ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink);
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink) !important;
}
.btn-yellow:hover {
  background: var(--yellow-lt);
  box-shadow: 0 8px 28px rgba(255, 193, 30, 0.38);
}
.btn-blue {
  background: var(--blue);
  color: #ffffff !important;
}
.btn-blue:hover {
  background: var(--blue-dk);
  box-shadow: 0 8px 28px rgba(46, 62, 137, 0.28);
}
.btn-outline-white {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { border-color: #ffffff; }

/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.40;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--nav-height) 2rem 4rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.90rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.75rem;
  display: block;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2.25rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-location {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
.hero-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.18);
}
.hero-badge {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.hero-footer-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-footer-link {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  transition: color 0.2s;
}
.hero-footer-link:hover { color: var(--yellow); }

/* ================================================================
   LOGO BAND
   ================================================================ */

.logo-band {
  padding: 8rem 0 5rem;
  background: var(--white);
  text-align: center;
}
.logo-band img {
  max-width: 680px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .logo-band { padding: 2rem 1.5rem; }
  .logo-band img { max-width: 100%; }
}

/* ================================================================
   INTRO — CTA + FORM
   ================================================================ */

.intro-sec {
  padding: var(--pad-lg) 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.intro-left h2 {
  font-size: clamp(2.5rem, 4.5vw, 5.5rem);
  color: var(--ink);
  margin-bottom: 1.75rem;
  margin-top: 1rem;
}
.intro-left p {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--dim);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2rem;
}

/* ================================================================
   FINANCING BLOCK
   ================================================================ */

.financing-block {
  background: var(--blue);
  padding: var(--pad-md) 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.financing-block-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.financing-block h3 {
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  color: var(--yellow);
  flex: 1;
  min-width: 240px;
}
.financing-block p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  flex: 0 0 320px;
  max-width: 320px;
}

/* ================================================================
   CAMPUS CONTENT BODY
   ================================================================ */

.body-sec {
  padding: var(--pad-xl) 0;
  background: var(--white);
  border-top: var(--rule);
}
.body-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6rem;
  align-items: start;
}
.body-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.body-sidebar .campus-address {
  margin-top: 1.5rem;
}
.body-sidebar .campus-address p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.body-sidebar .campus-address a {
  color: var(--blue);
  font-weight: 500;
}
.body-content > h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.body-content > h3 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--ink);
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: var(--rule-light);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.body-content > h3:first-child {
  margin-top: 0; padding-top: 0; border-top: none;
}
.body-content > p {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--dim);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 680px;
}
.body-content > p:last-child { margin-bottom: 0; }
.body-content a { color: var(--blue); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.body-content img { margin: 1.5rem 0; }
.body-content ul { max-width: 680px; margin-bottom: 1rem; }
.body-content ul li {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--dim);
  line-height: 1.8;
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  border-bottom: var(--rule-light);
}
.body-content ul li:last-child { border-bottom: none; }
.body-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ================================================================
   VIDEO STRIP
   ================================================================ */

.video-strip {
  width: 100%;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.video-strip video {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   FAQ — DARK
   ================================================================ */

.faq-sec {
  background: var(--blue);
  padding: var(--pad-xl) 0;
  border-top: 3px solid var(--yellow);
}
.faq-sec-header { margin-bottom: 4rem; }
.faq-sec-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  color: var(--white);
  margin-top: 1rem;
}
.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.faq-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  text-transform: none;
  letter-spacing: -0.01em;
}
.faq-item p {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.50);
  line-height: 1.85;
}
.faq-item p a { color: var(--yellow); text-decoration: underline; }

/* ================================================================
   FULL IMAGE
   ================================================================ */

.full-image {
  width: 100%;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.full-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   FEATURED PROGRAMS
   ================================================================ */

.featured-sec {
  padding: 4rem 0;

  border-top: var(--rule);
}
.featured-sec-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  color: var(--ink);
  margin-top: 0.75rem;
}
.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2rem;
}
.program-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.program-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.program-card .card-body {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: var(--rule-light);
}
.program-card .card-title {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.program-card .card-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #6b7280;
}
@media (max-width: 700px) { .featured-sec-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  color: var(--ink);
  margin-top: 0.75rem;
}
.program-cards { grid-template-columns: 1fr; } }

/* ================================================================
   REFERRAL
   ================================================================ */

.referral-sec {
  background: var(--blue);
  padding: var(--pad-xl) 0;
  border-top: var(--rule);
}
.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8rem;
  align-items: start;
}
.referral-heading, .referral-heading h3 {
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  color: var(--yellow);
  line-height: 0.92;
}
.referral-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: -0.01em;
}
.referral-body p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.referral-body ul li {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  padding: 0.85rem 0 0.85rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.referral-body ul li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.referral-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ================================================================
   SOCIAL / INSTAGRAM
   ================================================================ */

.social-sec {
  padding: var(--pad-lg) 0;
  background: var(--white);
  border-top: var(--rule);
}
.social-sec-header {
  margin-bottom: 3rem;
}
.social-sec-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  color: var(--ink);
  margin-top: 0.75rem;
}

/* ================================================================
   UTILITIES
   ================================================================ */
.text-yellow { color: var(--yellow); }
.text-white  { color: var(--white); }
.text-blue   { color: var(--blue); }
