/* ===========================================================
   Eagle Marketing LLC — Design System
   Palette: night-sky navy + desert-sun gold, on a pale sky ground
   Display: Big Shoulders Display (tall, condensed — wingspan energy)
   Body: Karla (warm, plain, easy to read)
   Utility: IBM Plex Mono (small labels, stats)
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Karla:ital,wght@0,400;0,500;0,700;1,400&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --ink: #132A46;
  --ink-2: #1C3A5E;
  --sky: #EDF1F6;
  --sky-2: #DCE4EE;
  --white: #FFFFFF;
  --gold: #E8A33D;
  --gold-dark: #C6832A;
  --slate: #3B4657;
  --slate-soft: #6B7688;
  --climb: #4F7C5D;
  --line: rgba(19, 42, 70, 0.12);

  --display: 'Big Shoulders Display', sans-serif;
  --body: 'Karla', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--slate);
  background: var(--sky);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.02;
  margin: 0;
  letter-spacing: 0.005em;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.brand svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 10px 20px !important;
  border-radius: 3px;
  font-weight: 700 !important;
  border-bottom: none !important;
}

.nav-cta:hover { background: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 20px 28px 28px;
    gap: 18px;
  }
}

/* ---------- Flight-path signature element ---------- */

.flight-divider {
  width: 100%;
  height: 64px;
  display: block;
}

.flight-divider path {
  stroke: var(--gold);
  stroke-width: 2.5;
  fill: none;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); }

.btn-outline-ink {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-ink:hover { background: var(--ink); color: var(--white); }

/* ---------- Hero ---------- */

.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 88px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin: 18px 0 20px;
}

.hero p.lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-art img { width: 100%; height: 100%; object-fit: cover; }

.hero-art--eagle {
  background: #060a10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.hero-art--eagle img { object-fit: contain; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
}

/* ---------- Section basics ---------- */

section { padding: 84px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  margin-top: 14px;
}

.section-head p { font-size: 1.05rem; color: var(--slate-soft); margin-top: 14px; }

.section-alt { background: var(--white); }
.section-ink { background: var(--ink); color: rgba(255,255,255,0.85); }
.section-ink h2, .section-ink h3 { color: var(--white); }

/* ---------- Cards / grids ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 28px;
}

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

.card p { color: var(--slate-soft); font-size: 0.98rem; }

.wing-mark {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
}

/* ---------- Media rows ---------- */

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.media-row.reverse .media-row-text { order: 2; }
.media-row.reverse .media-row-img { order: 1; }

.media-row-img img {
  border-radius: 6px;
  border: 1px solid var(--line);
}

@media (max-width: 860px) {
  .media-row, .media-row.reverse { grid-template-columns: 1fr; }
  .media-row.reverse .media-row-text,
  .media-row.reverse .media-row-img { order: initial; }
}

/* ---------- Altitude stage cards (Products page) ---------- */

.altitude-track {
  position: relative;
  padding-left: 2px;
}

.altitude-stage {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.altitude-stage:first-child { border-top: none; }

.altitude-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.altitude-label .ft {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: 0;
  margin-top: 4px;
}

.altitude-stage h3 { font-size: 1.5rem; margin-bottom: 8px; }
.altitude-stage p.desc { color: var(--slate-soft); margin-bottom: 16px; max-width: 60ch; }

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  background: var(--sky-2);
  color: var(--slate);
  padding: 5px 10px;
  border-radius: 3px;
}

/* ---------- Stats strip ---------- */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--gold);
}

.stat span {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 860px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- FAQ ---------- */

.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h4 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { color: var(--slate-soft); margin: 0; }

/* ---------- Forms ---------- */

.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--body);
  font-size: 0.98rem;
  background: var(--white);
  color: var(--slate);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink-2);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--mono);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { text-decoration: none; color: rgba(255,255,255,0.68); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

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

/* ---------- Utility ---------- */

.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
