/* Lambert Architectural Lighting, rebuilt.

   Dark, and lit rather than coloured. The brand colour behaves like light:
   sodium through warm filament, used on the accent rule, the eyebrow and
   nothing else.

   Structural rules, all of them reactions to the previous demo:
     - No card grid. Nowhere.
     - Asymmetric section rhythm; no uniform padding down the page.
     - Type is the structure, set enormous and hard left.
     - Photography goes full bleed and breaks the measure.
     - One loud screen, then quiet. */

@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-latin-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: optional;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('/fonts/instrument-sans-latin-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: optional;
}

:root {
  --void: #08090b;
  --void-2: #0d0f12;
  --ink: #f4f1ea;
  --ink-2: #c3c7cc;
  --dim: #8b9199;
  --line: rgba(244, 241, 234, 0.13);
  --line-2: rgba(244, 241, 234, 0.22);
  --sodium: #e0a24c;
  --filament: #ffe6c2;

  --display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --body: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --gut: 40px;
  --measure: 62ch;
}

@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: lambert-out 0.18s ease both;
}
::view-transition-new(root) {
  animation: lambert-in 0.34s ease both;
}
@keyframes lambert-out {
  to {
    opacity: 0;
  }
}
@keyframes lambert-in {
  from {
    opacity: 0;
  }
}

* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--sodium);
  outline-offset: 3px;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 14px;
  top: 14px;
  z-index: 60;
  background: var(--ink);
  color: var(--void);
  padding: 12px 18px;
}

/* --- type ---------------------------------------------------------------- */

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 0.92;
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(44px, 7vw, 116px);
}
h2 {
  font-size: clamp(30px, 3.9vw, 58px);
}
h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 0;
}
p {
  margin: 0 0 18px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sodium);
  margin: 0 0 24px;
}
.eyebrow a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
}
.answer,
.page-lede,
.stage-lede {
  color: var(--ink-2);
  max-width: var(--measure);
}
.page-lede,
.stage-lede {
  font-size: 19px;
  line-height: 1.5;
}
.answer {
  font-size: 17.5px;
  margin-top: 22px;
}
.muted {
  color: var(--dim);
}

/* --- actions: ruled text, never a pill in a box --------------------------- */

.act {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--sodium);
  padding-bottom: 6px;
}
.act:hover {
  color: var(--sodium);
}
.act-q {
  border-bottom-color: var(--line-2);
  color: var(--dim);
}
.act-q:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.act-btn {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--sodium);
  cursor: pointer;
  padding: 0 0 6px;
}

/* --- chrome -------------------------------------------------------------- */

.chrome {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 26px var(--gut);
  background: rgba(8, 9, 11, 0);
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease;
}
.chrome[data-scrolled] {
  background: rgba(8, 9, 11, 0.96);
  border-bottom-color: var(--line);
}
.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
}
.mark img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  flex: 0 0 auto;
}
.mark span {
  color: var(--ink);
}
.mark b {
  font: inherit;
  color: var(--sodium);
}
.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
}
.nav a:hover,
.nav a[aria-current='page'] {
  color: var(--ink);
}
.nav-spec {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--sodium);
}
.burger {
  display: none;
  margin-left: auto;
  min-height: 44px;
  padding: 0 14px;
  background: none;
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.m-nav {
  position: fixed;
  z-index: 49;
  inset: 92px 0 auto;
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--void-2);
}
.m-nav[data-open] {
  display: flex;
}
.m-nav a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 var(--gut);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- the stage: one loud screen ------------------------------------------ */

.stage {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 var(--gut) 58px;
  padding-top: 92px;
}
.field {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--void);
  pointer-events: none;
}
.field canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}
/* Holds the type off the brightest shafts without a scrim box around it. */
.veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      135% 105% at 6% 92%,
      rgba(6, 7, 9, 0.97) 0%,
      rgba(6, 7, 9, 0.82) 30%,
      rgba(6, 7, 9, 0.42) 55%,
      rgba(6, 7, 9, 0) 78%
    ),
    linear-gradient(
      180deg,
      rgba(6, 7, 9, 0.72) 0%,
      rgba(6, 7, 9, 0) 22%,
      rgba(6, 7, 9, 0) 55%,
      rgba(6, 7, 9, 0.9) 100%
    );
}
.stage-body {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}
.stage h1 span {
  display: block;
  opacity: 0.58;
}
.stage-lede {
  margin-top: 30px;
}
.stage-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}
.stage-rail {
  position: absolute;
  right: 16px;
  bottom: 58px;
  z-index: 2;
  writing-mode: vertical-rl;
  display: flex;
  gap: 26px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

/* --- bands: deliberately uneven ------------------------------------------ */

.band {
  position: relative;
  padding: 128px var(--gut);
  border-top: 1px solid var(--line);
}
.beam-canvas,
.section-light,
.gallery-light {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  image-rendering: auto;
}
.beam-canvas {
  opacity: 0.76;
}
.fam .beam-canvas {
  opacity: 0.8;
}
.range-row .beam-canvas {
  opacity: 0.72;
}
.section-light {
  opacity: 0.84;
}
.gallery-light {
  opacity: 0.38;
}
.light-band {
  isolation: isolate;
  overflow: hidden;
}
.light-band > :not(.section-light) {
  position: relative;
  z-index: 1;
}
.band-tight {
  padding-block: 84px;
}
.measure {
  max-width: 78ch;
}
.page-top {
  padding: 168px var(--gut) 54px;
}
.page-top h1 {
  max-width: 15ch;
}
.page-top .page-lede {
  margin-top: 26px;
}

/* --- family list: rows, not tiles ---------------------------------------- */

.fam-list {
  margin-top: 62px;
  border-top: 1px solid var(--line);
}
.fam {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.25s ease;
}
.fam:hover {
  color: var(--filament);
}
.fam > :not(.beam-canvas) {
  position: relative;
  z-index: 1;
}
.fam-code {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--sodium);
  padding-top: 8px;
}
.fam-body strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1;
}
.fam-body em {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 12px;
}
.fam-sum {
  display: block;
  margin-top: 14px;
  max-width: 56ch;
  color: var(--ink-2);
  font-size: 16px;
}

/* --- full bleed photography ---------------------------------------------- */

.plate {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.plate-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    12deg,
    rgba(6, 7, 9, 0.94) 0%,
    rgba(6, 7, 9, 0.55) 42%,
    rgba(6, 7, 9, 0.1) 78%
  );
}
.plate-copy {
  position: relative;
  z-index: 2;
  padding: 0 var(--gut) 72px;
  max-width: 66ch;
}
.plate-copy p {
  color: var(--ink-2);
  margin-top: 20px;
}
.plate-copy .act {
  margin-top: 12px;
}

.bleed {
  margin: 0;
  height: 62svh;
}
.bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wide {
  margin: 62px 0 0;
}
.wide img {
  width: 100%;
  height: 46svh;
  object-fit: cover;
}
.wide figcaption {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

/* --- split + spec peek ---------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
  align-items: start;
}
.spec-peek {
  margin: 0;
  border-top: 1px solid var(--line-2);
}
.spec-peek > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.spec-peek dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.spec-peek dd {
  margin: 0;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}

/* --- range rows ----------------------------------------------------------- */

.range-list {
  border-top: 1px solid var(--line);
}
.range-row {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 84px var(--gut);
  border-bottom: 1px solid var(--line);
}
.range-row > :not(.beam-canvas) {
  position: relative;
  z-index: 1;
}
.range-row.flip > figure {
  order: 2;
}
.range-row figure {
  margin: 0;
  overflow: hidden;
}
.range-row img {
  width: 100%;
  height: 52svh;
  object-fit: cover;
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}
.range-row:hover img,
.range-row:focus-within img {
  transform: scale(1.025);
  filter: brightness(1.07);
}
.range-row .act {
  margin-top: 22px;
}

/* --- specification table -------------------------------------------------- */

.scroll-x {
  overflow-x: auto;
  margin-top: 52px;
  border: 1px solid var(--line-2);
}
table.spec {
  border-collapse: collapse;
  width: 100%;
  min-width: 820px;
  font-size: 14px;
}
table.spec caption {
  caption-side: bottom;
  text-align: left;
  padding: 13px 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--dim);
  border-top: 1px solid var(--line);
}
table.spec th,
table.spec td {
  text-align: left;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.spec thead th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
  border-bottom: 1px solid var(--line-2);
  white-space: nowrap;
}
table.spec tbody th strong {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--sodium);
}
table.spec tbody th span {
  display: block;
  font-weight: 400;
  color: var(--dim);
  font-size: 13px;
  margin-top: 3px;
}
table.spec .n {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
table.spec table.spec .files {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
table.spec .files a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line-2);
}
table.spec .files a:hover {
  border-color: var(--sodium);
  color: var(--sodium);
}

/* --- finishes, used-in, ticks -------------------------------------------- */

.fin,
.used,
.tick {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fin {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.fin li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.fin span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
}
.used {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
.used a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.used a:hover strong {
  color: var(--sodium);
}
.used span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--sodium);
}
.used strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.used em {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 8px;
}
.tick li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--ink-2);
  font-size: 15.5px;
}
.tick li::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 9px;
  width: 9px;
  height: 5px;
  border-left: 1px solid var(--sodium);
  border-bottom: 1px solid var(--sodium);
  transform: rotate(-45deg);
}

/* --- projects ------------------------------------------------------------- */

.proj-list {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.proj {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 74px var(--gut);
  border-bottom: 1px solid var(--line);
}
.proj-image {
  display: block;
  color: inherit;
  text-decoration: none;
}
.proj figure,
.project-bleed {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.proj img {
  width: 100%;
  height: 58svh;
  object-fit: cover;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}
.proj-image:hover img,
.proj-image:focus-visible img {
  transform: scale(1.028);
}
.proj-title {
  color: inherit;
  text-decoration: none;
}
.proj-meta p {
  color: var(--ink-2);
  margin-top: 18px;
}
.proj-title:hover h2,
.proj-title:focus-visible h2 {
  color: var(--sodium);
}
.proj-scope {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.proj-meta .act {
  margin-top: 24px;
}
.tech-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: block;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 8px 10px;
  background: rgba(8, 9, 11, 0.88);
  border-left: 1px solid var(--sodium);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.proj-image:hover .tech-caption,
.proj-image:focus-visible .tech-caption,
.project-bleed:hover .tech-caption,
.project-bleed:focus-visible .tech-caption {
  opacity: 1;
  transform: translateY(0);
}
.single-gallery {
  position: relative;
}
.project-bleed {
  display: block;
  color: inherit;
}
.pswp__lambert-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 22px;
  z-index: 10;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

/* --- specify form --------------------------------------------------------- */

.spec-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 68px;
  align-items: start;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.f {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.f-wide {
  grid-column: 1 / -1;
}
.f label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.opt {
  letter-spacing: 0.08em;
  color: var(--dim);
}
.f input,
.f select,
.f textarea {
  min-height: 52px;
  padding: 13px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
}
.f textarea {
  resize: vertical;
  line-height: 1.5;
}
.f input:focus,
.f select:focus,
.f textarea:focus {
  border-bottom-color: var(--sodium);
  outline: none;
}
.f.bad input,
.f.bad select,
.f.bad textarea {
  border-bottom-color: #d98675;
}
.f-err {
  font-size: 13px;
  color: #d98675;
}
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 42px;
}
.note {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  max-width: 36ch;
}
.done {
  margin-top: 30px;
  border-left: 1px solid var(--sodium);
  padding: 20px 24px;
  background: rgba(224, 162, 76, 0.07);
}
.done strong {
  display: block;
  margin-bottom: 6px;
}
.done span {
  color: var(--ink-2);
  font-size: 15px;
}
.form-error {
  margin: 14px 0 0;
  max-width: 44ch;
  color: var(--filament);
  font-size: 14px;
}
.trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.spec-aside {
  display: grid;
  gap: 34px;
}
.aside-b h2 {
  font-size: 22px;
  margin-bottom: 18px;
}
.aside-b a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* --- cta + footer --------------------------------------------------------- */

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 92px var(--gut);
  border-top: 1px solid var(--line);
}
.foot-line {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}
.foot {
  border-top: 1px solid var(--line);
  background: var(--void-2);
}
.foot-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 76px var(--gut);
  border-bottom: 1px solid var(--line);
}
.foot-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--sodium);
  padding-bottom: 6px;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 44px;
  padding: 58px var(--gut);
}
.foot-cols h2 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
  letter-spacing: 0.18em;
}
.foot-cols a,
.foot-cols span {
  display: flex;
  align-items: center;
  min-height: 40px;
  font-size: 15px;
  color: var(--ink-2);
  text-decoration: none;
}
.foot-cols a:hover {
  color: var(--ink);
}
.foot-base {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding: 26px var(--gut) 34px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.foot-base a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-left: auto;
  text-decoration: none;
}
.foot-base a:hover {
  color: var(--ink);
}

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 1000px) {
  .split,
  .spec-layout,
  .range-row,
  .proj {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .range-row.flip > figure {
    order: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --gut: 20px;
  }
  .nav,
  .nav-spec,
  .stage-rail {
    display: none;
  }
  .burger {
    display: block;
  }
  .band {
    padding-block: 76px;
  }
  .band-tight {
    padding-block: 58px;
  }
  .fields {
    grid-template-columns: 1fr;
  }
  .fam {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
  }
  .page-top {
    padding-top: 148px;
  }
  .range-row img,
  .proj img {
    height: 40svh;
  }
  .bleed {
    height: 44svh;
  }
  .cta,
  .foot-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (hover: none) {
  .tech-caption {
    opacity: 0.94;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}

/* Download acknowledgement. The files existing on the page is the argument, so
   a click has to say something rather than silently do nothing. */
.dl-note {
  display: block;
  width: 100%;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sodium);
}

/* --- plain answers, and the category vocabulary --------------------------- */

/*
 * The section that says who this is, how long, where, and what to do next.
 *
 * The hero is atmosphere and should stay atmosphere. This is the part a
 * specifier arriving from "cove lighting manufacturer" reads to decide they
 * are in the right place, so it is set at reading size and sits immediately
 * under the fold rather than being implied by mood.
 */
.plainly {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  gap: 64px 96px;
  align-items: start;
}
.plainly-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 44px;
  margin-top: 40px;
}
.plainly-stats {
  margin: 0;
  border-top: 1px solid var(--line-2);
}
.plainly-stats > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.plainly-stats dt {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.plainly-stats dd {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Category names on the home page: the words customers and search engines
   already have for these products. A plain run of links, not a card grid. */
.cats {
  margin-top: 88px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.cats-h {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 20px;
}
.cats ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
}
.cats li:not(:last-child)::after {
  content: '·';
  margin-left: 14px;
  color: var(--line-2);
}
.cats li {
  display: inline-flex;
  align-items: center;
}
.cats a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 17px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}
.cats a:hover {
  color: var(--ink);
  border-bottom-color: var(--sodium);
}

/* The full map on /products: old category name, what it is, where it lives. */
.catmap {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
}
.catmap li {
  border-top: 1px solid var(--line);
}
.catmap li:last-child {
  border-bottom: 1px solid var(--line);
}
.catmap a,
.catmap > li > span {
  display: grid;
  grid-template-columns: minmax(0, 22ch) minmax(0, 1fr) auto;
  gap: 8px 48px;
  align-items: baseline;
  padding: 26px 0;
  text-decoration: none;
  color: inherit;
}
.catmap strong {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.catmap-note {
  color: var(--dim);
  font-size: 16px;
}
.catmap-now {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sodium);
  white-space: nowrap;
}
.catmap a:hover strong {
  color: var(--filament);
}
.catmap-plain > li > span {
  grid-template-columns: minmax(0, 22ch) minmax(0, 1fr);
}

.contact-list {
  margin: 0;
  border-top: 1px solid var(--line-2);
}
.contact-list > div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list dt {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.contact-list dd {
  margin: 0;
  font-size: 19px;
}
.contact-list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--sodium);
}

.fineprint {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--dim);
  margin-top: 28px;
}

@media (max-width: 900px) {
  .plainly {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .catmap a,
  .catmap > li > span,
  .catmap-plain > li > span {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .catmap-now {
    justify-self: start;
  }
}

@media (min-width: 901px) and (min-height: 1300px) {
  .stage {
    min-height: 1200px;
  }
}
