:root {
  --black: #0a0a0a;
  --white: #f4f3ef;
  --muted: #a8a8a3;
  --line: rgba(10, 10, 10, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --accent: #e6362f;
  --pad: clamp(24px, 5vw, 80px);
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: white;
  letter-spacing: -0.04em;
  font-size: 17px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a:not(.nav-cta) {
  opacity: 0.78;
  transition: opacity 0.25s ease;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,.65);
  padding: 12px 18px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover {
  background: white;
  color: black;
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  padding: 160px var(--pad) 52px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.26) 65%, rgba(0,0,0,.12) 100%),
    linear-gradient(0deg, rgba(0,0,0,.65) 0%, transparent 48%);
}

.hero-content,
.hero-meta {
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1100px;
  margin: 22px 0 28px;
  font-family: var(--display);
  font-size: clamp(58px, 8.4vw, 138px);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 600;
}

.hero-copy {
  max-width: 690px;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: white;
  color: black;
}

.button-dark {
  background: var(--black);
  color: white;
}

.text-link {
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
}

.section {
  padding: 130px var(--pad);
}

.section-label {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #6e6e69;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, .75fr) 2fr;
  gap: 50px;
  margin-bottom: 80px;
}

.section-heading h2,
.statement h2,
.benefits h2,
.cta h2,
.equipment-intro h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.section-heading h2 {
  max-width: 970px;
  font-size: clamp(42px, 6vw, 88px);
}

.statement {
  display: grid;
  grid-template-columns: minmax(150px, .75fr) 2fr;
  gap: 50px;
}

.statement h2 {
  max-width: 1050px;
  font-size: clamp(44px, 6.4vw, 94px);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 900px;
  margin-top: 60px;
  font-size: 17px;
  color: #4e4e49;
}

.showcase {
  padding-top: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 56px 28px;
}

.project-card:nth-child(3) {
  grid-column: 2;
}

.project-image {
  overflow: hidden;
  background: #ddd;
}

.project-large .project-image {
  aspect-ratio: 16 / 10;
}

.project-card:not(.project-large) .project-image {
  aspect-ratio: 4 / 5;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78);
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.project-card:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.project-info {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 16px;
  padding-top: 20px;
}

.project-info span {
  grid-row: 1 / 3;
  font-family: var(--display);
  font-size: 11px;
  color: #777;
}

.project-info h3,
.service-row h3,
.equipment-item h3,
.benefit h3,
.process-step h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.025em;
}

.project-info h3 {
  font-size: 24px;
}

.project-info p {
  max-width: 520px;
  margin-top: 7px;
  color: #666660;
  font-size: 14px;
}

.services {
  border-top: 1px solid var(--line);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  font-family: var(--display);
  font-size: 12px;
  color: #777;
}

.service-row h3 {
  font-size: clamp(22px, 2.2vw, 32px);
}

.service-row p {
  color: #5c5c57;
}

.section-dark {
  background: var(--black);
  color: white;
}

.section-dark .section-label {
  color: #777;
}

.equipment-intro {
  max-width: 1050px;
  margin: 80px 0 100px auto;
}

.equipment-intro h2 {
  margin: 18px 0 34px;
  font-size: clamp(50px, 7vw, 104px);
}

.equipment-intro > p:last-child {
  max-width: 730px;
  font-size: 18px;
  color: rgba(255,255,255,.62);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.equipment-item {
  min-height: 360px;
  padding: 36px 26px 34px 0;
  border-right: 1px solid var(--line-light);
}

.equipment-item:not(:first-child) {
  padding-left: 26px;
}

.equipment-item:last-child {
  border-right: 0;
}

.equipment-item > span {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.equipment-item h3 {
  margin: 110px 0 18px;
  font-size: 25px;
}

.equipment-item p {
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8vw;
  margin-top: 80px;
}

.benefits h2 {
  font-size: clamp(50px, 6.8vw, 96px);
}

.benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.benefit:last-child {
  border-bottom: 1px solid var(--line);
}

.benefit > span {
  font-family: var(--display);
  font-size: 11px;
  color: #777;
}

.benefit h3 {
  font-size: 22px;
}

.benefit p {
  margin-top: 8px;
  color: #62625d;
}

.process {
  background: #deddd7;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0,0,0,.28);
}

.process-step {
  min-height: 320px;
  padding: 28px 28px 30px 0;
  border-right: 1px solid rgba(0,0,0,.22);
}

.process-step:not(:first-child) {
  padding-left: 28px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  font-family: var(--display);
  font-size: 11px;
  color: #777;
}

.process-step h3 {
  margin: 95px 0 12px;
  font-size: 27px;
}

.process-step p {
  color: #5d5d58;
  font-size: 14px;
}

.cta {
  min-height: 75vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.cta-inner {
  max-width: 1100px;
}

.cta h2 {
  margin: 20px 0 45px;
  font-size: clamp(54px, 8vw, 118px);
}

.site-footer {
  padding: 80px var(--pad) 32px;
  background: var(--black);
  color: white;
}

.footer-brand {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-light);
}

.footer-brand p {
  color: rgba(255,255,255,.5);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links span {
  margin-bottom: 15px;
  color: #777;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.footer-links a {
  margin: 4px 0;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

/* Contact page */
.contact-page {
  background: #e9e8e2;
}

.header-light {
  position: relative;
  color: var(--black);
}

.close-link {
  font-size: 13px;
  font-weight: 600;
}

.contact-main {
  padding: 70px var(--pad) 100px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(150px, .75fr) 2fr;
  gap: 50px;
  padding: 40px 0 100px;
}

.contact-heading h1 {
  max-width: 1000px;
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(54px, 7.5vw, 112px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.6fr;
  gap: 8vw;
  padding-top: 70px;
  border-top: 1px solid rgba(0,0,0,.28);
}

.contact-details > p {
  max-width: 520px;
  font-size: 18px;
  color: #4f4f4b;
}

.contact-block {
  margin-top: 48px;
}

.contact-block > span {
  display: block;
  margin-bottom: 10px;
  color: #777;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact-block a {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 600;
}

.contact-block p {
  max-width: 480px;
  color: #5c5c57;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label > span {
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.35);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  padding: 13px 0;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--black);
}

.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
}

.form-submit p {
  max-width: 400px;
  color: #777;
  font-size: 12px;
}

.contact-footer {
  display: flex;
  justify-content: space-between;
  padding: 30px var(--pad);
  border-top: 1px solid rgba(0,0,0,.2);
  font-size: 12px;
  color: #666;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-family: var(--display);
    font-size: 25px;
    transform: translateY(-100%);
    transition: transform .45s cubic-bezier(.6,0,.2,1);
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .menu-toggle {
    position: relative;
    z-index: 30;
    display: block;
    color: white;
  }

  .section-heading,
  .statement,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .equipment-grid,
  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .equipment-item:nth-child(2),
  .process-step:nth-child(2) {
    border-right: 0;
  }

  .equipment-item:nth-child(-n+2),
  .process-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-light);
  }

  .process-step:nth-child(-n+2) {
    border-bottom-color: rgba(0,0,0,.22);
  }

  .benefits-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 78px;
  }

  .hero {
    min-height: 920px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-meta {
    gap: 8px 18px;
    margin-top: 52px;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 50px;
  }

  .statement {
    gap: 30px;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card:nth-child(3) {
    grid-column: auto;
  }

  .project-large .project-image,
  .project-card:not(.project-large) .project-image {
    aspect-ratio: 4 / 3;
  }

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

  .service-row p {
    grid-column: 2;
  }

  .equipment-intro {
    margin-top: 50px;
    margin-bottom: 60px;
  }

  .equipment-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .equipment-item,
  .equipment-item:not(:first-child),
  .process-step,
  .process-step:not(:first-child) {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-step,
  .process-step:not(:first-child) {
    border-bottom-color: rgba(0,0,0,.22);
  }

  .equipment-item h3,
  .process-step h3 {
    margin-top: 55px;
  }

  .benefits-layout {
    margin-top: 50px;
  }

  .footer-brand,
  .footer-bottom,
  .form-submit,
  .contact-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .footer-links,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-main {
    padding-top: 30px;
  }

  .contact-hero {
    padding-bottom: 70px;
  }

  .contact-layout {
    padding-top: 50px;
  }
}
