:root {
  --ink: #171916;
  --ink-soft: #2a2e29;
  --paper: #f2efe6;
  --paper-deep: #e5e0d3;
  --white: #fffdf8;
  --copper: #b45828;
  --copper-dark: #8e3f1d;
  --olive: #65705d;
  --olive-dark: #3f493b;
  --line: #b9b4a9;
  --muted: #65675f;
  --shadow: 0 18px 50px rgba(23, 25, 22, 0.12);
  --max: 1180px;
  --display: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Arial, sans-serif;
  --body: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image: linear-gradient(rgba(23, 25, 22, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 25, 22, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #e88850;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.preview-bar {
  color: #f7f5ec;
  background: var(--olive-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-inner {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 2.1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.preview-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.preview-status::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #e88850;
  content: "";
}

.preview-note {
  color: #d8ddcf;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 230, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 5.35rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 20rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  flex: 0 0 2.65rem;
  width: 2.65rem;
  height: 2.65rem;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  inset: 0.52rem 0.62rem;
  border-left: 0.3rem solid var(--paper);
  border-top: 0.3rem solid var(--paper);
  transform: skewX(-18deg);
}

.brand-mark::after {
  right: -0.15rem;
  bottom: 0.28rem;
  width: 2.25rem;
  height: 0.34rem;
  background: var(--copper);
  transform: rotate(-38deg);
}

.brand-name {
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 1.15rem;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -0.35rem;
}

.menu-icon::after {
  position: absolute;
  top: 0.35rem;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  padding: 0.75rem 0;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--copper);
}

.site-nav .nav-cta {
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: transparent;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  color: var(--copper-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.15rem;
  height: 3px;
  background: var(--copper);
  content: "";
}

.eyebrow.light {
  color: #efaa80;
}

.eyebrow.light::before {
  background: #efaa80;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 1.45rem;
  font-size: clamp(3rem, 7vw, 6.55rem);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

p {
  margin-top: 0;
}

.lead {
  max-width: 43rem;
  color: #41443e;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.lead.light {
  color: #d7d8d2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

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

.button.primary:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
}

.button.secondary {
  background: transparent;
}

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

.button.light {
  color: var(--white);
  border-color: #8a8d85;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(0.3rem);
}

.hero {
  position: relative;
  padding: clamp(3.8rem, 8vw, 7rem) 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(2.25rem, 6vw, 6.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3.5rem, 7vw, 6.2rem);
}

.hero-copy h1 {
  max-width: 10.4ch;
}

.hero-copy .lead {
  max-width: 39rem;
}

.hero-art {
  position: relative;
  align-self: end;
  min-width: 0;
}

.hero-art::before {
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  z-index: -1;
  border: 1px solid var(--line);
  content: "";
}

.hero-art img {
  width: 100%;
  aspect-ratio: 7 / 8;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.art-caption {
  position: absolute;
  right: -0.5rem;
  bottom: 1.5rem;
  max-width: 13.5rem;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.project-register {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--ink);
}

.register-grid {
  display: grid;
  grid-template-columns: 0.75fr repeat(3, 1fr);
}

.register-label,
.register-item {
  min-height: 8.2rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #464a43;
}

.register-label {
  color: var(--white);
  background: var(--copper);
}

.register-label strong,
.register-item strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.register-label span,
.register-item span {
  color: #b9bbb5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.register-label span {
  color: var(--white);
}

.section {
  padding: clamp(5.2rem, 10vw, 9rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.42fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.process-section .section-heading p {
  color: #b9bbb5;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #555950;
  border-bottom: 1px solid #555950;
}

.process-grid::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 66.666%;
  height: 7px;
  background: var(--copper);
  content: "";
}

.process-card {
  min-height: 24rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #555950;
}

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

.process-number {
  color: #757a71;
  font-family: var(--display);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}

.process-card h3 {
  margin-top: auto;
}

.process-card p {
  margin-bottom: 0;
  color: #c9cbc5;
  font-size: 0.94rem;
}

.process-link {
  margin-top: 2.4rem;
  text-align: right;
}

.process-link .text-link {
  color: #efaa80;
}

.operations-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.operations-plan {
  position: relative;
  min-height: 31rem;
  background: var(--olive-dark);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.operations-plan::before {
  position: absolute;
  inset: 2rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background-image: linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

.plan-block {
  position: absolute;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plan-block.active {
  top: 5rem;
  left: 3.5rem;
  width: 55%;
  height: 38%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.plan-block.work {
  right: 3.5rem;
  bottom: 4rem;
  width: 52%;
  height: 37%;
  background: var(--copper);
}

.plan-path {
  position: absolute;
  left: 12%;
  bottom: 17%;
  width: 55%;
  height: 3px;
  background: repeating-linear-gradient(90deg, #f7f1e7 0 10px, transparent 10px 18px);
  transform: rotate(-38deg);
  transform-origin: left center;
}

.operations-copy h2 {
  max-width: 11ch;
}

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

.principle-list li {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.principle-list span {
  color: var(--copper-dark);
  font-weight: 900;
}

.projects-section {
  background: var(--paper-deep);
}

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

.project-card {
  position: relative;
  grid-column: span 6;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.project-card:nth-child(3n + 1) {
  grid-column: span 7;
}

.project-card:nth-child(3n + 2) {
  grid-column: span 5;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 500ms ease, opacity 300ms ease;
}

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

.project-card-copy {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(1.15rem, 3vw, 2rem);
  background: linear-gradient(transparent, rgba(15, 16, 14, 0.92));
}

.project-card-copy span {
  display: block;
  margin-bottom: 0.4rem;
  color: #eeb18c;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card-copy h3 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
}

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

.project-grid.compact .project-card:nth-child(1) {
  grid-column: span 7;
}

.project-grid.compact .project-card:nth-child(2) {
  grid-column: span 5;
}

.project-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.team-teaser {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.team-intro {
  position: sticky;
  top: 9rem;
}

.team-intro h2 {
  max-width: 10ch;
}

.team-cards {
  border-top: 1px solid var(--ink);
}

.person-card {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.person-index {
  width: 5.5rem;
  height: 5.5rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--olive-dark);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.person-card:nth-child(2) .person-index {
  background: var(--copper);
}

.person-card h3 {
  margin-bottom: 0.45rem;
}

.person-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.person-meta {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
}

.faq-grid h2 {
  max-width: 8ch;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.45rem 3rem 1.45rem 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.15rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--copper-dark);
  border: 1px solid var(--line);
  content: "+";
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 45rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
}

.contact-band {
  color: var(--white);
  background: var(--ink);
}

.contact-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.contact-band h2 {
  max-width: 10ch;
}

.contact-band .lead {
  color: #c6c8c2;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #4f534c;
}

.contact-list li {
  border-bottom: 1px solid #4f534c;
}

.contact-list a,
.contact-list address {
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  color: var(--white);
  text-decoration: none;
  font-style: normal;
}

.contact-list a:hover strong {
  color: #efaa80;
}

.contact-list span {
  color: #9ea19a;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 0.92rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  color: #c4c6bf;
  background: #10110f;
  border-top: 1px solid #3b3e38;
}

.footer-grid {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 3rem;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand p {
  max-width: 28rem;
  margin: 1.2rem 0 0;
  color: #999d95;
  font-size: 0.86rem;
}

.footer-heading {
  display: block;
  margin-bottom: 0.8rem;
  color: #777b73;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

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

.footer-links a {
  color: #d2d4ce;
  text-decoration: none;
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: #efaa80;
}

.footer-bottom {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #343730;
  color: #858981;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: max(-1rem, calc((100vw - var(--max)) / 2));
  bottom: -0.3em;
  z-index: -1;
  color: rgba(23, 25, 22, 0.045);
  content: attr(data-page-number);
  font-family: var(--display);
  font-size: clamp(12rem, 30vw, 30rem);
  font-weight: 900;
  line-height: 0.65;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero .lead {
  max-width: 49rem;
}

.page-rule {
  width: min(var(--max), calc(100% - 2rem));
  height: 1px;
  margin: 0 auto;
  background: var(--line);
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.service-type {
  min-height: 22rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-type-number {
  color: var(--copper);
  font-family: var(--display);
  font-size: 3.7rem;
  font-weight: 900;
  line-height: 1;
}

.service-type h3 {
  margin-top: auto;
}

.service-type p {
  margin-bottom: 0;
  color: var(--muted);
}

.phase-list {
  counter-reset: phases;
  border-top: 1px solid var(--ink);
}

.phase-row {
  counter-increment: phases;
  padding: clamp(2rem, 5vw, 4.25rem) 0;
  display: grid;
  grid-template-columns: 0.2fr 0.55fr 1fr;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.phase-row::before {
  color: var(--copper-dark);
  content: "0" counter(phases);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
}

.phase-row h3 {
  margin-bottom: 0;
}

.phase-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.coordination-callout {
  position: relative;
  padding: clamp(2.2rem, 6vw, 5.5rem);
  color: var(--white);
  background: var(--olive-dark);
  overflow: hidden;
}

.coordination-callout::after {
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  border: 5rem solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.coordination-callout h2,
.coordination-callout p,
.coordination-callout .button-row {
  position: relative;
  z-index: 1;
}

.coordination-callout h2 {
  max-width: 14ch;
}

.coordination-callout p {
  max-width: 48rem;
  color: #e2e6dc;
}

.portfolio-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.portfolio-note {
  padding: 1.5rem;
  color: #42463f;
  background: var(--white);
  border-left: 5px solid var(--copper);
}

.portfolio-note strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-note p {
  margin-bottom: 0;
}

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

.project-grid.full .project-card:nth-child(4n + 1),
.project-grid.full .project-card:nth-child(4n + 4) {
  grid-column: span 7;
}

.project-grid.full .project-card:nth-child(4n + 2),
.project-grid.full .project-card:nth-child(4n + 3) {
  grid-column: span 5;
}

.project-grid.full .project-card img {
  aspect-ratio: 4 / 3;
}

.profile-list {
  display: grid;
  gap: 1.25rem;
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  min-height: 31rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.profile-visual {
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--olive-dark);
  overflow: hidden;
}

.profile-panel:nth-child(2) .profile-visual {
  background: var(--copper-dark);
}

.profile-visual::before,
.profile-visual::after {
  position: absolute;
  content: "";
}

.profile-visual::before {
  inset: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-visual::after {
  right: -25%;
  bottom: -15%;
  width: 90%;
  aspect-ratio: 1;
  border: 3rem solid rgba(255, 255, 255, 0.08);
  transform: rotate(25deg);
}

.profile-initials {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.profile-label {
  position: relative;
  z-index: 1;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.profile-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.profile-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

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

.profile-detail {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.profile-detail strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--copper-dark);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.expertise-item {
  min-height: 10rem;
  padding: 1.3rem;
  display: flex;
  align-items: flex-end;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: start;
}

.contact-panel {
  padding: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  background: var(--ink);
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.contact-panel .contact-list {
  margin-top: 2rem;
}

.intake-panel {
  position: relative;
}

.intake-panel h2 {
  max-width: 11ch;
}

.concept-notice {
  margin: 0 0 2rem;
  padding: 1rem 1.15rem;
  color: #3f463c;
  background: #dfe5d9;
  border-left: 4px solid var(--olive-dark);
  font-size: 0.87rem;
}

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

.field {
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 1rem;
  color: #62655f;
  background: var(--white);
  border: 1px solid #989a93;
  border-radius: 0;
  opacity: 1;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:disabled,
.field select:disabled,
.field textarea:disabled {
  color: #62655f;
  background: #ebe8df;
  -webkit-text-fill-color: #62655f;
  opacity: 1;
}

.intake-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disabled-button {
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  color: #6d6f69;
  background: #d5d2c9;
  border: 1px solid #b8b5ac;
  cursor: not-allowed;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intake-actions small {
  color: var(--muted);
}

@media (max-width: 980px) {
  .header-inner {
    position: relative;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 0 1rem;
    display: grid;
    gap: 0;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 20px 32px rgba(23, 25, 22, 0.13);
    max-height: 0;
    visibility: hidden;
    transition: max-height 250ms ease, visibility 250ms ease, padding 250ms ease;
  }

  .js .site-nav.is-open {
    max-height: 32rem;
    padding-top: 0.65rem;
    padding-bottom: 1rem;
    visibility: visible;
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 0.55rem;
    padding-inline: 1rem;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 8.3vw, 5.3rem);
  }

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

  .register-label {
    grid-column: 1 / -1;
    min-height: 4.5rem;
    flex-direction: row;
    align-items: center;
  }

  .operations-grid,
  .team-grid,
  .faq-grid,
  .contact-band-grid,
  .portfolio-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .team-intro {
    position: static;
  }

  .profile-panel {
    grid-template-columns: 0.6fr 1.4fr;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 6rem;
  }

  .preview-inner {
    min-height: 2.6rem;
    justify-content: center;
    text-align: center;
  }

  .preview-note {
    display: none;
  }

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

  .brand-name {
    max-width: 13rem;
    font-size: 0.79rem;
  }

  .brand-mark {
    flex-basis: 2.35rem;
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    padding-top: 3.3rem;
  }

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

  .hero-copy {
    padding-bottom: 1.5rem;
  }

  .hero-copy h1 {
    max-width: 9.5ch;
    font-size: clamp(3.15rem, 14vw, 5rem);
  }

  .hero-art {
    width: min(100%, 34rem);
    margin-left: auto;
  }

  .hero-art img {
    aspect-ratio: 5 / 4;
  }

  .art-caption {
    right: 0;
  }

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

  .register-label,
  .register-item {
    min-height: 5.5rem;
    padding: 1.1rem 1rem;
    border-right: 0;
    border-bottom: 1px solid #464a43;
  }

  .register-label {
    grid-column: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .section-heading h2 {
    max-width: 10ch;
  }

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

  .process-grid::before {
    width: 70%;
  }

  .process-card {
    min-height: auto;
    padding: 1.6rem 0;
    display: grid;
    grid-template-columns: 4.8rem 1fr;
    column-gap: 1rem;
    border-right: 0;
    border-bottom: 1px solid #555950;
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .process-number {
    grid-row: span 2;
    font-size: 3.6rem;
  }

  .process-card h3 {
    margin: 0 0 0.5rem;
  }

  .operations-plan {
    min-height: 23rem;
  }

  .project-card,
  .project-card:nth-child(n),
  .project-grid.compact .project-card,
  .project-grid.compact .project-card:nth-child(n),
  .project-grid.full .project-card,
  .project-grid.full .project-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .person-card {
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
  }

  .person-index {
    width: 4rem;
    height: 4rem;
    font-size: 1.2rem;
  }

  .contact-band-grid {
    align-items: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding-top: 3.8rem;
  }

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

  .service-type {
    min-height: 16rem;
  }

  .phase-row {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .phase-row p {
    grid-column: 2;
  }

  .profile-panel {
    grid-template-columns: 1fr;
  }

  .profile-visual {
    min-height: 16rem;
  }

  .profile-initials {
    font-size: 6rem;
  }

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

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

  .field.full {
    grid-column: auto;
  }

  .intake-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .container,
  .narrow,
  .header-inner,
  .preview-inner,
  .page-rule {
    width: min(100% - 1.25rem, var(--max));
  }

  .brand {
    gap: 0.55rem;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .brand-name {
    max-width: 9rem;
    font-size: 0.67rem;
  }

  .menu-toggle {
    padding-inline: 0.65rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .operations-plan {
    min-height: 20rem;
  }

  .plan-block.active {
    top: 3.8rem;
    left: 2.2rem;
  }

  .plan-block.work {
    right: 2rem;
    bottom: 3.2rem;
  }

  .project-card img,
  .project-grid.full .project-card img {
    aspect-ratio: 4 / 3;
  }

  .project-card-copy h3 {
    font-size: 1.55rem;
  }

  .contact-list a,
  .contact-list address {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .footer-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media print {
  .preview-bar,
  .menu-toggle,
  .site-nav,
  .button-row,
  .site-footer {
    display: none;
  }

  .site-header {
    position: static;
  }

  body {
    color: #000;
    background: #fff;
  }
}
