/* ============================================
   008 Services — Modern Site Stylesheet
   ============================================ */

:root {
  --navy: #041f2c;
  --navy-light: #0b3247;
  --cream: #f6f1e6;
  --cream-dim: #eee6d3;
  --gold: #c8a24b;
  --gold-light: #e4c877;
  --ink: #12181b;
  --muted: #5b6b70;
  --white: #ffffff;
  --danger: #b3452f;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 45px -20px rgba(4, 31, 44, 0.35);
  --shadow-sm: 0 8px 20px -10px rgba(4, 31, 44, 0.25);
  --maxw: 1180px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', 'Georgia', serif;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1, .section-head h2, .cta-banner h2, .page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(246,241,230,0.5);
  color: var(--cream);
}
.btn-outline-light:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}
.announce a { color: var(--gold-light); font-weight: 600; }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(4,31,44,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
}
.brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
}
nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav.primary-nav a {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
nav.primary-nav a.active,
nav.primary-nav a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, #06131b 65%, #000000 130%);
  color: var(--cream);
  overflow: hidden;
  padding: 40px 0 96px;
}
.hero::before {
  content: "008";
  position: absolute;
  right: -60px;
  top: 62%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 420px;
  color: rgba(246,241,230,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Split image band, styled after the reference (two panels above the headline) */
.hero-band {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
  margin-bottom: 48px;
}
.hero-band .panel {
  flex: 1;
  aspect-ratio: 5 / 4;
  position: relative;
  overflow: hidden;
}
.hero-band .panel img,
.hero-band .panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-band .panel.logo-panel {
  background: radial-gradient(circle at 30% 20%, #0d3247, var(--navy) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hero-band .panel.placeholder {
  background:
    repeating-linear-gradient(135deg, rgba(246,241,230,0.05) 0 12px, rgba(246,241,230,0.02) 12px 24px),
    var(--navy-light);
  border: 1.5px dashed rgba(200,162,75,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.hero-band .panel.placeholder .ph-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  max-width: 220px;
  line-height: 1.5;
}
.hero-band .panel.placeholder .ph-label small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11.5px;
  color: rgba(246,241,230,0.55);
  margin-top: 6px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(32px, 4.6vw, 56px);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lead {
  color: rgba(246,241,230,0.78);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: rgba(246,241,230,0.65);
}
.hero-badges span { display: flex; align-items: center; gap: 6px; }

.logo-panel-content { position: relative; display: inline-block; }
.logo-008 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(56px, 9vw, 108px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-drill {
  position: absolute;
  top: 6%;
  right: -22%;
  width: 42%;
  height: auto;
  color: var(--cream);
}

/* ---------- Section basics ---------- */
section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 38px); }

.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--cream); }
.bg-navy p { color: rgba(246,241,230,0.75); }
.bg-cream-dim { background: var(--cream-dim); }

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(4,31,44,0.08);
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.trust-item .icn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Cards 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-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(4,31,44,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icn-badge {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 14px; }
.card .price-tag {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  font-size: 14px;
}
.card .card-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 22px;
  background: rgba(246,241,230,0.05);
  border: 1px solid rgba(246,241,230,0.15);
  border-radius: var(--radius);
}
.step .num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.step h4 { color: var(--cream); font-size: 16.5px; margin-bottom: 6px; }
.step p { color: rgba(246,241,230,0.7); font-size: 13.5px; margin: 0; }

/* ---------- Pricing table ---------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(4,31,44,0.08);
  font-size: 14.5px;
}
.pricing-table thead th {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table td.price { font-family: var(--font-head); font-weight: 700; color: var(--gold); white-space: nowrap; }
.pricing-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(4,31,44,0.06);
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p.quote { font-style: italic; color: var(--ink); font-size: 15px; }
.testimonial-card .who { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 13.5px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  color: var(--cream);
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 8px; }
.cta-banner p { color: rgba(246,241,230,0.75); margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(4,31,44,0.06);
  max-width: 720px;
  margin: 0 auto;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  margin-bottom: 6px;
}
.field .req { color: var(--danger); }
.field input[type=text],
.field input[type=email],
.field input[type=tel],
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(4,31,44,0.15);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.choice-group { display: flex; flex-direction: column; gap: 10px; }
.choice-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid rgba(4,31,44,0.12);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 14.5px;
  cursor: pointer;
}
.choice-row:hover { border-color: var(--gold); }
.choice-row input { accent-color: var(--gold); width: 16px; height: 16px; }
.form-note {
  background: var(--cream-dim);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
}
.dev-note {
  border: 1.5px dashed var(--gold);
  background: rgba(200,162,75,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 24px;
}
.dev-note b { color: var(--gold); }
.hp-field {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Gallery ---------- */
.gallery-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Video banner (auto-rotating) ---------- */
.video-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
  background: #000;
}
.banner-track {
  display: flex;
  width: 100%;
  height: 520px;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.banner-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.banner-slide::before {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(34px) brightness(0.45) saturate(1.1);
  transform: scale(1.15);
  z-index: 0;
}
.banner-video {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
}
.banner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 18px 26px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(0,0,0,0.75) 70%);
  pointer-events: none;
}
.banner-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.banner-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(4,31,44,0.18);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.banner-dots .dot.active {
  background: var(--gold);
  transform: scale(1.2);
}
@media (max-width: 720px) {
  .banner-track { height: 340px; }
  .banner-caption { font-size: 12.5px; padding: 14px 18px; }
}

/* ---------- Video feature ---------- */
.video-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.video-feature-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
}
.video-feature-media video {
  width: 100%;
  max-height: 560px;
  display: block;
  background: #000;
  object-fit: cover;
}
@media (max-width: 860px) {
  .video-feature { grid-template-columns: 1fr; }
}

/* ---------- Shop ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(4,31,44,0.06);
}
.product-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
}
.product-media .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-info { padding: 20px; }
.product-info h3 { font-size: 16px; margin-bottom: 4px; }
.product-info .price { font-family: var(--font-head); font-weight: 700; color: var(--gold); margin-bottom: 14px; display: block; }
.product-card.soon .product-info { opacity: 0.6; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: rgba(246,241,230,0.8);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(246,241,230,0.12);
}
.footer-grid h4 {
  color: var(--cream);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 14px; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand .brand { color: var(--cream); margin-bottom: 14px; }
.footer-brand .mark { background: var(--gold); color: var(--navy); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(246,241,230,0.55);
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,230,0.25);
  display: flex; align-items: center; justify-content: center;
}
.newsletter-form { display: flex; gap: 10px; margin-top: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(246,241,230,0.25);
  background: rgba(246,241,230,0.06);
  color: var(--cream);
  font-size: 13.5px;
}
.newsletter-form input::placeholder { color: rgba(246,241,230,0.5); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 56px 0;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { color: var(--cream); font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.page-hero p { color: rgba(246,241,230,0.75); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(246,241,230,0.55); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.tag-pill {
  display: inline-block;
  background: var(--cream-dim);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin: 0 6px 6px 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero::before { font-size: 260px; right: -30px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  nav.primary-nav { display: none; }
  .menu-toggle { display: block; }
  .nav-phone span.label { display: none; }
  .hero-band { flex-direction: column; }
  .hero-band .panel { aspect-ratio: 16/10; }
  .steps { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  section { padding: 56px 0; }
  .form-card { padding: 26px; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--cream);
  border-top: 1px solid rgba(4,31,44,0.08);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(4,31,44,0.06);
}
