:root {
  --bg: #ffffff;
  --text: #030303;
  --muted: #5f5f5f;
  --line: #dadada;
  --dark: #0a0a0a;
  --dark-soft: #171717;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
}

.shell {
  width: min(var(--max), 94vw);
  margin: 0 auto;
}

.hero-frame {
  color: #ffffff;
  background: linear-gradient(180deg, #040404, #000000 72%);
  min-height: clamp(720px, 118vh, 1520px);
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding-left:20px;
  padding-right: 20px;

}

.hero-map {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: none;
  
}

.hero-top {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(1.2rem, 2vw, 2rem);
  padding-bottom: clamp(2.1rem, 5vw, 3.8rem);

}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;

  margin-top:-115px;
}

.logo-white {
  filter: brightness(0) invert(1);
}

.hero-underlay {
  display: none;
}

.hero-scroll-cue {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 44px;
  height: 44px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 220ms ease;
  animation: hero-scroll-cue-pulse 2.1s ease-in-out infinite;
}

.hero-scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 16px;
  height: 16px;
  border-right: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: translateX(-50%) rotate(45deg);
}

@keyframes hero-scroll-cue-pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-footer-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(0.5rem, 1.6vw, 1.4rem);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.sub-logo-wrap {
  display: inline-flex;
  text-decoration: none;
}

.sub-logo {
  width: clamp(92px, 8.7vw, 150px);
  height: auto;
  display: block;
  margin-left:12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.15rem;
  margin-right: 12px;

}

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.94rem, 1vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.main-nav a:hover {
  opacity: 1;
}

.intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3rem;
  align-items: start;
  padding-block: 5.2rem 10.2rem;
}

.intro-main {
  padding-block: 11.2rem 10.2rem;
}

.intro-method {
  padding-block: 11.2rem 3.25rem;
}

.intro h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.93;
  text-transform: uppercase;
  font-weight: 700;
}

.intro-copy h3 {
  margin: 0;
  max-width: 39ch;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.2;
  font-weight: 500;
}

.intro-copy p {
  margin: 1.2rem 0;
  max-width: 54ch;
  color: var(--muted);
}

.method-build-list {
  list-style: none;
  margin: 1.55rem 0 0;
  padding-left: 0;
  max-width: 54ch;
}

.method-build-list li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.68rem;
  color: var(--text);
}

.method-build-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.84rem;
  height: 0.84rem;
  border: 0.24rem solid #0a0a0a;
  border-radius: 50%;
  background: #ffffff;
  box-sizing: border-box;
}

.inline-link {
  display: inline-block;
  margin-top: 0.2rem;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
}

.section-block {
  padding-block: 2.8rem 8rem;
}

.section-rule {
  border-top: 1px solid #000000;
  margin-bottom: 1.55rem;
}

.section-title {
  margin: 0 0 3.6rem;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  line-height: 1;
  font-weight: 500;
}

.section-subtitle {
  margin: 0 0 2.2rem;
  max-width: 39ch;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.2;
  font-weight: 500;
}

#work .section-title {
  padding-top: 90px;
  margin-bottom: 1.65rem;
}

.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.15rem;
}

.work-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-list .card-image {
  aspect-ratio: 16 / 9;
}

.work-list .card h4 {
  display: none;
}

.work-load-more {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  display: block;
  width: fit-content;
  margin: 2.8rem auto 0;
  padding-inline: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-load-more::after {
  content: " +";
  font-weight: 700;
}

.work-load-more[hidden] {
  display: none;
}

#news {
  display: none;
}

.card {
  margin: 0;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: none;
}

.image-placeholder {
  aspect-ratio: 4 / 3;
  border: none;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #6b6b6b;
  background:
    radial-gradient(circle at 18% 20%, #f7f7f7, transparent 52%),
    linear-gradient(135deg, #fafafa, #f1f1f1);
}

.card h4 {
  margin: 1.15rem 0 0;
  font-size: clamp(1.2rem, 2.1vw, 1.48rem);
  line-height: 1.24;
  font-weight: 500;
}

.news-list time {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.view-all {
  margin-top: 2.2rem;
}

.video-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-top: 110px;
  padding-bottom: 110px;
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #161617;
}

.video-section .section-title {
  display: none;
}

.video-section > * {
  position: relative;
  z-index: 1;
}

.video-embed-wrap {
  width: min(100%, 1100px);
  margin-inline: auto;
  background: #000000;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
}

.logo-cell {
  aspect-ratio: 2 / 1;
  border: none;
  display: grid;
  place-items: center;
  background: #ffffff;
  padding: 0.0rem;
}

.logo-cell img {
  width: 100%;
  height: 100%;
  max-width: 432px;
  max-height: 106px;
  object-fit: contain;
  display: block;
}

.contact-block {
  padding-bottom: 5.4rem;
}

.contact-block h1 {
  margin: 0;
  font-size: clamp(2.8rem, 9vw, 6.8rem);
  line-height: 0.96;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-email {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.12rem;
}

.site-footer {
  border-top: 1px solid #000000;
  padding: 1.45rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  gap: 1.1rem;
}

.site-footer nav a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .hero-scroll-cue {
    display: block;
  }

  body.hero-scroll-cue-dismissed .hero-scroll-cue {
    animation: none;
    opacity: 0;
  }

  #about.intro-main {
    padding-top: 1.9rem;
    padding-bottom: 5.2rem;
  }

  #method.intro-method {
    padding-top: 4.8rem;
  }

  .video-section {
    padding-top: 0;
    padding-bottom: 0;
    padding-inline: 3%;
    margin-top: 0;
    margin-bottom: 0;
    background: #ffffff;
  }

  .video-section::before {
    background: #ffffff;
  }

  .video-embed-wrap {
    width: 100%;
    background: #ffffff;
   
  }

  .hero-frame {
    min-height: 100vh;
    min-height: 100dvh;
    padding-left: 9px;
    padding-right: 9px;
  }

  .hero-top {
    width: 100%;
    margin: 0;
    padding-top: 0.35rem;
    padding-bottom: 1rem;
  }

  .hero-logo {
    width: 100%;
    max-width: none;
    margin: 0;
    margin-top:-22px;
  }

  .hero-underlay {
    width: min(88vw, 460px);
    bottom: -18vw;
    opacity: 0.4;
  }

  .hero-footer-row {
    position: static;
    margin-top: 0.9rem;
    align-items: center;
  }

  .sub-logo {
    width: clamp(78px, 21vw, 118px);
  }

  .main-nav {
    gap: 0.72rem;
  }

  .main-nav a {
    font-size: 0.72rem;
  }

  .card-list {
    grid-template-columns: 1fr;
  }

  .logo-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.about-topbar {
  background: #ffffff;
}

.about-topbar-inner {
 
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  width: calc(100% - 56px);
  max-width: none;
  padding-block: 0.9rem;
   padding-top:40px;
}

.about-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.62rem, 1.4vw, 1.1rem);
}

.about-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.74rem, 0.88vw, 0.9rem);
  font-weight: 500;
  color: #050505;
  opacity: 0.75;
}

.about-nav a:hover,
.about-nav a[aria-current="page"] {
  opacity: 1;
}

.about-logo-link {
  display: inline-flex;
}

.about-logo {
  display: block;
  width: clamp(165px, 8vw, 118px);
  height: auto;
}

.about-hero-media {
  width: calc(100% - 60px);
  margin: 1.3rem auto 0;
}

.about-hero-media img {
  width: 100%;
  max-height: 640px;
  min-height: clamp(220px, 44vw, 520px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-main {
  padding-block: 3.4rem 4.8rem;
}

.about-copy,
.about-section {
  max-width: min(900px, 94vw);
}

.about-copy h1 {
  margin: 0;
  font-size: clamp(2.3rem, 6.2vw, 4.3rem);
  line-height: 0.97;
  text-transform: uppercase;
}

.about-subtitle {
  margin: 1.25rem 0 0;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  max-width: 41ch;
  font-weight: 600;
}

.about-section {
  padding-top: 2.5rem;
  border-top: 1px solid #000000;
  margin-top: 2.5rem;
}

.about-section h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-section p {
  margin: 0 0 1rem;
  max-width: 70ch;
  color: #171717;
}

.about-build-list {

  margin: 0;
  padding-top:30px !important;
  padding-left: 1.0rem;
  max-width: 72ch;
}

.about-build-list li {
  margin-bottom: 1.1rem;
}

.about-contact-block h1 {
  font-size: clamp(1.68rem, 5.4vw, 4.08rem);
}

@media (max-width: 780px) {
  .about-topbar-inner {
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.55rem;
    width: calc(100% - 20px);
    padding-block: 0.7rem;
  }

  .about-logo {
    width: 95px;
  }

  .about-hero-media {
    width: calc(100% - 40px);
    margin-top: 0.85rem;
  }

  .about-main {
    padding-block: 2.5rem 4rem;
  }

  .about-section {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
