/* ===== TOKENS ===== */
:root {
  /* Surfaces */
  --bg:        #080808;
  --glass:     rgba(255, 255, 255, 0.055);
  --glass-2:   rgba(255, 255, 255, 0.10);
  --glass-hi:  rgba(255, 255, 255, 0.14);

  /* Borders */
  --border:    rgba(255, 255, 255, 0.09);
  --border-hi: rgba(255, 255, 255, 0.22);

  /* Brand */
  --gold:      #c9a96e;
  --gold-dim:  rgba(201, 169, 110, 0.12);
  --sage:      #7a8c6e;

  /* Text */
  --text:      #f0ede8;
  --text-2:    rgba(240, 237, 232, 0.52);
  --text-3:    rgba(240, 237, 232, 0.28);

  /* Type */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Geometry — squircle radius */
  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;

  /* Motion */
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur:    0.38s;

  --nav-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg) url('images/HIGHRES50.jpg') repeat;
  background-size: 320px;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.82);
  z-index: 0;
  pointer-events: none;
}
#navbar, #hero, #pricing, #pilot, #mission, #equipment, #footer {
  position: relative;
  z-index: 1;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAV — glass bar ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.65);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  padding: 0 2rem;
  overflow: hidden;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.82);
  border-bottom-color: var(--border-hi);
}
#navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/HIGHRES50.jpg');
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.nav-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(-5px) scale(0.96);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--spring);
  pointer-events: none;
}
#navbar.logo-visible .nav-logo {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#navbar.logo-visible .nav-logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--gold);
  color: #111;
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-md);
  font-weight: 600;
  color: #0a0805;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--spring), box-shadow var(--dur) var(--ease);
}
.nav-links .nav-cta:hover {
  background: #dbbf82;
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/wmremove-transformed.jpeg');
  background-size: contain;
  background-position: center center;
  filter: brightness(0.28) saturate(0.7);
}
.hero-camo {
  position: absolute;
  inset: 0;
  background-image: url('images/HIGHRES50.jpg');
  background-size: 400px;
  background-repeat: repeat;
  opacity: 0.28;
  mix-blend-mode: overlay;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(4, 8, 16, 0.50) 0%,
    rgba(6, 8, 12, 0.75) 100%
  );
}

/* HUD */
.hud {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hud-corner {
  position: absolute;
  width: 36px;
  height: 36px;
}
.hud-corner.tl { top: 90px; left: 24px; border-top: 1px solid rgba(255,255,255,0.25); border-left: 1px solid rgba(255,255,255,0.25); }
.hud-corner.tr { top: 90px; right: 24px; border-top: 1px solid rgba(255,255,255,0.25); border-right: 1px solid rgba(255,255,255,0.25); }
.hud-corner.bl { bottom: 24px; left: 24px; border-bottom: 1px solid rgba(255,255,255,0.25); border-left: 1px solid rgba(255,255,255,0.25); }
.hud-corner.br { bottom: 24px; right: 24px; border-bottom: 1px solid rgba(255,255,255,0.25); border-right: 1px solid rgba(255,255,255,0.25); }

.hud-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--sage) 25%, rgba(255,255,255,0.8) 50%, var(--sage) 75%, transparent 100%);
  box-shadow: 0 0 14px 2px rgba(122,140,110,0.35);
  animation: scan 5s linear infinite;
  top: 0;
}
@keyframes scan {
  0%   { top: 10%; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

.hud-reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
}
.reticle-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  animation: pulse-ring 3.5s var(--ease) infinite;
}
.reticle-ring.r2 { animation-delay: 1.75s; }
@keyframes pulse-ring {
  0%   { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}
.reticle-cross::before,
.reticle-cross::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.3);
}
.reticle-cross::before { top: 50%; left: 15%; right: 15%; height: 1px; transform: translateY(-50%); }
.reticle-cross::after  { left: 50%; top: 15%; bottom: 15%; width: 1px; transform: translateX(-50%); }

.hud-label {
  position: absolute;
  font-family: var(--font);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hud-label.tl-label { top: 96px; left: 66px; }
.hud-label.tr-label { top: 96px; right: 66px; }
.hud-label.bl-label { bottom: 30px; left: 66px; }
.hud-label.br-label { bottom: 30px; right: 66px; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 820px;
}
.hero-logo {
  width: min(420px, 75vw);
  margin: 0 auto 2rem;
  animation: thermal-life 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes thermal-life {
  /* resting heat — deep red core, crimson bloom */
  0%, 100% {
    filter:
      brightness(0) invert(1)
      sepia(1) saturate(5) hue-rotate(-22deg) brightness(1.3)
      drop-shadow(0 0 10px  rgba(255, 180,  20, 0.95))
      drop-shadow(0 0 28px  rgba(255,  70,   0, 0.80))
      drop-shadow(0 0 60px  rgba(210,   0,   0, 0.55))
      drop-shadow(0 0 110px rgba(130,   0,  20, 0.30));
  }
  /* peak heat — core goes white-yellow, outer bloom is orange */
  42% {
    filter:
      brightness(0) invert(1)
      sepia(1) saturate(12) hue-rotate(-38deg) brightness(2.1)
      drop-shadow(0 0 18px  rgba(255, 250,  90, 1.00))
      drop-shadow(0 0 50px  rgba(255, 150,   0, 0.95))
      drop-shadow(0 0 100px rgba(255,  40,   0, 0.70))
      drop-shadow(0 0 180px rgba(180,   0,   0, 0.40));
  }
  /* cooling — dimmer, more red-violet */
  72% {
    filter:
      brightness(0) invert(1)
      sepia(1) saturate(3) hue-rotate(-10deg) brightness(1.1)
      drop-shadow(0 0  7px  rgba(255, 120,   0, 0.80))
      drop-shadow(0 0 20px  rgba(200,  25,   0, 0.60))
      drop-shadow(0 0 45px  rgba(140,   0,  15, 0.40))
      drop-shadow(0 0 85px  rgba( 70,   0,  30, 0.20));
  }
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: var(--text-2);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.hero-desc {
  font-size: 0.9rem;
  color: var(--text-3);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Drone SVG */
.hero-drone {
  position: absolute;
  bottom: 8%;
  right: 5%;
  width: min(260px, 36vw);
  opacity: 0.3;
  animation: hover-drone 4s ease-in-out infinite;
}
@keyframes hover-drone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ===== CALL BUTTON ===== */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold);
  color: #0a0805;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--r-lg);
  border: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--spring), box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.btn-call:hover {
  background: #dbbf82;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.35);
}

/* ===== SECTION SHARED ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title.left { text-align: left; }
.section-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

/* ===== PRICING ===== */
#pricing {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/HIGHRES50.jpg');
  background-size: 320px;
  background-repeat: repeat;
  opacity: 0.16;
  pointer-events: none;
}
#pricing .section-inner { position: relative; z-index: 1; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.price-card {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--dur) var(--spring), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.price-card:hover {
  transform: scale(1.03) translateY(-6px);
  background: var(--glass-2);
  border-color: var(--border-hi);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.price-card.featured {
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(201, 169, 110, 0.06);
}
.price-icon {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.price-icon img {
  height: 64px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1) opacity(0.7);
}
.price-card h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.price-amount span {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-2);
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.55;
}
.pricing-cta { text-align: center; }

/* ===== MEET THE PILOT ===== */
#pilot {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#pilot::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/HIGHRES50.jpg');
  background-size: 380px;
  background-repeat: repeat;
  opacity: 0.14;
  pointer-events: none;
}
.pilot-inner { position: relative; z-index: 1; }
.pilot-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: center;
}
.pilot-photo { position: relative; }
.pilot-photo img {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: saturate(0.85);
}
.pilot-photo::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-xl) + 1px);
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pilot-bio .section-title { margin-bottom: 0.4rem; }
.pilot-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.75rem;
}
.pilot-bio p {
  color: var(--text-2);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.pilot-credentials {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pilot-credentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.pilot-credentials li svg { color: var(--sage); flex-shrink: 0; }

/* ===== MISSION & SERVICES ===== */
#mission {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/HIGHRES50.jpg');
  background-size: 350px;
  background-repeat: repeat;
  opacity: 0.20;
  pointer-events: none;
}
#mission .section-inner { position: relative; z-index: 1; }
.mission-statement {
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 3.5rem;
  color: var(--text-2);
  line-height: 1.85;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-item {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--spring), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.service-item:hover {
  transform: scale(1.02) translateY(-4px);
  background: var(--glass-2);
  border-color: var(--border-hi);
}
.service-item svg {
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}
.service-item h3 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.service-item p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}
.mission-location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.mission-location svg { color: var(--gold); flex-shrink: 0; }

/* ===== EQUIPMENT ===== */
#equipment {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#equipment::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/HIGHRES50.jpg');
  background-size: 360px;
  background-repeat: repeat;
  opacity: 0.16;
  pointer-events: none;
}
#equipment .section-inner { position: relative; z-index: 1; }
/* Hero equipment card */
.equip-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-bottom: 1.25rem;
  transition: border-color var(--dur) var(--ease);
}
.equip-hero-card:hover { border-color: var(--border-hi); }
.equip-hero-photos { display: flex; flex-direction: column; gap: 0.75rem; }
.equip-photo-main {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  filter: saturate(0.85);
}
.equip-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.equip-photo-stack img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  filter: saturate(0.85);
}
.equip-hero-specs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.equip-model {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
}
.spec-list li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

/* Sub cards */
.equip-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.equip-sub-icon {
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.equipment-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: transform var(--dur) var(--spring), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
}
.equipment-card:hover {
  transform: scale(1.02) translateY(-4px);
  background: var(--glass-2);
  border-color: var(--border-hi);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  filter: saturate(0.8) brightness(0.95);
  transition: filter var(--dur) var(--ease);
}
.equipment-card:hover .photo-card img,
.photo-card:hover img {
  filter: saturate(1) brightness(1.05);
}
.equipment-card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.equipment-card p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/HIGHRES50.jpg');
  background-size: 350px;
  background-repeat: repeat;
  opacity: 0.22;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer-brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-location {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-call { font-size: 0.88rem; padding: 0.8rem 1.75rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-3);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
}
.footer-social a:hover { color: var(--text-2); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 0.25rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pricing-grid      { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pilot-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .pilot-photo       { max-width: 300px; margin: 0 auto; }
  .services-grid     { grid-template-columns: 1fr; }
  .equip-hero-card   { grid-template-columns: 1fr; }
  .equip-sub-grid    { grid-template-columns: 1fr; }
  .equipment-grid    { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 680px) {
  .hud-label, .hud-corner { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(28px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.95rem; }
  .hero-drone { display: none; }
  .section-inner { padding: 4rem 1.25rem; }
}
