/* ==========================================================================
   Geo Metrix Drone Aircraft Services LLC — site stylesheet
   ========================================================================== */

:root {
  --blue: #13a6ed;
  --blue-dark: #0b7fbf;
  --blue-darker: #085a8a;
  --navy: #071a2e;
  --navy-2: #0d2842;
  --red: #e30613;
  --red-dark: #b8050f;
  --white: #ffffff;
  --gray-50: #f6f8fa;
  --gray-100: #edf1f5;
  --gray-200: #dde4ea;
  --gray-400: #a3aeb8;
  --gray-600: #5c6b78;
  --gray-800: #2b3640;
  --gray-900: #171f26;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(7, 26, 46, 0.08);
  --shadow-md: 0 10px 30px rgba(7, 26, 46, 0.10);
  --shadow-lg: 0 20px 50px rgba(7, 26, 46, 0.16);
  --container: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

section { padding: 88px 0; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; margin: 0 0 16px; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--gray-600); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: rgba(19, 166, 237, 0.10);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(227, 6, 19, 0.28);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--gray-200);
  color: var(--navy);
}
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--gray-800);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transition: right 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--blue-dark); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .btn { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(5,15,28,0.96) 0%, rgba(7,26,46,0.90) 38%, rgba(7,26,46,0.62) 68%, rgba(7,26,46,0.42) 100%),
    radial-gradient(circle at 82% 18%, rgba(19,166,237,0.22), transparent 42%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero h1 { color: var(--white); }
.hero p.lead { color: rgba(255,255,255,0.78); font-size: 1.12rem; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 56px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 600; }
.hero-badge svg { flex: none; color: var(--blue); }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.hero-card li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.95rem; color: var(--white); }
.hero-card .icon-chip {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-darker));
  display: flex; align-items: center; justify-content: center; flex: none;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 76px 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb a { color: var(--blue); font-weight: 600; }

/* Service grid */
.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-photo {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
}
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(19,166,237,0.14), rgba(19,166,237,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-dark);
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.95rem; }
.card a.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 0.85rem; color: var(--red); }

.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.72); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.step .num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 18px;
}

/* Stats */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-size: 2.1rem; font-weight: 800; color: var(--blue); }
.stat .label { font-size: 0.88rem; color: rgba(255,255,255,0.65); font-weight: 600; letter-spacing: 0.02em; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img, .split .visual { border-radius: var(--radius-lg); }
.check-list { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--gray-800); }
.check-list svg { flex: none; color: var(--red); margin-top: 3px; }

.visual-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy) 0%, var(--blue-darker) 130%);
  aspect-ratio: 4/3.2;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-card svg { width: 78%; height: 78%; opacity: 0.9; }

.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3.15;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Industries */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { padding: 10px 20px; border-radius: 100px; background: var(--gray-100); font-weight: 600; font-size: 0.88rem; color: var(--navy); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--blue-darker), var(--navy) 70%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: start; }

.contact-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-2) 0%, var(--navy) 55%, #051221 100%);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  color: var(--white);
}
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(19,166,237,0.28), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(227,6,19,0.18), transparent 45%);
  pointer-events: none;
}
.contact-panel > * { position: relative; }
.contact-panel h2 { color: var(--white); margin-bottom: 8px; }
.contact-panel > p { color: rgba(255,255,255,0.72); margin-bottom: 0; }

.contact-rows { list-style: none; margin: 30px 0 0; padding: 0; position: relative; }
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-row:first-child { border-top: none; padding-top: 0; }
.contact-row .icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: rgba(255,255,255,0.10); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .label {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5); font-weight: 700; margin-bottom: 5px;
}
.contact-row .value { font-weight: 600; font-size: 0.98rem; color: var(--white); line-height: 1.5; }
.contact-row .value a { color: var(--white); }
.contact-row .value a:hover { color: var(--blue); }

.contact-panel-socials { display: flex; gap: 10px; margin-top: 30px; position: relative; }
.contact-panel-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.contact-panel-socials a:hover { background: var(--blue); }

.form-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(19,166,237,0.12); color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { margin-bottom: 0; }

.form-error {
  display: none;
  align-items: flex-start;
  gap: 10px;
  background: rgba(227,6,19,0.06);
  border: 1px solid rgba(227,6,19,0.25);
  color: var(--red-dark);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-error.show { display: flex; }
.form-error svg { flex: none; margin-top: 1px; }
.form-error a { text-decoration: underline; }

.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--gray-400); margin-top: 10px; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-top: 24px;
}
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Footer */
.site-footer {
  position: relative;
  background:
    radial-gradient(900px 460px at 8% -8%, rgba(19,166,237,0.16), transparent 60%),
    radial-gradient(720px 380px at 100% 108%, rgba(227,6,19,0.11), transparent 55%),
    var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 88px 0 0;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M40,210 C40,110 130,40 210,40 C290,40 380,110 380,210 C380,310 290,380 210,380 C130,380 40,310 40,210 Z'/%3E%3Cpath d='M75,210 C75,135 140,75 210,75 C280,75 345,135 345,210 C345,285 280,345 210,345 C140,345 75,285 75,210 Z'/%3E%3Cpath d='M110,210 C110,160 155,115 210,115 C265,115 310,160 310,210 C310,260 265,305 210,305 C155,305 110,260 110,210 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 420px 420px;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }

.footer-wave { position: absolute; top: -63px; left: 0; width: 100%; line-height: 0; z-index: 2; pointer-events: none; }
.footer-wave svg { display: block; width: 100%; height: 64px; }

.footer-grid { display: grid; grid-template-columns: 1.3fr 0.75fr 0.85fr 1.25fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid img { height: 40px; margin-bottom: 16px; }
.footer-grid h4 { color: var(--white); font-size: 0.92rem; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-grid a { font-size: 0.92rem; color: rgba(255,255,255,0.68); transition: color 0.15s ease; }
.footer-grid a:hover { color: var(--blue); }
.footer-legal-name { font-size: 0.88rem; color: rgba(255,255,255,0.5); max-width: 320px; margin-bottom: 18px; }

.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  border-left: 1px solid rgba(255,255,255,0.09);
  padding-left: 32px;
}

.footer-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.02em;
  color: #8fd4fb;
  background: rgba(19,166,237,0.14);
  border: 1px solid rgba(19,166,237,0.35);
  padding: 7px 13px; border-radius: 999px;
  margin-bottom: 22px;
}
.footer-badge svg { flex: none; }

.footer-contact {
  background: linear-gradient(165deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 26px 26px 28px;
}
.footer-contact-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 14px; }
.footer-contact-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; color: rgba(255,255,255,0.68); line-height: 1.45; }
.footer-contact-list .icon {
  flex: none; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-top: 1px;
}
.footer-contact-list a { color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.footer-contact-list a:hover { color: var(--white); }
.footer-cta-btn { margin-top: 2px; width: 100%; justify-content: center; box-shadow: 0 10px 24px -10px rgba(227,6,19,0.55); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.85rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 10px;
  letter-spacing: 0.01em;
}
.clients-section { padding: 56px 0; }
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.client-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.client-logo:hover { filter: grayscale(0%); opacity: 1; }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px -6px rgba(19,166,237,0.6);
}

/* Responsive */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .visual-order-2 { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 720px) {
  .nav-links, .header-actions .btn-outline-dark { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 60px 0; }
  .clients-row { gap: 36px; }
  .client-logo { height: 38px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:nth-child(2) { border-left: none; padding-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-footer { padding-top: 64px; }
  .footer-wave { top: -38px; }
  .footer-wave svg { height: 40px; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 84vw);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  padding: 26px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  pointer-events: none;
}
.mobile-nav.open { transform: translateX(0); pointer-events: auto; }
.mobile-nav ul { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 22px; }
.mobile-nav a { font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.mobile-nav-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); }
.scrim { display: none; position: fixed; inset: 0; background: rgba(7,26,46,0.5); z-index: 199; }
.scrim.open, .mobile-nav.open ~ .scrim { display: block; }
