:root {
  --bg: #07090b;
  --panel: #101417;
  --panel-2: #151a1d;
  --text: #f2f4f4;
  --muted: #92999d;
  --line: rgba(255, 255, 255, 0.13);
  --lime: #c7ff3e;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  color: inherit;
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
section[id] {
  scroll-margin-top: 76px;
}
:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  background: var(--lime);
  color: #07090b;
  padding: 10px 14px;
}
.skip-link:focus {
  transform: none;
}
.apex-container {
  width: min(92vw, 1420px);
  margin: auto;
}
.apex-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 4vw;
}
.apex-header.is-scrolled {
  position: fixed;
  height: 72px;
  background: rgba(7, 9, 11, 0.94);
  backdrop-filter: blur(16px);
}
.apex-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.apex-brand > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font:
    italic 19px Georgia,
    serif;
  transform: skew(-6deg);
}
.apex-brand b {
  line-height: 1;
}
.apex-brand small {
  display: block;
  margin-top: 4px;
  color: #8f969a;
  font-size: 7px;
  letter-spacing: 0.3em;
}
.apex-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  margin-left: auto;
  color: #b1b6b8;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.apex-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.apex-nav a:hover {
  color: #fff;
}
.apex-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 44px;
  margin-left: 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 17px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.apex-header-cta span {
  color: var(--lime);
}
.apex-menu {
  display: none;
}
.apex-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  background: #050607;
}
.apex-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: brightness(0.67) contrast(1.13) saturate(0.72);
}
.apex-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 5, 6, 0.96),
      rgba(4, 5, 6, 0.78) 27%,
      rgba(4, 5, 6, 0.13) 68%,
      rgba(4, 5, 6, 0.46)
    ),
    linear-gradient(0deg, rgba(4, 5, 6, 0.84), transparent 35%);
}
.apex-beam {
  position: absolute;
  top: -50%;
  left: 50%;
  width: 17%;
  height: 170%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  filter: blur(18px);
  transform: rotate(18deg);
}
.apex-hero-copy {
  position: relative;
  z-index: 2;
  width: min(92vw, 1420px);
  margin: auto;
  padding-top: 80px;
}
.apex-eyebrow {
  color: #a7adb0;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.apex-eyebrow i {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: var(--lime);
}
.apex-hero h1,
.intro h2,
.apex-heading h2,
.works h2,
.standards h2,
.apex-contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.89;
}
.apex-hero h1 {
  max-width: 920px;
  margin: 24px 0 30px;
  font-size: clamp(68px, 10vw, 150px);
}
em {
  color: #aab0b3;
  font-style: italic;
  font-weight: 400;
}
.apex-hero-copy > p:not(.apex-eyebrow) {
  max-width: 520px;
  margin: 0 0 0 18%;
  color: #c0c5c7;
  font-size: 16px;
  line-height: 1.75;
}
.apex-actions {
  display: flex;
  gap: 10px;
  margin: 32px 0 0 18%;
}
.apex-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 56px;
  border: 1px solid transparent;
  padding: 0 23px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    background 0.2s;
}
.apex-button:hover {
  transform: translateY(-3px);
}
.apex-button-light {
  background: #f1f3f3;
  color: #090b0c;
}
.apex-button-light:hover {
  background: var(--lime);
}
.apex-button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(8, 9, 10, 0.34);
  backdrop-filter: blur(10px);
}
.apex-coordinates {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 30px;
  display: flex;
  gap: 34px;
  color: #70777a;
  font: 8px monospace;
  letter-spacing: 0.16em;
}
.apex-section {
  padding: 135px 0;
}
.section-label {
  display: flex;
  gap: 20px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  color: #90979a;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-label span {
  color: var(--lime);
  font-family: monospace;
}
.intro-heading {
  display: grid;
  grid-template-columns: 27% 1fr;
  gap: 50px;
  align-items: start;
  padding: 75px 0 90px;
}
.intro-heading .apex-eyebrow {
  padding-top: 14px;
}
.intro h2,
.apex-heading h2,
.works h2,
.standards h2,
.apex-contact h2 {
  margin: 0;
  font-size: clamp(58px, 7.6vw, 116px);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 6vw;
  align-items: end;
}
.intro-photo {
  position: relative;
  height: 600px;
  margin: 0;
  overflow: hidden;
  background: #151819;
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  filter: grayscale(0.2) brightness(0.72) contrast(1.1);
  transition: transform 0.7s;
}
.intro-photo:hover img {
  transform: scale(1.03);
}
.intro-photo figcaption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  color: #d2d5d6;
  font: 8px monospace;
  letter-spacing: 0.17em;
}
.intro-copy > p {
  color: #adb3b5;
  font-size: 18px;
  line-height: 1.8;
}
.intro-copy ul {
  margin: 44px 0 0;
  border-top: 1px solid var(--line);
  padding: 0;
  list-style: none;
}
.intro-copy li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
.intro-copy li > span {
  color: var(--lime);
  font: 8px monospace;
}
.intro-copy b {
  font:
    18px Georgia,
    serif;
}
.intro-copy li p {
  margin: 6px 0 0;
  color: #7e8588;
  font-size: 12px;
  line-height: 1.6;
}
.services {
  background: #0b0e10;
}
.apex-heading {
  display: grid;
  grid-template-columns: 1fr 31%;
  gap: 60px;
  align-items: end;
  padding: 75px 0 80px;
}
.apex-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #14191c, #0c0f11);
  padding: 24px;
  transition:
    transform 0.25s,
    border-color 0.25s;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 9, 11, 0.08),
    rgba(7, 9, 11, 0.3) 38%,
    rgba(7, 9, 11, 0.97) 72%
  );
  pointer-events: none;
}

.service-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: brightness(0.62) saturate(0.72) contrast(1.08);
  transition:
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.3s;
}

.service-card:nth-child(2) .service-card-image {
  object-position: 28% center;
}

.service-card:nth-child(3) .service-card-image {
  object-position: 72% center;
}

.service-card:nth-child(4) .service-card-image {
  object-position: 88% center;
}

.service-card:nth-child(5) .service-card-image {
  object-position: 38% center;
}
.service-card-wide {
  grid-column: span 3;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 255, 62, 0.5);
}

.service-card:hover .service-card-image {
  transform: scale(1.045);
  filter: brightness(0.7) saturate(0.86) contrast(1.08);
}

.service-card > span,
.service-card small,
.service-card h3,
.service-card p,
.service-card > i {
  position: relative;
  z-index: 2;
}

.service-card > span {
  color: var(--lime);
  font: 9px monospace;
}
.service-card small {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  color: #737a7d;
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 175px 0 13px;
  font:
    32px Georgia,
    serif;
  letter-spacing: -0.035em;
}
.service-card p {
  max-width: 430px;
  margin: 0;
  color: #939a9d;
  font-size: 12px;
  line-height: 1.7;
}
.service-card > i {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-style: normal;
  transition: 0.2s;
}
.service-card:hover > i {
  background: var(--lime);
  color: #07090b;
  transform: rotate(45deg);
}
.apex-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0d1012;
}
.apex-marquee > div {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  padding: 21px 0;
  color: #646b6e;
  font: 9px monospace;
  letter-spacing: 0.24em;
}
.apex-marquee i {
  width: 5px;
  height: 5px;
  background: var(--lime);
  transform: rotate(45deg);
}
.works {
  background: #080a0c;
}
.works-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
  align-items: end;
  padding-top: 80px;
}
.works-copy > p {
  max-width: 480px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.works-photo {
  position: relative;
  height: 720px;
  margin: 0;
  overflow: hidden;
}
.works-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: brightness(0.72) saturate(0.65);
  transition: 0.8s;
}
.works-photo:hover img {
  transform: scale(1.035);
  filter: brightness(0.78) saturate(0.85);
}
.works-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 5, 6, 0.85), transparent 45%);
}
.works-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.works-photo figcaption span {
  color: #9aa0a2;
  font: 8px monospace;
  letter-spacing: 0.15em;
}
.works-photo figcaption b {
  font:
    28px Georgia,
    serif;
}
.standards {
  background: #0c0f11;
}
.standards-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  padding-top: 80px;
}
.standards-title {
  position: sticky;
  top: 100px;
  align-self: start;
}
.seal {
  display: grid;
  place-items: center;
  align-content: center;
  width: 120px;
  height: 120px;
  margin-top: 70px;
  border: 1px solid #444a4d;
  border-radius: 50%;
  font:
    28px Georgia,
    serif;
  transform: rotate(-9deg);
}
.seal small {
  margin-top: 5px;
  color: var(--lime);
  font: 7px monospace;
  letter-spacing: 0.13em;
}
.standards-list {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0;
  list-style: none;
}
.standards-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.standards-list li > span {
  color: var(--lime);
  font: 8px monospace;
}
.standards-list h3 {
  margin-bottom: 8px;
  font:
    25px Georgia,
    serif;
}
.standards-list p {
  max-width: 560px;
  margin: 0;
  color: #858c8f;
  font-size: 13px;
  line-height: 1.7;
}
.apex-contact {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  overflow: hidden;
}
.apex-contact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: brightness(0.48) saturate(0.58);
}
.apex-contact-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 5, 6, 0.97),
      rgba(4, 5, 6, 0.55) 53%,
      rgba(4, 5, 6, 0.1)
    ),
    linear-gradient(0deg, #060708, transparent 35%);
}
.apex-contact-copy {
  position: relative;
  z-index: 2;
  width: min(92vw, 1420px);
  margin: auto;
}
.apex-contact-copy > p:not(.apex-eyebrow) {
  max-width: 500px;
  margin: 36px 0 30px 15%;
  color: #aeb4b6;
  line-height: 1.75;
}
.apex-contact-copy .apex-button {
  margin-left: 15%;
}
.apex-footer {
  width: min(92vw, 1420px);
  margin: auto;
  border-top: 1px solid var(--line);
  padding: 55px 0 34px;
}
.apex-footer-word {
  color: #171b1d;
  text-align: center;
  font:
    clamp(110px, 20vw, 300px) / 0.7 Georgia,
    serif;
  letter-spacing: -0.08em;
}
.apex-footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 50px;
  color: #686f72;
  font: 8px monospace;
  letter-spacing: 0.13em;
}
.apex-footer-bottom b {
  color: #aeb3b5;
}
.has-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .apex-header {
    height: 72px;
  }
  .apex-header-cta {
    display: none;
  }
  .apex-menu {
    display: grid;
    place-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(7, 9, 11, 0.4);
  }
  .apex-menu span {
    display: block;
    width: 20px;
    height: 1px;
    background: #fff;
    transition: 0.2s;
  }
  .apex-menu[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .apex-menu[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .apex-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    visibility: hidden;
    gap: 0;
    margin: 0;
    background: rgba(6, 8, 9, 0.98);
    padding: 18px 24px;
    opacity: 0;
    transform: translateY(-12px);
    transition: 0.2s;
  }
  .apex-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .apex-nav a {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    font:
      25px Georgia,
      serif;
    letter-spacing: -0.02em;
    text-transform: none;
  }
  .apex-section {
    padding: 105px 0;
  }
  .intro-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 65px 0;
  }
  .intro-grid,
  .works-grid,
  .standards-layout {
    grid-template-columns: 1fr;
  }
  .intro-photo {
    height: 500px;
  }
  .apex-heading {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card-wide {
    grid-column: span 3;
  }
  .works-grid {
    gap: 60px;
  }
  .works-photo {
    height: 650px;
  }
  .standards-layout {
    gap: 70px;
  }
  .standards-title {
    position: static;
  }
  .apex-contact-copy > p:not(.apex-eyebrow),
  .apex-contact-copy .apex-button {
    margin-left: 8%;
  }
}
@media (max-width: 640px) {
  .apex-container {
    width: calc(100% - 36px);
  }
  .apex-hero {
    min-height: 790px;
  }
  .apex-hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 5, 6, 0.92), rgba(4, 5, 6, 0.24)),
      linear-gradient(0deg, rgba(4, 5, 6, 0.96), transparent 50%);
  }
  .apex-hero-copy {
    width: calc(100% - 36px);
    padding-top: 100px;
  }
  .apex-hero h1 {
    font-size: clamp(52px, 17vw, 82px);
  }
  .apex-hero-copy > p:not(.apex-eyebrow),
  .apex-actions {
    margin-left: 0;
  }
  .apex-hero-copy > p:not(.apex-eyebrow) {
    font-size: 14px;
  }
  .apex-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .apex-button {
    width: 100%;
  }
  .apex-coordinates {
    right: 18px;
    bottom: 22px;
  }
  .apex-coordinates span:first-child {
    display: none;
  }
  .apex-section {
    padding: 84px 0;
  }
  .intro h2,
  .apex-heading h2,
  .works h2,
  .standards h2,
  .apex-contact h2 {
    font-size: clamp(50px, 15vw, 74px);
  }
  .apex-beam {
    display: none;
  }
  .intro-heading {
    padding: 52px 0;
  }
  .intro-photo {
    height: 360px;
  }
  .intro-copy > p {
    font-size: 16px;
  }
  .apex-heading {
    gap: 28px;
    padding: 52px 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card-wide {
    grid-column: 1;
    min-height: 330px;
  }
  .service-card h3 {
    margin-top: 150px;
  }
  .works-grid {
    padding-top: 52px;
  }
  .works-photo {
    height: 520px;
  }
  .works-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
  .seal {
    margin-top: 45px;
  }
  .standards-layout {
    padding-top: 55px;
  }
  .apex-contact {
    min-height: 740px;
  }
  .apex-contact-copy {
    width: calc(100% - 36px);
  }
  .apex-contact-copy > p:not(.apex-eyebrow),
  .apex-contact-copy .apex-button {
    margin-left: 0;
  }
  .apex-footer {
    width: calc(100% - 36px);
  }
  .apex-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    transition-duration: 0.01ms;
  }
  .has-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}
