@font-face {
  font-family: Editorial;
  src: url("/fonts/serif.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Editorial;
  src: url("/fonts/serif-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Sans;
  src: url("/fonts/sans.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Sans;
  src: url("/fonts/sans-medium.woff2") format("woff2");
  font-weight: 500 700;
  font-display: swap;
}
:root {
  --paper: #f8f6f0;
  --cream: #efeae0;
  --ink: #302b25;
  --muted: #6d665b;
  --gold: #80643b;
  --line: #d8d0c2;
  --dark: #332f28;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    400 16px/1.65 Sans,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #d8c49e;
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h1,
h2,
.serif {
  font-family: Editorial, Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(58px, 6.3vw, 96px);
}
h2 {
  font-size: clamp(45px, 4.7vw, 70px);
}
h3 {
  font-size: 22px;
  line-height: 1.3;
}
p + p {
  margin-top: 20px;
}
em {
  color: var(--gold);
  font-weight: 500;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
section[id] {
  scroll-margin-top: 30px;
}
.wrap {
  max-width: 1440px;
  margin: auto;
  padding-inline: 5.6%;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}
.muted {
  color: var(--muted);
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
}
.skip:focus {
  top: 10px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 246, 240, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: block;
  flex-shrink: 0;
  width: 226px;
}
.brand img {
  width: 100%;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 12px;
  font-weight: 500;
}
.nav a {
  padding-block: 12px;
  position: relative;
}
.nav a:not(.nav-contact):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}
.nav a:hover:after {
  transform: scaleX(1);
}
.nav .nav-contact {
  border: 1px solid var(--line);
  padding: 11px 18px;
  display: flex;
  gap: 24px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  padding: 12px 0 12px 12px;
  min-height: 44px;
}
.arrow {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms var(--ease);
}
a:hover .arrow {
  transform: translate(3px, -3px);
}
.hero {
  padding-top: 66px;
  padding-bottom: 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 7%;
  align-items: center;
}
.hero .eyebrow {
  color: var(--gold);
  margin-bottom: 27px;
}
.hero h1 {
  max-width: 650px;
}
.hero h1 em {
  display: block;
}
.hero-copy {
  margin-top: 27px;
  max-width: 405px;
  font-size: 16px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  margin-top: 33px;
}
.button {
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 15px 22px;
  font-size: 12px;
  font-weight: 500;
  min-height: 50px;
  transition:
    background 180ms ease,
    transform 140ms var(--ease);
}
.button:hover {
  background: #514535;
}
.button:active {
  transform: scale(0.98);
}
.text-link {
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--gold);
  padding: 12px 0 7px;
}
.hero-image {
  position: relative;
  padding-bottom: 35px;
}
.hero-image > img {
  aspect-ratio: 0.87;
  object-fit: cover;
  object-position: 33% 50%;
  width: 100%;
}
.hero-caption {
  position: absolute;
  bottom: 0;
  right: -15px;
  left: 18%;
  padding: 22px 26px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
}
.hero-caption strong {
  font-weight: 500;
  font-size: 14px;
}
.caption-symbol {
  width: 36px;
  height: 36px;
  color: var(--gold);
}
.hero-bottom {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-bottom .down {
  font-size: 21px;
}
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 28px;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  gap: 35px;
  align-items: center;
}
.trust-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  max-width: 150px;
}
.client-names {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.client-names a {
  font-family: Editorial, Georgia, serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.1;
  text-align: center;
}
.client-names a:nth-child(2) {
  font-family: Sans, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.client-names a:nth-child(3) {
  font-family: Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.section {
  padding-block: 108px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 11%;
}
.section-label {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--gold);
  margin-bottom: 33px;
}
.section-label:before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.intro-copy {
  font-family: Editorial, Georgia, serif;
  font-size: clamp(29px, 3.1vw, 43px);
  line-height: 1.22;
  letter-spacing: -0.01em;
}
.intro-body {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-size: 14px;
  color: var(--muted);
}
.intro-aside {
  align-self: end;
  border-left: 1px solid var(--line);
  padding-left: 22px;
  max-width: 265px;
  font-size: 13px;
  color: var(--muted);
}
.services {
  background: var(--cream);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 45px;
  margin-bottom: 52px;
}
.section-heading > p {
  max-width: 360px;
  font-size: 14px;
  color: var(--muted);
}
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.phase {
  border-top: 1px solid #b8a78b;
  padding-top: 25px;
}
.phase-num {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.phase h3 {
  font-family: Editorial, Georgia, serif;
  font-size: 44px;
  margin-top: 16px;
}
.phase-intro {
  font-size: 12px;
  margin-top: 13px;
  font-weight: 500;
}
.phase-text {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  min-height: 86px;
}
.phase details {
  border-top: 1px solid #d2c9ba;
}
.phase details:last-child {
  border-bottom: 1px solid #d2c9ba;
}
.phase summary {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  padding: 17px 0;
  min-height: 56px;
}
.phase summary::-webkit-details-marker {
  display: none;
}
.phase summary:after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
}
.phase details[open] summary:after {
  content: "−";
}
.phase details p {
  font-size: 13px;
  color: var(--muted);
  padding: 0 20px 20px 0;
}
.service-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #d2c9ba;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 13px;
  color: var(--muted);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project-card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: var(--cream);
  min-height: 325px;
  position: relative;
  transition: background 200ms ease;
}
.project-card:nth-child(2),
.project-card:nth-child(3) {
  background: #f1eee7;
}
.project-card:hover {
  background: #e8e1d5;
}
.project-card .eyebrow {
  color: var(--gold);
  font-size: 10px;
}
.project-client {
  font-family: Editorial, Georgia, serif;
  font-size: 35px;
  margin-top: 27px;
  line-height: 1.1;
}
.project-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
}
.project-card p {
  font-size: 13px;
  color: var(--muted);
  max-width: 330px;
  margin-top: 9px;
  margin-bottom: 30px;
}
.project-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 11px;
  font-weight: 500;
  margin-top: auto;
}
.reference-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 22px;
  max-width: 640px;
}
.quote-section {
  background: var(--dark);
  color: var(--paper);
  padding-block: 78px;
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 8%;
  align-items: start;
}
.quote-section .eyebrow {
  color: #c6b28f;
}
.quote-section blockquote {
  margin: 0;
  font-family: Editorial, Georgia, serif;
  font-size: clamp(39px, 4.2vw, 64px);
  line-height: 1.1;
}
.quote-section cite {
  font-style: normal;
  display: block;
  margin-top: 30px;
  font-size: 12px;
  color: #d8d1c5;
}
.quote-section cite span {
  display: block;
  font-size: 11px;
  color: #bcb3a6;
  margin-top: 4px;
}
.quote-context {
  color: #d1c8bb;
  font-size: 14px;
  max-width: 570px;
  margin-top: 28px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.person img {
  width: 100%;
  aspect-ratio: 4/4.6;
  object-fit: cover;
  filter: saturate(0.55);
  background: var(--cream);
}
.person h3 {
  font-family: Editorial, Georgia, serif;
  font-size: 29px;
  margin-top: 20px;
}
.person-role {
  font-size: 11px;
  color: var(--gold);
  margin-top: 5px;
  min-height: 37px;
}
.person p:last-child {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.equans {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  font-size: 13px;
}
.equans p {
  color: var(--muted);
}
.contact {
  background: var(--cream);
  padding-block: 95px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 15%;
}
.contact h2 {
  font-size: clamp(51px, 5vw, 78px);
}
.contact-copy {
  font-size: 14px;
  color: var(--muted);
  margin-top: 27px;
  max-width: 375px;
}
.contact-details {
  align-self: end;
}
.contact-name {
  font-family: Editorial, Georgia, serif;
  font-size: 31px;
}
.contact-details > p {
  font-size: 13px;
  color: var(--muted);
}
.contact-email {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: clamp(16px, 1.6vw, 23px);
  border-bottom: 1px solid var(--gold);
  padding: 17px 0;
  overflow-wrap: anywhere;
}
.contact-small {
  font-size: 11px !important;
  margin-top: 17px !important;
}
.footer {
  padding-block: 38px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer .brand {
  width: 200px;
}
.footer-tag {
  font-family: Editorial, Georgia, serif;
  font-size: 21px;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 20px;
  font-size: 10px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 25px;
}
.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.page-hero {
  padding-block: 70px 65px;
  max-width: 1000px;
}
.breadcrumb {
  display: inline-flex;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 45px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
}
.page-hero h1 {
  font-size: clamp(54px, 6vw, 85px);
}
.page-lead {
  font-family: Editorial, Georgia, serif;
  font-size: 30px;
  line-height: 1.35;
  margin-top: 30px;
  max-width: 850px;
}
.case-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8%;
  border-top: 1px solid var(--line);
  padding-block: 50px 80px;
}
.case-body h2 {
  font-size: 40px;
}
.case-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.case-body li {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  gap: 20px;
  font-size: 16px;
}
.case-body li:before {
  content: "↗";
  color: var(--gold);
}
.source-note {
  margin-top: 30px;
  font-size: 12px;
  color: var(--muted);
}
.source-note a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal {
  max-width: 840px;
  padding-block: 65px 90px;
}
.legal h1 {
  font-size: 64px;
  margin-bottom: 40px;
}
.legal h2 {
  font-family: Sans, Arial, sans-serif;
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.legal p,
.legal li {
  font-size: 14px;
  color: var(--muted);
}
.legal a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.reveal {
  animation: appear 650ms var(--ease) both;
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .hero-image > img {
    max-height: 640px;
  }
}
@media (max-width: 1100px) {
  .nav {
    gap: 17px;
  }
  .brand {
    width: 195px;
  }
  .hero-grid {
    gap: 5%;
  }
  .hero h1 {
    font-size: 70px;
  }
  .phases {
    gap: 26px;
  }
  .team-grid {
    gap: 18px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-caption {
    left: 8%;
    right: 0;
    padding: 17px;
  }
  .section {
    padding-block: 85px;
  }
  .person-role {
    min-height: 43px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    padding-inline: 6%;
  }
  .header-inner {
    height: 78px;
  }
  .brand {
    width: 190px;
  }
  .js .menu-toggle {
    display: block;
  }
  .nav {
    gap: 12px;
  }
  .js .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 22px 6% 32px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px #302b250a;
  }
  .js .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
  .js .nav a {
    padding: 15px 0;
    font-size: 16px;
  }
  .js .nav .nav-contact {
    margin-top: 10px;
    padding: 15px;
  }
  .hero {
    padding-top: 45px;
    padding-bottom: 30px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6%;
    align-items: start;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .hero-copy {
    font-size: 14px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 12px;
    margin-top: 23px;
  }
  .hero-image > img {
    aspect-ratio: 0.65;
    object-position: 33%;
  }
  .hero-caption {
    position: relative;
    left: auto;
    right: auto;
    padding: 15px;
    margin-top: -15px;
    margin-left: 20px;
  }
  .caption-symbol {
    display: none;
  }
  .hero-caption strong {
    font-size: 12px;
  }
  .hero-caption {
    font-size: 10px;
  }
  .hero-bottom {
    margin-top: 25px;
  }
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trust-label {
    max-width: none;
  }
  .client-names a {
    font-size: 23px;
  }
  .intro-grid {
    gap: 7%;
    grid-template-columns: 0.75fr 1.3fr;
  }
  .intro-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .intro-body p + p {
    margin-top: 0;
  }
  .intro-aside {
    margin-top: 45px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 260px;
  }
  .phases {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .phase-text {
    min-height: 0;
    margin-bottom: 23px;
    max-width: 550px;
  }
  .phase h3 {
    font-size: 48px;
  }
  .phase summary {
    font-size: 14px;
  }
  .phase details p {
    font-size: 14px;
  }
  .phase-intro {
    font-size: 14px;
  }
  .phase-num {
    float: right;
    padding-top: 15px;
  }
  .phase h3 {
    margin-top: 0;
  }
  .project-card {
    padding: 25px;
    min-height: 330px;
  }
  .project-client {
    font-size: 31px;
  }
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }
  .person-role {
    min-height: 0;
  }
  .person p:last-child {
    max-width: 290px;
  }
  .contact-grid {
    gap: 8%;
  }
  .contact-email {
    font-size: 16px;
  }
  .footer-tag {
    font-size: 18px;
  }
  .case-body {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 560px) {
  .header-inner {
    gap: 14px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero h1 {
    font-size: clamp(52px, 16.4vw, 64px);
    max-width: 360px;
  }
  .hero-copy {
    max-width: 345px;
    font-size: 15px;
  }
  .hero-actions {
    gap: 23px;
    margin-bottom: 34px;
  }
  .hero-image {
    padding-bottom: 0;
  }
  .hero-image > img {
    aspect-ratio: 1.13;
    object-position: 50% 43%;
  }
  .hero-caption {
    margin-left: 20%;
    padding: 16px 20px;
    font-size: 11px;
    margin-top: -28px;
  }
  .hero-caption strong {
    font-size: 14px;
  }
  .caption-symbol {
    display: block;
    width: 30px;
  }
  .hero-bottom {
    margin-top: 26px;
    font-size: 9px;
  }
  .hero-bottom span:first-child {
    max-width: 240px;
  }
  .trust {
    padding-block: 24px;
  }
  .client-names {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
  }
  .client-names a {
    text-align: left;
    font-size: 25px;
  }
  .trust-label {
    font-size: 9px;
  }
  .section {
    padding-block: 65px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro-aside {
    margin-top: 26px;
    max-width: none;
  }
  .intro-copy {
    font-size: 35px;
  }
  .intro-body {
    font-size: 14px;
  }
  .section-label {
    margin-bottom: 25px;
  }
  .section-heading {
    display: block;
    margin-bottom: 33px;
  }
  .section-heading > p {
    max-width: none;
    margin-top: 24px;
  }
  .section-heading > .text-link {
    margin-top: 18px;
  }
  .service-footer {
    display: block;
  }
  .service-footer .text-link {
    margin-top: 15px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .project-card {
    min-height: 300px;
    padding: 28px;
  }
  .project-client {
    font-size: 37px;
  }
  .project-card h3 {
    font-size: 16px;
  }
  .project-card p {
    font-size: 14px;
  }
  .quote-section {
    padding-block: 55px;
  }
  .quote-section blockquote {
    font-size: 44px;
  }
  .quote-context {
    font-size: 13px;
  }
  .team-grid {
    gap: 32px 16px;
  }
  .person h3 {
    font-size: 25px;
  }
  .person-role {
    font-size: 10px;
    min-height: 32px;
  }
  .person p:last-child {
    font-size: 11px;
    line-height: 1.6;
  }
  .equans {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 35px;
  }
  .contact {
    padding-block: 65px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-email {
    font-size: 21px;
  }
  .contact-copy {
    font-size: 15px;
  }
  .footer-top {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 18px;
  }
  .footer-links {
    gap: 24px;
  }
  .page-hero {
    padding-block: 40px;
  }
  .page-hero h1 {
    font-size: 56px;
  }
  .page-lead {
    font-size: 26px;
  }
  .legal h1 {
    font-size: 50px;
  }
  .legal {
    padding-block: 45px 65px;
  }
  .nav:not(.is-open) {
    font-size: 10px;
  }
  .header-inner:has(.nav:not(.is-open)) {
    flex-wrap: wrap;
  }
  .js .header-inner {
    flex-wrap: nowrap !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .header,
  .footer,
  .hero-actions,
  .menu-toggle {
    display: none;
  }
  body {
    color: black;
    background: white;
  }
  .section,
  .contact {
    padding-block: 30px;
  }
  .wrap {
    padding-inline: 0;
  }
  .hero-image {
    max-width: 300px;
  }
  details:not([open]) > *:not(summary) {
    display: block;
  }
  .project-card,
  .person {
    break-inside: avoid;
  }
}

@media (max-width: 800px) {
  html:not(.js) .header {
    position: relative;
  }
  html:not(.js) .header-inner {
    height: auto;
    min-height: 78px;
    flex-wrap: wrap;
    padding-block: 16px;
  }
  html:not(.js) .nav {
    flex-wrap: wrap;
    font-size: 12px;
    padding-bottom: 8px;
  }
  html:not(.js) .header-inner .nav a {
    padding: 10px 0;
  }
  html:not(.js) .nav .nav-contact {
    padding: 10px;
  }
}
