.design-a {
  --navy: #0e2f59;
  --navy-deep: #071f3c;
  --orange: #ee7203;
  --mist: #d8e6f3;
  --white: #fff;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.a-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  background: linear-gradient(to bottom, rgb(2 17 34 / 72%), transparent);
}

.a-hero {
  position: relative;
  display: grid;
  min-height: min(56rem, 100svh);
  align-items: center;
  isolation: isolate;
  background: var(--navy-deep);
}

.a-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(3 15 29 / 88%) 0%, rgb(3 15 29 / 66%) 42%, rgb(3 15 29 / 12%) 76%),
    linear-gradient(to top, rgb(3 15 29 / 42%), transparent 45%);
  content: "";
}

.a-hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.a-hero__content {
  padding-block: 10rem 6rem;
}

.a-hero h1 {
  max-width: 52rem;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.a-hero__content > p:not(.section-kicker) {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: var(--mist);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.scroll-cue {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}

.a-intro {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--navy);
}

.a-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.a-intro h2,
.a-scene h2,
.a-turf h2,
.a-technology h2,
.a-services h2 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.a-intro__grid > p {
  color: var(--mist);
  line-height: 2;
}

.a-equipment {
  padding-block: clamp(4rem, 8vw, 8rem);
  background:
    linear-gradient(140deg, rgb(255 255 255 / 5%), transparent 44%),
    var(--navy-deep);
}

.cutaway-card {
  position: relative;
  margin: 0;
}

.cutaway-card img {
  display: block;
  width: min(100%, 68rem);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 2rem 2rem rgb(0 0 0 / 30%));
}

.cutaway-card figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cutaway-card figcaption span {
  padding: 0.55rem 1rem;
  border: 1px dashed var(--orange);
  color: var(--orange);
  font-weight: 700;
}

.a-scene {
  position: relative;
  min-height: clamp(26rem, 50vw, 48rem);
  isolation: isolate;
}

.a-scene::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(7 31 60 / 85%), transparent 62%);
  content: "";
}

.a-scene > img {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-scene__title {
  padding-top: clamp(4rem, 9vw, 8rem);
}

.a-engineering__details {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 8rem);
}

.a-engineering__details img {
  width: 100%;
  height: auto;
  box-shadow: 1.5rem 1.5rem 0 var(--orange);
}

.a-engineering__details h3,
.a-turf__details h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.a-engineering__details li {
  margin-bottom: 0.6rem;
  color: var(--mist);
}

.a-turf {
  background: var(--navy-deep);
}

.a-turf__visual {
  position: relative;
  min-height: clamp(24rem, 45vw, 42rem);
  isolation: isolate;
}

.a-turf__visual::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgb(7 31 60 / 70%), transparent 60%);
  content: "";
}

.a-turf__visual > img {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-turf__visual .site-shell {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
}

.a-turf__details {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.a-turf__details img {
  width: 100%;
}

.a-turf__details p,
.a-turf__details figcaption {
  color: var(--mist);
  line-height: 1.8;
}

.a-technology {
  position: relative;
  min-height: clamp(30rem, 55vw, 50rem);
  isolation: isolate;
  background: #cde1f3;
  color: var(--navy);
}

.a-technology::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(216 230 243 / 96%) 0 38%, transparent 72%);
  content: "";
}

.a-technology > img {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-technology__content {
  padding-top: clamp(5rem, 12vw, 10rem);
}

.a-technology__content p:not(.section-kicker) {
  max-width: 30rem;
  line-height: 1.8;
}

.a-services {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.a-footer {
  padding-block: 4rem;
  border-top: 1px solid rgb(255 255 255 / 14%);
  background: var(--navy-deep);
}

.a-footer .site-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.a-footer p {
  margin: 0;
  color: var(--mist);
}

.a-footer a {
  color: var(--orange);
}

@media (max-width: 767.98px) {
  .a-hero {
    align-items: end;
  }

  .a-hero::after {
    background: linear-gradient(to top, rgb(3 15 29 / 94%) 5%, rgb(3 15 29 / 70%) 48%, rgb(3 15 29 / 14%) 88%);
  }

  .a-hero__image {
    width: 100%;
    height: 100%;
    object-position: 67% center;
  }

  .a-hero__content {
    padding-top: 25rem;
  }

  .a-intro__grid,
  .a-engineering__details,
  .a-turf__details {
    grid-template-columns: 1fr;
  }

  .a-engineering__details img {
    box-shadow: 0.75rem 0.75rem 0 var(--orange);
  }

  .a-technology::after {
    background: linear-gradient(to top, rgb(216 230 243 / 98%) 0 48%, transparent 80%);
  }

  .a-technology__content {
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 3rem;
  }

  .a-footer .site-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}
