:root {
  --background: #fbfaf6;
  --background-rgb: 251, 250, 246;
  --foreground: #29251f;
  --muted: #efede6;
  --muted-strong: #ded9cd;
  --muted-foreground: #746b60;
  --border: #e4dfd4;
  --ink-soft: rgba(41, 37, 31, 0.72);
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, ui-serif, serif;
  --container: 1400px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-heavy: cubic-bezier(0.22, 1, 0.36, 1);
  --rev-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(189, 175, 147, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(121, 133, 121, 0.1), transparent 25rem),
    linear-gradient(180deg, #fbfaf6 0%, #f7f4ed 100%);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 60;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(41, 37, 31, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 37, 31, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
.brand,
.footer-brand > a {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  min-height: 100vh;
}

.container-wide {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.eyebrow {
  color: var(--muted-foreground);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(251, 250, 246, 0.78);
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 1.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 500ms var(--ease-out), background-color 500ms var(--ease-out), opacity 500ms var(--ease-out), transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}

.button:hover,
.nav-cta:hover {
  opacity: 0.94;
  transform: translateY(-2px);
}

.button:active,
.nav-cta:active {
  transform: translateY(1px);
}

.button-light {
  background: var(--background);
  color: var(--foreground);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 18px 45px rgba(41, 37, 31, 0.18);
}

.button-dark,
.nav-cta {
  background: var(--foreground);
  color: var(--background);
  box-shadow: 0 18px 38px rgba(41, 37, 31, 0.16);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.text-link:hover {
  transform: translateX(3px);
}

.text-link span {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.28rem;
}

.text-link b {
  font-weight: 500;
}

.text-link-light {
  margin-top: 0;
  color: var(--background);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(228, 223, 212, 0.7);
  background: rgba(var(--background-rgb), 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand {
  font-size: 1.45rem;
  line-height: 1;
}

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

.desktop-nav {
  display: none;
}

.desktop-nav a:not(.nav-cta) {
  color: var(--ink-soft);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  transition: color 360ms var(--ease-out), transform 360ms var(--ease-out);
}

.desktop-nav a:not(.nav-cta):hover {
  color: var(--foreground);
  transform: translateY(-1px);
}

.desktop-nav a.active {
  color: var(--foreground);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 1.25rem;
  letter-spacing: 0.18em;
}

.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-content: center;
  gap: 5px;
}

.menu-button span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: transform 420ms var(--ease-out), opacity 320ms var(--ease-out);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  inset: 0.75rem 1.5rem auto;
  display: grid;
  gap: 1.15rem;
  border: 1px solid rgba(228, 223, 212, 0.82);
  border-radius: 2rem;
  padding: 5.5rem 1.5rem 1.5rem;
  background: rgba(var(--background-rgb), 0.92);
  box-shadow: 0 28px 80px rgba(41, 37, 31, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.98);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

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

.mobile-nav a:not(.nav-cta) {
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out), color 300ms var(--ease-out);
}

.mobile-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.is-open a:nth-child(2) {
  transition-delay: 50ms;
}

.mobile-nav.is-open a:nth-child(3) {
  transition-delay: 100ms;
}

.mobile-nav.is-open a:nth-child(4) {
  transition-delay: 150ms;
}

.mobile-nav.is-open a:nth-child(5) {
  transition-delay: 200ms;
}

.mobile-nav.is-open a:nth-child(6) {
  transition-delay: 250ms;
}

.mobile-nav .nav-cta {
  margin-top: 0.5rem;
  width: fit-content;
}

.hero {
  position: relative;
  min-height: 560px;
  min-height: min(780px, calc(100dvh - 4.5rem));
  height: calc(100dvh - 1.5rem);
  margin-top: -4.25rem;
  overflow: hidden;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease-heavy) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 72%, rgba(0, 0, 0, 0.42), transparent 34rem),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.62));
}

.hero-content {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 7rem;
  padding-bottom: 4rem;
  color: var(--background);
}

.hero h1 {
  max-width: 62rem;
  margin-top: 1.5rem;
  font-size: clamp(3.45rem, 8vw, 6.75rem);
  line-height: 1.05;
}

@keyframes heroDrift {
  from {
    transform: scale(1.09) translateY(10px);
  }

  to {
    transform: scale(1.04) translateY(0);
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.intro-section {
  display: grid;
  gap: 2.5rem;
  padding-block: 7rem 8rem;
}

.intro-copy p {
  max-width: 66rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.17;
}

.section {
  padding-block: 7rem;
}

.page-hero {
  padding-block: 7.5rem 4.5rem;
}

.page-hero.compact {
  padding-bottom: 2rem;
}

.page-hero h1 {
  max-width: 64rem;
  margin-top: 1rem;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 40rem;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.page-section {
  border-top: 1px solid rgba(228, 223, 212, 0.72);
  padding-block: 5rem;
}

.page-grid {
  display: grid;
  gap: 2.5rem;
}

.body-copy {
  display: grid;
  gap: 1.5rem;
  color: rgba(41, 37, 31, 0.86);
  font-size: 1.125rem;
  line-height: 1.75;
}

.large-serif {
  max-width: 68rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.22;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(228, 223, 212, 0.72);
  padding-bottom: 1.5rem;
}

.filter-row button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.filter-row button.is-active {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--background);
}

.archive-grid {
  display: grid;
  gap: 4.5rem 1.5rem;
}

.archive-card figure,
.team-card figure {
  aspect-ratio: 16 / 11;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(228, 223, 212, 0.78);
  border-radius: 1.1rem;
  background: rgba(239, 237, 230, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.archive-card img,
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1200ms ease;
}

.archive-card a:hover img {
  transform: scale(1.025);
}

.archive-card h2 {
  font-size: 1.65rem;
}

.archive-card .card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.archive-card p,
.team-card p,
.value-card p {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.65;
}

.team-card figure {
  aspect-ratio: 4 / 5;
}

.team-card img {
  object-fit: cover;
}

.project-hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  margin-top: -4.25rem;
}

.project-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
}

.project-hero-content {
  position: relative;
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 7rem;
  padding-bottom: 5rem;
  color: var(--background);
}

.project-hero h1 {
  max-width: 58rem;
  margin-top: 1rem;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
}

.project-story {
  display: grid;
  gap: 3rem;
}

.project-story dl {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.project-story dt {
  color: var(--muted-foreground);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-story dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.project-story article p:not(.eyebrow) {
  max-width: 48rem;
  color: var(--muted-foreground);
  font-size: 1.1rem;
  line-height: 1.75;
}

.project-story article p + p {
  margin-top: 1.25rem;
}

.project-media {
  display: grid;
  gap: 2rem;
  padding-block: 2rem 7rem;
}

.project-media figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--muted);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-media h2 {
  max-width: 42rem;
  margin-top: 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.project-media p:not(.eyebrow) {
  max-width: 35rem;
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.detail-row {
  display: grid;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(228, 223, 212, 0.72);
  padding-block: 4rem;
  transition: background-color 500ms var(--ease-out), padding-left 500ms var(--ease-out);
}

.detail-row:hover {
  padding-left: 1rem;
  background: rgba(239, 237, 230, 0.3);
}

.detail-row > span,
.giant-step {
  color: var(--muted-foreground);
  font-family: var(--font-serif);
}

.detail-row h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1.08;
}

.detail-row p {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.detail-note .eyebrow {
  margin-bottom: 0.75rem;
}

.detail-note p {
  margin-top: 0;
  color: var(--foreground);
}

.detail-note .benefit-label {
  margin-top: 1.75rem;
}

.process-row {
  display: grid;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(228, 223, 212, 0.72);
  padding-block: 5rem;
  transition: background-color 500ms var(--ease-out), padding-left 500ms var(--ease-out);
}

.process-row:hover {
  padding-left: 1rem;
  background: rgba(239, 237, 230, 0.28);
}

.giant-step {
  font-size: clamp(4.5rem, 11vw, 6rem);
  line-height: 0.9;
}

.process-row h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
}

.process-row p {
  max-width: 40rem;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1.1rem;
  line-height: 1.75;
}

.team-grid,
.value-grid {
  display: grid;
  gap: 2.5rem;
}

.team-card h3,
.value-card h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.contact-layout {
  display: grid;
  gap: 4rem;
}

.contact-list {
  display: grid;
  gap: 2.5rem;
}

.contact-list .eyebrow {
  margin-bottom: 0.5rem;
}

.contact-list a,
.contact-list p:not(.eyebrow) {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 7vw, 1.75rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.form-stack {
  display: grid;
  gap: 1.5rem;
}

.form-stack label {
  display: block;
}

.form-stack .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}

.form-stack input,
.form-stack textarea,
.form-stack select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--foreground);
  font: inherit;
  outline: 0;
  padding: 0.85rem 0;
  transition: border-color 420ms var(--ease-out), background-color 420ms var(--ease-out), padding-left 420ms var(--ease-out);
}

.form-stack input:focus,
.form-stack textarea:focus,
.form-stack select:focus {
  border-color: var(--foreground);
  background: rgba(239, 237, 230, 0.28);
  padding-left: 0.75rem;
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.progress-row span:not(.eyebrow) {
  height: 1px;
  flex: 1;
  background: var(--border);
}

.progress-row span:first-child {
  background: var(--foreground);
}

.progress-row .eyebrow {
  margin-left: 1rem;
  white-space: nowrap;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.start-form h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.ghost-button {
  color: var(--ink-soft);
  cursor: default;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-bordered {
  border-top: 1px solid rgba(228, 223, 212, 0.72);
}

.section-heading {
  margin-bottom: 3.5rem;
}

.section-heading .eyebrow {
  margin-bottom: 0.75rem;
}

.section-heading h2,
.services-layout h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1.08;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.heading-link {
  display: none;
  margin-top: 0;
}

.project-grid {
  display: grid;
  gap: 4rem 1.5rem;
}

.project-card figure {
  aspect-ratio: 16 / 11;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(228, 223, 212, 0.8);
  border-radius: 1.1rem;
  background: rgba(239, 237, 230, 0.72);
  box-shadow: 0 24px 70px rgba(41, 37, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1200ms ease;
}

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

.project-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.project-meta h3 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.12;
}

.project-meta p {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.88rem;
}

.project-meta .eyebrow {
  flex: 0 0 auto;
}

.services-section {
  background: rgba(239, 237, 230, 0.58);
}

.services-layout {
  display: grid;
  gap: 2.5rem;
}

.services-layout > div .eyebrow {
  margin-bottom: 0.75rem;
}

.service-list {
  border-top: 1px solid var(--border);
}

.service-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: padding-left 500ms var(--ease-out), background-color 500ms var(--ease-out);
}

.service-list li:hover {
  padding-left: 0.85rem;
  background: rgba(251, 250, 246, 0.42);
}

.service-list > li > span,
.process-grid span {
  color: var(--muted-foreground);
  font-family: var(--font-serif);
}

.service-list h3 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.15;
}

.service-list p,
.process-grid p,
.footer-main li,
.footer-main p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-list p {
  max-width: 39rem;
  margin-top: 0.5rem;
}

.process-grid {
  display: grid;
  gap: 2.5rem;
}

.process-grid h3 {
  margin-top: 0.75rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.process-grid p {
  margin-top: 0.75rem;
}

.voices-section {
  background: var(--foreground);
  color: var(--background);
}

.voices-section .eyebrow {
  margin-bottom: 3rem;
}

.voice-grid {
  display: grid;
  gap: 3rem;
}

.voice-grid figure {
  margin: 0;
}

.voice-grid blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 1.95rem);
  line-height: 1.18;
}

.voice-grid figcaption {
  margin-top: 2rem;
  color: rgba(251, 250, 246, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-transform: uppercase;
}

.start-section {
  padding-block: 7rem;
  text-align: center;
}

.start-section h2 {
  max-width: 48rem;
  margin: 1.25rem auto 0;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.05;
}

.start-section .button {
  margin-top: 3rem;
  min-height: 58px;
  padding-inline: 2.25rem;
}

.site-footer {
  margin-top: 8rem;
  border-top: 1px solid rgba(228, 223, 212, 0.72);
  background: rgba(239, 237, 230, 0.58);
}

.footer-main {
  display: grid;
  gap: 3rem;
  padding-block: 5rem;
}

.footer-brand > a {
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1;
}

.footer-brand p {
  max-width: 25rem;
  margin-top: 1.5rem;
}

.footer-main .eyebrow {
  margin-bottom: 1rem;
}

.footer-main li + li {
  margin-top: 0.5rem;
}

.footer-main a:not(.text-link) {
  transition: color 160ms ease;
}

.footer-main a:not(.text-link):hover {
  color: var(--foreground);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(228, 223, 212, 0.72);
}

.footer-bottom .container-wide {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-block: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.78rem;
}

.manifesto-section {
  border-top: 1px solid rgba(228, 223, 212, 0.72);
}

.manifesto-section .eyebrow {
  margin-bottom: 3rem;
}

.manifesto-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.manifesto-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-block: 2rem;
  border-bottom: 1px solid var(--border);
}

.manifesto-list li > span {
  color: var(--muted-foreground);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.manifesto-list p {
  max-width: 46rem;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  line-height: 1.22;
}

.manifesto-list p b {
  color: var(--foreground);
  font-weight: inherit;
  font-style: italic;
}

.card-specs {
  margin-top: 0.4rem;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.prose-link {
  color: var(--foreground);
  border-bottom: 1px solid rgba(41, 37, 31, 0.35);
  transition: border-color 360ms var(--ease-out);
}

.prose-link:hover {
  border-color: var(--foreground);
}

.deliverable {
  max-width: 40rem;
  margin-top: 1.25rem !important;
  color: var(--foreground) !important;
}

.deliverable b {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted-foreground);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.archive-card--wide a {
  display: grid;
  gap: 1.25rem 2.5rem;
}

.project-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-block: 2.5rem;
}

.project-nav .eyebrow {
  margin-bottom: 0.4rem;
}

.project-nav .next-title {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  transition: color 400ms var(--ease-out);
}

.project-nav .next-title:hover {
  color: var(--muted-foreground);
}

.project-credits {
  margin-top: 2.5rem;
  color: var(--muted-foreground);
  font-size: 0.86rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .archive-card--wide {
    grid-column: span 2;
  }

  .archive-card--wide figure {
    aspect-ratio: 16 / 9;
  }

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

/* Scroll reveal — fast, GPU-friendly (transform/opacity + clip-path) */
.r-rise {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--rev-ease), transform 0.6s var(--rev-ease);
  transition-delay: calc(var(--ri, 0) * 55ms);
  will-change: opacity, transform;
}

.r-rise.is-in {
  opacity: 1;
  transform: none;
}

.r-wipe {
  clip-path: inset(0 102% 0 0);
  -webkit-clip-path: inset(0 102% 0 0);
  transition: clip-path 0.7s var(--rev-ease), -webkit-clip-path 0.7s var(--rev-ease);
  transition-delay: calc(var(--ri, 0) * 55ms);
  will-change: clip-path;
}

.r-wipe.is-in {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .container-wide {
    padding-inline: 2.5rem;
  }

  .header-inner {
    min-height: 5rem;
  }

  .brand {
    font-size: 1.65rem;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }

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

  .hero-content {
    padding-bottom: 6rem;
  }

  .intro-section {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding-block: 9rem;
  }

  .intro-section > .eyebrow {
    grid-column: span 3;
  }

  .intro-copy {
    grid-column: span 9;
  }

  .section {
    padding-block: 8rem;
  }

  .page-hero {
    padding-block: 9rem 6rem;
  }

  .page-section {
    padding-block: 7rem;
  }

  .page-grid,
  .detail-row,
  .process-row,
  .contact-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .page-grid > .eyebrow {
    grid-column: span 3;
  }

  .page-grid > :not(.eyebrow) {
    grid-column: span 9;
  }

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

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

  .project-story aside {
    grid-column: span 4;
  }

  .project-story article {
    grid-column: span 8;
  }

  .project-media {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
  }

  .project-media figure {
    grid-column: span 8;
  }

  .project-media > div {
    grid-column: span 4;
  }

  .detail-row > span {
    grid-column: span 2;
  }

  .detail-row > div:first-of-type {
    grid-column: span 6;
  }

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

  .giant-step {
    grid-column: span 3;
  }

  .process-row > div {
    grid-column: 5 / span 7;
  }

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

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

  .contact-layout .form-stack {
    grid-column: span 7;
  }

  .start-form {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .start-form > div {
    grid-column: 3 / span 8;
  }

  .heading-link {
    display: inline-flex;
  }

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

  .project-card.staggered {
    margin-top: 6rem;
  }

  .services-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .services-layout > div {
    grid-column: span 4;
  }

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

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

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

  .start-section {
    padding-block: 10rem;
  }

  .footer-main {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

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

  .footer-main > div:nth-child(2) {
    grid-column: span 3;
  }

  .footer-main > div:nth-child(3) {
    grid-column: span 4;
  }

  .footer-bottom .container-wide {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .container-wide {
    padding-inline: 4rem;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: clamp(2.85rem, 12vw, 4.2rem);
  }

  .hero-content {
    padding-top: 8.75rem;
    padding-bottom: 2rem;
  }

  .split-heading {
    align-items: flex-start;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .r-rise,
  .r-wipe {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
