:root {
  --hd-lime: #cddc39;
  --hd-lime-2: #b7c92d;
  --hd-blue: #2563eb;
  --hd-coral: #f97316;
  --ink: #0b0c10;
  --ink-2: #181a20;
  --muted: #5a606d;
  --line: #e7e9ee;
  --paper: #ffffff;
  --fog: #f6f7f9;
  --warm: #fbfaf7;
  --shadow-sm: 0 6px 18px rgba(11, 12, 16, 0.08);
  --shadow-md: 0 18px 44px rgba(11, 12, 16, 0.12);
  --font-display: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-accent: "Fraunces", Georgia, serif;
  --h1: clamp(42px, 7vw, 76px);
  --h2: clamp(30px, 4vw, 44px);
  --h3: clamp(22px, 3vw, 28px);
  --body: 16px;
  --lh: 1.45;
  --r-lg: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: var(--lh);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: min(200px, 56vw);
  height: auto;
  display: block;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.topnav a {
  padding: 8px 10px;
  border-radius: 10px;
}

.topnav a:hover {
  background: var(--fog);
}

.section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.section--fog {
  background: var(--fog);
}

.section--warm {
  background: var(--warm);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--h1);
  line-height: 0.96;
}

h2 {
  font-size: var(--h2);
  line-height: 1.05;
}

h3 {
  font-size: var(--h3);
  line-height: 1.15;
}

.lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  max-width: 70ch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
}

.kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--hd-lime-2);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.hero__card {
  padding: 24px;
}

.hero__logo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.claims {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn--sm {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.btn--outline {
  background: transparent;
  border-color: rgba(11, 12, 16, 0.22);
}

.btn--primary {
  background: var(--hd-lime);
  border-color: transparent;
}

.btn--primary:hover {
  background: var(--hd-lime-2);
}

.btn--ghost {
  border: 0;
  background: transparent;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.hr {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 12, 16, 0.12);
  background: rgba(205, 220, 57, 0.2);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
}

.badge--blue {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.22);
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.service {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.service h3 {
  margin-bottom: 8px;
}

.bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullets li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  color: var(--muted);
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hd-lime);
  border: 1px solid rgba(11, 12, 16, 0.1);
  transform: translateY(-50%);
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.bullets--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
  margin-top: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.person__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.avatar {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #fff;
}

.role {
  margin: 4px 0 0;
  color: var(--muted);
}

.logo-marquee {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 10px 0 4px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: logo-scroll 60s linear infinite;
  padding: 6px 0;
}

.logo {
  flex: 0 0 auto;
  width: 240px;
  height: 148px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.logo img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.footer {
  padding: 26px 0;
  color: var(--muted);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu-float {
  position: fixed;
  left: 16px;
  top: 94px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.menu-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.menu-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(11, 12, 16, 0.12);
  border-radius: 12px;
  background: var(--hd-lime);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.bars {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  position: relative;
}

.bars::before,
.bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.bars::before {
  top: -6px;
}

.bars::after {
  top: 6px;
}

.menu-toggle.is-open .bars {
  background: transparent;
}

.menu-toggle.is-open .bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open .bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 16, 0.35);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.drawer__panel {
  position: absolute;
  top: 14px;
  left: 14px;
  width: min(360px, calc(100% - 28px));
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer.is-open .drawer__backdrop {
  opacity: 1;
}

.drawer.is-open .drawer__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.drawer__content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.navitem {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.navitem:hover {
  background: var(--fog);
}

.contact-hero .lead {
  max-width: 78ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contact-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink-2);
  background: var(--paper);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.16);
  border-color: rgba(37, 99, 235, 0.6);
  outline-offset: 1px;
}

.location-map {
  margin-top: 12px;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.location-list {
  margin-top: 14px;
}

.text-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 980px) {
  .hero__grid,
  .two-col,
  .team-grid,
  .contact-layout,
  .services,
  .bullets--grid {
    grid-template-columns: 1fr;
  }

  .topnav {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .menu-float {
    top: 16px;
    right: 12px;
    left: auto;
  }

  .menu-label {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 30px);
  }

  .logo {
    width: 190px;
    height: 124px;
  }

  .menu-label {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}
