:root {
  --navy: #0a1628;
  --navy-mid: #0d1f3c;
  --navy-light: #132745;
  --teal-mid: #0891b2;
  --teal-light: #22d3ee;
  --green: #059669;
  --accent: #38bdf8;
  --white: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --grd-brand: linear-gradient(135deg, #059669 0%, #0891b2 50%, #0369a1 100%);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 138px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-logo {
  text-decoration: none;
  display: inline-flex;
}
.nav-logo img {
  height: 130px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #059669 0%, #0891b2 50%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 0.7;
}
.nav-links a.active {
  font-weight: 700;
  filter: drop-shadow(2px 2px 6px #059669);
}
.nav-cta {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 3px;
  background: var(--grd-brand);
  color: #fff;
  transition: opacity 0.2s;
}
.nav-cta:hover {
  opacity: 0.85;
}

/* MENU TOGGLE (hamburger) */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(8, 145, 178, 0.25);
  border-radius: 4px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.menu-toggle:hover {
  border-color: var(--teal-mid);
  background: rgba(8, 145, 178, 0.06);
}
.menu-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--grd-brand);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* DRAWER */
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(6, 16, 31, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer-scrim.open {
  opacity: 1;
}
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 120;
  width: min(82vw, 340px);
  background: var(--navy);
  border-right: 1px solid var(--border);
  box-shadow: 24px 0 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  visibility: hidden;
}
.drawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grd-brand);
  z-index: 1;
}
.drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.drawer-head {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 14px 20px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.drawer-logo {
  display: inline-flex;
  text-decoration: none;
}
.drawer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}
.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(8, 145, 178, 0.25);
  border-radius: 4px;
  color: var(--teal-mid);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  margin-left: auto;
}
.drawer-close:hover {
  color: var(--white);
  border-color: var(--teal-mid);
  background: var(--teal-mid);
}
.drawer-nav {
  padding-top: 110px;
  height: auto;
  background: var(--navy);
  border: 0;
}
.drawer-nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.drawer-nav li {
  border-bottom: 1px solid var(--border);
}
.drawer-nav a {
  position: relative;
  display: block;
  padding: 18px 24px 18px 40px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition:
    color 0.2s,
    background 0.2s;
}
/* .drawer-nav a::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--teal-mid);
  opacity: 0.4;
  transform: translateY(-50%);
  transition:
    width 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease,
    height 0.25s ease;
} */
.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  color: var(--teal-light);
  background: rgba(8, 145, 178, 0.06);
  outline: none;
}
.drawer-nav a:hover::before,
.drawer-nav a:focus-visible::before {
  width: 16px;
  opacity: 1;
}
.drawer-nav a.active {
  color: var(--teal-light);
  font-weight: 700;
  background: rgba(8, 145, 178, 0.08);
}
.drawer-nav a.active::before {
  width: 16px;
  opacity: 1;
  background: var(--green);
  height: 2px;
}
.drawer-foot {
  margin-top: auto;
  padding: 20px 24px 22px;
  border-top: 1px solid var(--border);
}
.drawer-foot p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.8;
}
.drawer-foot-brand {
  color: var(--text-muted) !important;
}

body.drawer-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .drawer {
    transition: none;
  }
  .drawer-scrim {
    transition: none;
  }
  .menu-toggle-bar {
    transition: none;
  }
}

/* HERO */
#hero {
  position: relative;
  margin-top: 88px;
  height: calc(100vh - 88px);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8vw;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(9, 56, 89, 0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--teal-light);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--teal-light);
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* STATS BAR */
.stats-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(15, 30, 55, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item {
  padding: 26px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-item:last-child {
  border-right: none;
}
.stat-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-icon {
  opacity: 0.7;
  flex-shrink: 0;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* BUTTONS */
.btn-primary {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 3px;
  background: var(--grd-brand);
  color: #fff;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  opacity: 0.85;
}
.btn-ghost {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 3px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* SECTIONS */
section,
#certifications {
  scroll-margin-top: 138px;
}
section {
  padding: 100px 8vw;
}
.section-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--teal-light);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 580px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 56px;
}
.service-card {
  background: var(--navy-mid);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grd-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  background: var(--navy-light);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  background: rgba(8, 145, 178, 0.12);
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 10px;
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex: 1;
}
.service-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.service-link::after {
  content: "→";
}
.service-link:hover {
  gap: 14px;
}

/* FLEET */
.fleet-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.fleet-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.spec-box {
  padding: 18px 20px;
  background: rgba(8, 145, 178, 0.07);
  border: 1px solid rgba(8, 145, 178, 0.18);
  border-radius: 3px;
}
.spec-box dt {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 5px;
}
.spec-box dd {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-light);
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img {
  position: sticky;
  top: 108px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.values-list {
  margin-top: 48px;
}
.value-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
}
.value-item:first-child {
  border-top: 1px solid var(--border);
}
.value-index {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  color: var(--teal-mid);
  padding-top: 2px;
}
.value-item h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 7px;
}
.value-item p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* CERTIFICATIONS */
#certifications {
  background: var(--navy-mid);
  padding: 56px 8vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cert-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cert-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cert-badge {
  padding: 10px 20px;
  border: 1px solid rgba(8, 145, 178, 0.3);
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(8, 145, 178, 0.07);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.gallery-grid div {
  overflow: hidden;
}
.gallery-grid div:first-child {
  grid-row: 1/3;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-grid div:hover img {
  transform: scale(1.05);
}

/* NEWS */
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.news-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.news-card:hover {
  border-color: rgba(8, 145, 178, 0.4);
}
.news-card-img {
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 10px;
}
.news-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
}
.news-card.featured h3 {
  font-size: 1.35rem;
}
.news-date {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
}

/* CONTACT */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 11px 14px;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-mid);
}
.form-group select option {
  background: var(--navy-mid);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* FOOTER */
footer {
  background: #06101f;
  border-top: 1px solid var(--border);
  padding: 60px 8vw 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: start;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dim);
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.grad-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--teal-mid),
    #10b981,
    transparent
  );
  opacity: 0.25;
}

@media (max-width: 900px) {
  .services-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .fleet-layout,
  .about-layout,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand p {
    max-width: 420px;
  }
  .footer-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    text-align: center;
  }
  .footer-col {
    flex: 0 1 180px;
    min-width: 160px;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  nav {
    height: 88px;
  }
  .nav-logo img {
    height: 72px;
  }
  #hero {
    margin-top: 88px;
    height: auto;
    min-height: calc(100vh - 88px);
    padding-top: 60px;
    padding-bottom: 60px;
  }
  section,
  #certifications {
    scroll-margin-top: 88px;
  }
  .stats-band {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    margin: 60px 0 0 0;
    width: 100%;
  }
  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid div:first-child {
    grid-row: auto;
  }
}
@media (max-width: 560px) {
  nav {
    padding: 0 5vw;
    gap: 8px;
    height: 76px;
  }
  .nav-logo img {
    height: 60px;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  #hero {
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    padding-top: 48px;
    padding-bottom: 48px;
  }
  section,
  #certifications {
    scroll-margin-top: 76px;
  }
  .footer-cols {
    justify-content: center;
  }
  .drawer-head {
    padding: 10px 14px 10px 16px;
  }
  .drawer-logo img {
    height: 48px;
  }
  .stat-item {
    padding: 20px 20px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
}
