@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/asset-43c6c03569841da0-c269c20587e3.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/asset-d004920f4f429e50-75d1d5cdedc6.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/asset-04659af93b2b7250-f67349bd79c6.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171714;
  --bone: #f2efe8;
  --paper: #fbfaf6;
  --timber: #9a623e;
  --sawdust: #d8c9b5;
  --signal: #b74f2a;
  --line: rgba(23, 23, 20, 0.32);
  --muted: #5e5a52;
  --max: 1440px;
  --page-pad: clamp(1rem, 3.2vw, 3.5rem);
  --section-space: clamp(3.5rem, 8vw, 8rem);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  min-width: 320px;
  background: var(--bone);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bone);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

figure,
ul,
ol,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-thickness: 0.14em;
}

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

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

.skip-link {
  position: absolute;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.95rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1rem var(--page-pad) 0.75rem;
}

.brand {
  display: block;
  width: min(100%, 12rem);
}

.brand-logo {
  width: 100%;
  aspect-ratio: 339 / 117;
  object-fit: contain;
}

.nav-disclosure {
  justify-self: end;
  min-width: 0;
}

.nav-disclosure summary {
  display: none;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

.primary-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.primary-nav a:hover {
  border-color: var(--ink);
  background: var(--sawdust);
  transform: translateY(-2px);
}

.primary-nav a[aria-current="page"] {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.noscript-note {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--page-pad) 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.noscript-note {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  border-top: 1px solid var(--line);
  background: var(--bone);
}

main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--page-pad) var(--section-space);
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(12rem, 5fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: end;
  padding: clamp(3.5rem, 9vw, 9rem) 0 clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--ink);
}

.page-intro h1,
.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.7rem, 7.4vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.page-intro > p,
.page-intro > div {
  max-width: 34rem;
  margin: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  min-height: min(74vh, 760px);
  align-items: stretch;
  padding: clamp(2rem, 5vw, 4.5rem) 0 var(--section-space);
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

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

.hero-notice {
  max-width: 32rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--ink);
  background: var(--sawdust);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.hero-notice p {
  margin: 0;
}

.hero-media {
  min-width: 0;
  align-self: stretch;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center;
}

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

.route-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease);
}

.route-entry:hover {
  transform: translateX(0.35rem);
  color: var(--paper);
  background: var(--timber);
}

.route-entry__arrow {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.section-block {
  padding: var(--section-space) 0 0;
  border-bottom: 1px solid var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1rem, 5vw, 6rem);
  align-items: start;
  padding-bottom: clamp(1.5rem, 3vw, 3rem);
}

.section-heading h2,
.services-copy h3,
.about-copy h2,
.contact-panel h2,
.contact-closure h2,
.legal-document h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.source-label {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-weight: 600;
}

.material-strip {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.material-strip figure {
  min-width: 0;
  border: 0;
}

.material-strip figure + figure {
  border-left: 1px solid var(--ink);
}

.material-strip img {
  width: 100%;
  height: clamp(16rem, 34vw, 30rem);
  object-fit: cover;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: start;
  padding: 0 0 var(--section-space);
  border-bottom: 1px solid var(--ink);
}

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

.services-copy h3 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.source-copy {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.service-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--ink);
}

.service-media-grid figure {
  min-width: 0;
  border: 0 solid var(--ink);
  background: var(--paper);
}

.service-media-grid figure:nth-child(odd) {
  border-right-width: 1px;
}

.service-media-grid figure:nth-child(-n + 2) {
  border-bottom-width: 1px;
}

.service-media-grid img {
  width: 100%;
  height: clamp(12rem, 21vw, 20rem);
  object-fit: cover;
}

.about-lead {
  padding: 0 0 1.4rem;
  border-bottom: 1px solid var(--ink);
}

.about-person-name {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  padding: var(--section-space) 0 0;
}

.about-portrait {
  align-self: start;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-portrait figcaption {
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--ink);
  font-size: 0.95rem;
}

.about-copy {
  min-width: 0;
  padding-bottom: var(--section-space);
}

.about-copy h2 {
  margin-bottom: 2rem;
}

.about-copy .source-copy {
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.external-reference {
  word-break: break-word;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(3.5rem, 8vw, 8rem) 0 2rem;
  border-bottom: 1px solid var(--ink);
}

.gallery-heading h1 {
  max-width: 7ch;
  margin: 0;
  font-size: clamp(2.7rem, 7.4vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.gallery-heading p {
  max-width: 20rem;
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  padding: var(--section-space) 0 0;
  border-bottom: 1px solid var(--ink);
}

.gallery-grid figure {
  min-width: 0;
  border: 1px solid var(--ink);
  margin: -1px 0 0 -1px;
  background: var(--paper);
}

.gallery-grid figure:nth-child(4n + 1),
.gallery-grid figure:nth-child(4n + 4) {
  grid-column: span 7;
}

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

.gallery-grid img {
  width: 100%;
  height: clamp(15rem, 34vw, 33rem);
  object-fit: cover;
}

.gallery-grid figure:nth-child(3n + 2) img,
.gallery-grid figure:nth-child(4n + 3) img {
  height: clamp(19rem, 42vw, 40rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(15rem, 5fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  padding: var(--section-space) 0 0;
}

.contact-panel {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--ink);
  background: var(--paper);
}

.contact-panel h2 {
  margin-bottom: 2rem;
}

.contact-facts {
  display: grid;
  grid-template-columns: minmax(7rem, 0.6fr) minmax(0, 1.4fr);
  margin: 0;
  border-top: 1px solid var(--ink);
}

.contact-facts dt,
.contact-facts dd {
  min-width: 0;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-facts dt {
  font-weight: 600;
}

.contact-facts dd {
  overflow-wrap: anywhere;
}

.contact-email {
  display: inline-block;
  font-weight: 600;
}

.contact-constraint {
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.no-send-boundary {
  align-self: start;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  background: var(--sawdust);
}

.no-send-boundary h2 {
  margin-bottom: 1rem;
}

.no-send-boundary p {
  margin: 0;
}

.legal-layout {
  width: min(100%, 900px);
  padding-top: clamp(3.5rem, 8vw, 8rem);
}

.legal-layout > h1 {
  max-width: 8ch;
  margin: 0 0 2rem;
  font-size: clamp(2.7rem, 7.4vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.legal-document section {
  padding: 1.8rem 0;
  border-top: 1px solid var(--ink);
}

.legal-document h2 {
  margin-bottom: 1rem;
}

.legal-document p {
  max-width: 72ch;
  margin: 0 0 1rem;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.fact-list {
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(0, 1.3fr);
  margin: 0;
  border-top: 1px solid var(--ink);
}

.fact-list dt,
.fact-list dd {
  min-width: 0;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  font-weight: 600;
}

.fact-list dd {
  overflow-wrap: anywhere;
}

.contact-closure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--ink);
}

.contact-closure h2 {
  margin-bottom: 0.5rem;
}

.contact-closure p {
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

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

.button:hover {
  color: var(--ink);
  background: var(--sawdust);
  transform: translateY(-2px);
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-grid,
.footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.footer-name {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-identity p:not(.footer-name),
.footer-facts {
  margin: 0;
  color: #d8d5cc;
  font-size: 0.92rem;
}

.footer-identity address {
  margin-top: 0.2rem;
  font-style: normal;
  line-height: 1.5;
}

.footer-label {
  margin: 0 0 0.8rem;
  color: #d8d5cc;
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-nav ul,
.footer-legal ul {
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: var(--paper);
}

.site-footer a:hover {
  color: var(--sawdust);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(242, 239, 232, 0.36);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
  color: #d8d5cc;
}

@media (max-width: 900px) {
  .header-inner,
  .hero,
  .services-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 1rem;
  }

  .nav-disclosure {
    justify-self: stretch;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    gap: 2.5rem;
  }

  .hero-media img {
    height: clamp(20rem, 65vw, 40rem);
  }

  .services-layout {
    gap: 2rem;
  }

  .about-layout {
    gap: 2rem;
  }

  .about-portrait {
    max-width: 32rem;
  }

  .contact-layout {
    gap: 1.5rem;
  }

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

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

@media (max-width: 640px) {
  body {
    font-size: 1rem;
  }

  .header-inner {
    padding-top: 0.8rem;
  }

  .brand {
    width: min(11rem, 70vw);
  }

  .nav-disclosure summary {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--ink);
    cursor: pointer;
    font-weight: 600;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
    padding-top: 0.5rem;
  }

  .primary-nav a {
    justify-content: center;
    min-width: 0;
    padding-right: 0.45rem;
    padding-left: 0.45rem;
    text-align: center;
  }

  .primary-nav a:last-child {
    grid-column: 1 / -1;
  }

  .noscript-note {
    font-size: 0.76rem;
  }

  .page-intro,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-intro {
    padding-top: 3.5rem;
  }

  .page-intro h1,
  .hero h1,
  .gallery-heading h1,
  .legal-layout > h1 {
    max-width: 9ch;
    font-size: clamp(2.65rem, 14vw, 4.8rem);
  }

  .hero {
    gap: 2rem;
    padding-top: 2rem;
  }

  .hero-media img {
    min-height: 15rem;
    height: 68vw;
  }

  .material-strip {
    grid-template-columns: 1fr;
  }

  .material-strip figure + figure {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .material-strip img {
    height: 60vw;
    min-height: 13rem;
  }

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

  .service-media-grid figure:nth-child(odd),
  .service-media-grid figure:nth-child(-n + 2) {
    border-right-width: 0;
    border-bottom-width: 1px;
  }

  .service-media-grid figure:last-child {
    border-bottom-width: 0;
  }

  .service-media-grid img {
    height: 56vw;
    min-height: 12rem;
  }

  .about-portrait {
    max-width: none;
  }

  .about-portrait img {
    aspect-ratio: 4 / 5;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading p {
    margin-top: 1.5rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(4n + 1),
  .gallery-grid figure:nth-child(4n + 2),
  .gallery-grid figure:nth-child(4n + 3),
  .gallery-grid figure:nth-child(4n + 4) {
    grid-column: 1;
  }

  .gallery-grid img,
  .gallery-grid figure:nth-child(3n + 2) img,
  .gallery-grid figure:nth-child(4n + 3) img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .contact-facts,
  .fact-list {
    grid-template-columns: 1fr;
  }

  .contact-facts dt,
  .contact-facts dd,
  .fact-list dt,
  .fact-list dd {
    padding: 0.55rem 0;
    border-bottom: 0;
  }

  .contact-facts dd,
  .fact-list dd {
    padding-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-closure,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-closure .button {
    width: 100%;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .skip-link,
  .primary-nav a:hover,
  .route-entry:hover,
  .button:hover {
    transform: none;
  }
}
