:root {
  --ink: #171a18;
  --ink-soft: #2a2e2b;
  --paper: #f4f2ed;
  --white: #ffffff;
  --sand: #d9d1c4;
  --bronze: #9b7952;
  --sage: #647168;
  --line: rgba(23, 26, 24, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --shell: min(1360px, calc(100vw - 72px));
  --header-height: 112px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

h1,
h2,
h3 {
  margin-bottom: 0.5em;
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(4rem, 7.2vw, 8.4rem);
}

h2 {
  font-size: clamp(2.7rem, 4.8vw, 5.6rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

address {
  font-style: normal;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.section {
  padding-block: clamp(96px, 10vw, 168px);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.eyebrow--light::before {
  background: var(--white);
}

.lead {
  font-size: clamp(1.3rem, 1.75vw, 1.75rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button span {
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.button:hover span,
.button:focus-visible span {
  transform: translate(3px, -3px);
}

.button--small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 0.7rem;
}

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

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--bronze);
}

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

.button--light:hover,
.button--light:focus-visible {
  color: var(--white);
  background: var(--bronze);
}

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

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.15rem;
  transition: transform 220ms var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(18px);
  transition: height 250ms var(--ease), border-color 250ms ease;
}

.site-header.is-scrolled {
  height: 84px;
  border-bottom-color: var(--line);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 102;
  display: block;
  width: 178px;
}

.brand > a,
.brand .custom-logo-link {
  display: block;
}

.brand img,
.brand .custom-logo {
  width: 100%;
  height: 74px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 62px);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 50px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a {
  position: relative;
  padding-block: 12px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after,
.site-nav__links .current-menu-item a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 30px;
  height: 18px;
}

.menu-toggle__icon i {
  position: absolute;
  right: 0;
  width: 30px;
  height: 1px;
  background: var(--ink);
  transition: transform 250ms var(--ease), top 250ms var(--ease);
}

.menu-toggle__icon i:first-child { top: 4px; }
.menu-toggle__icon i:last-child { top: 14px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { top: 9px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { top: 9px; transform: rotate(-45deg); }

.hero {
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(55px, 7vw, 100px);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
}

.hero__content {
  padding-block: 30px 80px;
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 34px;
}

.hero h1 em {
  display: inline-block;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 40px;
  color: #414642;
  font-size: clamp(1.18rem, 1.6vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero__visual {
  position: relative;
  margin: 0;
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  inset: -26px 38% 13% -26px;
  background: var(--sand);
  content: "";
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
}

.hero__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(70px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

.fact {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  border-right: 1px solid var(--line);
}

.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; }
.fact strong { font-size: clamp(2rem, 3vw, 3.4rem); line-height: 1; letter-spacing: -0.04em; }
.fact span { margin-top: 8px; color: #595e5a; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }

.acquisition {
  position: relative;
  overflow: hidden;
}

.acquisition::after {
  position: absolute;
  right: -12vw;
  bottom: -33vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.acquisition__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 0.75fr;
  gap: clamp(80px, 13vw, 210px);
}

.acquisition h2 {
  max-width: 720px;
}

.acquisition__content {
  max-width: 620px;
}

.acquisition__content > p:not(.lead) {
  color: rgba(255, 255, 255, 0.65);
}

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

.line-list li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 1.07rem;
}

.line-list span {
  color: var(--bronze);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.acquisition .button {
  margin-top: 24px;
}

.section-heading {
  margin-bottom: clamp(50px, 6vw, 92px);
}

.section-heading h2 {
  max-width: 920px;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}

.section-heading--row > p {
  max-width: 420px;
  margin-bottom: 0.75rem;
  color: #5f645f;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 8vw, 120px) clamp(28px, 4vw, 64px);
}

.project-card:nth-child(even) {
  transform: translateY(90px);
}

.project-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8d8d4;
}

.project-card__image img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 400ms ease;
}

.project-card__image:hover img,
.project-card__image:focus-visible img {
  transform: scale(1.035);
}

.project-card__status {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__status--available {
  color: var(--white);
  background: var(--bronze);
}

.project-card__body {
  padding-top: 26px;
}

.project-card__location {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.project-card h3 a {
  text-decoration: none;
}

.project-card__body > p:not(.project-card__location) {
  max-width: 610px;
  color: #5b605c;
}

.project-card .text-link {
  margin-top: 12px;
}

.section-link {
  margin-top: 170px;
  text-align: center;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.process-grid li:first-child { padding-left: 0; }
.process-grid li:last-child { border-right: 0; }
.process-grid span { display: block; margin-bottom: 95px; color: var(--bronze); font-size: 0.72rem; letter-spacing: 0.12em; }
.process-grid h3 { margin-bottom: 22px; font-size: 1.7rem; letter-spacing: -0.03em; }
.process-grid p { color: #606560; font-size: 0.95rem; }

.about-teaser {
  background: #e4dfd6;
}

.about-teaser__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.about-teaser__image {
  margin: 0;
}

.about-teaser__image img {
  width: 100%;
  aspect-ratio: 0.87;
  object-fit: cover;
}

.about-teaser__content h2 {
  font-size: clamp(2.8rem, 4.4vw, 5rem);
}

.about-teaser__content p:not(.eyebrow) {
  max-width: 620px;
}

.about-teaser__content .text-link {
  margin-top: 24px;
}

.partners-strip {
  padding-block: 70px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink-soft);
}

.partner-names {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  align-items: center;
  justify-content: space-between;
}

.partner-names span {
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-section,
.contact-page-form {
  color: var(--white);
  background: var(--bronze);
}

.contact-section__grid,
.contact-page-form__grid {
  display: grid;
  grid-template-columns: 0.73fr 1fr;
  gap: clamp(70px, 11vw, 180px);
}

.contact-section__intro h2,
.contact-page-form h2 {
  font-size: clamp(3rem, 4.5vw, 5.2rem);
}

.contact-section__intro > p:not(.eyebrow),
.contact-page-form__grid > div:first-child > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 46px;
  font-size: 1.1rem;
}

.contact-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

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

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

.field label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  transition: border-color 180ms ease;
}

.field select option {
  color: var(--ink);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--white);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--ink);
}

.form-notice {
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

.form-notice--success { color: var(--ink); background: var(--white); }
.form-notice--error { color: #fff; background: #773d36; }

.site-footer {
  padding-top: clamp(80px, 9vw, 140px);
  color: var(--white);
  background: #111311;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.45fr;
  gap: 70px;
  padding-bottom: 100px;
}

.site-footer h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
}

.site-footer__contact p {
  margin-bottom: 10px;
}

.site-footer__contact p:last-child {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__bottom a {
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover,
.site-footer__bottom a:hover {
  color: #cba675;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer__bottom p { margin: 0; }
.site-footer__bottom div { display: flex; gap: 24px; }

.page-hero {
  padding: clamp(80px, 9vw, 140px) 0 clamp(70px, 8vw, 120px);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 90px;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(4rem, 7vw, 8rem);
}

.page-hero__lead {
  max-width: 520px;
  margin-bottom: 1rem;
  color: #565b57;
  font-size: 1.3rem;
}

.page-hero__media {
  margin-top: 80px;
}

.page-hero__media img {
  width: 100%;
  max-height: 730px;
  object-fit: cover;
}

.projects-archive {
  padding-top: 40px;
  background: var(--white);
}

.project-cta {
  padding-block: 90px;
  color: var(--white);
  background: var(--ink);
}

.project-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.project-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

.project-cta .eyebrow {
  margin-bottom: 18px;
}

.project-hero {
  padding-top: 65px;
  color: var(--white);
  background: var(--ink);
}

.project-hero__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 55px;
}

.project-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(3.8rem, 7vw, 8rem);
}

.project-hero .eyebrow {
  margin-bottom: 20px;
}

.back-link {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 55px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.status-pill {
  margin-bottom: 10px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-pill--available {
  color: var(--white);
  background: var(--bronze);
}

.project-hero__image {
  transform: translateY(68px);
}

.project-hero__image img {
  width: 100%;
  max-height: 790px;
  object-fit: cover;
}

.project-overview {
  padding-top: 170px;
}

.project-overview__grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(80px, 12vw, 190px);
}

.project-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.project-facts > div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.project-facts dt {
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  font-weight: 700;
}

.project-copy h2 {
  margin-bottom: 45px;
  font-size: clamp(2.8rem, 4vw, 4.7rem);
}

.prose {
  font-size: 1.08rem;
  line-height: 1.75;
}

.prose > * {
  max-width: 760px;
}

.prose p {
  margin-bottom: 1.5em;
}

.project-copy .button {
  margin-top: 25px;
}

.project-gallery {
  padding-top: 30px;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.gallery-item {
  grid-column: span 6;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: #ddd;
  overflow: hidden;
}

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

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

.gallery-item img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.025);
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 70px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(10, 11, 10, 0.94);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 110px);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  padding: 8px 14px;
  border: 0;
  color: var(--white);
  cursor: pointer;
  background: transparent;
  font-size: 2.5rem;
  font-weight: 300;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 90px;
}

.about-intro__copy {
  max-width: 940px;
}

.about-intro h2 {
  margin-bottom: 42px;
  font-size: clamp(2.7rem, 4.2vw, 5rem);
}

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

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

.value-card {
  min-height: 360px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.value-card:first-child { padding-left: 0; }
.value-card:last-child { border-right: 0; }
.value-card > span { display: block; margin-bottom: 110px; color: var(--bronze); font-size: 0.72rem; letter-spacing: 0.1em; }
.value-card h3 { font-size: 1.6rem; }
.value-card p { color: #5d625e; font-size: 0.94rem; }

.vision-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(80px, 12vw, 180px);
}

.vision-section__copy > p:not(.lead) {
  color: rgba(255, 255, 255, 0.62);
}

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

.partner-grid span {
  display: grid;
  min-height: 130px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
  place-items: center;
  text-align: center;
}

.contact-page-hero {
  padding-block: clamp(70px, 8vw, 130px);
}

.contact-page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.contact-page-hero h1 {
  font-size: clamp(3.8rem, 6.5vw, 7.6rem);
}

.contact-page-hero__content > p:not(.eyebrow) {
  max-width: 650px;
  color: #555a56;
  font-size: 1.2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 40px;
}

.contact-details a {
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-details span {
  margin-top: 18px;
  color: #616662;
}

.contact-page-hero__image img {
  width: 100%;
  aspect-ratio: 0.83;
  object-fit: cover;
}

.simple-hero {
  padding-block: 100px 70px;
}

.simple-hero h1 {
  font-size: clamp(3.8rem, 7vw, 7.5rem);
}

.journal-entry {
  padding-block: 50px;
  border-top: 1px solid var(--line);
}

.journal-entry h2 {
  font-size: 2.5rem;
}

.journal-entry h2 a {
  text-decoration: none;
}

.not-found {
  display: grid;
  min-height: 72vh;
  padding-block: 100px;
  place-items: center;
}

.not-found h1 {
  font-size: clamp(4rem, 8vw, 8.5rem);
}

.not-found p:not(.eyebrow) {
  margin-bottom: 35px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

@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; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 48px, 1360px); }
  .site-nav__cta { display: none; }
  .hero__grid { grid-template-columns: 1.05fr 0.8fr; gap: 48px; }
  .hero h1 { font-size: clamp(3.7rem, 7.4vw, 6.3rem); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .process-grid li:nth-child(3) { padding-left: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: 0; }
  .value-card:nth-child(n+3) { border-top: 1px solid var(--line); }
  .value-card:nth-child(3) { padding-left: 0; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__top { grid-template-columns: 1.2fr 0.65fr; }
  .site-footer__nav { grid-column: 1 / -1; flex-direction: row; }
}

@media (max-width: 820px) {
  :root { --header-height: 88px; --shell: calc(100% - 36px); }
  body { font-size: 16px; }
  h1 { font-size: clamp(3.4rem, 15vw, 5.5rem); }
  h2 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .section { padding-block: 88px; }
  .brand { width: 145px; }
  .brand img, .brand .custom-logo { height: 63px; }
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 28px 50px;
    opacity: 0;
    background: var(--paper);
    transition: opacity 250ms ease, visibility 250ms ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; }
  .site-nav__links { flex-direction: column; align-items: flex-start; gap: 8px; }
  .site-nav__links a { font-size: clamp(2.3rem, 11vw, 4rem); font-weight: 650; letter-spacing: -0.04em; text-transform: none; }
  .site-nav__cta { display: inline-flex; margin-top: 35px; }
  .hero { padding-top: 45px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 20px; }
  .hero__visual { margin-left: 12%; }
  .hero__visual img { aspect-ratio: 0.93; }
  .hero__visual figcaption { flex-direction: column; align-items: flex-start; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
  .fact:nth-child(3) { padding-left: 0; }
  .acquisition__grid,
  .about-teaser__grid,
  .contact-section__grid,
  .contact-page-form__grid,
  .page-hero__grid,
  .project-overview__grid,
  .about-intro__grid,
  .vision-section__grid,
  .contact-page-hero__grid { grid-template-columns: 1fr; gap: 55px; }
  .section-heading--row { display: block; }
  .section-heading--row > p { margin-top: 28px; }
  .project-grid { grid-template-columns: 1fr; gap: 75px; }
  .project-card:nth-child(even) { transform: none; }
  .section-link { margin-top: 85px; }
  .about-teaser__grid { grid-template-columns: 1fr; }
  .about-teaser__image { width: 82%; }
  .page-hero__grid { align-items: start; }
  .page-hero__media { margin-top: 50px; }
  .project-hero { padding-top: 35px; }
  .project-hero__top { display: block; }
  .status-pill { display: inline-block; margin-top: 25px; }
  .project-hero__image { transform: translateY(40px); }
  .project-overview { padding-top: 115px; }
  .project-facts { order: 2; }
  .gallery-item,
  .gallery-item:nth-child(3n + 1),
  .gallery-item:nth-child(3n + 2) { grid-column: span 12; }
  .project-cta__inner { display: block; }
  .project-cta .button { margin-top: 30px; }
  .about-intro__grid { gap: 20px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-hero__image { width: 82%; margin-left: auto; }
  .site-footer__top { grid-template-columns: 1fr; gap: 50px; padding-bottom: 65px; }
  .site-footer__nav { grid-column: auto; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .hero__visual { margin-left: 7%; }
  .facts { margin-top: 65px; }
  .fact { min-height: 105px; padding: 18px; }
  .fact:nth-child(odd) { padding-left: 0; }
  .fact strong { font-size: 2.1rem; }
  .fact span { font-size: 0.63rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; padding: 28px 0 42px; border-right: 0; border-top: 1px solid var(--line); }
  .process-grid li:first-child { border-top: 0; }
  .process-grid span { margin-bottom: 50px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; padding: 28px 0 48px; border-right: 0; border-top: 1px solid var(--line); }
  .value-card:first-child { border-top: 0; }
  .value-card > span { margin-bottom: 55px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .project-facts > div { grid-template-columns: 1fr; gap: 6px; }
  .lightbox { padding: 55px 12px 25px; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid span { min-height: 100px; padding: 12px; font-size: 0.74rem; }
  .contact-page-hero__image, .about-teaser__image { width: 100%; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .site-footer__bottom div { flex-wrap: wrap; gap: 12px 20px; }
}
