:root {
  --midnight: #0b0f10;
  --graphite: #263839;
  --satin-silver: #c8c8c8;
  --arc-teal: #62e2ca;
  --paper: #f2f5f2;
  --ink: #101516;
  --line-dark: #3b4b4b;
  --line-light: #b6c0be;
  --display: "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--midnight);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--midnight);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 400;
}

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

img { max-width: 100%; }

.site-nav {
  min-height: 87px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 0 50px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--midnight);
  color: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 13px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand img {
  display: block;
  width: 30px;
  height: 28px;
  object-fit: contain;
}

.nav-center {
  margin: 0;
  color: var(--satin-silver);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav { justify-self: end; }

.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
}

.desktop-nav a,
.mobile-nav-panel a {
  display: inline-block;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  color: var(--satin-silver);
}

.desktop-nav a[aria-current="page"],
.mobile-nav-panel a[aria-current="page"] {
  border-bottom-color: var(--arc-teal);
  color: var(--paper);
}

.mobile-nav { display: none; }

.mobile-nav summary {
  display: flex;
  min-width: 102px;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary b { color: var(--arc-teal); font-size: 16px; }

.mobile-nav-panel {
  position: absolute;
  z-index: 10;
  top: 68px;
  right: 22px;
  display: grid;
  min-width: 166px;
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  background: var(--midnight);
  box-shadow: -10px 10px 0 var(--graphite);
}

.mobile-nav-panel a { padding: 10px 0; }

.eyebrow,
.section-label,
.topic-label,
.rail-copy,
.form-label,
.concept-label {
  color: var(--arc-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 215px;
  padding: 15px 18px;
  border: 1px solid var(--satin-silver);
  font-size: 13px;
  font-weight: 700;
}

.action b,
.action i { color: var(--arc-teal); font-size: 20px; font-style: normal; line-height: 0.5; }

.page-foot {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 50px;
  border-top: 1px solid var(--line-dark);
  color: var(--satin-silver);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.material {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
}

.material img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.material::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(98 226 202 / 34%);
  content: "";
  pointer-events: none;
}

a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--arc-teal);
  outline-offset: 4px;
}

.page-pricing input:focus-visible,
.page-pricing textarea:focus-visible,
.page-pricing button:focus-visible {
  outline-color: var(--graphite);
}

/* Direction 02 / Protective Architecture home */
.protective { min-height: 100vh; background: var(--midnight); }

.protective-hero {
  position: relative;
  display: grid;
  min-height: 765px;
  grid-template-columns: 104px minmax(0, 0.84fr) minmax(0, 1.16fr);
  overflow: hidden;
}

.protective-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0 32px 30px;
  border-right: 1px solid rgb(242 245 242 / 20%);
  color: var(--arc-teal);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.protective-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 70px 56px 56px;
  border-right: 1px solid rgb(242 245 242 / 20%);
}

.protective h1 {
  max-width: 650px;
  margin: 110px 0 42px;
  font-family: var(--display);
  font-size: clamp(60px, 6.25vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.protective-intro {
  max-width: 410px;
  margin: 0 0 38px;
  color: #c9d5d2;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.protective .action { margin-top: auto; border-color: rgb(242 245 242 / 55%); }

.master-zone {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #071314;
}

.master-zone::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--arc-teal);
  content: "";
  opacity: 0.43;
  pointer-events: none;
}

.master-zone img {
  position: absolute;
  width: min(850px, 117%);
  height: min(850px, 117%);
  max-width: none;
  object-fit: cover;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -49%);
  mix-blend-mode: screen;
}

.master-caption {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 31px;
  left: 36px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 15px;
  border-top: 1px solid rgb(242 245 242 / 30%);
  color: #c9d5d2;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.protective-statement {
  display: grid;
  min-height: 410px;
  grid-template-columns: 104px minmax(0, 1.1fr) minmax(280px, 0.54fr);
  border-top: 1px solid rgb(242 245 242 / 20%);
  background: var(--graphite);
}

.statement-order {
  padding: 36px 0 0 30px;
  border-right: 1px solid rgb(242 245 242 / 20%);
  color: var(--arc-teal);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.statement-order span {
  display: block;
  margin-top: 116px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.protective-statement-copy { min-width: 0; padding: 52px 65px; }
.protective-statement-copy p { margin: 0 0 60px; }

.protective-statement h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.064em;
}

.protective-detail {
  align-self: end;
  max-width: 390px;
  margin: 0;
  padding: 0 45px 55px;
  border-left: 1px solid rgb(242 245 242 / 20%);
  color: #d4dfdc;
  font-size: 18px;
  line-height: 1.45;
}

.architecture-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(242 245 242 / 20%);
}

.architecture-strip div {
  min-height: 145px;
  padding: 30px 40px 36px;
  border-right: 1px solid rgb(242 245 242 / 20%);
}

.architecture-strip div:last-child { border-right: 0; }
.architecture-strip span { display: block; margin-bottom: 28px; }
.architecture-strip strong { font-size: 18px; letter-spacing: -0.025em; }

/* Work / Features */
.work-hero {
  display: grid;
  min-height: 690px;
  grid-template-columns: 104px minmax(0, 1fr) minmax(0, 47vw);
  border-bottom: 1px solid var(--line-dark);
}

.work-rail,
.commercial-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 31px 30px;
  border-right: 1px solid var(--line-dark);
  color: var(--arc-teal);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.work-copy,
.commercial-copy,
.insights-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.work-copy { padding: 79px 68px 58px; }

.work-copy h1,
.commercial-copy h1,
.insights-copy h1 {
  max-width: 680px;
  margin: 122px 0 40px;
  font-size: clamp(60px, 6.4vw, 108px);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.hero-body {
  max-width: 515px;
  margin: 0 0 43px;
  color: var(--satin-silver);
  font-size: 19px;
  line-height: 1.43;
}

.work-copy .action,
.commercial-copy .action,
.insights-copy .action { margin-top: auto; }
.work-material { min-height: 690px; }

.material-caption {
  position: absolute;
  right: 36px;
  bottom: 0;
  left: 36px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgb(200 200 200 / 32%);
  color: var(--satin-silver);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-intro {
  display: grid;
  grid-template-columns: 28% 1fr;
  padding: 53px 11.5%;
  border-bottom: 1px solid var(--line-dark);
  background: var(--graphite);
}

.work-intro p:last-child {
  max-width: 725px;
  margin: 0;
  font-size: 29px;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.work-rows { background: var(--paper); color: var(--midnight); }

.work-row {
  display: grid;
  min-height: 258px;
  grid-template-columns: 19% 45% 1fr;
  gap: 30px;
  padding: 48px 11.5%;
  border-bottom: 1px solid var(--line-light);
}

.work-label {
  color: #147267;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-row h2,
.work-close h2 {
  max-width: 470px;
  margin: 0;
  font-size: 49px;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.work-row p,
.work-close p:last-child {
  max-width: 370px;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.work-close {
  display: grid;
  grid-template-columns: 28% 1fr 33%;
  padding: 80px 11.5%;
  border-bottom: 1px solid var(--line-dark);
  background: var(--midnight);
}

.work-close p:last-child { max-width: 345px; color: var(--satin-silver); }

/* Pricing / Contact */
.commercial-hero {
  display: grid;
  min-height: 655px;
  grid-template-columns: 104px minmax(0, 1fr) minmax(0, 43vw);
  border-bottom: 1px solid var(--line-dark);
}

.commercial-copy { padding: 72px 64px 55px; }
.commercial-copy h1 { max-width: 650px; margin-top: 116px; }
.commercial-material { min-height: 655px; }

.corner-copy {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--arc-teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.commercial-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  background: var(--paper);
  color: var(--midnight);
}

.contact-form { padding: 76px 12%; border-right: 1px solid var(--line-light); }

.contact-form h2,
.commercial-aside h2 {
  max-width: 630px;
  margin: 40px 0 26px;
  font-size: 55px;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.contact-form > p:not(.form-label) {
  max-width: 535px;
  margin: 0 0 55px;
  font-size: 18px;
  line-height: 1.45;
}

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

.contact-form label {
  display: grid;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #7a8987;
}

.contact-form label.long-field { grid-column: 1 / -1; }

.contact-form label span {
  color: #147267;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--midnight);
  font: inherit;
}

.contact-form textarea { height: 72px; resize: none; }

.contact-form button {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid var(--midnight);
  background: var(--midnight);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

.contact-form button b { color: var(--arc-teal); font-size: 20px; }

.commercial-aside {
  display: flex;
  flex-direction: column;
  padding: 76px 15% 58px;
  background: var(--graphite);
  color: var(--paper);
}

.aside-index,
.commercial-aside > span:last-child {
  color: var(--arc-teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.commercial-aside h2 { max-width: 345px; font-size: 43px; }

.commercial-aside p {
  margin: 0;
  color: var(--satin-silver);
  font-size: 16px;
  line-height: 1.5;
}

.aside-rule { height: 1px; margin: auto 0 21px; background: var(--arc-teal); }

.commercial-strip {
  display: grid;
  min-height: 117px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 50px;
  border-top: 1px solid var(--line-dark);
  background: var(--midnight);
}

.commercial-strip span {
  color: var(--arc-teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.commercial-strip span:last-child { justify-self: end; }
.commercial-strip strong { justify-self: center; font-size: 18px; letter-spacing: -0.035em; }

/* Insights */
.insights-hero {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  border-bottom: 1px solid var(--line-light);
  background: var(--paper);
  color: var(--midnight);
}

.insights-copy { padding: 73px 12% 55px; }
.insights-copy h1 { max-width: 690px; margin-top: 104px; }
.insights-copy .eyebrow { color: #147267; }
.insights-copy .hero-body { color: var(--graphite); }
.insights-copy .action { border-color: var(--graphite); }
.insights-material { min-height: 650px; }

.insights-intro {
  display: grid;
  min-height: 190px;
  grid-template-columns: 24% 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 0 11.5%;
  border-bottom: 1px solid var(--line-dark);
  background: var(--graphite);
}

.insights-intro p:nth-child(2) {
  max-width: 760px;
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.insights-intro span {
  color: var(--satin-silver);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-align: right;
  text-transform: uppercase;
}

.topics { background: var(--midnight); }

.insight-topic {
  display: grid;
  min-height: 252px;
  grid-template-columns: 18% 43% 1fr 42px;
  gap: 25px;
  align-items: center;
  padding: 38px 11.5%;
  border-bottom: 1px solid var(--line-dark);
}

.insight-topic h2 {
  max-width: 530px;
  margin: 0;
  font-size: 47px;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.insight-topic p {
  max-width: 370px;
  margin: 0;
  color: var(--satin-silver);
  font-size: 17px;
  line-height: 1.45;
}

.topic-arrow { justify-self: end; color: var(--arc-teal); font-size: 27px; }

.insights-close {
  display: grid;
  grid-template-columns: 28% 1fr 30%;
  padding: 80px 11.5%;
  background: var(--paper);
  color: var(--midnight);
}

.insights-close .section-label { color: #147267; }

.insights-close h2 {
  max-width: 560px;
  margin: 0;
  font-size: 50px;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.insights-close p:last-child {
  max-width: 330px;
  margin: 0;
  font-size: 16px;
  line-height: 1.48;
}

@media (max-width: 900px) {
  .protective-hero,
  .protective-statement,
  .work-hero,
  .commercial-hero,
  .insights-hero {
    grid-template-columns: 1fr;
  }

  .protective-rail,
  .work-rail,
  .commercial-rail { display: none; }

  .protective-copy {
    min-height: 580px;
    padding: 48px 22px;
    border-right: 0;
    border-bottom: 1px solid rgb(242 245 242 / 20%);
  }

  .protective h1 { margin: 70px 0 38px; }
  .master-zone { min-height: 520px; }
  .protective-statement-copy { padding: 45px 22px; }
  .statement-order { padding: 24px 22px; border-right: 0; border-bottom: 1px solid rgb(242 245 242 / 20%); }
  .statement-order span { display: inline; margin: 0 0 0 14px; }
  .protective-detail { padding: 0 22px 45px; border-left: 0; }
  .architecture-strip { grid-template-columns: 1fr; }
  .architecture-strip div { padding: 26px 22px; border-right: 0; border-bottom: 1px solid rgb(242 245 242 / 20%); }

  .work-material,
  .commercial-material,
  .insights-material { min-height: 360px; }

  .work-copy,
  .commercial-copy,
  .insights-copy { min-height: 530px; padding: 48px 24px; }

  .work-copy h1,
  .commercial-copy h1,
  .insights-copy h1 { margin-top: 74px; }

  .work-intro,
  .work-close,
  .insights-intro,
  .insights-close { grid-template-columns: 1fr; gap: 28px; padding: 54px 24px; }

  .work-row,
  .insight-topic { grid-template-columns: 1fr; gap: 19px; padding: 38px 24px; }

  .commercial-body { grid-template-columns: 1fr; }
  .contact-form { padding: 54px 24px; border-right: 0; }
  .commercial-aside { min-height: 420px; padding: 54px 24px; }
  .commercial-strip { grid-template-columns: 1fr; gap: 17px; padding: 28px 24px; }
  .commercial-strip strong,
  .commercial-strip span:last-child { justify-self: start; }
}

@media (max-width: 600px) {
  .site-nav {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .nav-center,
  .desktop-nav { display: none; }

  .mobile-nav { display: block; position: relative; }

  .page-foot {
    display: block;
    padding: 18px 22px;
    line-height: 1.6;
  }

  .page-foot span { display: block; }
  .page-foot span + span { margin-top: 6px; }

  .master-caption,
  .material-caption { right: 22px; left: 22px; }

  .contact-form form { grid-template-columns: 1fr; }
  .contact-form label { grid-column: 1 / -1; }
}

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