:root {
  --ink: #11110f;
  --ink-soft: #1b1b18;
  --paper: #e9e4d8;
  --paper-light: #f5f1e8;
  --concrete: #b7b0a2;
  --orange: #ff4d22;
  --orange-dark: #d93613;
  --blue: #073d60;
  --white: #fffdf8;
  --line: rgba(17, 17, 15, 0.18);
  --line-light: rgba(255, 253, 248, 0.22);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

::selection { background: var(--orange); color: var(--white); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--white);
  transition: transform 260ms ease, background-color 260ms ease, color 260ms ease;
}
.site-header.is-scrolled {
  background: rgba(17, 17, 15, 0.94);
  backdrop-filter: blur(14px);
}
.site-header.is-hidden { transform: translateY(-100%); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  font-family: var(--display);
  text-transform: uppercase;
}
.brand-icon {
  position: relative;
  width: 35px;
  height: 35px;
  display: block;
  transform: rotate(-5deg);
}
.brand-icon i {
  position: absolute;
  left: 0;
  width: 35px;
  height: 9px;
  display: block;
  background: var(--orange);
  transform: skewX(-22deg);
}
.brand-icon i:nth-child(1) { top: 2px; width: 28px; }
.brand-icon i:nth-child(2) { top: 13px; left: 5px; }
.brand-icon i:nth-child(3) { top: 24px; width: 30px; }
.brand-name {
  display: grid;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 0.94;
}
.brand-name small {
  margin-top: 5px;
  font-family: var(--body);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.31em;
}

.primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.primary-nav > a:not(.nav-contact) { position: relative; padding: 30px 0; }
.primary-nav > a:not(.nav-contact)::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 23px;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: right 180ms ease;
}
.primary-nav > a:hover::after { right: 0; }
.nav-contact {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 18px;
  background: var(--orange);
  color: var(--ink);
}
.nav-contact span { font-size: 19px; }
.nav-contact:hover { background: var(--white); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}
.hero-image, .hero-grid, .hero-shade { position: absolute; inset: 0; }
.hero-image {
  background: url("assets/hero-construction-deploy.jpg") center 58% / cover no-repeat;
  transform: scale(1.025);
  animation: hero-settle 1500ms cubic-bezier(.2,.7,.2,1) both;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 27, 0.9) 0%, rgba(7, 20, 27, 0.46) 48%, rgba(7, 20, 27, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 20, 27, 0.76) 0%, transparent 56%);
}
.hero-grid {
  z-index: 1;
  opacity: 0.23;
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), rgba(255,255,255,.45) 25%, transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.45) 50%, transparent calc(50% + 1px)),
    linear-gradient(90deg, transparent calc(75% - 1px), rgba(255,255,255,.45) 75%, transparent calc(75% + 1px));
}
.hero-kicker {
  position: absolute;
  z-index: 2;
  top: 116px;
  left: clamp(20px, 4vw, 64px);
  right: clamp(20px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 clamp(20px, 4vw, 64px) clamp(32px, 5vw, 74px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow > span { width: 32px; height: 2px; background: var(--orange); }
.eyebrow.light { color: rgba(255,255,255,.72); }
.hero h1 {
  display: grid;
  width: 100%;
  max-width: 100%;
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(88px, 14.6vw, 220px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .68;
  text-transform: uppercase;
}
.hero h1 span:last-child { margin-left: clamp(48px, 16vw, 250px); }
.outline-word {
  color: transparent;
  -webkit-text-stroke: clamp(1px, .12vw, 2px) var(--white);
  text-stroke: clamp(1px, .12vw, 2px) var(--white);
}
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 510px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin: clamp(46px, 6vw, 84px) 0 0;
}
.hero-bottom > p {
  margin: 0 0 8px;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.6;
}
.circle-link {
  width: 112px;
  height: 112px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.circle-link b { font-size: 22px; font-weight: 400; }
.circle-link:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); transform: rotate(-6deg); }
.hero-index {
  position: absolute;
  z-index: 2;
  right: 2.7vw;
  top: 42%;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  writing-mode: vertical-rl;
}

.section-label {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--display);
  text-transform: uppercase;
}
.section-label span { color: var(--orange); font-size: 13px; font-weight: 700; }
.section-label p { margin: 0; font-size: 15px; font-weight: 700; letter-spacing: .08em; }
.section-label.light { color: var(--white); }

.statement {
  display: grid;
  grid-template-columns: minmax(140px, .6fr) minmax(420px, 2.15fr) minmax(280px, .85fr);
  gap: clamp(28px, 5vw, 90px);
  padding: clamp(96px, 12vw, 190px) clamp(20px, 4vw, 64px);
  background: var(--paper);
}
.statement-copy h2, .services-intro h2, .projects-title h2, .principle h2, .contact-intro h2 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: .92;
  text-transform: uppercase;
}
.statement-copy h2 { max-width: 950px; font-size: clamp(54px, 7.1vw, 112px); }
h2 em { color: var(--orange); font-style: normal; }
.statement-detail { align-self: end; }
.statement-detail > p {
  margin: 0 0 32px;
  color: rgba(17,17,15,.7);
  font-size: 14px;
  line-height: 1.8;
}
.line-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 2px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.line-link span { font-size: 18px; }
.line-link:hover { color: var(--orange-dark); border-color: var(--orange); }

.image-break {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr);
  grid-template-rows: 1fr auto;
  background: var(--ink);
  color: var(--white);
}
.image-break-media { grid-row: 1 / 3; min-height: 760px; overflow: hidden; }
.image-break-media img { height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); transition: transform 900ms ease; }
.image-break:hover .image-break-media img { transform: scale(1.025); }
.image-break-quote {
  display: flex;
  align-items: center;
  padding: clamp(50px, 7vw, 110px);
  border-bottom: 1px solid var(--line-light);
}
.image-break-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 4.6vw, 72px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: .95;
  text-transform: uppercase;
}
.image-break-quote strong { color: var(--orange); font-weight: 600; }
.image-break-note { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 36px clamp(50px, 7vw, 110px); }
.image-break-note span { color: var(--orange); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.image-break-note p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.65; }

.services {
  display: grid;
  grid-template-columns: minmax(130px, .5fr) minmax(320px, 1fr) minmax(440px, 1.6fr);
  gap: clamp(30px, 5vw, 86px);
  padding: clamp(96px, 11vw, 168px) clamp(20px, 4vw, 64px);
  background: var(--blue);
  color: var(--white);
}
.services-intro h2 { font-size: clamp(54px, 6.2vw, 98px); }
.services-intro > p:last-child { max-width: 480px; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.8; }
.service-list { border-top: 1px solid var(--line-light); }
.service-item { border-bottom: 1px solid var(--line-light); }
.service-item button {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.service-number { color: var(--orange); font-family: var(--display); font-size: 12px; font-weight: 700; }
.service-item h3 { margin: 0; font-family: var(--display); font-size: clamp(28px, 3vw, 48px); font-weight: 600; line-height: .95; text-transform: uppercase; }
.service-toggle { position: relative; width: 24px; height: 24px; }
.service-toggle::before, .service-toggle::after { position: absolute; left: 3px; top: 11px; width: 18px; height: 2px; background: var(--white); content: ""; }
.service-toggle::after { transform: rotate(90deg); transition: transform 180ms ease; }
.service-item.is-open .service-toggle::after { transform: rotate(0); }
.service-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms ease; }
.service-panel p { min-height: 0; overflow: hidden; margin: 0; padding: 0 52px 0 64px; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.7; transition: padding 300ms ease; }
.service-item.is-open .service-panel { grid-template-rows: 1fr; }
.service-item.is-open .service-panel p { padding-bottom: 30px; }

.projects { padding: clamp(96px, 11vw, 174px) clamp(20px, 4vw, 64px); background: var(--paper-light); }
.projects-head { display: grid; grid-template-columns: minmax(140px, .56fr) minmax(0, 2fr); gap: clamp(28px, 5vw, 86px); margin-bottom: clamp(60px, 8vw, 118px); }
.projects-title h2 { max-width: 860px; font-size: clamp(56px, 7.4vw, 116px); }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(54px, 7vw, 116px) clamp(26px, 4vw, 68px); }
.project-card--wide { grid-column: span 2; }
.project-media { position: relative; overflow: hidden; background: var(--concrete); }
.project-card:not(.project-card--wide) .project-media { aspect-ratio: 4 / 3; }
.project-card--wide .project-media { aspect-ratio: 16 / 7; }
.project-media img { height: 100%; object-fit: cover; transition: transform 620ms cubic-bezier(.2,.7,.2,1), filter 620ms ease; }
.project-card:hover .project-media img { transform: scale(1.035); filter: saturate(1.08); }
.project-arrow {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 27px;
  transform: scale(0);
  transition: transform 220ms ease;
}
.project-card:hover .project-arrow { transform: scale(1); }
.project-info { display: grid; grid-template-columns: 1fr auto; gap: 30px; padding: 23px 0 0; }
.project-info span, .project-info dt { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-info h3 { margin: 7px 0 0; font-family: var(--display); font-size: clamp(32px, 3.4vw, 54px); font-weight: 700; line-height: .95; text-transform: uppercase; }
.project-info dl { display: flex; gap: 30px; margin: 0; }
.project-info dt { color: rgba(17,17,15,.52); }
.project-info dd { margin: 6px 0 0; font-family: var(--display); font-size: 18px; font-weight: 600; text-transform: uppercase; }
.all-projects {
  width: min(100%, 360px);
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 86px 0 0 auto;
  padding: 0 25px;
  border: 2px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.all-projects b { font-size: 25px; font-weight: 400; }
.all-projects:hover { background: var(--ink); color: var(--white); }

.principle { position: relative; min-height: 780px; display: grid; align-items: center; overflow: hidden; color: var(--white); }
.principle-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,13,19,.96) 0%, rgba(5,13,19,.75) 54%, rgba(5,13,19,.12) 100%), url("assets/cta-site-deploy.jpg") center / cover no-repeat; }
.principle-copy { position: relative; z-index: 1; max-width: 930px; padding: 100px clamp(20px, 7vw, 110px); }
.principle-number { position: absolute; left: 24px; top: 105px; color: var(--orange); font-family: var(--display); font-size: 13px; font-weight: 700; }
.principle h2 { font-size: clamp(64px, 8.8vw, 138px); }
.principle-copy > p:last-child { max-width: 510px; margin: 42px 0 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; }

.contact { padding: clamp(96px, 11vw, 174px) clamp(20px, 4vw, 64px) 90px; background: var(--orange); }
.contact-intro { display: grid; grid-template-columns: 1fr minmax(240px, 380px); column-gap: 70px; }
.contact-intro .eyebrow { grid-column: 1 / -1; }
.contact-intro h2 { font-size: clamp(64px, 9.4vw, 148px); }
.contact-intro h2 em { color: var(--white); }
.contact-intro > p:last-child { align-self: end; margin: 0 0 13px; font-size: 15px; line-height: 1.75; }
.contact-grid { display: grid; grid-template-columns: minmax(260px, .78fr) minmax(450px, 1.22fr); gap: clamp(50px, 9vw, 160px); margin-top: clamp(72px, 10vw, 142px); padding-top: 54px; border-top: 2px solid var(--ink); }
.contact-details { display: grid; gap: 34px; align-content: start; }
.contact-details > div { display: grid; grid-template-columns: 76px 1fr; gap: 20px; }
.contact-details span, .contact-form label > span { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a, .contact-details address { font-family: var(--display); font-size: clamp(24px, 2.7vw, 42px); font-style: normal; font-weight: 600; line-height: 1.05; text-transform: uppercase; }
.contact-details a:hover { color: var(--white); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; }
.contact-form label { display: grid; gap: 9px; }
.contact-form label:nth-child(4) { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(17,17,15,.6);
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--white); }
.contact-form textarea { resize: vertical; }
.submit-button {
  grid-column: 1 / -1;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 24px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.submit-button b { color: var(--orange); font-size: 26px; font-weight: 400; }
.submit-button:hover { background: var(--white); color: var(--ink); }
.form-status { grid-column: 1 / -1; min-height: 1em; margin: -12px 0 0; font-size: 11px; font-weight: 700; }

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 56px clamp(20px, 4vw, 64px) 28px;
  background: var(--ink);
  color: var(--white);
}
.brand--footer { color: var(--white); }
.footer > p { margin: 0; color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.back-top { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.back-top span { margin-left: 14px; color: var(--orange); font-size: 18px; }
.footer > small { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.42); font-size: 9px; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 720ms ease, transform 720ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes hero-settle { from { opacity: .35; transform: scale(1.08); } to { opacity: 1; transform: scale(1.025); } }

@media (max-width: 1100px) {
  .statement { grid-template-columns: 130px 1fr; }
  .statement-detail { grid-column: 2; max-width: 580px; }
  .services { grid-template-columns: 120px 1fr; }
  .service-list { grid-column: 2; }
  .contact-intro { grid-template-columns: 1fr; }
  .contact-intro > p:last-child { max-width: 520px; margin-top: 32px; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 70px; }
  .site-header { min-height: 70px; padding-inline: 18px; }
  .nav-toggle {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .nav-toggle i, .nav-toggle i::before { display: block; width: 24px; height: 2px; background: currentColor; content: ""; transition: transform 180ms ease; }
  .nav-toggle i { position: relative; transform: translateY(-3px); }
  .nav-toggle i::before { position: absolute; top: 7px; }
  .nav-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(90deg); }
  .primary-nav {
    position: fixed;
    inset: 70px 0 0;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 0;
    padding: 34px 22px;
    background: var(--ink);
    transform: translateX(105%);
    transition: transform 260ms ease;
  }
  .primary-nav.is-open { transform: none; }
  .primary-nav > a:not(.nav-contact) { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line-light); font-family: var(--display); font-size: 36px; }
  .nav-contact { margin-top: 30px; }
  .hero-kicker { top: 98px; }
  .hero-kicker span:last-child { display: none; }
  .hero h1 { font-size: clamp(68px, 20vw, 112px); line-height: .72; }
  .hero h1 span:last-child { margin-left: 0; }
  .hero-bottom { grid-template-columns: 1fr auto; gap: 24px; }
  .circle-link { width: 90px; height: 90px; padding: 14px; }
  .hero-index { display: none; }
  .statement, .services, .projects-head { grid-template-columns: 1fr; }
  .statement-detail, .service-list { grid-column: auto; }
  .section-label { margin-bottom: 30px; }
  .image-break { grid-template-columns: 1fr; }
  .image-break-media { grid-row: auto; min-height: 560px; }
  .image-break-note { padding: 30px 24px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card--wide { grid-column: auto; }
  .project-card--wide .project-media { aspect-ratio: 4 / 3; }
  .project-info { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr auto; }
  .footer > p { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .brand-name { font-size: 16px; }
  .brand-icon { width: 30px; height: 31px; }
  .brand-icon i { width: 30px; }
  .hero-content { padding-bottom: 26px; }
  .hero h1 { font-size: clamp(62px, 20vw, 96px); }
  .hero-bottom { grid-template-columns: 1fr; margin-top: 34px; }
  .hero-bottom > p { max-width: 310px; font-size: 14px; }
  .circle-link { justify-self: end; }
  .statement-copy h2, .services-intro h2, .projects-title h2 { font-size: 50px; }
  .image-break-media { min-height: 420px; }
  .image-break-quote { padding: 50px 22px; }
  .image-break-note { grid-template-columns: 1fr; }
  .services { padding-block: 84px; }
  .service-item button { grid-template-columns: 30px 1fr 24px; min-height: 78px; gap: 12px; }
  .service-item h3 { font-size: 29px; }
  .service-panel p { padding-left: 42px; padding-right: 24px; }
  .project-info dl { gap: 20px; }
  .principle { min-height: 650px; }
  .principle-number { display: none; }
  .principle h2 { font-size: 63px; }
  .contact-intro h2 { font-size: 65px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label:nth-child(4), .submit-button, .form-status { grid-column: auto; }
  .contact-details > div { grid-template-columns: 54px 1fr; }
  .footer { grid-template-columns: 1fr; }
}

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