@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  * {
    margin: 0;
  }
  html,
  body {
    height: 100%;
  }
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  img,
  picture,
  video,
  canvas,
  svg {
    display: block;
    max-width: 100%;
  }
  input,
  button,
  textarea,
  select {
    font: inherit;
  }
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    overflow-wrap: break-word;
  }
  #root,
  #__next {
    isolation: isolate;
  }
}
@layer reset, base, layout, components, utilities;
@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  background-color: #00020e;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body {
    position: relative;
    overflow-x: hidden;
  }
  body:before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    height: 120vh;
    z-index: -1;
    background-image: url("/assets/above-the-fold-desktop.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    filter: blur(30px) brightness(0.6);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    height: clamp(80vh, 80%, 100vh);
  }
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  font-weight: 400;
}

:focus-visible {
  outline: 2px solid #e3bd7d;
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .container {
    padding-inline: clamp(1.25rem, 5vw, 4rem);
  }
}

.scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #d29648;
  transition: color 0.2s ease;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 99999;
}
.scroll__arrow {
  width: 0.5rem;
  color: #ffffff;
  animation: bob 1.9s ease-in-out infinite;
}
.scroll__arrow svg {
  width: 100%;
  height: auto;
  display: block;
}
.scroll__label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.6rem;
}
.scroll:hover {
  color: #e3bd7d;
}

.site-footer {
  background: #101842;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 1rem;
}
.site-footer__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding-block: clamp(1.5rem, 3vw, 1.75rem);
  justify-content: space-between;
}
@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
  }
}
.site-footer .brand--footer img {
  display: block;
  width: 10rem;
}
@media (min-width: 768px) {
  .site-footer .brand--footer img {
    width: 21.9375rem;
  }
}
.site-footer .contact {
  font-size: 0.6rem;
  letter-spacing: 0.01em;
}
.site-footer .contact__label {
  display: none;
  color: #d29648;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 0.4rem;
}
.site-footer .contact a {
  color: #ffffff;
  transition: color 0.2s ease;
}
.site-footer .contact a:hover {
  color: #e3bd7d;
}
@media (min-width: 768px) {
  .site-footer .contact {
    font-size: 1.625rem;
    letter-spacing: 0.01rem;
  }
  .site-footer .contact__label {
    display: inline-block;
  }
}

/*Here!*/
.hero-container {
  position: relative;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hero-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content-layer {
  padding: 1.75rem 1rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: left;
}

.brand-header {
  margin-bottom: 2rem;
}
.brand-header p {
  font-size: 3rem;
  line-height: 3rem;
  font-family: "League Gothic", sans-serif;
}

.brand-logo {
  width: 100%;
  height: auto;
}
.brand-logo img {
  width: 45vw;
}

.main-text-box {
  position: absolute;
  top: 54%;
  left: 4.3%;
  width: 70vw;
  text-shadow: 0px 2px 8px rgb(0, 0, 0), 0px 0px 4px rgb(0, 0, 0);
}

.headline {
  font-family: "League Gothic", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: #ed3224;
  margin-bottom: 1rem;
  font-weight: 800;
}

.description {
  font-size: 0.7rem;
  line-height: 0.9rem;
  margin-bottom: 0.6rem;
}

.tagline {
  font-size: 0.8rem;
  color: #d29648;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-container {
    display: block;
    overflow: hidden;
  }
  .hero-content-layer {
    padding: 0;
  }
  .brand-header,
  .main-text-box {
    /*!*/
  }
  .brand-header {
    position: absolute;
    top: 33%;
    left: 4.3%;
    width: clamp(250px, 33.75vw, 648px);
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .brand-header p {
    display: none;
  }
}
@media (min-width: 768px) {
  .brand-logo {
    width: 100%;
    max-width: none;
  }
  .main-text-box {
    position: absolute;
    top: 64%;
    left: 4.3%;
    width: 40%;
  }
  .headline {
    font-size: clamp(2.5rem, 5.98vw, 7.1875rem);
    line-height: clamp(2.5rem, 5.98vw, 7.1875rem);
    margin-bottom: clamp(1rem, 1.5vw, 2.5rem);
  }
  .description {
    font-size: clamp(1rem, 1.25vw, 24px);
    line-height: calc(clamp(1rem, 1.25vw, 24px) * 1.2);
    margin-bottom: clamp(0.9rem, 1.2vw, 2.1875rem);
  }
  .tagline {
    font-size: clamp(1.1rem, 1.56vw, 30px);
    letter-spacing: 1.5px;
  }
  .scroll {
    bottom: unset;
    top: min(100vh - 5rem, 64rem);
  }
  .scroll__arrow {
    width: 1.1rem;
    color: #ffffff;
    animation: bob 1.9s ease-in-out infinite;
  }
  .scroll__arrow svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .scroll__label {
    font-size: 0.9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
.services-container {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem 1.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .services-container {
    padding: 4rem 1.5rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .services-grid {
    gap: 3rem;
  }
}

.service-icon {
  flex: 1 0 auto;
}
.service-icon img {
  width: 3rem;
  height: 3rem;
  display: block;
}
@media (min-width: 768px) {
  .service-icon img {
    width: 4rem;
    height: 4rem;
    display: block;
  }
}
@media (min-width: 1024px) {
  .service-icon img {
    width: 5rem;
    height: 5rem;
    display: block;
  }
}
@media (min-width: 1536px) {
  .service-icon img {
    width: 6.5rem;
    height: 6.5rem;
    display: block;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .service-card {
    padding-bottom: 2rem;
  }
}
.service-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .service-header {
    gap: 1.5rem;
    margin-bottom: 2.6rem;
  }
}
.service-title-block {
  flex: 0 0 auto;
  line-height: 1;
  font-family: "League Gothic", sans-serif;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .service-title-block {
    font-size: 3rem;
  }
}
.service-number {
  display: block;
  color: #ed3224;
}
.service-title {
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .service-title {
    font-size: 3rem;
  }
}
.service-description {
  font-size: 0.7rem;
  line-height: 0.9rem;
  color: #ffffff;
  align-self: flex-end;
  margin-bottom: 0.2rem;
}
@media (min-width: 768px) {
  .service-description {
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
}
.service-description-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #1a1a1a;
  overflow: hidden;
}
.service-description-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.video-play-icon {
  width: clamp(30px, 5vw, 50px);
  height: auto;
  margin-bottom: 0.5rem;
}

.overlay-text {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #fff;
  font-weight: 700;
}

@media (min-width: 768px) {
  .services-container {
    max-width: 1920px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .service-card {
    border-bottom: none;
  }
}
.mobile {
  display: inherit;
}

.mobile-landscape {
  display: none;
}

.desktop {
  display: none;
}

@media (min-width: 768px) {
  .mobile {
    display: none;
  }
  .desktop {
    display: inherit;
  }
}
@media (orientation: landscape) and (max-height: 30rem) {
  .mobile-landscape {
    display: block;
  }
  .mobile {
    display: none;
  }
  .desktop {
    display: none;
  }
  .scroll {
    top: calc(100vh - 8rem);
    bottom: unset;
    text-shadow: 0px 2px 8px rgb(0, 0, 0), 0px 0px 4px rgb(0, 0, 0);
    background: radial-gradient(circle, rgba(5, 10, 21, 0.85) 0%, rgba(5, 10, 21, 0) 75%);
  }
  .scroll__label {
    color: #ffffff;
  }
  .scroll svg {
    filter: drop-shadow(0px 2px 3px rgb(0, 0, 0)) drop-shadow(0px 4px 10px rgb(0, 0, 0));
  }
  .scroll svg path {
    stroke: #ffffff;
    stroke-width: 5px;
  }
  .services-container {
    padding: 2rem 1rem;
  }
  .service-card {
    flex-direction: row;
    flex: 0 0 auto;
    gap: 0.5rem;
  }
  .service-header {
    display: grid;
    grid-template-columns: 3rem auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 0.5rem;
    grid-template-areas: "icon label" "description description";
    flex: 0 0 40vw;
  }
  .service-media {
    flex: 0 0 auto;
  }
  .service-icon {
    grid-area: icon;
    align-self: end;
  }
  .service-title-block {
    grid-area: label;
    align-self: end;
    font-size: 1.6rem;
  }
  .service-description {
    grid-area: description;
    align-self: start;
    font-size: 1rem;
    line-height: 1.2rem;
  }
}