/* ===================================================================
   ABI Elite Aviation Services
   Shared stylesheet — navy, gold & white luxury aviation theme
   =================================================================== */

/* ----------  Design tokens  ---------- */
:root {
  --navy-900: #0a1526;
  --navy-800: #0d1f38;
  --navy-700: #122b4d;
  --navy-600: #1b3a63;
  --navy-500: #274d7e;

  --gold-500: #c9a24a;
  --gold-400: #d9b768;
  --gold-300: #e7cf94;
  --gold-600: #a9853a;
  --gold-gradient: linear-gradient(135deg, #e7cf94 0%, #c9a24a 45%, #a9853a 100%);

  --cream: #f7f4ee;
  --cream-200: #efe9de;
  --white: #ffffff;
  --ink: #16202e;
  --muted: #5f6b7a;
  --muted-light: #9aa6b4;

  --line: rgba(201, 162, 74, 0.28);
  --line-dark: rgba(255, 255, 255, 0.10);

  --shadow-sm: 0 2px 10px rgba(10, 21, 38, 0.08);
  --shadow-md: 0 12px 40px rgba(10, 21, 38, 0.14);
  --shadow-lg: 0 30px 70px rgba(10, 21, 38, 0.28);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------  Reset / base  ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------  Reusable typographic helpers  ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
}
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-800);
}
.on-dark .section-title,
.section-dark .section-title,
.section-navy-deep .section-title,
.cta-band .section-title { color: var(--white); }

.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 62ch;
}
.section-dark .lead { color: rgba(255, 255, 255, 0.78); }

.text-gold { color: var(--gold-500); }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy-900);
  box-shadow: 0 10px 26px rgba(201, 162, 74, 0.32);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201, 162, 74, 0.42); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); transform: translateY(-3px); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(13, 31, 56, 0.28);
}
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); transform: translateY(-3px); }

.btn-ghost { color: var(--gold-600); padding-left: 0; padding-right: 0; }
.btn-ghost .arrow { transition: transform 0.25s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(6px); }

/* ----------  Header / nav  ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 18px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(10, 21, 38, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-dark);
  padding: 10px 0;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { height: 46px; width: auto; transition: height 0.35s var(--ease); color: var(--gold-500); flex: 0 0 auto; }
.scrolled .brand-mark { height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.brand-text .tag {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold-500);
  transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .btn { padding: 11px 22px; }
.nav .btn:hover { color: var(--navy-900); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 21, 38, 0.92) 0%, rgba(10, 21, 38, 0.72) 45%, rgba(10, 21, 38, 0.45) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }
.hero-inner { max-width: 660px; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero p { font-size: 1.22rem; color: rgba(255, 255, 255, 0.82); max-width: 52ch; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll .line { width: 1px; height: 44px; background: linear-gradient(var(--gold-500), transparent); animation: scrollpulse 2.2s infinite; }
@keyframes scrollpulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ----------  Page banner (interior pages)  ---------- */
.page-banner {
  position: relative;
  padding: 190px 0 90px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, var(--navy-700) 0%, var(--navy-900) 70%);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/wings.svg");
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: 620px auto;
  opacity: 0.06;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.page-banner p { color: rgba(255, 255, 255, 0.7); max-width: 54ch; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--muted-light); }
.breadcrumb a:hover { color: var(--gold-400); }

/* ----------  Sections  ---------- */
section { position: relative; }
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy-800); color: rgba(255, 255, 255, 0.82); }
.section-dark p { color: rgba(255, 255, 255, 0.72); }
.section-navy-deep { background: radial-gradient(120% 120% at 80% 0%, var(--navy-700) 0%, var(--navy-900) 65%); color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* ----------  Intro / two-column  ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.wide-text { grid-template-columns: 1.05fr 0.95fr; }
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.bordered { border: 1px solid var(--line); padding: 12px; background: var(--white); box-shadow: var(--shadow-md); }
.media-accent {
  position: absolute;
  z-index: -1;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  inset: 22px -22px -22px 22px;
}
.media-wrap { position: relative; }

/* ----------  Feature pillars  ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pillar {
  padding: 38px 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.pillar:hover { transform: translateY(-6px); border-color: var(--line); background: rgba(201, 162, 74, 0.05); }
.pillar .icon { color: var(--gold-400); margin-bottom: 18px; }
.pillar h3 { font-size: 1.5rem; color: var(--white); }
.pillar p { font-size: 0.98rem; margin: 0; }

/* ----------  Service cards  ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-500);
  letter-spacing: 0.1em;
}
.service-card h3 { font-size: 1.7rem; color: var(--navy-800); margin-top: 8px; }
.service-card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 0; }
.service-card .icon { color: var(--gold-500); margin-bottom: 20px; }

/* ----------  Included checklist  ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .tick {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-gradient);
  color: var(--navy-900);
  margin-top: 2px;
}
.check-list.on-dark li { color: rgba(255, 255, 255, 0.86); }
.check-list li strong { display: block; color: var(--navy-800); font-weight: 600; }
.on-dark.check-list li strong, .section-dark .check-list li strong { color: #fff; }

/* ----------  Detail service columns  ---------- */
.detail-block {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  padding: 46px 42px;
  box-shadow: var(--shadow-sm);
}
.detail-block .head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.detail-block .head .icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-800);
  color: var(--gold-400);
}
.detail-block .head h3 { font-size: 1.9rem; margin: 0; color: var(--navy-800); }
.detail-block .head span { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); }

/* ----------  Pricing  ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.price-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 40px 34px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.price-card:hover { transform: translateY(-8px); border-color: var(--gold-500); }
.price-card.featured { border-color: var(--gold-500); background: rgba(201, 162, 74, 0.07); }
.price-card .ribbon {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-gradient);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.price-card h3 { font-size: 1.75rem; color: #fff; }
.price-card .price { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold-400); margin: 6px 0 4px; }
.price-card .price small { font-size: 0.95rem; color: var(--muted-light); font-family: var(--font-body); }
.price-card .desc { color: rgba(255, 255, 255, 0.68); font-size: 0.96rem; }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 28px; display: grid; gap: 12px; }
.price-card ul li { display: flex; gap: 10px; color: rgba(255, 255, 255, 0.8); font-size: 0.94rem; }
.price-card ul li svg { color: var(--gold-500); flex: 0 0 auto; margin-top: 3px; }
.price-card .btn { margin-top: auto; }

.price-note {
  text-align: center;
  color: var(--muted-light);
  font-size: 0.9rem;
  margin-top: 36px;
}

/* ----------  Founders  ---------- */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.founder-card { text-align: center; }
.founder-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: grid;
  place-items: center;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .placeholder {
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.founder-photo .placeholder svg { margin: 0 auto 12px; display: block; color: var(--gold-500); opacity: 0.6; }
.founder-card h3 { font-size: 2rem; color: var(--navy-800); margin-bottom: 2px; }
.founder-card .role { font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 18px; display: block; }
.founder-card p { color: var(--muted); text-align: left; }
.section-dark .founder-card h3 { color: #fff; }
.section-dark .founder-card p { color: rgba(255, 255, 255, 0.74); }

/* ----------  Stat strip  ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 3rem; color: var(--gold-400); line-height: 1; }
.stat .label { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-top: 8px; }

/* ----------  Steps  ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step {
  padding: 36px 30px;
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  position: relative;
}
.step .n {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.5rem; color: var(--navy-800); }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ----------  Form  ---------- */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 52px 48px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy-700); }
.field label .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1px solid #d8dde4;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.16);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .error-msg { color: #c0392b; font-size: 0.8rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .badge {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  color: var(--navy-900);
}
.form-success h3 { font-size: 2rem; color: var(--navy-800); }

/* ----------  CTA band  ---------- */
.cta-band {
  position: relative;
  padding: 96px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: radial-gradient(120% 160% at 50% 0%, var(--navy-700) 0%, var(--navy-900) 70%);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../assets/wings.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 760px auto;
  opacity: 0.07;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.76); max-width: 56ch; margin: 0 auto 32px; font-size: 1.15rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ----------  FAQ  ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-200); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .sign { flex: 0 0 auto; color: var(--gold-500); transition: transform 0.3s var(--ease); font-size: 1.6rem; line-height: 1; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { color: var(--muted); padding-bottom: 26px; margin: 0; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.66); padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; }
.footer-logo-plate {
  display: inline-block;
  background: var(--white);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 22px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}
.footer-logo-plate img { height: 78px; width: auto; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }

/* Logo feature band (light) */
.brand-band { background: var(--white); border-bottom: 1px solid var(--cream-200); }
.brand-band .container { display: flex; align-items: center; gap: 40px; justify-content: center; text-align: center; flex-direction: column; padding-top: 66px; padding-bottom: 66px; }
.brand-band img { height: 150px; width: auto; }
.brand-band .tagline { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--navy-800); font-style: italic; max-width: 26ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a, .footer-col li { font-size: 0.95rem; color: rgba(255, 255, 255, 0.66); }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { color: var(--gold-500); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted-light);
}
.footer-bottom a { color: var(--muted-light); }
.footer-bottom a:hover { color: var(--gold-400); }

/* ----------  Reveal animation  ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ----------  Note / placeholder flag (visible to client, easy to spot)  ---------- */
.dev-note {
  background: #fff8e6;
  border: 1px dashed var(--gold-500);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: #7a5c12;
  margin: 22px 0;
}
.dev-note strong { color: #5c440b; }

/* ----------  Responsive  ---------- */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    background: var(--navy-900);
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .nav { transform: none; }
  .nav a { font-size: 1rem; }
  .nav-toggle { display: block; z-index: 101; }
  .split, .founders { grid-template-columns: 1fr; gap: 40px; }
  .pillars, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .media-accent { inset: 16px -16px -16px 16px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 34px 24px; }
  .detail-block { padding: 34px 26px; }
  .footer-top { grid-template-columns: 1fr; }
  .brand-text .name { font-size: 1.1rem; }
  .hero .container { padding-top: 140px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
