@font-face {
  font-family: "Rules Font";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("font/space-grotesk-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF;
}

@font-face {
  font-family: "Rules Font";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("font/space-grotesk-latin.woff2") format("woff2");
}

:root {
  --color-cream-paper: #e4dfd9;
  --color-pure-white: #ffffff;
  --color-charcoal-ink: #000000;
  --color-near-black: #050505;
  --color-pressed-graphite: #171717;
  --color-slate: #737373;
  --color-iron: #4b4b4b;
  --color-stone: #999694;
  --color-fog: #c7c7c7;
  --color-ember: #ff6a1f;
  --font-display: "Rules Font", ui-sans-serif, system-ui, sans-serif;
  --font-ui:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --shadow-xl: rgba(0, 0, 0, 0.07) 0 6px 27px 0;
  --radius-card: 20px;
  --radius-input: 12px;
  --radius-button: 8px;
  --page-max-width: 1200px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--color-cream-paper);
}
body {
  margin: 0;
  background: var(--color-cream-paper);
  color: var(--color-near-black);
  font-family: var(--font-ui);
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.5;
}
.reference-page {
  width: min(100% - 48px, 1200px);
  margin: 28px auto 0;
}
.reference-page a {
  color: inherit;
  text-decoration: none;
}
.reference-page button,
.reference-page input,
.reference-page textarea {
  font: inherit;
}
.reference-page h1,
.reference-page h2,
.reference-page h3,
.reference-page p {
  margin-top: 0;
}
.reference-page h1,
.reference-page h2,
.reference-page h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.site-nav {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: min(calc(100% - 96px), 1104px);
  margin: 0 auto;
  padding: 24px 0;
  color: var(--color-pure-white);
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}
.wordmark span {
  margin-left: 4px;
  font-size: 0.48em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.nav-explore {
  padding: 9px 14px;
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 500;
}
.nav-explore span,
.dark-button span,
.light-button span {
  margin-left: 8px;
}
.audience-toggle {
  display: flex;
  justify-self: center;
  gap: 2px;
  padding: 2px;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.58);
}
.audience-toggle a {
  padding: 7px 18px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 500;
}
.audience-toggle a.is-active {
  background: var(--color-pure-white);
  color: var(--color-near-black);
  box-shadow: var(--shadow-xl);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
  font-size: 13px;
  font-weight: 500;
}
.ghost-link {
  color: rgba(255, 255, 255, 0.86);
}
.dark-button,
.light-button {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius-button);
  background: var(--color-pressed-graphite);
  color: var(--color-pure-white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.dark-button:hover,
.light-button:hover {
  background: var(--color-charcoal-ink);
  transform: translateY(-2px);
}
.light-button {
  background: var(--color-pure-white);
  color: var(--color-near-black);
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero-panel {
  position: relative;
  min-height: min(850px, calc(100svh - 56px));
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-near-black);
  color: var(--color-pure-white);
  isolation: isolate;
}
.hero-image,
.hero-scrim,
.hero-nav-fade {
  position: absolute;
  inset: 0;
}
.hero-image {
  z-index: -3;
  background: url("../img/web_bg.jpg") 72% center / cover no-repeat;
  filter: grayscale(0.8) sepia(0.38) saturate(0.7) contrast(1.1);
  transform: scale(1.02);
}
.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.84) 0%,
      rgba(5, 5, 5, 0.52) 52%,
      rgba(5, 5, 5, 0.22) 100%
    ),
    linear-gradient(0deg, rgba(5, 5, 5, 0.68), transparent 62%);
}
.hero-nav-fade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.35), transparent 25%);
}
.hero-content {
  position: absolute;
  top: 51%;
  left: 50%;
  width: min(760px, calc(100% - 48px));
  text-align: center;
  transform: translate(-50%, -50%);
}
.ember-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-ember);
  box-shadow: 0 0 18px rgba(255, 106, 31, 0.42);
}
.hero-kicker {
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
}
.hero-panel h1 {
  margin-bottom: 14px;
  color: var(--color-pure-white);
  font-size: clamp(48px, 7vw, 69px);
  line-height: 1.1;
}
.ember-period {
  color: var(--color-ember);
}
.hero-subtitle {
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.4;
}
.hero-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 510px);
  min-height: 54px;
  margin: 0 auto;
  padding: 7px 8px 7px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-input);
  background: rgba(23, 23, 23, 0.65);
  color: rgba(255, 255, 255, 0.64);
  text-align: left;
  font-size: 14px;
  backdrop-filter: blur(8px);
}
.hero-search a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-pure-white);
  color: var(--color-near-black);
  font-size: 18px;
  font-weight: 600;
}
.hero-note {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}
.hero-note:hover {
  text-decoration: underline;
}
.hero-signal {
  position: absolute;
  bottom: 38px;
  left: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.hero-signal span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 7px 1px 0;
  border-radius: 50%;
  background: var(--color-ember);
}
.hero-stack {
  position: absolute;
  right: 8%;
  bottom: 28px;
  width: 230px;
  height: 108px;
  font-size: 11px;
}
.stack-card {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 9px;
  background: rgba(23, 23, 23, 0.55);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}
.stack-card-back {
  top: 0;
  width: 186px;
  height: 30px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.55);
}
.stack-card-mid {
  top: 24px;
  width: 210px;
  height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
}
.stack-card-mid small,
.stack-card-front small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}
.stack-card-front {
  top: 56px;
  width: 230px;
  height: 48px;
  padding: 6px 10px;
  gap: 8px;
  color: var(--color-pure-white);
  text-decoration: none;
}
.stack-card-front b {
  margin-left: auto;
  font-weight: 400;
}
.stack-avatar,
.profile-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--color-pressed-graphite);
  color: var(--color-pure-white);
  font-size: 10px;
}
.reference-section {
  margin-top: 24px;
  padding: 72px clamp(28px, 9vw, 110px);
  border-radius: var(--radius-card);
  background: var(--color-cream-paper);
}
.manifesto-panel {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 50px;
  min-height: 530px;
  align-items: center;
}
.manifesto-copy h2,
.section-intro h2,
.contact-copy h2 {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--color-near-black);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}
.monogram {
  display: grid;
  width: 190px;
  height: 190px;
  margin: auto;
  place-items: center;
  border: 12px solid rgba(23, 23, 23, 0.08);
  border-radius: 50%;
  box-shadow:
    inset 10px 10px 18px rgba(255, 255, 255, 0.7),
    8px 10px 18px rgba(0, 0, 0, 0.07);
  color: rgba(23, 23, 23, 0.14);
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 500;
  transform: rotate(-8deg);
}
.monogram img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.manifesto-aside {
  max-width: 300px;
  justify-self: end;
  color: var(--color-slate);
  font-size: 16px;
}
.manifesto-aside p {
  margin-bottom: 24px;
}
.center-heading {
  margin: 0 0 30px;
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.feature-card {
  min-height: 310px;
  padding: 14px 24px 26px;
  border-radius: var(--radius-card);
  background: var(--color-pure-white);
  box-shadow: var(--shadow-xl);
}
.mockup {
  position: relative;
  height: 150px;
  margin-bottom: 28px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  background: #f8f7f5;
  color: var(--color-iron);
}
.mockup-line {
  width: 75%;
  height: 9px;
  margin-top: 20px;
  border-radius: 20px;
  background: var(--color-fog);
}
.mockup-line.short {
  width: 48%;
  margin-top: 9px;
}
.mockup-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 9px;
  border-radius: 9999px;
  background: rgba(255, 106, 31, 0.16);
  color: var(--color-pressed-graphite);
  font-size: 10px;
  font-weight: 600;
}
.mockup-footer {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--color-stone);
  font-size: 11px;
}
.mockup-footer strong {
  color: var(--color-near-black);
  font-weight: 500;
}
.mockup-data {
  background: #f4f0eb;
}
.chat-bubble {
  width: max-content;
  max-width: 93%;
  padding: 9px 12px;
  border-radius: 12px 12px 12px 3px;
  background: #e9dfd0;
  color: var(--color-near-black);
  font-size: 11px;
}
.search-row {
  position: absolute;
  right: 18px;
  bottom: 38px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  padding: 9px 11px;
  border-radius: 10px;
  background: var(--color-pure-white);
  box-shadow: var(--shadow-xl);
  color: var(--color-stone);
  font-size: 10px;
}
.search-row b {
  color: var(--color-near-black);
  font-weight: 500;
}
.mockup-profile {
  padding: 28px 16px 16px;
  background: var(--color-pure-white);
}
.profile-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-top strong,
.profile-top small {
  display: block;
}
.profile-top strong {
  color: var(--color-near-black);
  font-size: 12px;
  font-weight: 600;
}
.profile-top small {
  color: var(--color-stone);
  font-size: 10px;
}
.profile-top b {
  margin-left: auto;
  color: var(--color-ember);
  font-size: 14px;
  font-weight: 500;
}
.profile-meter {
  height: 5px;
  margin-top: 22px;
  border-radius: 99px;
  background: var(--color-fog);
}
.profile-meter span {
  display: block;
  width: 91%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-ember);
}
.profile-tags {
  display: flex;
  gap: 5px;
  margin-top: 16px;
}
.profile-tags i {
  padding: 4px 7px;
  border: 1px solid var(--color-fog);
  border-radius: 9999px;
  color: var(--color-slate);
  font-size: 9px;
  font-style: normal;
}
.feature-copy h3 {
  margin-bottom: 7px;
  color: var(--color-near-black);
  font-size: 23px;
  line-height: 1.2;
}
.feature-copy p {
  margin: 0;
  color: var(--color-slate);
  font-size: 15px;
  line-height: 1.45;
}
.cinematic-card {
  position: relative;
  min-height: 420px;
  margin-top: 72px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-near-black);
}
.cinematic-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}
.cinematic-scrim {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.56);
}
.cinematic-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-pure-white);
  text-align: center;
}
.cinematic-copy h2 {
  margin: 16px 0 20px;
  color: var(--color-pure-white);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
}
.cinematic-copy .light-button {
  background: var(--color-pressed-graphite);
  color: var(--color-pure-white);
}
.cinematic-copy .light-button:hover {
  background: var(--color-charcoal-ink);
}
.section-intro {
  max-width: 560px;
  margin-bottom: 36px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--color-slate);
  font-size: 13px;
  font-weight: 500;
}
.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-ember);
}
.section-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
}
.section-intro p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--color-slate);
  font-size: 17px;
}
.origin-story {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
.story-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-pure-white);
  box-shadow: var(--shadow-xl);
}
.story-row-person {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}
.story-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--color-pressed-graphite);
}
.story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.04);
}
.story-media-portrait img {
  object-position: center 24%;
}
.story-media span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
}
.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.story-copy h3 {
  max-width: 420px;
  margin: 56px 0 18px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}
.story-copy p {
  max-width: 440px;
  margin-bottom: 14px;
  color: var(--color-slate);
}
.story-copy p:last-child {
  margin-bottom: 0;
}
.building-panel,
.work-panel,
.experience-panel {
  padding-top: 82px;
  padding-bottom: 90px;
}
.building-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.editorial-card {
  min-height: 330px;
  padding: 30px 32px;
  border-radius: var(--radius-card);
  background: var(--color-pure-white);
  box-shadow: var(--shadow-xl);
}
.card-index,
.work-card > span,
.publication_meta {
  color: var(--color-stone);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.editorial-card h3 {
  margin: 74px 0 14px;
  font-size: 34px;
}
.editorial-card p {
  max-width: 440px;
  margin-bottom: 22px;
  color: var(--color-slate);
}
.editorial-card a,
.publication_link {
  color: var(--color-near-black);
  font-size: 14px;
  font-weight: 500;
}
.editorial-card a:hover,
.publication_link:hover {
  text-decoration: underline;
}
.testimonials-panel {
  padding-top: 82px;
  padding-bottom: 90px;
}
.testimonials-intro {
  max-width: 620px;
}
.testimonials-grid {
  --testimonial-card-height: 520px;
  display: grid;
  grid-auto-rows: var(--testimonial-card-height);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.testimonials-grid.is-changing {
  animation: publication-page-in 0.45s ease both;
}
.testimonials-measurement {
  position: absolute;
  top: 0;
  left: -9999px;
  grid-auto-rows: auto;
  visibility: hidden;
  pointer-events: none;
}
.testimonials-measurement .testimonial-card {
  height: auto;
}
.testimonial-card {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  padding: 30px 32px;
  border-radius: var(--radius-card);
  background: var(--color-pure-white);
  box-shadow: var(--shadow-xl);
}
.testimonial-card blockquote {
  margin: 0;
  color: var(--color-near-black);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
}
.testimonial-card footer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--color-fog);
}
.testimonial-card footer strong {
  color: var(--color-near-black);
  font-size: 14px;
  font-weight: 600;
}
.testimonial-card footer strong a:hover {
  text-decoration: underline;
}
.testimonial-card footer span {
  color: var(--color-stone);
  font-size: 12px;
  line-height: 1.35;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
}
.work-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-near-black);
  color: var(--color-pure-white);
}
.work-card-wide {
  grid-row: span 2;
  min-height: 570px;
}
.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.75) contrast(1.1);
  transition: transform 0.5s ease;
}
.work-card:hover img {
  transform: scale(1.04);
}
.work-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.84), transparent 65%);
  content: "";
}
.work-card > span,
.work-card h3 {
  position: absolute;
  z-index: 1;
  right: 24px;
  left: 24px;
}
.work-card > span {
  bottom: 62px;
  color: rgba(255, 255, 255, 0.65);
}
.work-card h3 {
  bottom: 20px;
  margin: 0;
  color: var(--color-pure-white);
  font-size: 25px;
}
.work-card h3 b {
  float: right;
  font-size: 20px;
  font-weight: 400;
}
.publication-grid {
  --publication-card-height: 540px;
  display: grid;
  grid-auto-rows: var(--publication-card-height);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.publication-measurement {
  position: absolute;
  top: 0;
  left: -9999px;
  grid-auto-rows: auto;
  visibility: hidden;
  pointer-events: none;
}
.publication-measurement .publication_card {
  height: auto;
}
.publication-grid.is-changing {
  animation: publication-page-in 0.45s ease both;
}
@keyframes publication-page-in {
  from {
    opacity: 0.25;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.publication-pager {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}
.publication-page-button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-fog);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.publication-page-button[aria-pressed="true"] {
  background: var(--color-ember);
  transform: scale(1.35);
}
.publication-page-button:focus-visible {
  outline: 2px solid var(--color-ember);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .publication-grid.is-changing,
  .testimonials-grid.is-changing {
    animation: none;
  }
  .publication-page-button {
    transition: none;
  }
}
.publication_card {
  display: flex;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  border-radius: var(--radius-card);
  background: var(--color-pure-white);
  box-shadow: var(--shadow-xl);
}
.publication_image {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04);
}
.publication_meta {
  margin: 28px 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 58px;
}
.publication_date {
  white-space: nowrap;
  color: var(--color-ember);
}
.publication_title {
  margin-right: 28px;
  margin-left: 28px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.15;
}
.publication_excerpt {
  margin-right: 28px;
  margin-left: 28px;
  margin-bottom: 14px;
  color: var(--color-slate);
  font-size: 14px;
  line-height: 1.45;
}
.publication_tags {
  margin-right: 28px;
  margin-left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.publication_tag {
  padding: 4px 8px;
  border: 1px solid var(--color-fog);
  border-radius: 9999px;
  color: var(--color-slate);
  font-size: 10px;
}
.publication_link {
  margin-right: 28px;
  margin-bottom: 28px;
  margin-left: 28px;
  margin-top: auto;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  padding-top: 82px;
  padding-bottom: 90px;
  background: var(--color-pressed-graphite);
  color: var(--color-pure-white);
}
.contact-copy h2 {
  color: var(--color-pure-white);
}
.contact-copy > p {
  max-width: 480px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}
.contact-panel .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}
.contact-details {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.contact-details a:hover {
  color: var(--color-ember);
}
.contact-form {
  display: grid;
  align-content: center;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-input);
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-pure-white);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-pure-white);
}
.contact-form .dark-button {
  justify-self: start;
  background: var(--color-pure-white);
  color: var(--color-near-black);
}
.contact-form .dark-button:hover {
  background: var(--color-cream-paper);
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  color: var(--color-iron);
  font-size: 13px;
}
.site-footer .wordmark {
  color: var(--color-near-black);
  font-size: 22px;
}
.site-footer p {
  margin: 0;
  color: var(--color-stone);
}
@media (max-width: 900px) {
  .reference-page {
    width: min(100% - 28px, 1200px);
    margin-top: 14px;
  }
  .site-nav {
    width: calc(100% - 36px);
    padding: 18px 0;
    grid-template-columns: auto 1fr auto;
  }
  .nav-explore,
  .audience-toggle,
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 40px;
    height: 40px;
    place-content: center;
    justify-self: end;
    border: 0;
    border-radius: 10px;
    background: rgba(23, 23, 23, 0.62);
  }
  .menu-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--color-pure-white);
  }
  .mobile-nav {
    position: absolute;
    z-index: 4;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    border-radius: 16px;
    background: var(--color-pressed-graphite);
    color: var(--color-pure-white);
    box-shadow: var(--shadow-xl);
  }
  .mobile-nav.is-open {
    display: grid;
    gap: 4px;
  }
  .mobile-nav a {
    padding: 10px;
    font-size: 15px;
  }
  .hero-panel {
    min-height: 720px;
  }
  .hero-image {
    background-position: 73% center;
  }
  .hero-content {
    top: 48%;
  }
  .hero-stack {
    right: 7%;
    bottom: 36px;
    transform: scale(0.8);
    transform-origin: right bottom;
  }
  .hero-signal {
    bottom: 30px;
    left: 8%;
    transform: none;
  }
  .manifesto-panel {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    min-height: 480px;
  }
  .monogram {
    width: 145px;
    height: 145px;
    font-size: 45px;
  }
  .manifesto-aside {
    grid-column: 2;
  }
  .feature-grid,
  .publication-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 290px;
  }
  .building-grid {
    grid-template-columns: 1fr;
  }
  .story-row,
  .story-row-person {
    grid-template-columns: 1fr;
  }
  .story-row-person .story-media {
    grid-row: 1;
  }
  .story-media,
  .story-row {
    min-height: 0;
  }
  .story-media {
    aspect-ratio: 16 / 10;
  }
  .story-media-portrait {
    aspect-ratio: 4 / 3;
  }
  .story-copy {
    padding: 34px 30px 38px;
  }
  .story-copy h3 {
    margin-top: 34px;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-card-wide {
    grid-row: auto;
    min-height: 380px;
    grid-column: 1 / -1;
  }
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 560px) {
  .reference-section {
    margin-top: 14px;
    padding: 54px 22px;
  }
  .hero-panel {
    min-height: 680px;
    border-radius: 16px;
  }
  .hero-content {
    width: calc(100% - 36px);
  }
  .hero-kicker {
    font-size: 11px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-search {
    min-height: 50px;
    padding-left: 14px;
    font-size: 12px;
  }
  .hero-signal {
    bottom: 20px;
    left: 20px;
    font-size: 11px;
  }
  .hero-stack {
    right: 10px;
    bottom: 52px;
    transform: scale(0.62);
  }
  .manifesto-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .manifesto-copy h2 {
    font-size: 35px;
  }
  .monogram {
    grid-row: 2;
    width: 130px;
    height: 130px;
    margin: 8px 0;
  }
  .manifesto-aside {
    grid-column: auto;
    max-width: none;
  }
  .center-heading {
    font-size: 28px;
  }
  .cinematic-card {
    min-height: 390px;
    margin-top: 48px;
  }
  .cinematic-copy h2 {
    font-size: 42px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .story-copy {
    padding: 30px 24px 34px;
  }
  .work-card-wide {
    min-height: 330px;
  }
  .work-card {
    min-height: 270px;
  }
  .contact-panel {
    gap: 28px;
  }
  .site-footer {
    min-height: 130px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
  }
  .site-footer p {
    order: 3;
    width: 100%;
  }
}
