/* =========================================================
   AITLAP — Design System
   Palette extracted from the official logo:
   Navy #0B1D33 · Teal #128A8A · Orange #E8842C · Sage #7FA09F
   ========================================================= */

:root {
  --navy: #0b1d33;
  --navy-2: #122a48;
  --navy-3: #0e2440;
  --teal: #128a8a;
  --teal-dark: #0c6666;
  --teal-light: #e4f4f3;
  --orange: #e8842c;
  --orange-dark: #c96b1b;
  --orange-light: #fdead9;
  --sage: #7fa09f;
  --sand: #c7c7af;

  --wash-teal: #bfe6e2;
  --wash-orange: #f8d2a0;
  --wash-sage: #cfe1da;
  --wash-sand: #ece4c9;

  --gold: #96650f;
  --gold-dark: #6e4a0a;
  --gold-light: #f4e9d6;

  --ink: #16232f;
  --ink-soft: #55677a;
  --ink-faint: #8695a4;
  --paper: #ffffff;
  --paper-tint: #f6f8fa;
  --paper-tint-2: #eef2f4;
  --border: #e3e8ec;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(11, 29, 51, 0.06);
  --shadow: 0 12px 32px -8px rgba(11, 29, 51, 0.16);
  --shadow-lg: 0 24px 60px -12px rgba(11, 29, 51, 0.28);
  --shadow-orange: 0 14px 30px -8px rgba(232, 132, 44, 0.45);
  --shadow-teal: 0 14px 30px -8px rgba(18, 138, 138, 0.4);

  --container: 1200px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background-color: #f7f9f7;
  background-image:
    radial-gradient(1200px 680px at 2% 0%, rgba(18, 138, 138, .22), transparent 58%),
    radial-gradient(1000px 650px at 100% 4%, rgba(232, 132, 44, .2), transparent 55%),
    radial-gradient(900px 650px at 4% 38%, rgba(127, 160, 159, .26), transparent 55%),
    radial-gradient(1050px 700px at 100% 50%, rgba(199, 199, 175, .28), transparent 55%),
    radial-gradient(950px 650px at 2% 78%, rgba(232, 132, 44, .18), transparent 55%),
    radial-gradient(1100px 700px at 100% 98%, rgba(18, 138, 138, .2), transparent 55%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Layout utilities ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; position: relative; }
.section-tight { padding: 44px 0; }
.section-head { max-width: 680px; margin: 0 auto 36px; text-align: center; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.section-head-row .eyebrow, .section-head-row h2 { margin-bottom: 0; }
.section-head-row .head-link { font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; padding-bottom: 4px; }

/* tinted sections: soft brand-color wash instead of flat gray, plus optional dot texture */
.bg-dots { background-image: radial-gradient(rgba(11,29,51,.08) 1.4px, transparent 1.4px); background-size: 22px 22px; }
.bg-tint.bg-dots {
  background-image:
    radial-gradient(rgba(11,29,51,.07) 1.4px, transparent 1.4px),
    linear-gradient(135deg, var(--wash-teal) 0%, var(--wash-sand) 50%, var(--wash-orange) 100%);
  background-size: 22px 22px, cover;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.text-center { text-align: center; }
.bg-tint { background-image: linear-gradient(135deg, var(--wash-teal) 0%, var(--wash-sand) 50%, var(--wash-orange) 100%); }
.bg-navy { background: var(--navy); color: rgba(255,255,255,.88); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1.in-view { transition-delay: .08s; }
.reveal-delay-2.in-view { transition-delay: .16s; }
.reveal-delay-3.in-view { transition-delay: .24s; }
.reveal-delay-4.in-view { transition-delay: .32s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -8px rgba(232,132,44,.55); }
.btn-teal { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; box-shadow: var(--shadow-teal); }
.btn-teal:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -8px rgba(18,138,138,.5); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-3px); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.navbar.scrolled {
  background: rgba(11, 29, 51, 0.92);
  backdrop-filter: blur(14px);
  height: 72px;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: 46px; border-radius: 50%; background: #fff; padding: 3px; }
.brand-text { font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: 1.2rem; letter-spacing: .02em; }
.brand-text small { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sand); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,.85); font-weight: 500; font-size: .95rem;
  padding: 10px 16px; border-radius: 999px; position: relative; transition: color .25s, background .25s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.12); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; background: rgba(255,255,255,.12); border: none; border-radius: 10px;
  width: 44px; height: 44px; position: relative; z-index: 1100;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ''; position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav-toggle::before { top: 15px; }
.nav-toggle span { top: 21px; }
.nav-toggle::after { top: 27px; }
.nav-toggle.open::before { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span { opacity: 0; }
.nav-toggle.open::after { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100vh; min-height: 620px; overflow: hidden;
  display: flex; align-items: center; color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,29,51,.65) 0%, rgba(11,29,51,.55) 45%, rgba(11,29,51,.92) 100%);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; pointer-events: none; z-index: 1;
}
.hero-blob.b1 { width: 420px; height: 420px; background: var(--orange); top: -120px; right: -100px; }
.hero-blob.b2 { width: 360px; height: 360px; background: var(--teal); bottom: -140px; left: -80px; }
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-content .eyebrow { color: var(--orange); }
.hero-content h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem); color: #fff; margin-bottom: .35em;
  animation: fadeUp 1s var(--ease) both;
}
.hero-content .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.88); max-width: 560px; margin-bottom: 2em;
  animation: fadeUp 1s var(--ease) .15s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 1s var(--ease) .3s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero-dots { position: absolute; z-index: 3; bottom: 96px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button { width: 32px; height: 4px; border-radius: 4px; border: none; background: rgba(255,255,255,.35); transition: background .3s, width .3s; }
.hero-dots button.active { background: var(--orange); width: 46px; }
.hero-nav { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s; backdrop-filter: blur(6px); }
.hero-nav:hover { background: rgba(255,255,255,.28); }
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
.scroll-cue {
  position: absolute; z-index: 3; bottom: 96px; right: 40px; color: rgba(255,255,255,.75);
  display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-cue .dot-line { width: 2px; height: 34px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.scroll-cue .dot-line::after { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; background: var(--orange); animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown { 0% { top: -20px; } 100% { top: 34px; } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-tint-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-body { padding: 26px 26px 28px; }
.card-tag {
  display: inline-block; font-family: 'Poppins',sans-serif; font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--teal); background: var(--teal-light);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card-body h3 a:hover { color: var(--orange); }
.card-meta { font-size: .82rem; color: var(--ink-faint); margin-bottom: 8px; }
.card-body p { color: var(--ink-soft); font-size: .95rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--orange); font-size: .9rem; transition: gap .25s; }
.card-link:hover { gap: 10px; }

/* Director cards */
.director-card { text-align: center; padding: 36px 24px; }
.director-photo {
  width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 20px;
  position: relative; padding: 4px;
  background: conic-gradient(from 180deg, var(--orange), var(--teal), var(--sage), var(--orange));
  transition: transform .4s var(--ease);
}
.director-card:hover .director-photo { transform: rotate(8deg) scale(1.04); }
.director-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid var(--paper); display: block; }
.director-card h3 { font-size: 1.08rem; margin-bottom: 2px; }
.director-role { color: var(--teal); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.director-bio { font-size: .88rem; color: var(--ink-soft); max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.director-card.open .director-bio { max-height: 260px; margin-top: 6px; }
.director-toggle { font-size: .82rem; font-weight: 600; color: var(--orange); border: none; background: none; padding: 4px; }

/* Stat strip (in-flow, e.g. on navy sections) */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--orange); }
.stat .label { color: rgba(255,255,255,.75); font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; }

/* Floating stat bar — overlaps the hero's bottom edge so there's no dead seam */
.floating-bar-wrap { position: relative; z-index: 6; max-width: var(--container); margin: -64px auto 0; padding: 0 24px; }
.floating-bar {
  background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.floating-bar .fb-item {
  display: flex; align-items: center; gap: 14px; padding: 26px 24px; border-right: 1px solid var(--border);
}
.floating-bar .fb-item:last-child { border-right: none; }
.floating-bar .fb-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--orange-light); color: var(--orange); display: flex; align-items: center; justify-content: center;
}
.floating-bar .fb-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--navy); line-height: 1; }
.floating-bar .fb-label { font-size: .8rem; color: var(--ink-soft); margin-top: 2px; }

/* About / bento image collage */
.about-collage { position: relative; padding: 30px 30px 40px 0; }
.about-collage .img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.about-collage .img-accent {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); border: 6px solid var(--paper); z-index: 3;
}
.about-collage .dot-field {
  position: absolute; top: 0; left: -20px; width: 120px; height: 120px; z-index: 1;
  background-image: radial-gradient(var(--sand) 2px, transparent 2px); background-size: 14px 14px; opacity: .5;
}
.about-collage .accent-blob {
  position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--teal-light); z-index: 0;
  top: -30px; right: -30px; filter: blur(2px);
}
.mini-stats { display: flex; gap: 28px; flex-wrap: wrap; margin: 24px 0 28px; }
.mini-stats .ms { display: flex; align-items: baseline; gap: 8px; }
.mini-stats .ms .n { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--orange); }
.mini-stats .ms .l { font-size: .84rem; color: var(--ink-soft); }

/* Trusted-by strip (partners + sponsors combined) */
.trusted-strip { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.trusted-strip .tl-label { font-family: 'Poppins',sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); flex-shrink: 0; }
.trusted-strip img { height: 46px; width: auto; border-radius: 8px; filter: grayscale(1); opacity: .7; transition: filter .3s, opacity .3s, transform .3s; }
.trusted-strip img:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }

/* Timeline / objectives */
.objective-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.objective {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.objective:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.objective .icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--orange-light); color: var(--orange); font-size: 1.4rem; margin-bottom: 18px;
}
.objective h4 { font-size: 1.02rem; margin-bottom: 8px; }
.objective p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Forms ---------- */
.form-card { background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 48px; border: 1px solid var(--border); }
.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 8px; color: var(--navy); }
.field .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--paper-tint); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px var(--teal-light);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-hint { font-size: .8rem; color: var(--ink-faint); margin-top: 6px; }
.form-error { color: #c0392b; font-size: .82rem; margin-top: 6px; }
/* Off-screen (not display:none) so most bots that skip hidden fields still fill it in */
.hp-trap { position: absolute; left: -5000px; top: -5000px; width: 1px; height: 1px; overflow: hidden; }
fieldset { border: none; padding: 0; margin: 0 0 22px; }
.checkbox-row { display: flex; align-items: center; gap: 10px; }
.checkbox-row input { width: auto; }

.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 26px; font-size: .93rem; }
.alert-success { background: var(--teal-light); color: var(--teal-dark); border: 1px solid rgba(18,138,138,.25); }
.alert-error { background: var(--orange-light); color: var(--orange-dark); border: 1px solid rgba(232,132,44,.3); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: calc(var(--nav-h) + 70px) 0 90px; position: relative; overflow: hidden;
  background: radial-gradient(1200px 500px at 15% -10%, rgba(18,138,138,.35), transparent 60%),
              radial-gradient(900px 500px at 100% 0%, rgba(232,132,44,.28), transparent 55%),
              var(--navy);
  color: #fff;
}
.page-header .eyebrow { color: var(--orange); }
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .3em; }
.page-header p { color: rgba(255,255,255,.8); max-width: 640px; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 44px; width: 44px; border-radius: 50%; background: #fff; padding: 3px; }
.footer-brand span { font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: 1.15rem; }
.site-footer h5 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.site-footer .foot-links li { margin-bottom: 12px; }
.site-footer .foot-links a { font-size: .92rem; color: rgba(255,255,255,.72); transition: color .25s, padding-left .25s; }
.site-footer .foot-links a:hover { color: var(--orange); padding-left: 4px; }
.newsletter-form { display: flex; gap: 0; margin-top: 8px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 14px 18px; color: #fff; font-size: .9rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form button { border: none; background: var(--orange); color: #fff; padding: 0 22px; font-weight: 600; font-size: .85rem; }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; }
.social-row a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: .84rem; color: rgba(255,255,255,.55); flex-wrap: wrap; gap: 12px; }
.footer-bottom .tagline { color: var(--sand); }

/* ---------- Dialog (RSVP modal) ---------- */
dialog::backdrop { background: rgba(11,29,51,.6); backdrop-filter: blur(3px); }
dialog { animation: fadeUp .3s var(--ease); }
dialog .form-card { box-shadow: none; border: none; }

/* ---------- Flash toast ---------- */
.toast-flash {
  position: fixed; top: 100px; right: 24px; z-index: 1200; max-width: 360px;
  padding: 16px 22px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 500;
  box-shadow: var(--shadow-lg); animation: toastIn .4s var(--ease) both;
  color: #fff;
}
.toast-flash.toast-success { background: var(--teal-dark); }
.toast-flash.toast-error { background: #c0392b; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--orange); color: #fff; border: none; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-orange); opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, transform .3s, visibility .3s; z-index: 900; font-size: 1.1rem;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Misc components ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.badge-ring { position: absolute; border: 2px dashed var(--sand); border-radius: 50%; }

.tabs { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.tab-btn { padding: 10px 22px; border-radius: 999px; border: 1.5px solid var(--border); background: #fff; font-weight: 600; font-size: .88rem; color: var(--ink-soft); transition: all .25s; }
.tab-btn.active, .tab-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.album-block { margin-bottom: 70px; }
.album-head { margin-bottom: 26px; }
.album-head h3 { font-size: 1.4rem; margin-bottom: 6px; }
.album-head p { color: var(--ink-soft); max-width: 700px; }
.masonry { columns: 3 220px; column-gap: 18px; }
.masonry .m-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in; position: relative; }
.masonry .m-item img { width: 100%; display: block; transition: transform .5s var(--ease); }
.masonry .m-item:hover img { transform: scale(1.06); }

.lightbox { position: fixed; inset: 0; background: rgba(11,29,51,.94); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 26px; right: 32px; color: #fff; font-size: 2rem; background: none; border: none; }

.event-card { display: grid; grid-template-columns: 240px 1fr; gap: 0; }
.event-date-badge {
  background: var(--navy); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px;
}
.event-date-badge .day { font-family: 'Poppins',sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--orange); line-height: 1; }
.event-date-badge .month { text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; margin-top: 4px; }
.event-date-badge .year { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.event-body { padding: 30px 34px; }
.event-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 14px; color: var(--ink-soft); font-size: .88rem; }
.event-meta span { display: inline-flex; align-items: center; gap: 6px; }
.event-price { color: var(--teal); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; }
.contact-info-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 44px; height: 100%; }
.contact-info-card h3 { color: #fff; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-item .icn { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); }
.contact-item h5 { color: #fff; font-size: .92rem; margin-bottom: 4px; }
.contact-item p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }

.souvenir-line { display: grid; grid-template-columns: 90px 1.6fr 1fr 1fr 90px 100px 40px; gap: 14px; align-items: center; margin-bottom: 16px; padding: 14px; background: var(--paper-tint); border-radius: var(--radius-sm); }
.souvenir-line img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; }
.souvenir-total { text-align: right; font-family: 'Poppins',sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.remove-line { background: none; border: none; color: #c0392b; font-size: 1.2rem; }

.progress-steps { display: flex; justify-content: center; gap: 10px; margin-bottom: 50px; }
.progress-steps .step { width: 42px; height: 4px; border-radius: 4px; background: var(--border); }
.progress-steps .step.done { background: var(--orange); }

.coming-soon-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-light); color: var(--orange-dark); font-weight: 600; font-size: .78rem; padding: 6px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Status badges ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; font-family: 'Poppins',sans-serif; font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; padding: 5px 12px; border-radius: 999px; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-active { background: var(--teal-light); color: var(--teal-dark); }
.badge-inactive { background: var(--paper-tint-2); color: var(--ink-faint); }
.badge-pending { background: var(--orange-light); color: var(--orange-dark); }
.badge-rejected { background: #fbe4e1; color: #c0392b; }

/* ---------- Locked / teaser content (guests & non-active members) ---------- */
.locked-wrap { position: relative; }
.locked-blur { filter: blur(7px); user-select: none; pointer-events: none; }
.locked-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 30px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,.88) 45%, rgba(255,255,255,.96) 100%);
}
.bg-navy .locked-overlay { background: linear-gradient(180deg, rgba(11,29,51,.3) 0%, rgba(11,29,51,.88) 45%, var(--navy) 100%); }
.locked-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--orange);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: var(--shadow);
}
.locked-overlay h3 { font-size: 1.3rem; margin-bottom: 8px; }
.locked-overlay p { color: var(--ink-soft); max-width: 420px; margin-bottom: 20px; }
.bg-navy .locked-overlay p { color: rgba(255,255,255,.75); }
.locked-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- Member status search widget ---------- */
.member-search { position: relative; }
.member-search input {
  width: 100%; padding: 16px 20px 16px 52px; border-radius: 999px; border: 1.5px solid var(--border);
  font-size: 1rem; background: var(--paper); box-shadow: var(--shadow-sm);
}
.member-search input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-light); }
.member-search .search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); pointer-events: none; }
.member-search-results { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; min-height: 4px; }
.member-search-results .msr-row {
  display: flex; align-items: center; justify-content: space-between; background: var(--paper);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 18px; font-size: .92rem;
  animation: fadeUp .3s var(--ease) both;
}
.member-search-results .msr-empty { color: var(--ink-soft); font-size: .9rem; padding: 10px 4px; }
.member-search-hint { font-size: .8rem; color: var(--ink-faint); margin-top: 10px; }

/* ---------- Members hub (homepage: search + vacancy/offer teasers) ---------- */
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.hub-card { background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); padding: 32px; }
.hub-teaser-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 20px; }
.hub-teaser-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--paper-tint); border-radius: var(--radius-sm); filter: blur(4px); user-select: none; }
.hub-teaser-row .htr-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--paper-tint-2); display: flex; align-items: center; justify-content: center; color: var(--ink-faint); flex-shrink: 0; }
.hub-teaser-row .htr-lines { flex: 1; }
.hub-teaser-row .htr-line { height: 9px; border-radius: 4px; background: var(--border); margin-bottom: 6px; }
.hub-teaser-row .htr-line:last-child { margin-bottom: 0; width: 60%; }

/* ---------- Admin shell ---------- */
.admin-body { background: var(--paper-tint); margin: 0; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar { width: 250px; background: var(--navy); color: rgba(255,255,255,.8); flex-shrink: 0; display: flex; flex-direction: column; padding: 26px 18px; }
.admin-sidebar .brand { margin-bottom: 30px; padding: 0 8px; }
.admin-sidebar .brand img { height: 40px; width: 40px; border-radius: 50%; background: #fff; padding: 3px; }
.admin-sidebar .brand-text { font-size: 1.05rem; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; color: rgba(255,255,255,.75); font-weight: 500; font-size: .92rem; margin-bottom: 4px; transition: background .2s, color .2s; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-nav-group { font-family: 'Poppins',sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); padding: 18px 14px 6px; }
.admin-nav-group:first-child { padding-top: 4px; }
.admin-sidebar-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.admin-main { flex: 1; padding: 36px 44px; min-width: 0; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.admin-topbar h1 { font-size: 1.6rem; margin: 0; }
.admin-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.admin-stat { display: block; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
a.admin-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--teal); }
.admin-stat .n { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 1.9rem; color: var(--navy); }
.admin-stat .l { color: var(--ink-soft); font-size: .85rem; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--paper); border-radius: var(--radius); overflow: hidden; }
.admin-table th, .admin-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.admin-table .avatar-thumb { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; display: block; }
.avatar-placeholder { display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark); font-family: 'Poppins',sans-serif; font-weight: 700; flex-shrink: 0; }
.admin-table th { background: var(--paper-tint); font-family: 'Poppins',sans-serif; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table .row-actions { display: flex; gap: 10px; }
.admin-table .row-actions a, .admin-table .row-actions button { font-size: .82rem; font-weight: 600; color: var(--teal); background: none; border: none; padding: 0; }
.admin-table .row-actions .danger { color: #c0392b; }
.admin-status-select { padding: 6px 10px; border-radius: 8px; border: 1.5px solid var(--border); font-size: .82rem; font-family: inherit; }

/* ---------- Multi-step form wizard ---------- */
.form-wizard .form-steps { display: flex; justify-content: space-between; margin-bottom: 44px; position: relative; }
.form-wizard .form-steps::before { content: ''; position: absolute; top: 21px; left: 5%; right: 5%; height: 2px; background: var(--border); z-index: 0; }
.form-wizard .fs-progress { position: absolute; top: 21px; left: 5%; height: 2px; background: var(--orange); z-index: 1; width: 0; transition: width .45s var(--ease); }
.form-wizard .fs-step { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; background: none; border: none; padding: 0; cursor: default; }
.form-wizard .fs-step.clickable { cursor: pointer; }
.fs-circle {
  width: 44px; height: 44px; border-radius: 50%; background: var(--paper); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Poppins',sans-serif;
  color: var(--ink-faint); transition: all .3s var(--ease); flex-shrink: 0;
}
.fs-label { font-size: .74rem; color: var(--ink-faint); font-weight: 600; text-align: center; line-height: 1.2; display: none; }
.form-wizard .fs-step.active .fs-circle { border-color: var(--orange); color: var(--orange); background: var(--orange-light); box-shadow: 0 0 0 6px var(--orange-light); }
.form-wizard .fs-step.active .fs-label { color: var(--navy); }
.form-wizard .fs-step.done .fs-circle { background: var(--teal); border-color: var(--teal); color: #fff; }
.form-wizard .fs-step.done .fs-label { color: var(--teal-dark); }
@media (min-width: 640px) { .fs-label { display: block; } }

.form-step-panel { display: none; }
.form-step-panel.active { display: block; animation: fadeUp .4s var(--ease); }
.form-step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.form-step-head .icn { width: 40px; height: 40px; border-radius: 11px; background: var(--teal-light); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-step-head h3 { font-size: 1.1rem; margin-bottom: 2px; }
.form-step-head p { margin: 0; font-size: .84rem; color: var(--ink-faint); }
.form-step-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); }
.form-step-nav .spacer { flex: 1; }

/* ---------- Newsletter ---------- */
.newsletter-card { display: grid; grid-template-columns: 260px 1fr; gap: 0; }
.newsletter-cover { position: relative; overflow: hidden; background: var(--gold-dark); }
.newsletter-cover img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-cover .edition-flag {
  position: absolute; top: 16px; right: -34px; transform: rotate(45deg); width: 150px; text-align: center;
  background: var(--gold); color: #fff; font-family: 'Poppins',sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 0; box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.newsletter-body { padding: 30px 34px; }
.newsletter-tag {
  display: inline-block; font-family: 'Poppins',sans-serif; font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold); background: var(--gold-light);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.newsletter-body h3 { font-size: 1.3rem; margin-bottom: 4px; }
.newsletter-tagline { color: var(--ink-faint); font-size: .85rem; font-style: italic; margin-bottom: 14px; }
.newsletter-actions { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; box-shadow: 0 14px 30px -8px rgba(150,101,15,.45); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -8px rgba(150,101,15,.55); }

.newsletter-hero {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--gold-dark); aspect-ratio: 3/4; max-width: 320px; margin: 0 auto;
}
.newsletter-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .28; filter: blur(3px); }
.newsletter-hero .nh-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 30px; color: #fff;
}
.newsletter-hero .nh-overlay .lock { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

/* ---------- Nav dropdown ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown > span { cursor: pointer; }
.nav-dropdown > span::after { content: '▾'; margin-left: 5px; font-size: .65em; opacity: .8; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px); width: 230px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 20;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; color: var(--ink) !important; padding: 11px 14px !important; border-radius: 8px !important; font-size: .88rem; background: none !important; }
.nav-dropdown-menu a:hover { background: var(--paper-tint) !important; color: var(--orange) !important; }
.nav-account { display: flex; align-items: center; gap: 10px; }
.nav-account .who { color: #fff; font-size: .85rem; padding: 6px 4px; border-radius: 8px; transition: background .2s; }
.nav-account .who:hover { background: rgba(255,255,255,.1); }
.nav-account .who strong { color: var(--orange); }
.profile-alert-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-left: 4px; box-shadow: 0 0 0 3px var(--orange-light); vertical-align: middle; }
.mobile-nav .profile-alert-dot { box-shadow: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .objective-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .floating-bar { grid-template-columns: repeat(2, 1fr); }
  .floating-bar .fb-item:nth-child(2) { border-right: none; }
  .hub-grid { grid-template-columns: 1fr; }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .event-card { grid-template-columns: 1fr; }
  .event-date-badge { flex-direction: row; gap: 10px; padding: 14px; }
  .newsletter-card { grid-template-columns: 1fr; }
  .newsletter-cover { aspect-ratio: 16/9; }
  .masonry { columns: 2 200px; }
  .souvenir-line { grid-template-columns: 60px 1fr 1fr; row-gap: 10px; }
  .souvenir-line img { display: none; }
  .about-collage { padding: 0; margin-bottom: 20px; }
  .about-collage .img-accent { width: 42%; }
}
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .section-tight { padding: 36px 0; }
  .grid-2, .grid-3, .grid-4, .objective-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .masonry { columns: 1 100%; }
  .souvenir-line { grid-template-columns: 1fr; grid-template-areas: none; text-align: left; }
  .hero-nav { display: none; }
  .scroll-cue { display: none; }
  .floating-bar { grid-template-columns: 1fr; }
  .floating-bar .fb-item { border-right: none; border-bottom: 1px solid var(--border); }
  .floating-bar .fb-item:last-child { border-bottom: none; }
  .floating-bar-wrap { margin-top: -36px; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .trusted-strip { justify-content: center; text-align: center; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-sm); }
  .newsletter-form input { width: 100%; }
  .newsletter-form button { width: 100%; padding: 14px; }
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 1rem; }
  .admin-shell { flex-direction: column; }
  .admin-sidebar { width: 100%; flex-direction: row; align-items: center; flex-wrap: wrap; padding: 14px 16px; }
  .admin-sidebar .brand { margin-bottom: 0; margin-right: auto; }
  .admin-nav { display: flex; flex-wrap: wrap; gap: 4px; }
  .admin-sidebar-foot { margin-top: 0; padding-top: 0; border-top: none; }
  .admin-main { padding: 24px 18px; }
  .admin-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Mobile nav overlay ---------- */
.mobile-nav {
  position: fixed; inset: 0; background: var(--navy); z-index: 1050;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-16px);
  transition: opacity .35s var(--ease), visibility .35s, transform .35s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a { font-family: 'Poppins',sans-serif; font-size: 1.5rem; color: #fff; padding: 14px 0; opacity: 0; transform: translateY(14px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.mobile-nav.open a { opacity: 1; transform: none; }
.mobile-nav a:nth-child(1) { transition-delay: .05s; }
.mobile-nav a:nth-child(2) { transition-delay: .1s; }
.mobile-nav a:nth-child(3) { transition-delay: .15s; }
.mobile-nav a:nth-child(4) { transition-delay: .2s; }
.mobile-nav a:nth-child(5) { transition-delay: .25s; }
.mobile-nav a:nth-child(6) { transition-delay: .3s; }
.mobile-nav a:nth-child(7) { transition-delay: .35s; }
.mobile-nav .btn { margin-top: 20px; }
