@font-face {
  font-family: "Veyron Geologica";
  src: url("../fonts/geologica-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Veyron Geologica Black";
  src: url("../fonts/geologica-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@keyframes slide-horizontal-new {
  0% { transform: translate(100%); }
}

@keyframes slide-horizontal-old {
  80% { opacity: 1; }
  to { opacity: 0; transform: translate(-100%); }
}

@keyframes motionFadeUp {
  from {
    opacity: 0;
    transform: translateY(42px);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes motionFadeDown {
  from {
    opacity: 0;
    transform: translateY(-42px);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

:root {
  --green: #09b88c;
  --ink: #000000;
  --muted: #111111;
  --white: #ffffff;
  --page-max: 978px;
  --footer-max: 940px;
  --header-h: 70.203px;
  --font-body: "Veyron Geologica", Arial, Helvetica, sans-serif;
  --font-heavy: "Veyron Geologica Black", "Veyron Geologica", Arial, Helvetica, sans-serif;
}

:root:active-view-transition::view-transition-group(page-group),
:root:active-view-transition::view-transition-old(page-group),
:root:active-view-transition::view-transition-new(page-group) {
  animation-duration: .6s;
}

:root:active-view-transition::view-transition-old(page-group) {
  mix-blend-mode: normal;
  animation: .6s cubic-bezier(.83, 0, .17, 1) forwards slide-horizontal-old;
}

:root:active-view-transition::view-transition-new(page-group) {
  mix-blend-mode: normal;
  animation: .6s cubic-bezier(.83, 0, .17, 1) backwards slide-horizontal-new;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

main {
  view-transition-name: page-group;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 2000;
  padding: 10px 14px;
  background: #000;
  color: #fff;
  font-size: 14px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #fff;
}

.header-inner {
  width: 100%;
  max-width: var(--page-max);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 175.65px;
  height: 45.73px;
  display: block;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 280.875px;
  min-width: 280.875px;
  margin-right: 13px;
  font-family: var(--font-heavy);
  font-size: 15px;
  line-height: 1;
}

.primary-nav a {
  color: #000;
  transition: color .2s ease;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: #000;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle::before { top: 13px; }
.menu-toggle span { top: 20px; }
.menu-toggle::after { top: 27px; }

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 999;
  background: #fff;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.83, 0, .17, 1);
  border-top: 1px solid #f2f2f2;
  box-shadow: 0 22px 40px rgba(0, 0, 0, .08);
}

.mobile-panel.open {
  transform: translateY(0);
}

.mobile-panel nav {
  max-width: 420px;
  margin: 0 auto;
  padding: 34px 30px 44px;
  display: grid;
  gap: 22px;
  text-align: center;
  font-family: var(--font-heavy);
  font-size: 24px;
}

.mobile-panel a[aria-current="page"] {
  color: var(--green);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero.media-hero::before,
.hero.media-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero.media-hero::after {
  z-index: 1;
  background: rgba(0, 0, 0, .42);
}

.hero-video,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  opacity: .58;
  background: #000;
}

.service-hero {
  background: #000;
}

.service-hero .hero-bg {
  opacity: .58;
}

.about-hero::before {
  background: url("../images/about-hero.jpg") 57% 50% / cover no-repeat;
}

.contact-hero {
  min-height: 465px;
  height: 465px;
}

.contact-hero::before {
  background: url("../images/contact-hero.jpeg") center center / cover no-repeat;
}

.contact-hero .hero-content {
  transform: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(88%, 884px);
  display: grid;
  justify-items: center;
  gap: 22px;
  transform: translateY(-20px);
}

.hero-title {
  margin: 0;
  font-family: var(--font-heavy);
  font-size: 100px;
  line-height: .9;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 832px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.text-section {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.section-copy {
  width: min(100%, 724px);
}

.section-title {
  margin: 0 0 18px;
  font-family: var(--font-heavy);
  font-size: 50px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.services-band {
  min-height: 1098px;
  padding: 100px 24px 110px;
  background: var(--green);
  color: #fff;
  text-align: center;
}

.services-band .section-copy {
  margin: 0 auto;
}

.services-band .section-title {
  color: #fff;
  font-size: 35px;
  line-height: 45.5px;
  margin-bottom: 15px;
}

.services-intro {
  max-width: 701px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.service-grid {
  width: min(100%, 880px);
  margin: 39px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 90px;
  row-gap: 82px;
}

.service-item {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 266px;
}

.service-icon {
  width: 49px;
  height: 49px;
  margin-bottom: 12px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-item h3 {
  margin: 0 0 12px;
  font-family: var(--font-heavy);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.service-item p {
  max-width: 388px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.trade-section {
  min-height: 833px;
  padding: 148px 24px 96px;
  text-align: center;
}

.trade-top {
  width: min(100%, 920px);
  margin: 0 auto 96px;
}

.trade-top .section-title {
  font-size: 35px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.trade-top p {
  margin: 0 auto;
  max-width: 908px;
  font-size: 18px;
  line-height: 1.55;
}

.partner-block {
  width: min(100%, 875px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) 475px;
  align-items: center;
  gap: 74px;
}

.partner-text {
  text-align: center;
}

.partner-text h2 {
  margin: 0 0 10px;
  font-family: var(--font-heavy);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.partner-text p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.52;
}

.outline-button {
  display: inline-grid;
  place-items: center;
  min-width: 272px;
  min-height: 42px;
  padding: 8px 28px;
  border: 1px solid #000;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}

.outline-button:hover {
  background: #000;
  color: #fff;
}

.partner-image {
  width: 475px;
  height: 371px;
  border-radius: 46px;
  object-fit: cover;
  object-position: 39% 24%;
}

.why-section {
  min-height: 1120px;
  padding: 96px 24px 132px;
  text-align: center;
}

.why-section .section-title {
  font-size: 35px;
  margin-bottom: 60px;
}

.why-grid {
  width: min(100%, 876px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  min-height: 448px;
  border: 1px solid #000;
  border-radius: 46px;
  padding: 30px 30px 34px;
  display: grid;
  align-content: center;
  text-align: center;
}

.why-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-heavy);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 400;
}

.why-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.contact-form-section {
  padding: 28px 24px 84px;
}

.contact-form {
  width: min(100%, 953px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-family: var(--font-heavy);
  font-size: 14px;
  line-height: 1.2;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #5d5d5d;
  border-radius: 0;
  min-height: 38px;
  padding: 6px 0;
  background: transparent;
  color: #000;
  font: 16px/1.4 var(--font-body);
  outline: none;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: #000;
}

.field-full,
.submit-row {
  grid-column: 1 / -1;
}

.submit-row {
  margin-top: 0;
}

.submit-button {
  width: 100%;
  min-height: 44px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-family: var(--font-heavy);
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #000;
  color: #fff;
}

.hidden-field {
  display: none;
}

.legal-page {
  padding: 0 24px 92px;
}

.legal-wrap {
  width: min(100%, 878px);
  margin: 0 auto;
}

.legal-title {
  margin: 0 0 28px;
  padding-top: 0;
  font-family: var(--font-heavy);
  font-size: 100px;
  line-height: .9;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.legal-content {
  font-size: 20px;
  line-height: 1.45;
}

.legal-content h2 {
  margin: 34px 0 18px;
  font-family: var(--font-heavy);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.legal-content h3 {
  margin: 0 0 2px;
  font-family: var(--font-heavy);
  font-size: 20px;
  line-height: 1.4;
  color: var(--green);
  font-weight: 400;
}

.legal-content p {
  margin: 0 0 17px;
}

.legal-content ul {
  margin: -10px 0 0 32px;
  padding: 0;
  list-style: disc;
}

.legal-content li {
  margin: 0;
  padding-left: 2px;
}

.legal-content a {
  text-decoration: underline;
}

.thank-you {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.thank-you .section-copy {
  max-width: 650px;
}

.site-footer {
  padding: 0 24px;
}

.footer-content {
  width: min(100%, var(--footer-max));
  min-height: 230px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 70px;
}

.footer-logo {
  width: 212.2px;
  height: 89.74px;
}

.footer-address {
  font-size: 16px;
  line-height: 1.55;
}

.footer-bottom {
  width: min(100%, var(--footer-max));
  height: 83px;
  margin: 0 auto;
  border-radius: 50px 50px 0 0;
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 50px;
  font-size: 12px;
  line-height: 1;
}

.techfob {
  width: 112.85px;
  height: 20.3px;
}

.footer-bottom a {
  justify-self: end;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.reveal-up,
.reveal-down,
.fade-in {
  opacity: 0;
}

.reveal-up.is-visible {
  animation: motionFadeUp 1.2s 1ms cubic-bezier(.645, .045, .355, 1) both;
}

.reveal-down.is-visible {
  animation: motionFadeDown 1.2s 1ms cubic-bezier(.645, .045, .355, 1) both;
}

.fade-in.is-visible {
  animation: motionFadeUp 1.2s 1ms cubic-bezier(.445, .05, .55, .95) both;
}

@media (max-width: 1000px) {
  .header-inner {
    max-width: none;
    padding: 0 60px;
  }

  .primary-nav {
    min-width: 310px;
    width: 310px;
    margin-right: 0;
  }

  .hero-title,
  .legal-title {
    font-size: 80px;
  }

  .section-title {
    font-size: 45px;
  }

  .partner-block {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
  }

  .partner-text {
    max-width: 460px;
  }

  .footer-content,
  .footer-bottom {
    max-width: 88%;
  }
}

@media (max-width: 750px) {
  :root {
    --header-h: 70px;
  }

  body {
    font-size: 15px;
    line-height: 1.55;
  }

  .header-inner {
    padding: 0 30px;
    justify-content: center;
  }

  .brand {
    width: 171px;
    height: 56px;
  }

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 28px;
    top: 14px;
  }

  .hero {
    text-align: left;
    place-items: center;
  }

  .hero-content {
    justify-items: start;
    width: min(76.9%, 430px);
    transform: none;
  }

  .hero-title,
  .legal-title {
    font-size: 46px;
    line-height: .92;
  }

  .hero-copy {
    font-size: 15px;
  }

  .contact-hero {
    min-height: 310px;
    height: 310px;
    text-align: center;
  }

  .contact-hero .hero-content {
    justify-items: center;
  }

  .text-section {
    min-height: 600px;
    text-align: left;
    place-items: center;
  }

  .section-copy {
    width: min(76.9%, 430px);
  }

  .section-title {
    font-size: 38px;
    line-height: 1.15;
    text-align: left;
  }

  .section-copy p {
    font-size: 15px;
    text-align: left;
  }

  .services-band {
    padding: 70px 24px 86px;
  }

  .services-band .section-title,
  .services-intro {
    text-align: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
    row-gap: 58px;
  }

  .trade-section {
    padding-top: 96px;
  }

  .trade-top,
  .partner-block {
    width: min(76.9%, 430px);
  }

  .trade-top .section-title,
  .trade-top p {
    text-align: left;
  }

  .partner-image {
    width: 100%;
    height: auto;
    aspect-ratio: 474 / 371;
  }

  .why-section {
    padding-top: 82px;
  }

  .why-grid {
    width: min(88%, 430px);
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
    padding: 34px 28px;
  }

  .why-card p {
    font-size: 17px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .legal-wrap {
    width: min(88%, 560px);
  }

  .legal-content {
    font-size: 17px;
  }

  .footer-content {
    min-height: 270px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 22px;
    padding-top: 44px;
    padding-bottom: 38px;
  }

  .footer-logo {
    width: 188px;
    height: auto;
  }

  .footer-bottom {
    height: 112px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 24px 18px;
  }

  .footer-bottom a {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal-up,
  .reveal-down,
  .fade-in {
    opacity: 1;
  }
}
