:root {
  --ink: #07131d;
  --ink-2: #10212c;
  --ink-3: #18303d;
  --bone: #f2efe7;
  --paper: #fbfaf7;
  --copper: #87512b;
  --copper-light: #e0b57f;
  --sage: #748078;
  --muted: #58656c;
  --line: rgba(7, 19, 29, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --danger: #9c332e;
  --success: #286544;
  --shell: 1360px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section: clamp(4.75rem, 9vw, 9rem);
  --header-h: 5.25rem;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: clip;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  color: var(--white);
  background: var(--copper);
}

:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-150%);
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--copper);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section);
}

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

.section--bone {
  background: var(--bone);
}

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

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

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  width: 2rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--plain::before {
  display: none;
}

.section-index {
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.display-title {
  max-width: 12ch;
  margin-top: 1.2rem;
  font-family: var(--display);
  font-size: clamp(3.15rem, 6.4vw, 6.75rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.section-title {
  max-width: 15ch;
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.7vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-lead {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.section--ink .section-lead,
.section--ink-soft .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

:where(.section--ink, .section--ink-soft, .home-hero, .page-hero, .site-footer, .featured-project, .project-card, .contact-aside, .form-aside, .presentation-copy, .location-copy) :is(.section-label, .eyebrow) {
  color: var(--copper-light);
}

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

.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease), transform 260ms var(--ease);
}

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

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

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

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

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

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

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.44);
}

.button--outline-light:hover {
  border-color: var(--copper-light);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(7, 19, 29, 0.42);
}

.button--outline:hover {
  border-color: var(--copper);
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--copper);
  font-size: 1.1rem;
  transition: transform 240ms var(--ease);
}

.text-link:hover span {
  transform: translate(0.2rem, -0.2rem);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  height: var(--header-h);
  color: var(--white);
  background: rgba(7, 19, 29, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 10rem 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  width: 7.2rem;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 3.25rem;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.25rem);
}

.desktop-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper-light);
  transition: transform 260ms var(--ease);
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 3rem;
  padding-inline: 1.15rem;
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: none;
  place-items: center;
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 1.25rem;
  height: 1px;
  background: var(--white);
  transition: transform 260ms var(--ease), top 260ms var(--ease);
}

.menu-toggle span:first-child {
  top: 1.25rem;
}

.menu-toggle span:last-child {
  top: 1.7rem;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 1.48rem;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 1.48rem;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 85;
  inset: var(--header-h) 0 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  color: var(--white);
  background: var(--ink);
  transition: visibility 0s linear 420ms, opacity 300ms ease;
}

.mobile-nav[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-nav__panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: clamp(2rem, 7vh, 4rem) var(--gutter) 2rem;
  transform: translateY(-1rem);
  opacity: 0;
  transition: transform 420ms var(--ease), opacity 300ms ease;
}

.mobile-nav[aria-hidden="false"] .mobile-nav__panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav__links {
  display: grid;
}

.mobile-nav__links a {
  min-height: 4.3rem;
  display: grid;
  grid-template-columns: 2.25rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1;
}

.mobile-nav__links small {
  color: var(--copper-light);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mobile-nav__links i {
  color: var(--copper-light);
  font-family: var(--sans);
  font-size: 1rem;
  font-style: normal;
}

.mobile-nav__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: auto;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
}

.mobile-nav__contact a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

/* Heroes */
.home-hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero__media,
.page-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.home-hero__media picture,
.home-hero__media img,
.page-hero__media picture,
.page-hero__media img {
  width: 100%;
  height: 100%;
}

.home-hero__media img,
.page-hero__media img {
  object-fit: cover;
}

.home-hero::after,
.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 12, 18, 0.93) 0%, rgba(4, 12, 18, 0.68) 45%, rgba(4, 12, 18, 0.18) 76%), linear-gradient(0deg, rgba(4, 12, 18, 0.56), transparent 48%);
}

.home-hero__inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(16rem, 4fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(5rem, 12vh, 8rem) clamp(2rem, 5vh, 4rem);
}

.home-hero__copy {
  min-width: 0;
  align-self: center;
}

.hero-brand-lockup {
  width: min(100%, 46rem);
  display: grid;
  grid-template-columns: clamp(8.75rem, 12vw, 10.75rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-brand-lockup__mark {
  display: grid;
  place-items: center;
}

.hero-brand-lockup__mark picture,
.hero-brand-lockup__mark img {
  width: 100%;
}

.hero-brand-lockup__mark img {
  filter: drop-shadow(0 0.75rem 1.5rem rgba(0, 0, 0, 0.34));
}

.home-hero .hero-brand-lockup__name {
  min-width: 0;
  max-width: none;
  margin-top: 0;
  padding: 0.4rem 0 0.45rem clamp(1.4rem, 2.5vw, 2.25rem);
  border-left: 1px solid rgba(224, 181, 127, 0.6);
  line-height: 1;
}

.hero-brand-lockup__name span {
  display: block;
}

.hero-brand-lockup__primary {
  font-family: var(--display);
  font-size: clamp(2.35rem, 3.6vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.9;
  white-space: nowrap;
}

.hero-brand-lockup__secondary {
  margin-top: 0.9rem;
  color: var(--copper-light);
  font-family: var(--sans);
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-brand-lockup__secondary i {
  margin-inline: 0.35em;
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.home-hero h1 {
  max-width: 10ch;
  margin-top: 1.15rem;
  font-family: var(--display);
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.86;
}

.home-hero h1 em {
  color: var(--copper-light);
  font-weight: 500;
}

.home-hero__copy > p {
  max-width: 39rem;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
}

.hero-facts {
  align-self: end;
  border-top: 1px solid var(--line-light);
}

.hero-facts div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-light);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts dd {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}

.page-hero {
  min-height: clamp(32rem, 66svh, 49rem);
  display: grid;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero--compact {
  min-height: clamp(27rem, 52svh, 39rem);
}

.page-hero__inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(15rem, 4fr);
  align-items: end;
  gap: 3rem;
  padding-block: clamp(4rem, 10vh, 7rem) clamp(2.5rem, 6vh, 4rem);
}

.page-hero__copy h1 {
  max-width: 11ch;
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(3.7rem, 7vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.page-hero__copy > p {
  max-width: 43rem;
  margin-top: 1.45rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.page-hero__aside {
  align-self: end;
  padding: 1.4rem 0 0 1.5rem;
  border-top: 1px solid var(--copper);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.page-hero--plain {
  min-height: auto;
  color: var(--white);
  background: var(--ink);
}

.page-hero--plain::after {
  display: none;
}

.page-hero--plain .page-hero__inner {
  min-height: auto;
  padding-block: clamp(5rem, 10vw, 8rem);
}

/* Home / editorial sections */
.manifesto-grid {
  display: grid;
  grid-template-columns: 3fr 5fr 3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.manifesto-grid .section-title {
  margin-top: 0;
}

.manifesto-copy {
  display: grid;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.manifesto-note {
  padding-left: 1.25rem;
  border-left: 1px solid var(--copper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.15;
}

.approach-list {
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--line-light);
}

.approach-item {
  display: grid;
  grid-template-columns: 5rem minmax(13rem, 4fr) minmax(16rem, 5fr);
  gap: 2rem;
  align-items: center;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line-light);
}

.approach-item span {
  color: var(--copper-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.approach-item h3 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  font-weight: 500;
  line-height: 1;
}

.approach-item p {
  color: rgba(255, 255, 255, 0.62);
}

.founder-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-strip article {
  min-width: 0;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.founder-strip article:last-child {
  border-right: 0;
}

.founder-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bone);
}

.founder-strip h3 {
  margin-top: 1.25rem;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}

.founder-strip p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(22rem, 5fr);
  min-height: 45rem;
  background: var(--ink-2);
}

.featured-project__media {
  min-height: 35rem;
  overflow: hidden;
}

.featured-project__media picture,
.featured-project__media img {
  width: 100%;
  height: 100%;
}

.featured-project__media img {
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.featured-project:hover .featured-project__media img {
  transform: scale(1.025);
}

.featured-project__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
}

.featured-project__copy h2 {
  max-width: 8ch;
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 500;
  line-height: 0.92;
}

.featured-project__copy > p {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.mini-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.25rem;
  border-top: 1px solid var(--line-light);
}

.mini-facts div {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-light);
}

.mini-facts div:nth-child(odd) {
  padding-right: 1rem;
  border-right: 1px solid var(--line-light);
}

.mini-facts div:nth-child(even) {
  padding-left: 1rem;
}

.mini-facts dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mini-facts dd {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: 1.55rem;
}

.service-ledger {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.service-ledger article,
.service-ledger a {
  display: grid;
  grid-template-columns: 4rem minmax(14rem, 4fr) minmax(18rem, 5fr) 3rem;
  gap: 1.5rem;
  align-items: center;
  min-height: 8rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.service-ledger .number {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-ledger h3 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
  font-weight: 500;
  line-height: 1.05;
}

.service-ledger p {
  color: var(--muted);
}

.service-ledger .arrow {
  color: var(--copper);
  font-size: 1.4rem;
  transition: transform 260ms var(--ease);
}

.service-ledger a:hover .arrow {
  transform: translate(0.2rem, -0.2rem);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 8fr) auto;
  gap: 2rem;
  align-items: end;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background: var(--ink);
}

.cta-band h2 {
  max-width: 15ch;
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.96;
}

/* About */
.story-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 4fr) minmax(0, 7fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.story-grid__copy {
  display: grid;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-grid__copy p:first-child {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.16;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.mission-grid article {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.mission-grid article:first-child {
  border-right: 1px solid var(--line-light);
}

.mission-grid h2 {
  margin-top: 1.25rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 0.98;
}

.mission-grid p {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles-grid article {
  min-width: 0;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.principles-grid article:last-child {
  border-right: 0;
}

.principles-grid span {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
}

.principles-grid h3 {
  margin-top: 2rem;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
}

.principles-grid p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line-light);
}

.founder-grid article {
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--line-light);
}

.founder-grid article + article {
  padding-left: 2rem;
}

.founder-grid article:last-child {
  border-right: 0;
}

.founder-grid h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
}

.founder-grid p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.team-card {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.team-card picture,
.team-card img {
  width: 100%;
}

.team-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: var(--bone);
  filter: saturate(0.9);
}

.team-card h3 {
  margin-top: 1.4rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.team-card .role {
  min-height: 2.6rem;
  margin-top: 0.75rem;
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.team-card p:last-child {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Portfolio and project */
.portfolio-list {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(22rem, 5fr);
  color: var(--white);
  background: var(--ink-2);
}

.project-card__media {
  min-height: 42rem;
  overflow: hidden;
}

.project-card__media picture,
.project-card__media img {
  width: 100%;
  height: 100%;
}

.project-card__media img {
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

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

.project-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 5vw, 4.5rem);
}

.project-card__body h2 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.92;
}

.project-card__body > p {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.65);
}

.project-nav {
  position: sticky;
  z-index: 35;
  top: var(--header-h);
  overflow-x: auto;
  color: var(--white);
  background: var(--ink-2);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  scrollbar-width: none;
}

.project-nav::-webkit-scrollbar {
  display: none;
}

.project-nav ul {
  width: max-content;
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.project-nav a {
  min-width: 6.5rem;
  min-height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.2rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease;
}

.project-nav a:hover,
.project-nav a[aria-current="true"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.stat-ribbon div {
  padding: clamp(1.75rem, 4vw, 3.2rem) var(--gutter);
  border-right: 1px solid var(--line);
}

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

.stat-ribbon dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-ribbon dd {
  margin-top: 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.project-overview {
  display: grid;
  grid-template-columns: minmax(16rem, 4fr) minmax(0, 7fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.project-overview__copy {
  display: grid;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.project-overview__copy p:first-child {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.disclosure-note {
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  color: var(--ink);
  background: var(--bone);
  border-left: 3px solid var(--copper);
  font-size: 0.87rem;
}

.project-showcase {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.project-showcase picture,
.project-showcase img {
  width: 100%;
}

.project-showcase img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(20rem, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

.location-media {
  min-height: 34rem;
}

.location-media picture,
.location-media img {
  width: 100%;
  height: 100%;
}

.location-media img {
  object-fit: cover;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-copy h2 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.96;
}

.location-copy > p {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.64);
}

.location-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.25rem;
  border-top: 1px solid var(--line-light);
}

.location-facts div {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.location-facts div:nth-child(odd) {
  padding-right: 1rem;
  border-right: 1px solid var(--line-light);
}

.location-facts div:nth-child(even) {
  padding-left: 1rem;
}

.location-facts dt {
  color: var(--copper-light);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
}

.location-facts dd {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 4fr) minmax(0, 7fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.spec-list div {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-list div:nth-child(odd) {
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
}

.spec-list div:nth-child(even) {
  padding-left: 1.5rem;
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-list dd {
  margin-top: 0.4rem;
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.2;
}

/* Gallery */
.gallery-stage {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.gallery-main {
  width: 100%;
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink-2);
  cursor: zoom-in;
}

.gallery-main picture,
.gallery-main img {
  width: 100%;
}

.gallery-main img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-main__meta {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: rgba(7, 19, 29, 0.88);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gallery-toolbar {
  display: grid;
  grid-template-columns: 3.25rem 1fr 3.25rem;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.gallery-control,
.dialog-control {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.35rem;
}

.gallery-thumbs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--copper) transparent;
}

.gallery-thumb {
  width: 7.5rem;
  min-width: 7.5rem;
  height: 4.5rem;
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: var(--bone);
  cursor: pointer;
  scroll-snap-align: start;
}

.gallery-thumb[aria-current="true"] {
  border-color: var(--copper);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-dialog,
.presentation-dialog,
.legal-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: rgba(4, 12, 18, 0.97);
  border: 0;
}

.media-dialog::backdrop,
.presentation-dialog::backdrop,
.legal-dialog::backdrop {
  background: rgba(4, 12, 18, 0.8);
}

.media-dialog__shell,
.presentation-dialog__shell {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 4rem 1fr 4rem;
  grid-template-rows: 4.5rem 1fr;
  gap: 1rem;
  padding: 1rem;
}

.dialog-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.dialog-head strong {
  margin-right: auto;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
}

.dialog-close {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-light);
  cursor: pointer;
  font-size: 1.5rem;
}

.dialog-figure {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
}

.dialog-figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 7rem);
  object-fit: contain;
}

.dialog-control {
  align-self: center;
}

/* References / contact */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid article {
  padding: clamp(1.6rem, 3vw, 2.75rem);
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid span {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
}

.trust-grid h2,
.trust-grid h3 {
  margin-top: 2rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.trust-grid p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.verified-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.25rem;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line-light);
  font-size: 0.87rem;
}

.verified-note span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--copper-light);
  border-radius: 50%;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(20rem, 5fr);
  gap: clamp(3rem, 8vw, 8rem);
}

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

.contact-link {
  min-height: 8rem;
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(12rem, 2fr) 3rem;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.contact-link span:first-child {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-link strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 500;
}

.contact-link i {
  color: var(--copper);
  font-size: 1.4rem;
  font-style: normal;
  transition: transform 260ms var(--ease);
}

.contact-link:hover i {
  transform: translate(0.2rem, -0.2rem);
}

.contact-aside {
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  background: var(--ink-2);
}

.contact-aside h2 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.contact-aside p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.62);
}

.project-location-link {
  display: grid;
  gap: 0.35rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.project-location-link small {
  color: var(--copper-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Form */
.form-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 4fr) minmax(0, 7fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.form-aside {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.form-aside h1 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.92;
}

.form-aside > p {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.65);
}

.form-points {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.form-points li {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

.form-points li::before {
  color: var(--copper-light);
  content: "·";
  font-size: 1.5rem;
}

.request-form {
  padding: clamp(1.4rem, 4vw, 3.25rem);
  color: var(--ink);
  background: var(--paper);
}

.request-form__head {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.request-form__head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.request-form__head p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.request-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 0;
  padding: 0 0 2rem;
  border: 0;
}

.request-form fieldset + fieldset {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.request-form legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 0.5rem;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-width: 0;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(7, 19, 29, 0.24);
  border-radius: 2px;
  outline: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(185, 130, 74, 0.16);
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 1.15rem;
  color: var(--danger);
  font-size: 0.7rem;
  font-weight: 600;
}

.honey-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 0.5rem;
}

.consent-row input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  accent-color: var(--copper);
}

.consent-row label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.inline-button {
  min-height: 2.75rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.form-status {
  margin-top: 1.25rem;
  padding: 1rem;
  color: var(--muted);
  background: var(--bone);
  border-left: 3px solid var(--muted);
  font-size: 0.8rem;
}

.form-error-summary {
  margin-bottom: 1.25rem;
  padding: 1rem;
  color: var(--danger);
  background: #f6e8e4;
  border-left: 3px solid var(--danger);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-error-summary[hidden] {
  display: none;
}

.form-status.success {
  color: var(--success);
  border-color: var(--success);
}

.form-status.error {
  color: var(--danger);
  border-color: var(--danger);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.legal-dialog {
  width: min(46rem, calc(100% - 2rem));
  height: auto;
  max-height: calc(100dvh - 2rem);
  margin: auto;
  color: var(--ink);
  background: var(--paper);
}

.legal-dialog__shell {
  padding: clamp(1.4rem, 4vw, 3rem);
}

.legal-dialog__head {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.legal-dialog__head h2 {
  margin-right: auto;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.legal-dialog .dialog-close {
  flex: 0 0 auto;
  color: var(--ink);
  border-color: var(--line);
}

.legal-dialog__copy {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  overflow-y: auto;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Presentation */
.presentation-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(20rem, 5fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.presentation-cover {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.presentation-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.presentation-cover span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.6rem 0.75rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.presentation-copy h1 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.9;
}

.presentation-copy > p {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.65);
}

.presentation-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.presentation-points span {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.presentation-points span:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.presentation-points span:nth-child(even) {
  padding-left: 1rem;
}

.presentation-note {
  margin-top: 1rem !important;
  font-size: 0.75rem;
}

/* Legal pages */
.legal-layout {
  display: grid;
  grid-template-columns: 16rem minmax(0, 47rem);
  gap: clamp(3rem, 8vw, 8rem);
  justify-content: center;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.legal-copy {
  min-width: 0;
}

.legal-copy h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 0.93;
}

.legal-intro {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-copy section {
  padding-block: 2.2rem;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
}

.legal-copy section p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.legal-alert {
  margin-top: 2rem;
  padding: 1.4rem;
  color: var(--ink);
  background: #eee1d3;
  border-left: 3px solid var(--copper);
  font-size: 0.87rem;
}

.legal-alert strong {
  display: block;
  margin-bottom: 0.35rem;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: #040c12;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--line-light);
}

.footer-cta h2 {
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 2fr) repeat(3, minmax(9rem, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: 4rem;
}

.footer-brand img {
  width: 8.5rem;
  height: 6rem;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 20rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.footer-nav strong {
  margin-bottom: 0.65rem;
  color: var(--copper-light);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav span {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-nav small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
}

.footer-bottom {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid var(--line-light);
  font-size: 0.7rem;
}

.footer-bottom a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-action-dock {
  display: none;
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.reveal[data-delay="2"] {
  transition-delay: 180ms;
}

@media (min-width: 1600px) {
  :root {
    --shell: 1480px;
  }

  .home-hero__inner,
  .page-hero__inner {
    padding-bottom: 5rem;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .home-hero__inner,
  .page-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.42fr);
  }

  .manifesto-grid {
    grid-template-columns: 1fr 2fr;
  }

  .manifesto-note {
    grid-column: 2;
  }

  .featured-project,
  .project-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  }

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

  .principles-grid article:nth-child(2) {
    border-right: 0;
  }

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

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

@media (max-width: 820px) {
  :root {
    --header-h: 4.25rem;
    --gutter: 1.25rem;
    --section: clamp(4.5rem, 17vw, 7rem);
  }

  .brand {
    width: 6.15rem;
  }

  .brand img {
    height: 2.8rem;
  }

  .home-hero::after,
  .page-hero::after {
    background: linear-gradient(0deg, rgba(4, 12, 18, 0.96) 0%, rgba(4, 12, 18, 0.55) 62%, rgba(4, 12, 18, 0.18) 100%);
  }

  .home-hero__inner,
  .page-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    gap: 2rem;
    padding-block: 4rem 2rem;
  }

  .home-hero__copy {
    align-self: end;
  }

  .home-hero h1 {
    max-width: 9ch;
    font-size: clamp(3.7rem, 17vw, 5.8rem);
  }

  .page-hero__copy h1 {
    max-width: 12ch;
    font-size: clamp(3.4rem, 14vw, 5.5rem);
  }

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

  .hero-facts div {
    display: block;
  }

  .hero-facts div:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--line-light);
  }

  .hero-facts div:nth-child(even) {
    padding-left: 1rem;
  }

  .hero-facts dd {
    margin-top: 0.35rem;
  }

  .page-hero__aside {
    display: none;
  }

  .manifesto-grid,
  .story-grid,
  .project-overview,
  .spec-layout,
  .contact-grid,
  .form-layout,
  .presentation-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .manifesto-note {
    grid-column: auto;
  }

  .approach-item {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .approach-item p {
    grid-column: 2;
  }

  .founder-strip,
  .founder-grid,
  .team-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .founder-strip article,
  .founder-grid article,
  .founder-grid article + article,
  .trust-grid article {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .founder-grid article,
  .founder-grid article + article {
    border-color: var(--line-light);
  }

  .team-grid {
    gap: 3rem;
  }

  .team-card .role {
    min-height: 0;
  }

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

  .featured-project__media,
  .project-card__media {
    min-height: auto;
  }

  .featured-project__media img,
  .project-card__media img {
    aspect-ratio: 4 / 5;
  }

  .service-ledger article,
  .service-ledger a {
    grid-template-columns: 2.5rem 1fr 2.5rem;
    gap: 0.75rem;
    padding-block: 1.4rem;
  }

  .service-ledger p {
    grid-column: 2 / -1;
    padding-right: 1rem;
  }

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

  .mission-grid article:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

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

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

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

  .location-media {
    min-height: auto;
  }

  .location-media img {
    aspect-ratio: 4 / 3;
  }

  .form-aside,
  .legal-nav {
    position: static;
  }

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

  .legal-nav a {
    justify-content: center;
    padding-inline: 0.4rem;
    text-align: center;
  }

  .footer-cta,
  .cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

@media (max-width: 560px) {
  .hero-brand-lockup {
    grid-template-columns: 5.4rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .home-hero .hero-brand-lockup__name {
    padding: 0.2rem 0 0.2rem 0.8rem;
  }

  .hero-brand-lockup__primary {
    font-size: clamp(1.45rem, 6.2vw, 2.15rem);
  }

  .hero-brand-lockup__secondary {
    margin-top: 0.55rem;
    font-size: clamp(0.44rem, 2vw, 0.62rem);
    letter-spacing: 0.075em;
  }

  .display-title,
  .section-title {
    max-width: 100%;
  }

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

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

  .hero-facts dd {
    font-size: 1.4rem;
  }

  .approach-item {
    grid-template-columns: 2.25rem 1fr;
  }

  .founder-strip article {
    padding-inline: 0;
  }

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

  .principles-grid article,
  .principles-grid article:nth-child(2) {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mini-facts,
  .location-facts,
  .spec-list,
  .presentation-points {
    grid-template-columns: 1fr;
  }

  .mini-facts div:nth-child(odd),
  .location-facts div:nth-child(odd),
  .spec-list div:nth-child(odd),
  .presentation-points span:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }

  .mini-facts div:nth-child(even),
  .location-facts div:nth-child(even),
  .spec-list div:nth-child(even),
  .presentation-points span:nth-child(even) {
    padding-left: 0;
  }

  .project-nav ul {
    justify-content: flex-start;
  }

  .project-nav a {
    min-width: auto;
    padding-inline: 1rem;
  }

  .stat-ribbon div {
    padding-inline: 1.25rem;
  }

  .project-showcase img {
    aspect-ratio: 4 / 3;
  }

  .gallery-main img {
    aspect-ratio: 4 / 3;
  }

  .gallery-main__meta {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .gallery-toolbar {
    grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  }

  .gallery-control {
    width: 3rem;
    height: 3rem;
  }

  .gallery-thumb {
    width: 5.5rem;
    min-width: 5.5rem;
    height: 3.5rem;
  }

  .media-dialog__shell,
  .presentation-dialog__shell {
    grid-template-columns: 3rem 1fr 3rem;
    grid-template-rows: 4rem 1fr;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .dialog-head strong {
    font-size: 1rem;
  }

  .dialog-control {
    width: 3rem;
    height: 3rem;
  }

  .contact-link {
    min-height: 7rem;
    grid-template-columns: 1fr 2.5rem;
    gap: 0.4rem;
  }

  .contact-link span:first-child {
    grid-column: 1 / -1;
    align-self: end;
  }

  .contact-link strong {
    align-self: start;
  }

  .contact-link i {
    grid-column: 2;
    grid-row: 2;
  }

  .request-form {
    margin-inline: -1.25rem;
  }

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

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

  .form-actions {
    display: grid;
  }

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

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

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

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

  .has-action-dock {
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
  }

  .mobile-action-dock {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(4rem + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid var(--line-light);
    transition: transform 220ms ease;
  }

  .mobile-action-dock a {
    min-width: 0;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    border-right: 1px solid var(--line-light);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-action-dock a:last-child {
    color: var(--ink);
    background: var(--copper-light);
    border-right: 0;
  }

  body:has(input:focus, textarea:focus, select:focus) .mobile-action-dock,
  body.menu-open .mobile-action-dock,
  body.modal-open .mobile-action-dock {
    transform: translateY(110%);
  }
}

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

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media print {
  .site-header,
  .mobile-nav,
  .mobile-action-dock,
  .footer-cta,
  .button-row {
    display: none !important;
  }

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