@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap");

:root {
  --ink: #101010;
  --muted: #696969;
  --paper: #f6f3ee;
  --soft: #e7e1d6;
  --line: #d5cec2;
  --accent: #bf3b2f;
  --green: #193d35;
  --white: #fffaf2;
  --spot-x: 50vw;
  --spot-y: 50vh;
  --font-body: "Space Mono", monospace;
  --font-display: "Space Mono", monospace;
  --font-wide: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(191, 59, 47, 0.16), transparent 25rem),
    linear-gradient(90deg, rgba(16, 16, 16, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 16, 16, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 64px 64px, 64px 64px, auto;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(246, 243, 238, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(16, 16, 16, 0.12);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark span {
  font-family: var(--font-wide);
  font-size: 24px;
}

.brand-mark small {
  font-size: 12px;
  color: var(--muted);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  min-height: 100vh;
  padding: clamp(90px, 12vh, 140px) clamp(20px, 7vw, 100px) clamp(34px, 8vh, 90px);
  color: var(--white);
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(191, 59, 47, 0.28), transparent 24rem),
    rgba(16, 16, 16, 0.96);
  backdrop-filter: blur(22px);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  position: relative;
  padding: 4px 0;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease, color 180ms ease;
}

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

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

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

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

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

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  position: relative;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 999px;
  background-color: rgba(255, 250, 242, 0.72);
  background-image: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 2px;
  box-shadow: 0 12px 34px rgba(16, 16, 16, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, background-color 180ms ease, background-size 180ms ease, border-color 180ms ease;
}

.nav-toggle:hover {
  transform: translateY(-2px) rotate(6deg);
  background-color: var(--ink);
  background-image: linear-gradient(var(--white), var(--white));
  border-color: var(--ink);
}

.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: translateX(-50%) rotate(0);
  transition: top 180ms ease, bottom 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav-toggle::before {
  top: 21px;
}

.nav-toggle::after {
  bottom: 21px;
}

.nav-toggle:hover::before,
.nav-toggle:hover::after,
.nav-toggle.is-open::before,
.nav-toggle.is-open::after {
  background: var(--white);
}

.nav-toggle.is-open {
  background-color: var(--accent);
  background-image: none;
  border-color: rgba(255, 250, 242, 0.2);
  transform: rotate(90deg);
}

.nav-toggle.is-open::before {
  top: 26px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.is-open::after {
  bottom: 26px;
  transform: translateX(-50%) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.home-hero picture,
.home-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 18%, rgba(191, 59, 47, 0.4), transparent 24rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.48));
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 250, 242, 0.48) 46% 47%, transparent 47% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 7px);
  transform: skewY(-7deg) translateY(-8%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1080px;
  min-height: calc(100vh - 76px);
  padding: 56px clamp(20px, 6vw, 90px) 112px;
}

.hero-stats {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(20px, 5vw, 72px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(94px, 1fr));
  gap: 1px;
  width: min(480px, calc(100% - 40px));
  background: rgba(255, 250, 242, 0.22);
  border: 1px solid rgba(255, 250, 242, 0.26);
  backdrop-filter: blur(20px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(16, 16, 16, 0.34);
}

.hero-stats strong {
  font-family: var(--font-display);
  font-weight: 400;
  display: block;
  font-size: 52px;
  line-height: 0.9;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #f1b0a8;
}

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

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  max-width: 980px;
  margin-bottom: 24px;
  font-size: 132px;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
}

.hero-copy p:not(.eyebrow),
.page-hero > p,
.split-hero > p {
  max-width: 650px;
  font-size: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.button.ghost {
  color: var(--white);
}

.section,
.page-hero {
  padding: clamp(70px, 10vw, 140px) clamp(20px, 6vw, 90px);
}

.signal-strip {
  overflow: hidden;
  padding: 18px 0;
  color: var(--white);
  background: var(--accent);
  border-top: 1px solid rgba(255, 250, 242, 0.28);
  border-bottom: 1px solid rgba(16, 16, 16, 0.2);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
}

.marquee-track span {
  font-family: var(--font-wide);
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 250, 242, 0.86);
}

.intro-grid,
.story-layout,
.split-hero,
.dark-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.lead-copy,
.stacked-copy {
  color: var(--muted);
  font-size: 20px;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.service-band article,
.principles article,
.belief-grid article {
  min-height: 320px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-band article:hover,
.principles article:hover,
.belief-grid article:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-10px);
}

.service-band article:hover p,
.principles article:hover p,
.belief-grid article:hover p {
  color: rgba(255, 250, 242, 0.7);
}

.service-band span,
.belief-grid span,
.service-list span,
.work-row span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-band p,
.principles p,
.belief-grid p,
.process-grid p,
.work-row p,
.brief-box li {
  color: var(--muted);
}

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

.section-heading h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.section-heading a {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--accent);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.project-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--ink);
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.project-card::before,
.work-row::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 250, 242, 0.32), transparent 18rem);
  transition: opacity 180ms ease;
}

.project-card:hover::before,
.work-row:hover::before {
  opacity: 1;
}

.project-card.large {
  grid-row: span 2;
  min-height: 680px;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 360ms ease, opacity 360ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
  opacity: 0.72;
}

.project-card div {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.project-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
}

.dark-cta {
  color: var(--white);
  background: var(--green);
}

.dark-cta .section-kicker {
  color: #f1b0a8;
}

.dark-cta p {
  color: rgba(255, 250, 242, 0.78);
  font-size: 22px;
}

.page-hero {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 20%, rgba(191, 59, 47, 0.2), transparent 22rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.78), rgba(231, 225, 214, 0.62));
}

.page-hero h1 {
  max-width: 1120px;
  color: var(--ink);
}

.split-hero {
  display: grid;
}

.image-feature {
  padding: 0 clamp(20px, 6vw, 90px);
}

.image-feature img {
  max-height: 640px;
  object-fit: cover;
}

.metrics,
.principles,
.belief-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics div,
.process-grid div {
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  transition: transform 220ms ease, background 220ms ease;
}

.metrics div:hover,
.process-grid div:hover {
  background: #fff;
  transform: translateY(-8px);
}

.metrics strong {
  font-family: var(--font-display);
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  font-size: 78px;
  line-height: 1;
}

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

.principles {
  padding-top: 0;
}

.service-list {
  display: grid;
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: clamp(34px, 5vw, 68px);
  background: var(--white);
  transition: transform 220ms ease, background 220ms ease;
}

.service-list article:hover {
  background: #fff;
  transform: translateX(12px);
}

.service-list h2 {
  margin-bottom: 16px;
  font-size: 54px;
}

.process {
  background: var(--soft);
}

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

.process-grid strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
}

.belief-hero {
  background: var(--green);
}

.belief-hero h1,
.belief-hero p {
  color: var(--white);
}

.belief-hero .eyebrow {
  color: #f1b0a8;
}

.manifesto {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  font-size: 38px;
  line-height: 1.18;
}

.belief-grid {
  padding-top: 0;
  grid-template-columns: repeat(3, 1fr);
}

.work-list {
  padding: 0 clamp(20px, 6vw, 90px) clamp(70px, 10vw, 140px);
}

.featured-work {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 20px;
  padding: clamp(24px, 5vw, 80px) clamp(20px, 6vw, 90px) 20px;
}

.featured-case,
.portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 620px;
  color: var(--white);
  background: var(--ink);
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.featured-case::before,
.portfolio-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 250, 242, 0.32), transparent 18rem);
  transition: opacity 180ms ease;
}

.featured-case:hover::before,
.portfolio-card:hover::before {
  opacity: 1;
}

.featured-case img,
.portfolio-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 520ms ease, opacity 360ms ease, filter 360ms ease;
}

.featured-case:hover img,
.portfolio-card:hover img {
  transform: scale(1.055);
  opacity: 0.7;
  filter: saturate(1.1) contrast(1.02);
}

.featured-case div,
.portfolio-card div {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.featured-case span,
.portfolio-card span {
  display: block;
  margin-bottom: 14px;
  color: #f1b0a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-case h2,
.portfolio-card h2 {
  max-width: 860px;
  margin-bottom: 14px;
  color: var(--white);
}

.featured-case p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 420px;
  gap: 20px;
  padding: 20px clamp(20px, 6vw, 90px) clamp(70px, 10vw, 140px);
}

.portfolio-card {
  min-height: auto;
}

.portfolio-card.wide {
  grid-column: span 2;
}

.portfolio-card.tall {
  grid-row: span 2;
}

.portfolio-card h2 {
  font-size: 38px;
}

.work-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(36px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line);
  transform-style: preserve-3d;
  transition: transform 180ms ease, background 220ms ease, padding-inline 220ms ease;
  will-change: transform;
}

.work-row:hover {
  padding-inline: clamp(0px, 2vw, 28px);
  background: rgba(255, 250, 242, 0.54);
}

.work-row img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.06);
  transition: filter 220ms ease, transform 220ms ease;
}

.work-row:hover img {
  filter: saturate(1.12) contrast(1.02);
  transform: scale(1.015);
}

.work-row h2 {
  margin-bottom: 16px;
}

.contact-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  min-height: calc(100vh - 76px);
  padding: clamp(36px, 6vw, 90px);
}

.contact-form-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(191, 59, 47, 0.18), transparent 26rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.86), rgba(231, 225, 214, 0.72));
}

.contact-hero img {
  height: min(68vh, 720px);
  object-fit: cover;
}

.contact-hero h1 {
  color: var(--ink);
}

.brief-box {
  max-width: 1040px;
}

.brief-box h2 {
  margin-bottom: 24px;
}

.brief-box ul {
  margin: 0;
  padding-left: 22px;
  font-size: 20px;
}

.brief-box li + li {
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 52px);
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(16, 16, 16, 0.12);
  box-shadow: 0 30px 90px rgba(16, 16, 16, 0.12);
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(191, 59, 47, 0.12);
}

.form-submit {
  width: fit-content;
  margin-top: 8px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 6vw, 90px);
  color: var(--white);
  background: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 250, 242, 0.68);
}

.site-footer a {
  font-weight: 700;
  color: #f1b0a8;
}

@media (max-width: 900px) {
  .site-nav {
    padding: 110px 22px 34px;
  }

  .site-nav a {
    font-size: 52px;
  }

  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-copy p:not(.eyebrow),
  .page-hero > p,
  .split-hero > p {
    font-size: 20px;
  }

  .hero-stats strong,
  .project-card strong,
  .service-list h2,
  .manifesto {
    font-size: 32px;
  }

  .metrics strong,
  .marquee-track span {
    font-size: 48px;
  }

  .intro-grid,
  .story-layout,
  .split-hero,
  .dark-cta,
  .work-row,
  .contact-hero,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .service-band,
  .metrics,
  .principles,
  .belief-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .featured-work,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .featured-case,
  .featured-case.compact {
    min-height: 460px;
  }

  .portfolio-grid {
    grid-auto-rows: 360px;
  }

  .portfolio-card.wide,
  .portfolio-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .project-card,
  .project-card.large {
    min-height: 360px;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    margin: -96px 20px 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 18px;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }

  .contact-hero img {
    height: 46vh;
  }

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

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 22px;
  }
}

@media (max-width: 560px) {
  .brand-mark small {
    display: none;
  }

  .hero-copy {
    padding-bottom: 70px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy p:not(.eyebrow),
  .page-hero > p,
  .split-hero > p,
  .lead-copy,
  .stacked-copy,
  .brief-box ul {
    font-size: 18px;
  }

  .marquee-track span {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-band article,
  .principles article,
  .belief-grid article,
  .metrics div,
  .process-grid div,
  .service-list article {
    padding: 28px 22px;
  }
}

/* Current direction: quiet, editorial, no motion effects. */
html {
  scroll-behavior: auto;
}

*,
*::before,
*::after {
  animation: none !important;
  transition: none !important;
}

.nav-toggle {
  width: auto;
  min-width: 76px;
  height: 44px;
  padding: 0 18px;
  background-image: none;
  border-radius: 999px;
}

.nav-toggle::before,
.nav-toggle::after {
  display: none;
}

.menu-label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle:hover,
.nav-toggle.is-open {
  transform: none;
  background-color: var(--ink);
  border-color: var(--ink);
}

.nav-toggle:hover .menu-label,
.nav-toggle.is-open .menu-label {
  color: var(--white);
}

.home-hero img {
  transform: none;
}

.marquee-track {
  animation: none;
  transform: none;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.button:hover,
.service-band article:hover,
.principles article:hover,
.belief-grid article:hover,
.metrics div:hover,
.process-grid div:hover,
.service-list article:hover,
.project-card:hover,
.featured-case:hover,
.portfolio-card:hover,
.work-row:hover,
.work-row:hover img,
.project-card:hover img,
.featured-case:hover img,
.portfolio-card:hover img {
  transform: none;
}

.project-card:hover img,
.featured-case:hover img,
.portfolio-card:hover img {
  opacity: 0.86;
  filter: saturate(0.92) contrast(1.04);
}

.work-row:hover img {
  filter: saturate(0.85) contrast(1.06);
}

.dark-button {
  color: var(--ink);
  border-color: var(--ink);
}

@keyframes capability-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-track {
  animation: capability-marquee 22s linear infinite !important;
}

/* Work page editorial layout */
.work-hero {
  min-height: 72vh;
  background:
    linear-gradient(135deg, rgba(16, 16, 16, 0.96), rgba(25, 61, 53, 0.88)),
    var(--ink);
  color: var(--white);
}

.work-hero h1,
.work-hero p {
  color: var(--white);
}

.work-signature {
  padding: 0;
  background: var(--ink);
}

.signature-case {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.signature-case img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: contrast(1.05) saturate(0.75);
}

.signature-case::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 46%);
}

.signature-case div {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 1180px;
  padding: clamp(42px, 8vw, 120px) clamp(20px, 6vw, 90px);
}

.signature-case span,
.work-index span {
  display: block;
  margin-bottom: 18px;
  color: #f1b0a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-case h2 {
  max-width: 960px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 96px;
  line-height: 0.94;
}

.signature-case p {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 22px;
}

.signature-case strong {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 6px;
  color: var(--white);
  border-bottom: 2px solid currentColor;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-index {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 90px);
  background: var(--paper);
}

.work-index h2 {
  margin-bottom: 0;
}

.work-index p {
  color: var(--muted);
  font-size: 20px;
}

.work-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 360px;
  padding-top: 0;
}

.work-gallery .portfolio-card.feature-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.work-gallery .portfolio-card:nth-child(4),
.work-gallery .portfolio-card:nth-child(8) {
  grid-column: span 2;
}

.work-gallery .portfolio-card h2 {
  font-size: 34px;
}

/* Larger text-only menu button */
.nav-toggle {
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.menu-label {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.nav-toggle:hover,
.nav-toggle.is-open {
  background: transparent;
}

.nav-toggle:hover .menu-label,
.nav-toggle.is-open .menu-label {
  color: var(--accent);
}

@media (max-width: 900px) {
  .signature-case {
    min-height: 72vh;
  }

  .signature-case h2 {
    font-size: 58px;
  }

  .work-index,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .work-gallery .portfolio-card.feature-wide,
  .work-gallery .portfolio-card:nth-child(4),
  .work-gallery .portfolio-card:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .menu-label {
    font-size: 20px;
  }

  .signature-case h2 {
    font-size: 42px;
  }
}
