:root {
  /* Change the complete website palette here. */
  --ink: #252525;
  --paper: #cfcfcf;
  --paper-light: #ffffff;
  --surface: #cfcfcf;
  --line: #cfcfcf;
  --accent: #545454;
  --accent-dark: #252525;
  --muted: #7d7d7d;
  --white: #ffffff;
  --blue: #545454;
  --sage: #7d7d7d;
  --yellow: #cfcfcf;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page-width: 1280px;
  --shadow: 0 18px 45px rgb(37 37 37 / 14%);
  --ease: cubic-bezier(0.2, 0.75, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgb(37 37 37 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(37 37 37 / 3%) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

main,
.page,
.hero-grid > *,
.detail-layout > *,
.split-page > *,
.contact-page > * {
  min-width: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  max-width: 100%;
}

.lucide {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--accent);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 68px;
  color: var(--ink);
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgb(37 37 37 / 8%);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(calc(100% - 44px), var(--page-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--sans);
  letter-spacing: 0;
}

.brand span {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.brand small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-link {
  position: relative;
  padding-block: 10px;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  border: 1px solid var(--accent);
  color: var(--white);
  background: var(--accent);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    background 250ms ease,
    color 250ms ease,
    transform 250ms var(--ease);
}

.nav-cta:hover,
.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-outline:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: 250ms ease;
}

.page {
  min-height: calc(100vh - 68px);
  animation: page-in 600ms var(--ease) both;
}

.container {
  width: min(calc(100% - 44px), var(--page-width));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section {
  padding-block: 92px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 60px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
}

.hero::after,
.decorative-lines::after {
  position: absolute;
  z-index: 0;
  right: -100px;
  bottom: -140px;
  width: 430px;
  height: 430px;
  border: 1px solid rgb(125 125 125 / 30%);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgb(207 207 207 / 8%),
    0 0 0 72px rgb(207 207 207 / 6%),
    0 0 0 108px rgb(207 207 207 / 4%);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: 1fr 0.85fr;
  align-items: stretch;
  gap: 0;
  padding-block: 0;
}

.hero-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 7vw, 90px);
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
}

.hero .eyebrow {
  color: var(--paper);
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(56px, 7vw, 100px);
  letter-spacing: -0.05em;
  text-transform: none;
  color: var(--white);
}

.hero h1 span {
  display: block;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.2em;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero-board {
  position: relative;
  min-height: 530px;
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 38px 38px 52px;
  background: var(--paper);
  border: 0;
  box-shadow: none;
  transform: none;
}

.hero-board .hero-placeholder {
  width: min(88%, 430px);
  min-height: 520px;
  border: 9px solid var(--white);
  border-radius: 48% 48% 4px 4px;
  box-shadow: 0 20px 50px rgb(37 37 37 / 20%);
  transform: none;
}

.hero-board .hero-placeholder img {
  object-position: center 38%;
}

.hero-board-note {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 70px;
  width: 205px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-board-note small {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-board-note strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-board-swatches {
  position: absolute;
  z-index: 2;
  right: 28px;
  top: 28px;
  display: grid;
  width: 65px;
  padding: 7px;
  gap: 5px;
  background: var(--white);
  box-shadow: 0 10px 24px rgb(37 37 37 / 14%);
}

.hero-board-swatches i {
  height: 34px;
  background: var(--accent);
}

.hero-board-swatches i:nth-child(2) {
  background: var(--blue);
}

.hero-board-swatches i:nth-child(3) {
  background: var(--sage);
}

.hero-board-label {
  position: absolute;
  bottom: 14px;
  right: 0;
  left: 0;
  color: var(--ink);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

.hero-board-label,
.zoom-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-board-label .lucide {
  width: 11px;
  height: 11px;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--paper);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.location {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  font-size: 11px;
}

.hero .button {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.hero .button:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.hero .button-outline {
  color: var(--white);
  background: transparent;
  border-color: var(--muted);
}

.hero .button-outline:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.placeholder {
  position: relative;
  display: grid;
  min-height: 280px;
  place-content: center;
  padding: 30px;
  overflow: hidden;
  color: var(--muted);
  background:
    linear-gradient(135deg, transparent 49.8%, rgb(84 84 84 / 6%) 50%, transparent 50.2%),
    linear-gradient(45deg, transparent 49.8%, rgb(84 84 84 / 6%) 50%, transparent 50.2%),
    var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.placeholder::before {
  display: block;
  width: 28px;
  height: 23px;
  margin: 0 auto 15px;
  border: 1px solid var(--muted);
  content: "";
  opacity: 0.55;
}

.placeholder::after {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--muted);
  content: "IMAGE PLACEHOLDER";
  font-size: 8px;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.placeholder strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.placeholder small {
  display: block;
  max-width: 300px;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.5;
}

.project-image {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.project-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.project-image.image-contain img {
  object-fit: contain;
  background: var(--white);
}

.project-card:hover .project-image img {
  transform: scale(1.025);
}

.hero-placeholder {
  min-height: 470px;
  border-radius: 180px 180px 0 0;
}

.stats-strip {
  background: transparent;
  border-block: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat {
  display: grid;
  min-height: 100px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

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

.stat-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 33px;
}

.stat-label {
  max-width: 120px;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.project-card {
  grid-column: span 4;
  min-width: 0;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgb(37 37 37 / 10%);
  transition:
    transform 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

.project-card.wide {
  grid-column: span 8;
}

.project-card:hover {
  z-index: 1;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.project-card:nth-child(3n + 1) {
  transform: rotate(-0.25deg);
}

.project-card:nth-child(3n + 2) {
  transform: rotate(0.25deg);
}

.project-card:nth-child(3n + 1):hover,
.project-card:nth-child(3n + 2):hover {
  transform: translateY(-5px) rotate(0);
}

.project-card .placeholder {
  min-height: 210px;
  border-width: 0 0 1px;
}

.project-card .project-image {
  min-height: 210px;
  border-width: 0 0 1px;
}

.project-card.wide .placeholder {
  min-height: 300px;
}

.project-card.wide .project-image {
  min-height: 300px;
}

.project-card-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  padding: 18px;
}

.project-number {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 9px;
}

.project-card h3 {
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.project-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 9px;
}

.circle-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  align-self: end;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  transition: 250ms ease;
}

.circle-arrow .lucide {
  width: 14px;
  height: 14px;
}

.project-card:hover .circle-arrow {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.projects-mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.projects-mosaic .project-card {
  position: relative;
  height: 430px;
  min-height: 430px;
  grid-column: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: 0 12px 32px rgb(37 37 37 / 15%);
  transform: none;
}

.projects-mosaic .project-card:first-child {
  height: 590px;
  min-height: 590px;
  grid-column: 1 / -1;
}

.projects-mosaic .project-card .project-image,
.projects-mosaic .project-card .placeholder,
.projects-mosaic .project-card:first-child .project-image,
.projects-mosaic .project-card:first-child .placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}

.projects-mosaic .project-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: end;
  padding: 90px 28px 26px;
  color: var(--white);
  background: linear-gradient(transparent, rgb(37 37 37 / 92%));
}

.projects-mosaic .project-number {
  margin-bottom: 9px;
  color: rgb(255 255 255 / 70%);
}

.projects-mosaic .project-card h3 {
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 500;
}

.projects-mosaic .project-card p {
  color: rgb(255 255 255 / 75%);
}

.projects-mosaic .circle-arrow {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.projects-page {
  color: var(--white);
  background: #202020;
}

.projects-page .page-hero .container {
  background: #202020;
  border-bottom: 1px solid var(--accent);
  box-shadow: none;
}

.projects-page .page-hero p {
  color: var(--paper);
}

.projects-page .eyebrow {
  color: var(--paper);
}

.projects-page .filter {
  color: var(--paper);
  border-color: var(--accent);
}

.projects-page .filter:hover,
.projects-page .filter.active {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.projects-page .projects-mosaic .project-card {
  outline: 1px solid var(--muted);
  outline-offset: 5px;
  box-shadow: 0 18px 45px rgb(0 0 0 / 45%);
}

.text-project-art {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background: var(--muted);
}

.text-project-art::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 190px;
  height: 190px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 50%;
  box-shadow:
    0 0 0 25px rgb(255 255 255 / 6%),
    0 0 0 50px rgb(255 255 255 / 4%);
  content: "";
}

.text-project-art span {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 42px;
}

.text-project-art strong {
  max-width: 180px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.text-project-art small {
  margin-top: 12px;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.projects-mosaic .text-project-art {
  min-height: 100%;
}

.process-section {
  color: var(--white);
  background: var(--blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process-item {
  position: relative;
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.process-item:last-child {
  border-right: 0;
}

.process-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--serif);
}

.process-item h3 {
  margin-bottom: 7px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
}

.process-item p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 55%);
  font-size: 9px;
  line-height: 1.6;
}

.quote-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.quote {
  max-width: 900px;
  padding-block: 90px;
}

.quote-mark {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 70px;
  line-height: 0.5;
}

.quote blockquote {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
}

.quote cite {
  color: var(--muted);
  font-size: 11px;
}

.page-hero {
  padding-block: 70px 45px;
}

.page-hero .container {
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(54px, 8vw, 96px);
}

.page-hero p {
  max-width: 620px;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.filter {
  padding: 8px 15px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.filter:hover,
.filter.active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.detail-hero {
  padding-block: 48px 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 35px;
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 32px;
}

.detail-title h1 {
  max-width: 850px;
  margin-bottom: 13px;
  font-size: clamp(45px, 6vw, 82px);
}

.detail-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: var(--muted);
  font-size: 10px;
}

.detail-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 64px;
}

.detail-feature {
  min-height: 650px;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.text-case-hero {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: end;
  padding: clamp(35px, 6vw, 75px);
  color: var(--white);
  background: var(--muted);
  box-shadow: var(--shadow);
}

.text-case-hero span {
  margin-bottom: 25px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.text-case-hero strong {
  max-width: 850px;
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.text-case-hero p {
  margin: 22px 0 0;
  color: var(--paper);
}

.detail-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding-block: 70px;
}

.detail-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgb(37 37 37 / 11%);
}

.detail-nav button {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  text-align: left;
}

.detail-nav button:hover,
.detail-nav button.active {
  color: var(--white);
  background: var(--accent);
}

.detail-nav button:last-child {
  border-bottom: 0;
}

.detail-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

.detail-copy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  margin-bottom: 65px;
}

.detail-copy-grid h3 {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-copy-grid p {
  color: var(--muted);
}

.project-story-section {
  padding: 45px;
  margin-bottom: 65px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.project-story-section > h2 {
  margin-bottom: 32px;
}

.project-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-story-grid article {
  min-height: 245px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.project-story-grid article header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.project-story-grid article header span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  border: 1px solid var(--line);
}

.project-story-grid small {
  display: block;
  margin: 0;
  color: var(--accent);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.project-story-grid p,
.project-story-grid li {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.project-story-grid ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-story-grid li::before {
  margin-right: 8px;
  color: var(--accent);
  content: "—";
}

.journey {
  padding: 35px;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.journey-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.journey-heading small,
.board-phase-title small,
.board-note small,
.board-checklist small {
  color: var(--accent);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.journey .journey-heading small {
  color: var(--paper);
}

.journey-heading span {
  color: rgb(255 255 255 / 35%);
  font-family: var(--serif);
  font-size: 27px;
}

.journey h2 {
  margin: 5px 0 0;
  font-size: 32px;
}

.journey-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  list-style: none;
}

.journey-grid::before {
  position: absolute;
  z-index: 0;
  top: 76px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgb(255 255 255 / 22%);
  content: "";
}

.journey-step {
  position: relative;
  z-index: 1;
  min-height: 210px;
  padding: 20px 14px;
  background: rgb(37 37 37 / 15%);
  border: 1px solid rgb(255 255 255 / 13%);
  text-align: left;
}

.journey-step span {
  display: block;
  margin-bottom: 16px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 16px;
}

.journey-step .journey-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 0 22px;
  padding: 12px;
  place-items: center;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px var(--blue);
  color: var(--white);
  font-family: var(--sans);
  font-size: 19px;
  font-style: normal;
}

.journey-step strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.journey-step small {
  display: block;
  color: rgb(255 255 255 / 62%);
  font-size: 8px;
  line-height: 1.5;
}

.journey-takeaway {
  display: grid;
  margin-top: 28px;
  padding-top: 24px;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.journey-takeaway span {
  color: var(--paper);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.journey-takeaway blockquote {
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
}

.process-story {
  padding-top: 85px;
}

.process-story-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 55px;
  margin-bottom: 55px;
}

.process-story-heading h2 {
  margin: 0;
}

.process-story-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.text-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.text-case-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgb(37 37 37 / 8%);
}

.text-case-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 32px;
}

.text-case-grid small {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.text-case-grid h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}

.board-phase {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding-block: 38px;
  border-top: 1px solid var(--line);
}

.board-phase-title {
  position: sticky;
  top: 100px;
  display: flex;
  height: fit-content;
  align-items: flex-start;
  gap: 14px;
}

.board-phase-title > span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.board-phase-title h3 {
  margin: 5px 0 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.moodboard {
  position: relative;
  display: grid;
  min-height: 650px;
  gap: 14px;
  padding: clamp(20px, 4vw, 45px);
  background:
    linear-gradient(rgb(23 24 22 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(23 24 22 / 3%) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  border: 1px solid var(--line);
}

.moodboard::after {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: rgb(23 24 22 / 35%);
  content: "NAMYA CHHAWCHHARIA · DESIGN PROCESS";
  font-size: 6px;
  letter-spacing: 0.17em;
}

.board-note,
.board-checklist,
.swatch-set {
  z-index: 1;
  padding: 20px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgb(37 37 37 / 8%);
}

.board-note h4 {
  margin: 9px 0 15px;
  font-size: 26px;
}

.board-note p,
.board-checklist li {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.board-note dl {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
}

.board-note dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.board-note dt {
  color: var(--muted);
}

.board-note dd {
  margin: 0;
}

.board-checklist ul {
  display: grid;
  gap: 9px;
  padding: 15px 0 0;
  margin: 0;
  list-style: none;
}

.board-checklist li::before {
  margin-right: 8px;
  color: var(--accent);
  content: "—";
}

.board-media {
  z-index: 1;
  min-height: 280px;
  background-color: var(--paper);
  box-shadow: 0 12px 30px rgb(37 37 37 / 9%);
}

.zoomable-media {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  text-align: inherit;
}

.zoom-hint {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgb(255 255 255 / 92%);
  border-radius: 20px;
  box-shadow: 0 7px 18px rgb(37 37 37 / 14%);
  font-size: 7px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0;
  transform: translateY(5px);
  transition: 200ms ease;
}

.zoom-hint,
.circle-arrow {
  align-items: center;
  justify-content: center;
}

.zoom-hint .lucide {
  width: 11px;
  height: 11px;
}

.zoomable-media:hover .zoom-hint,
.zoomable-media:focus-visible .zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.board-media.project-image img {
  min-height: 280px;
  object-fit: contain;
  background: var(--paper-light);
}

.board-media-wide {
  min-height: 420px;
}

.board-media-wide.project-image img {
  min-height: 420px;
}

.board-media-tall {
  min-height: 480px;
}

.board-media-tall.project-image img {
  min-height: 480px;
}

.board-media-hero {
  min-height: 560px;
}

.board-media-hero.project-image img {
  min-height: 560px;
}

.swatch-set {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  gap: 5px;
}

.swatch-set span {
  display: flex;
  height: 78px;
  align-items: end;
  background: var(--swatch);
}

.swatch-set span i {
  width: 100%;
  padding: 5px 3px;
  color: var(--ink);
  background: rgb(255 255 255 / 88%);
  font-family: var(--sans);
  font-size: 6px;
  font-style: normal;
  text-align: center;
}

.swatch-set small {
  grid-column: 1 / -1;
  margin-top: 7px;
  color: var(--muted);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.moodboard-discover {
  grid-template-columns: 0.8fr 0.7fr 1.15fr;
  grid-template-rows: auto auto;
}

.moodboard-discover .board-note-large {
  grid-row: span 2;
}

.moodboard-discover .board-media-tall {
  grid-row: span 2;
}

.moodboard-plan {
  grid-template-columns: 0.7fr 1.3fr 0.8fr;
  align-items: start;
}

.moodboard-plan .board-media-wide {
  grid-row: span 2;
}

.moodboard-develop {
  grid-template-columns: 0.75fr 1.35fr;
  align-items: end;
}

.moodboard-develop .board-media-wide {
  grid-row: span 2;
}

.moodboard-document {
  grid-template-columns: 1.35fr 0.65fr;
}

.moodboard-document .board-media-wide {
  grid-row: span 2;
}

.moodboard-final {
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
}

.moodboard-final .board-media-hero {
  grid-row: span 2;
}

.board-outcome {
  border-top: 3px solid var(--accent);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.archive-media {
  min-height: 420px;
}

.archive-media.project-image img {
  min-height: 420px;
  object-fit: contain;
  background: var(--paper-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 60px;
}

.gallery-grid .placeholder {
  min-height: 330px;
}

.gallery-grid .project-image {
  min-height: 330px;
}

.project-pagination {
  display: flex;
  justify-content: space-between;
  padding-block: 35px 80px;
  border-top: 1px solid var(--line);
}

.project-detail-page {
  color: var(--white);
  background: #202020;
}

.project-detail-page .back-link,
.project-detail-page .detail-number,
.project-detail-page .detail-copy-grid h3,
.project-detail-page .board-phase-title > span {
  color: var(--white);
}

.project-detail-page .detail-meta-inline,
.project-detail-page .detail-copy-grid p,
.project-detail-page .project-story-grid p,
.project-detail-page .project-story-grid li,
.project-detail-page .process-story-heading > p {
  color: rgb(255 255 255 / 78%);
}

.project-detail-page .detail-feature {
  padding: 14px 14px 38px;
  background: var(--white);
  border: 1px solid var(--white);
  box-shadow: 0 20px 55px rgb(0 0 0 / 45%);
}

.project-detail-page .detail-feature img {
  background: #f2f2f2;
}

.project-detail-page .detail-nav {
  background: #282828;
  border-color: rgb(255 255 255 / 35%);
  box-shadow: none;
}

.project-detail-page .detail-nav button {
  color: rgb(255 255 255 / 64%);
  border-color: rgb(255 255 255 / 22%);
}

.project-detail-page .detail-nav button:hover,
.project-detail-page .detail-nav button.active {
  color: #000000;
  background: var(--white);
}

.project-detail-page .project-story-section,
.project-detail-page .journey {
  background: #272727;
  border: 1px solid rgb(255 255 255 / 28%);
  box-shadow: none;
}

.project-detail-page .project-story-grid article,
.project-detail-page .text-case-grid article {
  color: var(--white);
  background: rgb(255 255 255 / 6%);
  border-color: rgb(255 255 255 / 32%);
  box-shadow: none;
}

.project-detail-page .project-story-grid article header span,
.project-detail-page .project-story-grid small,
.project-detail-page .project-story-grid li::before,
.project-detail-page .text-case-grid span,
.project-detail-page .text-case-grid small {
  color: rgb(255 255 255 / 84%);
}

.project-detail-page .project-story-grid article header span {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 40%);
}

.project-detail-page .board-phase,
.project-detail-page .project-pagination {
  border-color: rgb(255 255 255 / 24%);
}

.project-detail-page .moodboard {
  background:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px),
    #252525;
  background-size: 38px 38px;
  border-color: rgb(255 255 255 / 22%);
}

.project-detail-page .moodboard::after {
  color: rgb(255 255 255 / 28%);
}

.project-detail-page .board-media,
.project-detail-page .archive-media {
  padding: 10px 10px 28px;
  background: var(--white);
  border: 1px solid var(--white);
  box-shadow: 0 16px 35px rgb(0 0 0 / 42%);
}

.project-detail-page .board-media.project-image img,
.project-detail-page .archive-media.project-image img {
  background: #f2f2f2;
}

.project-detail-page .journey-step {
  background: rgb(255 255 255 / 5%);
  border-color: rgb(255 255 255 / 22%);
}

.project-detail-page .journey-step .journey-icon {
  background: #202020;
  box-shadow: 0 0 0 6px #272727;
}

.project-detail-page .project-pagination .text-link {
  color: var(--white);
}

.split-page {
  display: grid;
  min-height: calc(100vh - 68px);
  grid-template-columns: 0.9fr 1.1fr;
  width: min(calc(100% - 60px), var(--page-width));
  min-height: 680px;
  margin: 45px auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 8vw, 120px);
}

.split-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(56px, 7vw, 94px);
}

.split-copy p {
  max-width: 600px;
  color: var(--muted);
}

.portrait-placeholder {
  min-height: 100%;
  margin: 34px;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.portrait-placeholder.project-image img {
  object-position: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 45px;
}

.value {
  padding: 22px 16px;
  border: 1px solid var(--line);
  text-align: center;
}

.value span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  place-items: center;
  color: var(--accent);
}

.value p {
  margin: 0;
  color: var(--ink);
  font-size: 9px;
  text-transform: uppercase;
}

.resume-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  padding-bottom: 100px;
}

.resume-section {
  margin-bottom: 65px;
}

.resume-section h2 {
  padding-bottom: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  font-size: 37px;
}

.timeline-item {
  position: relative;
  padding: 0 0 42px 30px;
  border-left: 1px solid var(--line);
}

.timeline-item::before {
  position: absolute;
  top: 2px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item time {
  color: var(--accent);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.timeline-item h3 {
  margin: 8px 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.timeline-item p,
.timeline-item li {
  color: var(--muted);
  font-size: 11px;
}

.timeline-item ul {
  padding-left: 17px;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

.skill-list li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.resume-page {
  color: var(--white);
  background: #202020;
}

.resume-page .page-hero {
  color: var(--white);
  background: #202020;
  border-color: rgb(255 255 255 / 20%);
}

.resume-page .page-hero .container {
  background: #272727;
  border: 1px solid rgb(255 255 255 / 22%);
  box-shadow: none;
}

.resume-page .eyebrow {
  color: rgb(255 255 255 / 80%);
}

.resume-page .page-hero p,
.resume-page .timeline-item p,
.resume-page .timeline-item li,
.resume-page .skill-list li {
  color: rgb(255 255 255 / 78%);
}

.resume-page .resume-section h2,
.resume-page .timeline-item,
.resume-page .skill-list li {
  border-color: rgb(255 255 255 / 28%);
}

.resume-page .timeline-item::before {
  background: var(--white);
}

.resume-page .timeline-item time {
  color: rgb(255 255 255 / 78%);
}

.contact-page {
  display: grid;
  min-height: calc(100vh - 68px);
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-info {
  position: relative;
  padding: clamp(55px, 7vw, 105px);
  color: var(--white);
  background: var(--blue);
}

.contact-info h1 {
  max-width: 570px;
  margin-bottom: 25px;
  font-size: clamp(52px, 7vw, 90px);
}

.contact-info > p {
  max-width: 450px;
  margin-bottom: 55px;
  color: rgb(255 255 255 / 60%);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
}

.contact-list .lucide {
  color: rgb(255 255 255 / 72%);
}

.contact-form-wrap {
  display: flex;
  align-items: center;
  padding: clamp(45px, 7vw, 100px);
}

.contact-form {
  width: 100%;
  max-width: 700px;
  padding: clamp(25px, 4vw, 48px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin-bottom: 40px;
  font-size: 46px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.field textarea {
  min-height: 155px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgb(125 125 125 / 22%);
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  padding-block: 28px;
  color: rgb(255 255 255 / 55%);
  background: var(--ink);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

[hidden] {
  display: none !important;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  padding: 45px 30px;
  color: var(--white);
  background: rgb(37 37 37 / 96%);
  backdrop-filter: blur(16px);
}

.lightbox figure {
  display: grid;
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 90px);
  justify-self: center;
  margin: 0;
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 145px);
  margin: auto;
  object-fit: contain;
  box-shadow: 0 24px 70px rgb(0 0 0 / 35%);
}

.lightbox figcaption {
  margin-top: 14px;
  color: rgb(255 255 255 / 72%);
  font-size: 11px;
  text-align: center;
}

.lightbox button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 50%;
  color: var(--white);
  background: rgb(255 255 255 / 8%);
  cursor: pointer;
  font-size: 20px;
}

.lightbox button:hover {
  color: var(--ink);
  background: var(--white);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.lightbox-previous {
  justify-self: start;
}

.lightbox-next {
  justify-self: end;
}

.lightbox-count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  font-size: 9px;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 35px 24px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 250ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 18px 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-family: var(--serif);
    font-size: 28px;
    text-transform: none;
  }

  .nav-cta {
    margin-top: 25px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split-page,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero-board {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .hero-placeholder {
    min-height: 420px;
  }

  .stats-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .project-card,
  .project-card.wide {
    grid-column: span 6;
  }

  .project-card.wide .placeholder {
    min-height: 210px;
  }

  .project-card.wide .project-image {
    min-height: 210px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-item {
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }

  .process-item:nth-child(even) {
    border-right: 0;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-nav {
    position: static;
    display: flex;
    overflow-x: auto;
  }

  .detail-nav button {
    flex: 0 0 auto;
    width: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .journey-grid {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
  }

  .process-story-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .board-phase {
    grid-template-columns: 1fr;
  }

  .board-phase-title {
    position: static;
  }

  .moodboard-discover,
  .moodboard-plan,
  .moodboard-develop,
  .moodboard-document,
  .moodboard-final {
    grid-template-columns: repeat(2, 1fr);
  }

  .moodboard-discover .board-note-large,
  .moodboard-discover .board-media-tall,
  .moodboard-plan .board-media-wide,
  .moodboard-develop .board-media-wide,
  .moodboard-document .board-media-wide,
  .moodboard-final .board-media-hero {
    grid-row: auto;
  }

  .portrait-placeholder {
    min-height: 600px;
    border-width: 1px 0 0;
  }

  .resume-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .container,
  .nav {
    width: min(calc(100% - 30px), var(--page-width));
  }

  .section {
    padding-block: 64px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 55px;
  }

  .hero-grid > div:first-child {
    padding: 28px 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 44px);
    overflow-wrap: anywhere;
  }

  .hero-board {
    min-height: 450px;
    padding: 18px 40px 45px 12px;
  }

  .hero-board .hero-placeholder {
    min-height: 385px;
  }

  .hero-board-note {
    right: -4px;
    bottom: 48px;
    width: 175px;
  }

  .hero-board-swatches {
    right: 10px;
    top: 18px;
    width: 50px;
  }

  .hero-board-swatches i {
    height: 24px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .project-card,
  .project-card.wide {
    grid-column: 1 / -1;
  }

  .projects-mosaic {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter {
    width: 100%;
  }

  .projects-mosaic .project-card,
  .projects-mosaic .project-card:first-child {
    height: 350px;
    min-height: 350px;
    grid-column: 1;
  }

  .projects-mosaic .project-card h3 {
    font-size: 25px;
    overflow-wrap: anywhere;
  }

  .project-card .placeholder,
  .project-card.wide .placeholder {
    min-height: 230px;
  }

  .project-card .project-image,
  .project-card.wide .project-image {
    min-height: 230px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-item {
    border-right: 0;
  }

  .detail-title {
    grid-template-columns: 1fr;
  }

  .detail-title h1 {
    font-size: clamp(36px, 11vw, 46px);
    overflow-wrap: anywhere;
  }

  .detail-number {
    display: none;
  }

  .detail-feature {
    min-height: 320px;
  }

  .detail-layout {
    gap: 40px;
    padding-block: 45px;
  }

  .project-detail-page .detail-feature {
    padding: 7px 7px 20px;
  }

  .project-detail-page .board-media,
  .project-detail-page .archive-media {
    padding: 7px 7px 19px;
  }

  .detail-nav {
    width: 100%;
    max-width: 100%;
  }

  .detail-copy-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-story-section {
    padding: 24px 16px;
  }

  .project-story-grid {
    grid-template-columns: 1fr;
  }

  .journey {
    padding: 25px 18px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid::before {
    display: none;
  }

  .journey-step {
    display: grid;
    min-height: 105px;
    grid-template-columns: 32px 52px 1fr;
    grid-template-areas:
      "number icon title"
      ". icon skill";
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .journey-step span {
    grid-area: number;
  }

  .journey-step .journey-icon {
    grid-area: icon;
  }

  .journey-step strong {
    grid-area: title;
    margin: 0;
  }

  .journey-step small {
    grid-area: skill;
    align-self: start;
  }

  .journey-step span,
  .journey-step .journey-icon {
    margin: 0;
  }

  .journey-takeaway {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-story {
    padding-top: 60px;
  }

  .moodboard {
    min-height: 0;
    padding: 16px;
  }

  .moodboard-discover,
  .moodboard-plan,
  .moodboard-develop,
  .moodboard-document,
  .moodboard-final {
    grid-template-columns: 1fr;
  }

  .text-case-grid {
    grid-template-columns: 1fr;
  }

  .board-media,
  .board-media-wide,
  .board-media-tall,
  .board-media-hero {
    min-height: 250px;
  }

  .board-media.project-image img,
  .board-media-wide.project-image img,
  .board-media-tall.project-image img,
  .board-media-hero.project-image img {
    min-height: 250px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-media,
  .archive-media.project-image img {
    min-height: 300px;
  }

  .gallery-grid .placeholder {
    min-height: 250px;
  }

  .gallery-grid .project-image {
    min-height: 250px;
  }

  .split-copy,
  .contact-info,
  .contact-form-wrap {
    padding: 55px 22px;
  }

  .split-copy h1,
  .contact-info h1 {
    font-size: clamp(42px, 13vw, 54px);
    overflow-wrap: anywhere;
  }

  .split-page {
    width: calc(100% - 20px);
    margin: 20px auto;
  }

  .split-copy p,
  .contact-info p,
  .page-hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portrait-placeholder {
    min-height: 450px;
    margin: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form,
  .contact-form-wrap,
  .field input,
  .field textarea {
    max-width: 100%;
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .lightbox {
    grid-template-columns: 45px minmax(0, 1fr) 45px;
    padding: 65px 8px 40px;
  }

  .lightbox button {
    width: 38px;
    height: 38px;
  }

  .lightbox img {
    max-height: calc(100vh - 185px);
  }
}

@media (max-width: 420px) {
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}

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