:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --soft: #f7f7f5;
  --ink: #0b0b0b;
  --muted: #666666;
  --line: rgba(0, 0, 0, 0.10);
  --dark: #101010;
  --gold: #b99653;
  --gold-soft: #efe5cf;
  --shadow: 0 24px 70px rgba(0,0,0,.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}
.brand img {
  width: 170px;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; color: #2e2e2e; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--ink); border-radius: 999px; }

.hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 650px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
  gap: 24px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -26px -20px auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(185,150,83,.22), transparent 65%);
  pointer-events: none;
}
.hero-bg {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 64px;
  border-radius: 34px;
  background: linear-gradient(145deg, #111 0%, #1b1b1b 48%, #090909 100%);
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-content::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.hero-content, .hero-card { position: relative; z-index: 1; }
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
}
.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { background: #c8a45d; }
.btn-secondary { border: 1px solid rgba(255,255,255,.28); color: #fff; }
.hero-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  display: block;
  width: 320px;
  height: 134px;
  background: url('assets/falcon-logo-transparent.png') left center / contain no-repeat;
  margin-bottom: 36px;
  opacity: .92;
}
.hero-card span { display: block; color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.hero-card strong { display: block; margin: 16px 0; font-size: 40px; line-height: 1.02; letter-spacing: -.05em; }
.hero-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 17px; }

.section { width: min(1180px, calc(100% - 40px)); margin: 105px auto; }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
h2 { margin: 0; font-size: clamp(34px, 5vw, 60px); line-height: 1; letter-spacing: -.055em; }
.lead { margin: 0; color: var(--muted); font-size: 22px; line-height: 1.6; }
.stats-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -45px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,.05);
}
.stats-strip div { padding: 26px; border-right: 1px solid var(--line); }
.stats-strip div:last-child { border-right: 0; }
.stats-strip strong { display: block; font-size: 26px; letter-spacing: -.04em; }
.stats-strip span { color: var(--muted); font-weight: 600; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-card {
  min-height: 265px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.industry-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.09); }
.industry-card.featured { grid-column: span 3; min-height: 230px; background: linear-gradient(135deg, #fff 0%, #faf6ec 100%); }
.industry-card.wide { grid-column: span 3; min-height: 220px; background: linear-gradient(135deg, #111 0%, #1b1b1b 100%); color: #fff; }
.industry-card.wide p { color: rgba(255,255,255,.72); }
.icon { color: var(--gold); font-weight: 900; letter-spacing: .12em; }
.industry-card h3 { margin: 34px 0 14px; font-size: 25px; line-height: 1.08; letter-spacing: -.045em; }
.industry-card.featured h3 { font-size: 34px; }
.industry-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15.5px; }
.process-section {
  width: 100%;
  margin: 120px 0;
  padding: 105px max(20px, calc((100% - 1180px) / 2));
  background: #111;
  color: #fff;
}
.light h2 { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.process-grid div { padding: 26px; border-radius: 24px; background: #1b1b1b; border: 1px solid rgba(255,255,255,.1); }
.process-grid span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: #111; font-weight: 900; }
.process-grid h3 { margin: 24px 0 12px; font-size: 22px; letter-spacing: -.03em; }
.process-grid p { color: rgba(255,255,255,.7); line-height: 1.6; margin: 0; }
.contact-section { margin-top: 110px; }
.contact-panel {
  padding: 70px;
  border-radius: 34px;
  background: linear-gradient(135deg, #f8f8f6 0%, #ffffff 100%);
  border: 1px solid var(--line);
  box-shadow: 0 20px 70px rgba(0,0,0,.07);
}
.contact-panel p:not(.section-kicker) { max-width: 720px; color: var(--muted); font-size: 20px; line-height: 1.6; }
.contact-panel .btn { margin-top: 18px; }
.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 80px auto 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}
.footer img { width: 125px; display: block; margin-bottom: 10px; }

@media (max-width: 880px) {
  .nav { min-height: 70px; }
  .brand img { width: 142px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 52px 28px; }
  .hero-card { padding: 30px 26px; }
  .hero-card::before { width: 240px; height: 100px; margin-bottom: 30px; }
  .split-section, .stats-strip, .process-grid { grid-template-columns: 1fr; }
  .stats-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card, .industry-card:nth-child(n), .industry-card.featured, .industry-card.wide { grid-column: span 1; min-height: auto; }
  .contact-panel { padding: 42px 26px; }
  .footer { flex-direction: column; }
}
