/* ═══════════════════════════════════════════
   FLIGHT GUYS — Global Stylesheet v2
   Clean · Light · Professional
   ═══════════════════════════════════════════ */

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

:root {
  --red:       #C8102E;
  --red-dark:  #A50D25;
  --red-pale:  #FBF0F2;
  --white:     #FFFFFF;
  --off-white: #F8F7F5;
  --charcoal:  #1C1C1C;
  --body:      #4A4A4A;
  --muted:     #888888;
  --border:    #E8E5E1;
  --border-2:  #D4CFC9;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --max:       1060px;
  --radius:    5px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
  --shadow:    0 4px 28px rgba(0,0,0,0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13px; font-weight: 500;
  color: var(--body); letter-spacing: 0.03em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 9px 22px !important; border-radius: var(--radius);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); border-radius: 2px; }

@media (max-width: 820px) {
  nav { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 13px 24px; font-size: 15px; }
  .nav-cta { margin: 8px 20px 0 !important; text-align: center; display: block !important; }
}

/* ── PAGE WRAPPER ── */
.page-body { padding-top: 68px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 72px 48px 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-label::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--red); }
.page-hero h1 {
  font-family: var(--serif); font-size: 50px; font-weight: 700;
  color: var(--charcoal); line-height: 1.1; letter-spacing: -0.02em;
  max-width: 620px;
}
.page-hero h1 em { color: var(--red); font-style: italic; }
.page-hero p {
  font-size: 16px; color: var(--body); margin-top: 18px;
  max-width: 480px; line-height: 1.78; font-weight: 300;
}

/* ── SECTIONS ── */
.section { padding: 80px 48px; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--red); }

.section-title {
  font-family: var(--serif); font-size: 40px; font-weight: 700;
  line-height: 1.12; color: var(--charcoal); letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.section-title em { color: var(--red); font-style: italic; }

.section-body {
  font-size: 16px; color: var(--body); line-height: 1.78;
  max-width: 520px; font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; text-decoration: none;
  padding: 13px 26px; border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1px solid var(--border-2); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); }

/* ── RED CTA BAND ── */
.red-band { background: var(--red); padding: 64px 48px; }
.red-band-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.red-band h2 {
  font-family: var(--serif); font-size: 36px; font-weight: 700;
  color: var(--white); line-height: 1.12; letter-spacing: -0.01em;
}
.red-band p { color: rgba(255,255,255,0.75); font-size: 15px; margin-top: 8px; font-weight: 300; }
.red-band .btn-white {
  background: var(--white); color: var(--red);
  font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.red-band .btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

/* ── DIVIDER LINE ── */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 56px 48px 28px; }
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 200px; }
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); font-weight: 600; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.44); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.44); line-height: 1.8; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.2); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .section { padding: 56px 24px; }
  .page-hero { padding: 48px 24px 44px; }
  .page-hero h1 { font-size: 34px; }
  .section-title { font-size: 30px; }
  .red-band { padding: 48px 24px; }
  .red-band h2 { font-size: 28px; }
  footer { padding: 44px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
  .page-hero h1 { font-size: 28px; }
  .section-title { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
