/* ══════════════════════════════════════════════
   AIP Academy — Global Styles
   Identical to theproudfootgroup.com brand
   styles.css
══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

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

:root {
  --navy:        #162035;
  --navy-mid:    #1e2a3e;
  --navy-dark:   #182030;
  --cream:       #f8f5ee;
  --cream-dark:  #efe9dc;
  --gold:        #c49a28;
  --gold-light:  #d4ae48;
  --white:       #ffffff;
  --text-dark:   #0f172a;
  --text-mid:    #1e293b;
  --text-light:  #475569;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', sans-serif;
  --gold-rule:   rgba(196,162,74,0.25);
  --gold-border: rgba(196,162,74,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Section label ── */
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

/* ── Headings ── */
.page-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-title em { font-style: italic; color: var(--gold-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title em { font-style: italic; }

.section-title-light {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title-light em { font-style: italic; color: var(--gold-light); }

/* ── Body text ── */
.body-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 700px;
}

/* ── Shell containers ── */
.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 10vw;
}
.shell-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 10vw;
}

/* ── Divider ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--gold-rule);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 36px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(22,32,53,0.1);
}
.card-dark {
  background: var(--navy-mid);
  border: 1px solid rgba(196,162,74,0.15);
  border-radius: 2px;
  padding: 36px;
  transition: box-shadow 0.25s;
}
.card-link { text-decoration: none; display: block; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  border-radius: 2px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-gold:hover {
  background: rgba(196,162,74,0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 12px; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.badge-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.badge-coming {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(71,85,105,0.3);
}
.badge-beta {
  background: #c49a28;
  color: #fff;
  border-color: #c49a28;
  font-weight: 700;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.fade-up-1 { animation: fadeUp 0.7s 0.1s cubic-bezier(0.16,1,0.3,1) both; }
.fade-up-2 { animation: fadeUp 0.7s 0.2s cubic-bezier(0.16,1,0.3,1) both; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s cubic-bezier(0.16,1,0.3,1) both; }

/* ── Coming Soon Banner ── */
.coming-soon-banner {
  text-align: center;
  background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-top: 1px solid var(--gold-border);
  padding: 80px 40px;
}
.cs-icon { font-size: 3em; margin-bottom: 20px; }
.cs-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.cs-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── Site Footer ── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--gold-border);
  padding: 48px 10vw;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-left {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.footer-left a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-left a:hover { color: var(--gold); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .shell, .shell-narrow { padding: 60px 24px; }
  .site-footer { padding: 40px 24px; }
}
