* { box-sizing: border-box; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 10001;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  border-radius: 3px;
  transition: top .25s ease;
}

.skip-link:focus {
  top: 16px;
}

:root {
  --ink: #090909;
  --white: #f2eee8;
  --orange: #C46A32;
  --line: rgba(242, 238, 232, .16);
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

section[id] {
  scroll-margin-top: 92px;
}

@media (max-width: 900px) {
  section[id] { scroll-margin-top: 78px; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  transition: opacity .2s ease;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242,238,232,.4);
  transition: width .25s ease, height .25s ease, border-color .25s ease, opacity .2s ease, background .25s ease;
}

.cursor-ring.is-active {
  width: 56px;
  height: 56px;
  border-color: var(--orange);
}

.cursor-ring.is-view {
  width: 84px;
  height: 84px;
  border-color: var(--orange);
  background: rgba(9,9,9,.55);
}

.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.6);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  opacity: 0;
  transition: opacity .22s ease, transform .22s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}

.cursor-label.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring, .cursor-label { display: none; }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), visibility .7s;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .28em;
  opacity: 0;
  animation: preloader-fade .5s ease .1s forwards;
  position: relative;
  padding-bottom: 14px;
}

.preloader-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: rgba(242,238,232,.14);
}

.preloader-text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: var(--orange);
  animation: preloader-bar 1.1s cubic-bezier(.4,0,.2,1) .15s forwards;
}

@keyframes preloader-fade {
  to { opacity: 1; }
}

@keyframes preloader-bar {
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10002;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { transition: none; }
}

.side-progress {
  position: fixed;
  right: 26px;
  top: 50%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
  color: rgba(242,238,232,.55);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.side-progress.is-visible {
  opacity: 1;
  visibility: visible;
}

.side-progress-current {
  color: var(--orange);
}

.side-progress-line {
  width: 1px;
  height: 28px;
  background: rgba(242,238,232,.2);
}

@media (max-width: 900px) {
  .side-progress { display: none; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, .68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.navbar {
  width: min(100% - 64px, 1440px);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .20em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  animation: reveal .6s cubic-bezier(.2,.7,.2,1) .08s forwards;
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  animation: brand-accent .55s cubic-bezier(.2,.7,.2,1) .18s forwards;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
}

.desktop-nav > a {
  position: relative;
  color: rgba(242,238,232,.88);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(8px);
  animation: reveal .6s cubic-bezier(.2,.7,.2,1) forwards;
}

.desktop-nav > a:nth-child(1) { animation-delay: .16s; }
.desktop-nav > a:nth-child(2) { animation-delay: .22s; }
.desktop-nav > a:nth-child(3) { animation-delay: .28s; }
.desktop-nav > a:nth-child(4) { animation-delay: .34s; }
.desktop-nav > a:nth-child(5) { animation-delay: .40s; }

.desktop-nav > a:not(.cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease-out;
}

.desktop-nav > a:not(.cta):hover::after,
.desktop-nav > a:not(.cta):focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav > a.is-active {
  color: var(--orange);
}

.desktop-nav > a.is-active::after {
  transform: scaleX(1);
}

.mobile-menu a.is-active {
  color: var(--orange);
}

.cta {
  padding: 10px 13px !important;
  border: 1px solid rgba(196,106,50,.65);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.cta:hover,
.cta:focus-visible {
  background: rgba(196,106,50,.12);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.cta span,
.mobile-cta span {
  display: inline-block;
  margin-left: 5px;
  transition: transform .25s ease;
}

.cta:hover span,
.cta:focus-visible span,
.mobile-cta:hover span,
.mobile-cta:focus-visible span {
  transform: translateX(4px);
}

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

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform .3s ease, opacity .2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #090909;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    url("hero.png")
    center center / cover
    no-repeat;
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.002);
  will-change: transform;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.05) 43%, rgba(0,0,0,.02) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,0) 34%, rgba(0,0,0,.20) 100%);
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1440px) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 42vw);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(242,238,232,.75);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: .20em;
  opacity: 0;
  transform: translateY(8px);
  animation: reveal .7s cubic-bezier(.2,.7,.2,1) .42s forwards;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.3vw, 68px);
  line-height: .98;
  font-weight: 600;
  letter-spacing: -.035em;
  opacity: 0;
  transform: translateY(10px);
  animation: reveal .85s cubic-bezier(.2,.7,.2,1) .48s forwards;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.dummy-section {
  height: 70vh;
  background: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,.04);
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes brand-accent {
  to { transform: scaleX(1); }
}

@media (max-width: 900px) {
  .navbar {
    width: min(100% - 40px, 1440px);
    height: 78px;
  }

  .desktop-nav { display: none; }
  .menu-toggle { display: block; }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
  }

  .site-header.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu-inner {
    height: 100%;
    padding: 120px 32px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: .12em;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transition: opacity .3s ease, transform .3s ease;
  }

  .site-header.menu-open .mobile-menu a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .site-header.menu-open .mobile-menu a:nth-child(1) { transition-delay: .06s; }
  .site-header.menu-open .mobile-menu a:nth-child(2) { transition-delay: .12s; }
  .site-header.menu-open .mobile-menu a:nth-child(3) { transition-delay: .18s; }
  .site-header.menu-open .mobile-menu a:nth-child(4) { transition-delay: .24s; }
  .site-header.menu-open .mobile-menu a:nth-child(5) { transition-delay: .30s; }

  .mobile-cta {
    margin-top: 12px;
    color: var(--orange) !important;
  }

  .hero-content {
    left: 32px;
    width: min(520px, calc(100vw - 64px));
  }
}

@media (max-width: 600px) {
  .navbar { width: calc(100% - 32px); }
  .brand { font-size: 11px; letter-spacing: .16em; }
  .hero {
    min-height: 78svh;
  }
  .hero-image {
    background-position: 62% center;
  }
  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.16) 100%),
      linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,.25) 100%);
  }
  .hero-content {
    left: 20px;
    width: calc(100vw - 40px);
    top: 54%;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: .14em;
    margin-bottom: 14px;
  }
  h1 {
    font-size: clamp(34px, 11vw, 52px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Projects — minimal editorial showcase */
.projects-section {
  position: relative;
  background: var(--ink);
  padding: clamp(96px, 11vw, 170px) 0 clamp(110px, 12vw, 190px);
  border-top: 1px solid rgba(255,255,255,.04);
}

.projects-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.projects-header {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(64px, 8vw, 120px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}

.projects-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.projects-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: .20em;
}

.projects-header h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 5vw, 76px);
  line-height: .92;
  font-weight: 600;
  letter-spacing: -.045em;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: clamp(90px, 12vw, 190px);
}

.project {
  position: relative;
  width: min(100%, 1120px);
}

.project--wide {
  align-self: flex-start;
}

.project--offset {
  width: min(78%, 900px);
  align-self: flex-end;
}

.project--right {
  align-self: flex-end;
}

.project--last {
  align-self: flex-start;
}

.project-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
  color: inherit;
  text-decoration: none;
}

.project img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

.project-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.03) 18%,
    rgba(0,0,0,.20) 42%,
    rgba(0,0,0,.82) 100%
  );
  opacity: .78;
  transition: opacity .35s ease;
}

.project-number {
  position: absolute;
  top: clamp(20px, 3vw, 38px);
  left: clamp(20px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(242,238,232,.82);
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .18em;
}

.project-number::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--orange);
  transform-origin: left center;
  transition: width .35s ease, background .35s ease;
}

.project-copy {
  position: absolute;
  left: clamp(20px, 3vw, 42px);
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(20px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(5px);
  transition: transform .35s ease;
}

.project-meta {
  margin-bottom: 11px;
  color: rgba(242,238,232,.64);
  font-size: 8px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .18em;
}

.project h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: .92;
  font-weight: 600;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.project h3 span,
.project h3 em {
  display: block;
}

.project h3 em {
  color: var(--orange);
  font-style: normal;
  transition: color .35s ease;
}

.project-copy p {
  margin: 15px 0 0;
  max-width: 420px;
  color: rgba(242,238,232,.66);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: .035em;
  opacity: .78;
  transform: translateY(5px);
  transition: opacity .35s ease, transform .35s ease;
}

.project-media:hover img,
.project-media:focus-visible img {
  transform: scale(1.025);
}

.project-media:hover .project-overlay,
.project-media:focus-visible .project-overlay {
  opacity: .9;
}

.project-media:hover .project-copy,
.project-media:focus-visible .project-copy {
  transform: translateY(0);
}

.project-media:hover .project-copy p,
.project-media:focus-visible .project-copy p {
  opacity: 1;
  transform: translateY(0);
}

.project-media:hover .project-number::before,
.project-media:focus-visible .project-number::before {
  width: 24px;
}

@media (max-width: 900px) {
  .projects-wrap {
    width: min(100% - 40px, 1440px);
  }

  .project,
  .project--offset,
  .project--wide,
  .project--right,
  .project--last {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 600px) {
  .projects-section {
    padding: 88px 0 110px;
  }

  .projects-wrap {
    width: calc(100% - 40px);
  }

  .projects-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 58px;
  }

  .projects-list {
    gap: 72px;
  }

  .project-media {
    aspect-ratio: 4 / 5;
  }

  .project-number {
    top: 20px;
    left: 20px;
  }

  .project-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
    transform: none;
  }

  .project-overlay {
    opacity: .84;
  }

  .project h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .project-meta {
    font-size: 8px;
    letter-spacing: .13em;
  }

  .project-copy p {
    opacity: 1;
    transform: none;
  }
}

/* Quiet motion system — restrained editorial reveals */
.hero-image {
  opacity: .68;
  filter: brightness(.72);
  animation: hero-image-reveal .9s cubic-bezier(.2,.7,.2,1) .04s forwards;
}

@keyframes hero-image-reveal {
  to {
    opacity: 1;
    filter: brightness(1);
  }
}

.what-we-do {
  position: relative;
  background: #0b0b0b;
  padding: clamp(100px, 12vw, 180px) 0 clamp(120px, 14vw, 200px);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.035);
  overflow: hidden;
}

.what-we-do-wrap {
  width: min(100% - 64px, 1360px);
  margin: 0 auto;
}

.what-we-do-intro {
  max-width: 1160px;
  margin-bottom: clamp(88px, 10vw, 138px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.what-we-do-intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-intro-label {
  position: relative;
  display: inline-block;
  padding-bottom: 9px;
  color: var(--orange);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 9px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-intro-label > span {
  display: none;
}

.section-intro-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  opacity: .8;
  transition: width .75s cubic-bezier(.2,.7,.2,1);
}

.what-we-do-intro.is-visible .section-intro-label::after {
  width: 100%;
}

.what-we-do-intro h2 {
  max-width: 1080px;
  margin: 25px 0 0;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: .91;
  font-weight: 600;
  letter-spacing: -.012em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .72s ease .12s, transform .72s cubic-bezier(.2,.7,.2,1) .12s;
}

.what-we-do-intro.is-visible h2 {
  opacity: 1;
  transform: translateY(0);
}

.what-we-do-intro h2 em {
  color: var(--orange);
  font-style: normal;
}

.capabilities {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 13vw, 190px);
}

.capability {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  align-items: center;
  min-width: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.capability.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.capability:nth-child(2) { transition-delay: .10s; }
.capability:nth-child(3) { transition-delay: .20s; }
.capability:nth-child(4) { transition-delay: .30s; }

.capability:nth-child(even) {
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
}

.capability:nth-child(even) .capability-media {
  order: 2;
}

.capability:nth-child(even) .capability-content {
  order: 1;
  padding-left: 0;
  padding-right: clamp(36px, 6vw, 110px);
}

.capability-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  color: inherit;
  text-decoration: none;
  clip-path: inset(0 100% 0 0);
  opacity: .72;
  transition: clip-path .85s cubic-bezier(.2,.7,.2,1), opacity .65s ease;
}

.capability.is-visible .capability-media {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.capability-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

.capability--build .capability-media img,
.capability--civil .capability-media img,
.capability--renovate .capability-media img {
  object-position: center top;
}

@media (min-width: 901px) {
  .capability--build .capability-media,
  .capability--civil .capability-media,
  .capability--renovate .capability-media {
    aspect-ratio: 1.18 / 1;
  }
}

.capability-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.06);
  pointer-events: none;
  transition: background .35s ease;
}

.capability-content {
  max-width: 620px;
  padding-left: clamp(36px, 6vw, 110px);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .6s ease .18s, transform .6s cubic-bezier(.2,.7,.2,1) .18s;
}

.capability.is-visible .capability-content {
  opacity: 1;
  transform: translateY(0);
}

.capability-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 9px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .19em;
}

.capability-label span:nth-child(2) {
  opacity: .65;
}

.capability-label::after {
  content: "";
  width: 0;
  height: 1px;
  margin-left: 4px;
  background: var(--orange);
  transition: width .35s ease;
}

.capability:hover .capability-label::after,
.capability:focus-within .capability-label::after {
  width: 22px;
}

.capability h3 {
  margin: 0;
  max-width: 560px;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .86;
  font-weight: 700;
  letter-spacing: -.018em;
  text-transform: uppercase;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}

.capability p {
  max-width: 470px;
  margin: 20px 0 0;
  color: rgba(242,238,232,.62);
  font-size: 11px;
  line-height: 1.75;
  font-weight: 500;
}

.capability-media:hover img,
.capability-media:focus-visible img {
  transform: scale(1.025);
}

.capability-media:hover .capability-overlay,
.capability-media:focus-visible .capability-overlay {
  background: rgba(0,0,0,.18);
}

.capability:has(.capability-media:hover) h3,
.capability:has(.capability-media:focus-visible) h3 {
  transform: translateY(-4px);
}

.projects-section {
  background: var(--ink);
  padding-top: clamp(90px, 12vw, 175px);
}

.projects-kicker {
  margin-bottom: clamp(54px, 7vw, 100px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}

.projects-kicker.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.project.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project.reveal-on-scroll:nth-child(2) { transition-delay: .08s; }
.project.reveal-on-scroll:nth-child(3) { transition-delay: .16s; }
.project.reveal-on-scroll:nth-child(4) { transition-delay: .24s; }

.project-media.reveal-image {
  opacity: .85;
  transition: opacity .5s ease .25s;
}

.project.is-visible .project-media.reveal-image {
  opacity: 1;
}

.project-media.reveal-image::before {
  content: "";
  position: absolute;
  inset: -15% -25%;
  z-index: 2;
  background: var(--ink);
  transform: skewX(-14deg) translateX(0%);
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}

.project-media.reveal-image::after {
  content: "";
  position: absolute;
  inset: -15% -25%;
  z-index: 2;
  background: var(--orange);
  transform: skewX(-14deg) translateX(0%);
  transition: transform 1s cubic-bezier(.2,.7,.2,1) .09s;
  pointer-events: none;
}

.project.is-visible .project-media.reveal-image::before {
  transform: skewX(-14deg) translateX(135%);
}

.project.is-visible .project-media.reveal-image::after {
  transform: skewX(-14deg) translateX(135%);
}

.final-cta {
  position: relative;
  background: #0b0b0b;
  padding: clamp(110px, 15vw, 220px) 0 clamp(120px, 16vw, 240px);
  border-top: 1px solid rgba(255,255,255,.04);
  overflow: hidden;
}

.final-cta-inner {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

.final-cta-inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.final-cta h2 {
  margin: 24px 0 0;
  max-width: 900px;
  color: var(--white);
  font-size: clamp(44px, 7vw, 100px);
  line-height: .9;
  font-weight: 600;
  letter-spacing: -.055em;
}

.final-cta h2 em {
  color: var(--orange);
  font-style: normal;
}

.final-cta p {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(242,238,232,.62);
  font-size: 12px;
  line-height: 1.75;
}

.final-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 14px;
  border: 1px solid rgba(196,106,50,.65);
  color: var(--white);
  text-decoration: none;
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .17em;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.final-cta-link span {
  display: inline-block;
  transition: transform .3s ease;
}

.final-cta-link:hover,
.final-cta-link:focus-visible {
  background: rgba(196,106,50,.1);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.final-cta-link:hover span,
.final-cta-link:focus-visible span {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .what-we-do-wrap,
  .final-cta-inner {
    width: min(100% - 40px, 1280px);
  }

  .capability,
  .capability:nth-child(even) {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }

  .capability:nth-child(even) .capability-media {
    order: 2;
  }

  .capability:nth-child(even) .capability-content {
    padding-right: 28px;
  }

  .capability-content {
    padding-left: 28px;
  }

  .capability h3 {
    font-size: clamp(36px, 5vw, 54px);
  }
}

@media (max-width: 600px) {
  .hero-image {
    animation-duration: .7s;
  }

  .what-we-do {
    padding: 88px 0 112px;
  }

  .what-we-do-wrap,
  .final-cta-inner {
    width: calc(100% - 40px);
  }

  .what-we-do-intro {
    max-width: 100%;
    margin-bottom: 72px;
  }

  .section-intro-label {
    font-size: 8px;
    letter-spacing: .2em;
    padding-bottom: 8px;
  }

  .what-we-do-intro h2 {
    max-width: 100%;
    margin-top: 20px;
    font-size: clamp(40px, 10.8vw, 58px);
    line-height: .92;
    letter-spacing: -.014em;
  }

  .capabilities {
    gap: 78px;
  }

  .capability,
  .capability:nth-child(even) {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .capability:nth-child(even) .capability-media,
  .capability:nth-child(even) .capability-content {
    order: initial;
  }

  .capability-media {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .capability-content,
  .capability:nth-child(even) .capability-content {
    max-width: 100%;
    padding: 28px 0 0;
  }

  .capability h3 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 52px);
  }

  .capability p {
    max-width: 100%;
    margin-top: 16px;
    font-size: 10.5px;
  }

  .capability-label {
    margin-bottom: 13px;
  }

  .capability-media:hover img,
  .capability-media:focus-visible img {
    transform: scale(1.018);
  }

  .capability:has(.capability-media:hover) h3,
  .capability:has(.capability-media:focus-visible) h3 {
    transform: translateY(-2px);
  }

  .projects-section {
    padding-top: 86px;
  }

  .projects-kicker {
    margin-bottom: 52px;
  }

  .project.reveal-on-scroll {
    transform: translateY(12px);
  }

  .project-media.reveal-image::before,
  .project-media.reveal-image::after {
    transform: skewX(0deg) translateY(0%);
  }

  .project.is-visible .project-media.reveal-image::before,
  .project.is-visible .project-media.reveal-image::after {
    transform: skewX(0deg) translateY(130%);
  }

  .final-cta {
    padding: 96px 0 120px;
  }

  .final-cta h2 {
    font-size: clamp(44px, 12vw, 66px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
    opacity: 1;
    filter: none;
  }

  .project-media.reveal-image {
    opacity: 1;
  }

  .project-media.reveal-image::before,
  .project-media.reveal-image::after {
    display: none;
  }

  .reveal-on-scroll,
  .capability,
  .section-intro h2,
  .projects-kicker,
  .final-cta-inner {
    opacity: 1 !important;
    transform: none !important;
  }

  .section-intro-label > span,
  .projects-kicker > span {
    width: 34px;
  }
}

/* Refined service accent: orange is reserved for alternating service names. */
.capability:nth-child(even) h3 {
  color: var(--orange);
}

.capability:nth-child(even) .capability-label {
  color: rgba(242,238,232,.72);
}

@media (max-width: 900px) {
  .capability h3 {
    font-size: clamp(42px, 7vw, 62px);
  }

  .capability:nth-child(even) h3 {
    color: var(--orange);
  }
}

@media (max-width: 600px) {
  .capability--build .capability-media,
  .capability--civil .capability-media,
  .capability--renovate .capability-media {
    aspect-ratio: 1.18 / 1;
  }

  .capability--demolish .capability-media {
    aspect-ratio: 4 / 5;
  }

  .capability h3 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: .88;
  }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  position: relative;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}

.stats-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 34px 32px;
  border-right: 1px solid rgba(255,255,255,.06);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  color: var(--white);
}

.stat-suffix {
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--orange);
  margin-left: 2px;
}

.stat-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 3px;
}

.stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(242,238,232,.9);
}

.stat-desc {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(242,238,232,.42);
}

@media (max-width: 900px) {
  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    padding: 24px 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .stat:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .stat {
    flex-direction: column;
    gap: 6px;
  }
}

/* ============================================
   CHALLENGE / WHAT WE DO INTRO
   ============================================ */
.challenge-section {
  position: relative;
  background: var(--ink);
  padding: clamp(90px, 11vw, 160px) 0;
  overflow: hidden;
}

.challenge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.025) 0,
    rgba(255,255,255,.025) 1px,
    transparent 1px,
    transparent 120px
  );
  pointer-events: none;
}

.challenge-wrap {
  position: relative;
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.section-intro-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(242,238,232,.72);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}

.section-intro-label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-intro-label span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange);
  transition: width .6s cubic-bezier(.2,.7,.2,1) .15s;
}

.section-intro-label.is-visible span {
  width: 40px;
}

.challenge-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.challenge-heading {
  margin: 0;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(46px, 7.2vw, 108px);
  line-height: .94;
  letter-spacing: -.01em;
  color: var(--white);
  text-transform: uppercase;
  max-width: 900px;
}

.challenge-heading .line {
  display: block;
  overflow: hidden;
}

.challenge-heading .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .85s cubic-bezier(.16,.84,.24,1), opacity .6s ease;
}

.challenge-heading .word.accent {
  color: var(--orange);
}

.challenge-heading.is-visible .word {
  transform: translateY(0);
  opacity: 1;
}

.challenge-heading.is-visible .line[data-line="1"] .word:nth-child(1) { transition-delay: .05s; }
.challenge-heading.is-visible .line[data-line="1"] .word:nth-child(3) { transition-delay: .13s; }
.challenge-heading.is-visible .line[data-line="1"] .word:nth-child(5) { transition-delay: .21s; }
.challenge-heading.is-visible .line[data-line="2"] .word { transition-delay: .3s; }

.challenge-copy {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(242,238,232,.6);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease .25s, transform .8s cubic-bezier(.2,.7,.2,1) .25s;
}

.challenge-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .challenge-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .challenge-copy {
    max-width: 100%;
  }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 500;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(242,238,232,.22);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s, border-color .3s ease, background .3s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.scroll-top span {
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}

.scroll-top:hover span {
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   HERO SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 4vw, 48px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: .75;
}

.scroll-indicator-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  color: rgba(242,238,232,.8);
}

.scroll-indicator-line {
  position: relative;
  width: 1px;
  height: 40px;
  background: rgba(242,238,232,.18);
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange);
  animation: scroll-line-drop 2.1s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes scroll-line-drop {
  0%   { top: -100%; }
  55%  { top: 100%; }
  100% { top: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-indicator-line::after { animation: none; top: 0; }
}

@media (max-width: 600px) {
  .scroll-indicator { display: none; }
}

/* ============================================
   HERO -> STATS TRANSITION SPACING
   ============================================ */
.stats-bar {
  margin-top: 0;
  padding-top: 2px;
}

.stats-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14) 50%, transparent);
}

/* ============================================
   PROJECT CARD PREMIUM TEXT
   ============================================ */
.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-type {
  color: rgba(242,238,232,.64);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .18em;
}

.project-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.project-location {
  color: rgba(242,238,232,.4);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
}

.project h3 {
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: -.01em;
}

.ph-line {
  display: block;
  overflow: hidden;
}

.ph-word {
  display: inline-block;
  transform: translateY(100%);
  transition: transform .75s cubic-bezier(.16,.84,.24,1);
}

.project.is-visible .ph-line:nth-of-type(1) .ph-word {
  transition-delay: .1s;
}

.project.is-visible .ph-line:nth-of-type(2) .ph-word {
  transition-delay: .2s;
}

.project.is-visible .ph-word {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ph-word { transform: none; transition: none; }
}

/* ============================================
   PROJECTS HEADING UNDERLINE
   ============================================ */
.projects-underline {
  position: absolute;
  right: 0;
  bottom: -22px;
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,122,26,0));
  transition: width 1s cubic-bezier(.16,.84,.24,1) .3s;
}

.projects-header.is-visible .projects-underline {
  width: clamp(90px, 14vw, 200px);
}

@media (max-width: 900px) {
  .projects-underline {
    right: auto;
    left: 0;
    bottom: -18px;
  }
}

/* ============================================
   GENERIC MASK-REVEAL HEADING SYSTEM
   ============================================ */
.mask-heading {
  margin: 0;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: .96;
  letter-spacing: -.01em;
  color: var(--white);
  text-transform: uppercase;
}

.reveal-mask {
  display: block;
  overflow: hidden;
}

.reveal-mask-word {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform .85s cubic-bezier(.16,.84,.24,1), opacity .6s ease;
}

.reveal-mask-word.accent {
  color: var(--orange);
}

.mask-heading.is-visible .reveal-mask-word {
  transform: translateY(0);
  opacity: 1;
}

.mask-heading.is-visible .reveal-mask:nth-of-type(1) .reveal-mask-word { transition-delay: .05s; }
.mask-heading.is-visible .reveal-mask:nth-of-type(2) .reveal-mask-word { transition-delay: .14s; }
.mask-heading.is-visible .reveal-mask:nth-of-type(3) .reveal-mask-word { transition-delay: .23s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-mask-word { transform: none; opacity: 1; transition: none; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  position: relative;
  background: var(--ink);
  padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.about-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.about-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.about-row .mask-heading {
  max-width: 620px;
}

.about-copy-col {
  flex: 1;
  min-width: 280px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 10px;
}

.about-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(242,238,232,.62);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

.about-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease .1s, transform .8s cubic-bezier(.2,.7,.2,1) .1s;
}

.about-values.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-values li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-value-num {
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.about-value-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(242,238,232,.78);
}

@media (max-width: 900px) {
  .about-row {
    flex-direction: column;
  }
}

/* ============================================
   TEAM / LEADERSHIP
   ============================================ */
.team-block {
  margin-top: clamp(64px, 8vw, 110px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.02);
  transition: filter .5s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}

.team-card:hover .team-photo img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.06);
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,0) 55%, rgba(9,9,9,.75) 100%);
  pointer-events: none;
}

.team-info {
  padding: 18px 2px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 16px;
}

.team-name {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.team-role {
  margin: 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  position: relative;
  background: var(--ink);
  padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.services-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
}

.services-wrap .mask-heading {
  margin-bottom: clamp(50px, 7vw, 96px);
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.service-row {
  border-bottom: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.service-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-row:nth-child(2).is-visible { transition-delay: .06s; }
.service-row:nth-child(3).is-visible { transition-delay: .12s; }
.service-row:nth-child(4).is-visible { transition-delay: .18s; }

.service-link {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 1fr 40px;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3vw, 34px) 4px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.service-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
  opacity: .06;
}

.service-link:hover::before,
.service-link:focus-visible::before {
  transform: scaleX(1);
}

.service-num {
  position: relative;
  z-index: 1;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: 14px;
  color: rgba(242,238,232,.4);
  transition: color .35s ease;
}

.service-link:hover .service-num {
  color: var(--orange);
}

.service-name {
  position: relative;
  z-index: 1;
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -.01em;
  color: var(--white);
}

.service-desc {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 500;
  color: rgba(242,238,232,.48);
  max-width: 340px;
}

.service-arrow {
  position: relative;
  z-index: 1;
  justify-self: end;
  font-size: 16px;
  color: var(--white);
  transform: translateX(-6px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}

.service-link:hover .service-arrow,
.service-link:focus-visible .service-arrow {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .service-link {
    grid-template-columns: 40px 1fr 30px;
  }
  .service-desc {
    display: none;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  position: relative;
  background: var(--ink);
  padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}

.contact-bg-number {
  position: absolute;
  top: 50%;
  right: clamp(-40px, -2vw, 0px);
  transform: translateY(-50%);
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-size: clamp(220px, 30vw, 460px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.contact-wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
  display: flex;
  gap: 80px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-intro {
  flex: 1;
  min-width: 300px;
  max-width: 560px;
}

.contact-intro .mask-heading {
  margin-bottom: 22px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(242,238,232,.75);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease .05s, transform .7s cubic-bezier(.2,.7,.2,1) .05s;
}

.availability-badge.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ddc84;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(61,220,132,.55);
  animation: availability-pulse 2.2s ease-out infinite;
}

@keyframes availability-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,220,132,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(61,220,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); }
}

@media (prefers-reduced-motion: reduce) {
  .availability-dot { animation: none; }
}

.contact-copy {
  margin: 0 0 44px;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(242,238,232,.6);
  max-width: 420px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

.contact-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease .1s, transform .8s cubic-bezier(.2,.7,.2,1) .1s;
}

.contact-details.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-detail {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: inherit;
  text-decoration: none;
  transition: padding-left .3s cubic-bezier(.2,.7,.2,1);
}

a.contact-detail:hover {
  padding-left: 12px;
}

.contact-detail-label {
  flex-shrink: 0;
  width: 64px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(242,238,232,.4);
}

.contact-detail-value {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  transition: color .3s ease;
}

.contact-detail-arrow {
  font-size: 13px;
  color: var(--orange);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}

a.contact-detail:hover .contact-detail-value {
  color: var(--orange);
}

a.contact-detail:hover .contact-detail-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.contact-form {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1), border-color .4s ease;
}

.contact-form.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form:focus-within {
  border-color: rgba(255,122,26,.4);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(242,238,232,.5);
}

.form-row input,
.form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 10px 2px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  resize: none;
  transition: border-color .3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(242,238,232,.28);
}

.form-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 28px;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
  overflow: hidden;
  transition: color .35s ease, transform .2s ease;
}

.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  z-index: 0;
}

.form-submit:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.form-submit:active {
  transform: scale(.98);
}

.form-submit span {
  position: relative;
  z-index: 1;
}

.form-submit span:last-child {
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}

.form-submit:hover span:last-child {
  transform: translateX(4px);
}

.form-status {
  margin: 0;
  min-height: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
}

@media (max-width: 900px) {
  .contact-wrap {
    flex-direction: column;
    gap: 48px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 44px 0 32px;
}

.footer-wrap {
  width: min(100% - 64px, 1440px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(242,238,232,.55);
  text-decoration: none;
  transition: color .3s ease;
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(242,238,232,.35);
}

@media (max-width: 600px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   HERO -> STATS BLURRED BLEED
   ============================================ */
.hero-bleed {
  position: relative;
  height: clamp(120px, 15vw, 220px);
  overflow: hidden;
  background: #090909;
}

.hero-bleed-img {
  position: absolute;
  inset: -30% -6% auto -6%;
  height: 170%;
  background: url("hero.png") center 0% / cover no-repeat;
  filter: blur(42px) brightness(.4) saturate(1.05);
  transform: scale(1.12);
  opacity: .85;
}

.hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,9,.15) 0%, rgba(9,9,9,.75) 55%, rgba(9,9,9,1) 100%);
}

@media (max-width: 600px) {
  .hero-bleed {
    height: clamp(80px, 18vw, 140px);
  }
}

/* ============================================
   MARQUEE CTA — full-bleed scrolling strip
   ============================================ */
.marquee-cta {
  position: relative;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.marquee-cta-link {
  display: block;
  position: relative;
  text-decoration: none;
  padding: clamp(28px, 4vw, 46px) 0;
  transition: background .3s ease;
}

.marquee-cta-link:hover,
.marquee-cta-link:focus-visible {
  background: rgba(196,106,50,.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-cta-link:hover .marquee-track,
.marquee-cta-link:focus-visible .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(30px, 5.4vw, 68px);
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "◆";
  display: inline-block;
  margin-left: 28px;
  font-size: .28em;
  color: rgba(255,255,255,.25);
}

.marquee-track span em {
  margin-left: 28px;
  font-style: normal;
  color: var(--orange);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 600px) {
  .marquee-track span {
    padding: 0 18px;
  }
  .marquee-track span::after {
    margin-left: 18px;
  }
  .marquee-track span em {
    margin-left: 18px;
  }
}

/* ============================================
   PROJECT LIGHTBOX — full-screen case-study view
   ============================================ */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}

.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: min(100%, 780px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  overflow: hidden;
  transform: scale(.96) translateY(14px);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}

.project-lightbox.is-open .lightbox-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-media {
  position: relative;
  min-height: 260px;
  background: #111;
  overflow: hidden;
}

.lightbox-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-info {
  position: relative;
  padding: clamp(28px, 3.4vw, 52px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(9,9,9,.55);
  color: var(--white);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--orange);
  background: rgba(196,106,50,.15);
  transform: rotate(90deg);
}

.lightbox-number {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 14px;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: rgba(242,238,232,.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.lightbox-info h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.lightbox-info p {
  margin: 0 0 28px;
  color: rgba(242,238,232,.6);
  font-size: 13px;
  line-height: 1.75;
  max-width: 420px;
}

.lightbox-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 20px;
  background: var(--orange);
  color: var(--ink);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: 2px;
  transition: transform .25s ease, background .25s ease;
}

.lightbox-cta:hover,
.lightbox-cta:focus-visible {
  background: var(--white);
  transform: translateY(-1px);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 780px) {
  .lightbox-panel {
    grid-template-columns: 1fr;
    max-height: min(100%, 92svh);
    overflow-y: auto;
  }
  .lightbox-media {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-lightbox,
  .lightbox-panel {
    transition: none;
  }
}
