:root {
  --archival: #f7f5ef;
  --charcoal: #282522;
  --graphite: #64605a;
  --stone-muted: #ebe6dc;
  --spotlight: #a9532f;
  --line: rgba(40, 37, 34, 0.1);
  --line-strong: rgba(40, 37, 34, 0.2);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--archival);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
}

::selection {
  background: var(--charcoal);
  color: var(--archival);
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
.display {
  font-family: var(--font-display);
  font-weight: 500;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.label {
  color: var(--spotlight);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.label.graphite {
  color: var(--graphite);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 239, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.brand span {
  color: var(--spotlight);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 40px;
}

.desktop-nav a {
  color: var(--graphite);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--charcoal);
}

.established {
  display: none;
  color: var(--graphite);
}

.menu-toggle {
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 24px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
}

.hero,
.page-hero {
  padding-top: 64px;
  padding-bottom: 96px;
}

.page-hero.compact {
  padding-bottom: 64px;
}

.grid-12 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.headline-xl {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.headline-lg {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.headline-md {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.italic {
  color: var(--graphite);
  font-style: italic;
}

.text {
  color: var(--graphite);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-lg {
  color: var(--graphite);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.display-copy {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  line-height: 1.15;
}

.max-16 {
  max-width: 16ch;
}

.max-18 {
  max-width: 18ch;
}

.max-20 {
  max-width: 20ch;
}

.max-48 {
  max-width: 48ch;
}

.max-55 {
  max-width: 55ch;
}

.max-60 {
  max-width: 60ch;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 20px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-10 {
  margin-top: 40px;
}

.mt-12 {
  margin-top: 48px;
}

.mt-16 {
  margin-top: 64px;
}

.mt-20 {
  margin-top: 80px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--archival);
  padding: 16px 32px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--spotlight);
}

.button.light {
  background: var(--archival);
  color: var(--charcoal);
}

.button.light:hover {
  background: var(--spotlight);
  color: var(--archival);
}

.text-link {
  display: inline-flex;
  border-bottom: 1px solid rgba(100, 96, 90, 0.4);
  padding-bottom: 4px;
  color: var(--graphite);
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.media-card {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  background: var(--stone-muted);
}

.media-card img,
.project-image img,
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: -16px;
  top: 80px;
  z-index: 2;
  max-width: 240px;
  border: 1px solid var(--line);
  background: var(--archival);
  padding: 24px;
  box-shadow: 0 25px 50px rgba(40, 37, 34, 0.1);
}

.fig-label {
  position: absolute;
  right: 0;
  bottom: -24px;
}

.section {
  border-top: 1px solid var(--line);
}

.section-pad {
  padding-top: 96px;
  padding-bottom: 96px;
}

.muted-band {
  background: rgba(235, 230, 220, 0.42);
}

.dark-band {
  background: var(--charcoal);
  color: var(--archival);
}

.dark-band .headline-lg,
.dark-band .headline-md,
.dark-band .display-copy {
  color: var(--archival);
}

.dark-band .italic {
  color: rgba(247, 245, 239, 0.62);
}

.dark-band .text {
  color: rgba(247, 245, 239, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.list-bordered {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.list-bordered li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.list-bordered li:last-child {
  border-bottom: 0;
}

.number {
  color: var(--spotlight);
  font-family: var(--font-display);
  font-size: 2rem;
}

.card-title {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 500;
}

.work-grid,
.project-grid,
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.project-grid {
  gap: 64px 32px;
}

.project-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone-muted);
}

.project-image img {
  transition: transform 700ms ease;
}

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

.meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.result {
  color: var(--spotlight);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

.process-grid,
.principle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-card,
.principle-card {
  height: 100%;
  background: var(--archival);
  padding: 32px;
}

.principle-card {
  padding: 40px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.included {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.included li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.included li::before {
  content: "-";
  color: var(--spotlight);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--graphite);
  padding: 10px 20px;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--archival);
}

.year-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--archival);
  color: var(--charcoal);
  padding: 6px 12px;
}

.portrait {
  aspect-ratio: 3 / 4;
  background: var(--stone-muted);
}

.portrait img {
  filter: grayscale(1);
}

.recognition {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.recognition span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: var(--archival);
  padding: 40px;
  transition: background 180ms ease;
}

.contact-card:hover {
  background: rgba(235, 230, 220, 0.6);
}

.contact-link {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--spotlight);
  text-underline-offset: 6px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 64px;
}

.site-footer {
  margin-top: 128px;
  border-top: 1px solid var(--line);
  background: var(--archival);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer-links {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.footer-links li {
  margin-top: 8px;
}

.footer-links a:hover {
  color: var(--spotlight);
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--graphite);
  font-size: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (min-width: 768px) {
  .container,
  .container-narrow {
    padding-left: 48px;
    padding-right: 48px;
  }

  .header-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .desktop-nav,
  .established {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 128px;
  }

  .page-hero {
    padding-top: 96px;
    padding-bottom: 128px;
  }

  .page-hero.compact {
    padding-bottom: 96px;
  }

  .section-pad {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .work-grid,
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

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

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

  .principle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-card {
    padding: 56px;
  }

  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recognition {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 5fr 3fr 4fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .grid-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;
  }

  .span-4 {
    grid-column: span 4;
  }

  .span-5 {
    grid-column: span 5;
  }

  .span-7 {
    grid-column: span 7;
  }

  .span-8 {
    grid-column: span 8;
  }

  .col-start-7 {
    grid-column-start: 7;
  }

  .split {
    grid-template-columns: 4fr 8fr;
  }

  .service-item {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .service-copy {
    grid-column: span 5;
  }

  .service-included {
    grid-column: 7 / span 6;
  }

  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-note {
    left: -48px;
  }
}
