:root {
  --color-green: #2ebb2e;
  --color-bg: #080b0d;
  --color-bg-soft: #101417;
  --color-panel: #141a1d;
  --color-line: rgba(255, 255, 255, .12);
  --color-text: #f4f4f0;
  --color-muted: #a8b0b3;
  --color-white: #ffffff;
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, .45);
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(46, 187, 46, .09), transparent 28rem),
    radial-gradient(circle at 14% 38%, rgba(255, 255, 255, .06), transparent 26rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: .75rem 1rem;
  background: var(--color-white);
  color: var(--color-bg);
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(8, 11, 13, .72);
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 13, .92);
  border-color: rgba(46, 187, 46, .24);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.brand img {
  width: 182px;
  filter: brightness(1.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: rgba(244, 244, 240, .82);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--color-green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding-top: 4px;
  display: grid;
  align-items: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, transparent 90%);
  content: "";
}

.hero-grid {
  position: relative;
  width: 100%;
  min-height: min(720px, calc(100vh - 120px));
  margin-inline: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0a0e10;
  box-shadow: var(--shadow-deep);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--color-green);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: .98;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 6.7vw, 4.2rem);
}

h1 span,
.why-copy h2 span {
  color: var(--color-green);
}

.mobile-break {
  color: inherit;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(46, 187, 46, .8);
  background: rgba(46, 187, 46, .14);
  box-shadow: 0 0 28px rgba(46, 187, 46, .12);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: rgba(46, 187, 46, .22);
  box-shadow: 0 0 36px rgba(46, 187, 46, .22);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(244, 244, 240, .38);
  background: rgba(255, 255, 255, .05);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.06) brightness(.82);
  transform: scale(1.01);
}

.visual-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 11, 13, .9), rgba(8, 11, 13, .48) 38%, rgba(8, 11, 13, .06) 66%, rgba(8, 11, 13, .58)),
    linear-gradient(180deg, rgba(8, 11, 13, .12), rgba(8, 11, 13, .3) 46%, rgba(8, 11, 13, .76)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 130px);
  content: "";
}

.green-edge {
  position: absolute;
  z-index: 2;
  right: -6%;
  bottom: 10%;
  width: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-green), rgba(255, 255, 255, .8));
  box-shadow: 0 0 32px rgba(46, 187, 46, .72), 0 0 120px rgba(46, 187, 46, .34);
  transform: rotate(-4deg);
}

.marker {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  color: rgba(244, 244, 240, .8);
  font-size: .8rem;
  letter-spacing: .06em;
}

.marker-coords {
  right: clamp(22px, 4vw, 48px);
  top: 45%;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-green);
}

.marker-status {
  right: clamp(22px, 4vw, 48px);
  bottom: clamp(22px, 4vw, 44px);
  grid-auto-flow: column;
  align-items: center;
  text-transform: uppercase;
}

.marker-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 18px rgba(46, 187, 46, .9);
}

.intro-band {
  padding-block: 44px;
  border-block: 1px solid var(--color-line);
  background: rgba(16, 20, 23, .62);
}

.intro-grid {
  display: grid;
  grid-template-columns: .55fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.intro-grid h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
}

.intro-grid p:last-child,
.section-head p,
.why-copy p,
.contact-grid p {
  max-width: 65ch;
  color: var(--color-muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head-wide {
  display: grid;
  max-width: none;
  grid-template-columns: .9fr .8fr;
  gap: 42px;
  align-items: end;
}

.section-head-wide .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.contact-panel {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015)), var(--color-panel);
}

.service-card {
  min-height: 272px;
  padding: 28px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(46, 187, 46, .62);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .34), 0 0 34px rgba(46, 187, 46, .08);
  transform: translateY(-4px);
}

.line-icon {
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border: 1px solid rgba(46, 187, 46, .82);
  transform: rotate(45deg);
}

.line-icon::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(46, 187, 46, .5);
  content: "";
}

.line-icon-code {
  border-radius: 50%;
  transform: none;
}

.line-icon-code::after {
  inset: 13px 7px;
  border-width: 1px 0;
}

.line-icon-shield {
  border-radius: 22px 22px 6px 6px;
  transform: none;
}

.line-icon-speed {
  border-radius: 50%;
  transform: none;
}

.line-icon-speed::before {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 18px;
  height: 1px;
  background: var(--color-green);
  content: "";
  transform: rotate(-34deg);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.service-card p,
.process-list p,
.why-list p {
  color: var(--color-muted);
}

.projects-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, 0));
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #090d0f;
  box-shadow: 0 20px 58px rgba(0, 0, 0, .28);
}

.project-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-green), transparent);
  content: "";
  opacity: 0;
  transition: opacity .2s ease;
}

.project-card:hover::after {
  opacity: 1;
}

.project-media {
  position: absolute;
  inset: 0;
  transition: transform .35s ease;
}

.project-card:hover .project-media {
  transform: scale(1.04);
}

.project-card-a .project-media {
  background:
    linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, .86)),
    linear-gradient(18deg, transparent 38%, rgba(255, 255, 255, .18) 39% 40%, transparent 41%),
    linear-gradient(90deg, rgba(46, 187, 46, .18), transparent 24%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .075) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 48px),
    radial-gradient(circle at 64% 22%, rgba(255, 255, 255, .22), transparent 8rem),
    linear-gradient(140deg, #303633, #0a0d0e 74%);
}

.project-card-b .project-media {
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, .86)),
    radial-gradient(circle at 66% 32%, rgba(46, 187, 46, .2), transparent 9rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 32px),
    linear-gradient(36deg, transparent 44%, rgba(255, 255, 255, .2) 45% 46%, transparent 47%),
    linear-gradient(145deg, #050708, #202629);
}

.project-card-c .project-media {
  background:
    linear-gradient(180deg, transparent 12%, rgba(0, 0, 0, .84)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, .32), transparent 9rem),
    radial-gradient(circle at 24% 42%, rgba(46, 187, 46, .18), transparent 8rem),
    linear-gradient(28deg, transparent 35%, rgba(255, 255, 255, .16) 36% 37%, transparent 38%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 72px),
    linear-gradient(145deg, #252b2c, #07090a 76%);
}

.project-content {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 2;
}

.project-content p {
  margin-bottom: 8px;
  color: var(--color-green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-content h3 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.project-content span {
  display: block;
  max-width: 33ch;
  margin-bottom: 18px;
  color: rgba(244, 244, 240, .76);
}

.project-content a {
  color: var(--color-white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.project-content a::after {
  color: var(--color-green);
  content: "  ->";
}

.why-section {
  border-block: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 82% 20%, rgba(46, 187, 46, .08), transparent 24rem),
    var(--color-bg-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 68px;
  align-items: center;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list div {
  position: relative;
  padding: 26px 26px 24px 58px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(8, 11, 13, .42);
}

.why-list span {
  position: absolute;
  top: 31px;
  left: 27px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 18px rgba(46, 187, 46, .75);
}

.why-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.why-list p {
  margin-bottom: 0;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 38px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 187, 46, .66), transparent);
  content: "";
}

.process-list li {
  position: relative;
  padding-top: 78px;
}

.process-list span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(46, 187, 46, .65);
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-green);
  font-weight: 850;
  box-shadow: 0 0 26px rgba(46, 187, 46, .08);
}

.process-list h3 {
  margin-bottom: 8px;
}

.contact-section {
  padding-bottom: 112px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 46px;
  align-items: stretch;
  padding: 42px;
  border: 1px solid rgba(46, 187, 46, .26);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(46, 187, 46, .1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    var(--color-panel);
  box-shadow: var(--shadow-deep);
}

.contact-grid h2 {
  margin-bottom: 20px;
}

.contact-grid .button {
  margin-top: 14px;
}

.contact-panel {
  padding: 30px;
}

.contact-panel dl,
.contact-panel dd {
  margin: 0;
}

.contact-panel dl {
  display: grid;
  gap: 24px;
}

.contact-panel dt {
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-panel dd {
  color: var(--color-white);
  font-size: 1.05rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.social-links a {
  border-bottom: 1px solid rgba(46, 187, 46, .62);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--color-line);
  background: #060809;
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand img {
  width: 152px;
  filter: brightness(1.14);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer a,
.footer-link,
.site-footer p {
  color: rgba(244, 244, 240, .72);
  font-size: .86rem;
}

.footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
  color: var(--color-white);
}

.site-footer p {
  margin: 0;
}

.legal-modal {
  width: min(calc(100% - 32px), 820px);
  max-height: min(82vh, 820px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  background: transparent;
  color: var(--color-text);
  overflow: visible;
}

.legal-modal::backdrop {
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  max-height: min(82vh, 820px);
  padding: clamp(28px, 4vw, 46px);
  overflow: auto;
  background:
    linear-gradient(135deg, rgba(46, 187, 46, .08), transparent 34%),
    #0b0f11;
  box-shadow: var(--shadow-deep);
}

.modal-panel h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 5vw, 4rem);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: rgba(255, 255, 255, .04);
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(46, 187, 46, .68);
  background: rgba(46, 187, 46, .12);
}

.legal-content {
  display: grid;
  gap: 26px;
}

.legal-content section {
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.legal-content h3 {
  margin-bottom: 8px;
  color: var(--color-white);
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.legal-content p {
  max-width: 70ch;
  margin-bottom: 0;
  color: var(--color-muted);
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content a {
  color: var(--color-white);
  border-bottom: 1px solid rgba(46, 187, 46, .62);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 76px 0;
  }

  .hero-grid,
  .why-grid,
  .contact-grid,
  .section-head-wide {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 650px;
  }

  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-grid .section-kicker {
    grid-column: 1 / -1;
  }

  .service-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card-c {
    grid-column: 1 / -1;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .process-list::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-grid {
    min-height: calc(100vh - var(--header-height) - 18px);
    align-items: start;
    padding-top: clamp(34px, 7vh, 58px);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-copy {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 154px;
  }

  .nav-toggle {
    position: relative;
    z-index: 120;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    background: rgba(255, 255, 255, .03);
    color: var(--color-white);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 16px 20px 28px;
    border-bottom: 1px solid rgba(46, 187, 46, .24);
    background: rgba(8, 11, 13, .98);
    transform: translateY(-130%);
    transition: transform .24s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: .9rem;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    min-height: calc(100vh - var(--header-height) - 22px);
    align-items: start;
    padding-top: clamp(28px, 6vh, 52px);
  }

  .hero-image,
  .hero-video {
    object-position: 58% center;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 4.7rem);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .marker-coords {
    right: 18px;
    top: auto;
    bottom: 88px;
  }

  .intro-grid,
  .service-grid,
  .project-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card-c {
    grid-column: auto;
    min-height: 390px;
  }

  .why-grid,
  .contact-grid {
    gap: 30px;
  }

  .contact-grid {
    padding: 28px;
  }

  .process-list li {
    padding-top: 0;
    padding-left: 98px;
    min-height: 84px;
  }
}

@media (max-width: 560px) {
  .mobile-break {
    display: block;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 62px 0;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero-grid {
    min-height: calc(100vh - var(--header-height) - 16px);
    padding-top: 24px;
  }

  .hero {
    padding-top: 16px;
  }

  .service-card,
  .contact-panel {
    padding: 24px;
  }

  .why-list div {
    padding-right: 20px;
  }
}
