@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Libre+Caslon+Display&display=swap");
:root {
  --ink: #101a1e;
  --paper: #fff;
  --muted: #657074;
  --gold: #b99459;
  --line: #dfe2e1;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #b99459;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2,
h3,
.signature {
  font-family: var(--serif);
}
em {
  font-weight: 400;
}
h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
h2 em {
  color: #777b75;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  line-height: 1.7;
}
.section {
  padding: 100px max(6vw, 24px);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px;
  background: white;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 112px;
  padding: 10px 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: var(--ink);
  color: white;
}
.brand {
  flex-shrink: 0;
  width: 178px;
}
.brand img {
  width: 178px;
  height: 94px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 0.875rem;
}
.site-header nav a {
  padding: 10px 0;
}
.site-header nav a:hover {
  color: #dbba86;
}
.site-header .nav-cta {
  border: 1px solid #66706f;
  padding: 13px 20px;
  margin-left: 10px;
}
.nav-cta span {
  margin-left: 18px;
  color: #d4ae70;
}
.menu-toggle {
  display: none;
}
.hero {
  height: calc(100svh - 112px);
  min-height: 610px;
  max-height: 980px;
  position: relative;
  color: white;
  background: #293b43;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  position: absolute;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 19, 24, 0.74),
      rgba(9, 19, 24, 0.24) 68%,
      rgba(9, 19, 24, 0.09)
    ),
    linear-gradient(0deg, rgba(9, 19, 24, 0.55), transparent 40%);
}
.hero-content {
  position: relative;
  padding: clamp(65px, 11vh, 140px) 6vw 120px;
  max-width: 1000px;
}
.hero .eyebrow {
  color: #e2cba8;
}
.hero h1 {
  font-size: clamp(4.5rem, 7.5vw, 8rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  margin: 27px 0;
}
.hero h1 em {
  color: #efdfc7;
}
.hero-copy {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #f2f1ed;
}
.button {
  display: inline-flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-size: 0.875rem;
  border: 0;
}
.button-light {
  background: #fff;
  color: var(--ink);
  margin-top: 30px;
}
.button-light:hover {
  background: #e9dac2;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #314044;
}
.hero-bottom {
  position: absolute;
  bottom: 27px;
  left: 6vw;
  right: 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  border-top: 1px solid #ffffff45;
  padding-top: 22px;
}
.hero-bottom a {
  letter-spacing: 0;
  font-size: 0.875rem;
}
.hero-bottom a span {
  margin-left: 22px;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 55px;
  border-bottom: 1px solid var(--line);
}
.intro > .eyebrow {
  padding-top: 10px;
  color: #7c643e;
}
.intro h2 {
  margin-bottom: 30px;
}
.intro div p {
  max-width: 645px;
  color: var(--muted);
  margin-top: 14px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
  color: #7c643e;
}
.section-heading > p {
  color: var(--muted);
  font-size: 0.9rem;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 30px;
}
.project-card {
  display: block;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  min-width: 0;
}
.project-card.wide {
  grid-column: 1/-1;
}
.image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.32;
  background: #edf0ef;
}
.wide .image-wrap {
  aspect-ratio: 2.2;
}
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.project-card:hover img {
  transform: scale(1.035);
}
.image-action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}
.project-label {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 19px;
}
.project-label strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
}
.project-label small {
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}
.project-label > span:last-child {
  font-size: 0.8rem;
  color: var(--muted);
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: white;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-content {
  padding: 85px 6vw;
}
.story-content .eyebrow {
  color: #d5b786;
  margin-bottom: 26px;
}
.story-content h2 {
  font-size: clamp(3rem, 4.2vw, 4.5rem);
  margin-bottom: 32px;
}
.story-content h2 em {
  color: #b8c1bf;
}
.story-content > p:not(.eyebrow):not(.story-signoff) {
  color: #ccd0cf;
  margin-top: 16px;
  max-width: 470px;
}
.signature {
  font-size: 2.4rem;
  margin-top: 35px;
  color: #d6b77e;
}
.signature em {
  color: #e6e8e4;
}
.story-signoff {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-top: 6px;
}
.values {
  border-bottom: 1px solid var(--line);
}
.values > .eyebrow {
  color: #7c643e;
  margin-bottom: 40px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.value-grid article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.value-grid span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #7c643e;
}
.value-grid h3 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 22px 0 16px;
}
.value-grid p {
  color: var(--muted);
  max-width: 330px;
}
.client-stories {
  text-align: center;
  background: #f5f6f4;
}
.client-stories .eyebrow {
  color: #7c643e;
  margin-bottom: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  border: 0;
  border-bottom: 1px solid #9a855f;
  padding: 8px 0;
  background: none;
  font-size: 0.875rem;
}
.client-stories .text-link {
  margin-top: 30px;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.contact .eyebrow {
  color: #7c643e;
  margin-bottom: 20px;
}
.contact > div > p:last-child {
  margin-top: 25px;
  color: var(--muted);
}
.form-notice {
  font-size: 0.875rem;
  color: #6a6255;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 24px;
}
.inquiry-form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 23px;
}
.inquiry-form input,
.inquiry-form textarea {
  display: block;
  border: 0;
  border-bottom: 1px solid #bcc4c3;
  padding: 12px 0;
  background: transparent;
  width: 100%;
  border-radius: 0;
  color: var(--ink);
  font-size: 1rem;
}
.inquiry-form textarea {
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.form-result {
  margin-top: 24px;
  font-size: 0.875rem;
}
.form-result pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: inherit;
  background: #f1f3f2;
  padding: 18px;
}
.form-result[hidden] {
  display: none;
}
footer {
  background: var(--ink);
  color: #e9ecea;
  padding: 55px 6vw 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer-brand {
  font-family: var(--sans);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
}
.footer-brand em {
  font-family: var(--serif);
  letter-spacing: 0;
  color: #c9ac78;
}
.footer-brand + p {
  grid-column: 1;
  color: #a9b4b3;
  font-size: 0.875rem;
}
footer nav {
  grid-column: 2;
  grid-row: 1/3;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 25px;
  font-size: 0.875rem;
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #354044;
  margin-top: 30px;
  padding-top: 24px;
  font-size: 0.75rem;
  color: #a9b4b3;
}
.footer-bottom span:last-child {
  letter-spacing: 0.09em;
}
.gallery-dialog {
  width: min(1120px, 94vw);
  max-height: 94svh;
  padding: 25px;
  border: 0;
  background: #101a1e;
  color: white;
  overflow: auto;
}
.gallery-dialog::backdrop {
  background: #020608e6;
}
.gallery-dialog figure {
  margin: 35px 0 15px;
}
.gallery-dialog figure img {
  height: 65svh;
  width: 100%;
  object-fit: contain;
}
.gallery-dialog figcaption {
  text-align: center;
  padding-top: 14px;
}
.gallery-close {
  position: absolute;
  right: 15px;
  top: 7px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2rem;
  width: 44px;
  height: 44px;
}
.gallery-controls {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.gallery-controls button {
  background: none;
  border: 1px solid #80918c;
  color: white;
  width: 48px;
  height: 44px;
}
.page-shell {
  min-height: 65vh;
  padding: 95px 8vw;
}
.page-shell .eyebrow {
  color: #7c643e;
  margin-bottom: 24px;
}
.page-shell h1 {
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
}
.page-shell .lede {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 590px;
  margin-top: 30px;
}
.empty-note {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding-top: 35px;
  max-width: 700px;
}
.empty-note h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
.empty-note p {
  color: var(--muted);
}
.empty-note a {
  margin-top: 20px;
}
@media (min-width: 1600px) {
  .section {
    padding-left: max(6vw, calc((100vw - 1500px) / 2));
    padding-right: max(6vw, calc((100vw - 1500px) / 2));
  }
}
@media (max-width: 1000px) {
  .site-header nav {
    gap: 20px;
    font-size: 0.8rem;
  }
  .site-header .nav-cta {
    padding: 10px;
    margin-left: 0;
  }
  .brand,
  .brand img {
    width: 150px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .story-content {
    padding: 60px 5vw;
  }
  .value-grid {
    gap: 25px;
  }
  .contact {
    gap: 5vw;
  }
  footer nav {
    gap: 18px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 25px;
  }
  .site-header {
    height: 94px;
    padding: 7px 24px;
    position: relative;
    z-index: 5;
  }
  .brand,
  .brand img {
    width: 140px;
    height: 78px;
  }
  .menu-toggle {
    display: flex;
    gap: 14px;
    align-items: center;
    background: none;
    border: 1px solid #66706f;
    color: white;
    padding: 8px 14px;
    font-size: 0.875rem;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 94px;
    background: var(--ink);
    padding: 12px 24px 28px;
    box-shadow: 0 15px 20px #0003;
    align-items: stretch;
    gap: 8px;
    font-size: 1rem;
  }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
  }
  .site-header .nav-cta {
    padding: 12px;
    margin-top: 5px;
  }
  .hero {
    height: calc(90svh - 94px);
    min-height: 600px;
    max-height: 800px;
  }
  .hero-image {
    object-position: 55% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #0a151bc2, #0a151b42),
      linear-gradient(0deg, #0a151b99, transparent);
  }
  .hero-content {
    padding: 72px 24px 100px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.11em;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 11.4vw, 5.5rem);
    margin: 25px 0;
  }
  .hero-copy {
    font-size: 1rem;
  }
  .hero-bottom {
    left: 24px;
    right: 24px;
    bottom: 24px;
    align-items: start;
    gap: 20px;
  }
  .hero-bottom > span {
    font-size: 0.65rem;
    max-width: 150px;
    line-height: 1.8;
  }
  .hero-bottom a {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .section {
    padding: 65px 24px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .section-heading > p br {
    display: none;
  }
  .project-grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .project-card.wide {
    grid-column: auto;
  }
  .wide .image-wrap,
  .image-wrap {
    aspect-ratio: 1.18;
  }
  .project-label strong {
    font-size: 1.85rem;
  }
  .story {
    grid-template-columns: 1fr;
  }
  .story-image {
    height: 380px;
  }
  .story-content {
    padding: 60px 24px;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .value-grid h3 {
    margin: 18px 0 12px;
  }
  .value-grid p {
    max-width: 100%;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer {
    padding: 45px 24px 24px;
    grid-template-columns: 1fr;
  }
  footer nav {
    grid-column: 1;
    grid-row: auto;
    justify-content: start;
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }
  .gallery-dialog {
    padding: 15px;
  }
  .gallery-dialog figure img {
    height: 58svh;
  }
  .page-shell {
    padding: 65px 24px;
  }
  .page-shell h1 {
    font-size: 3.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* Second preview: editorial routes, compact viewports and restrained motion. */
.hero {
  min-height: 0;
  height: calc(100svh - 112px);
}
.hero-content {
  padding-top: clamp(32px, 8vh, 100px);
}
.hero .hero-brand {
  font-size: clamp(1.1rem, 2.1vw, 1.8rem);
  letter-spacing: 0.22em;
  color: #fff;
}
.hero h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
  margin: 22px 0;
}
.hero-content > * {
  animation: hero-enter 0.8s both;
}
.hero-content > :nth-child(2) {
  animation-delay: 0.12s;
}
.hero-content > :nth-child(3) {
  animation-delay: 0.22s;
}
.hero-content > :nth-child(4) {
  animation-delay: 0.32s;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.button,
.text-link,
.nav-cta {
  transition:
    background-color 0.2s,
    color 0.2s;
}
.button span,
.text-link span {
  transition: transform 0.2s;
}
.button:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}
.project-card:focus-visible img {
  transform: scale(1.035);
}
.site-header nav a[aria-current="page"],
footer nav a[aria-current="page"] {
  color: #e2cba8;
  text-decoration: underline;
  text-underline-offset: 7px;
}
.journal-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  border-bottom: 1px solid var(--line);
}
.journal-preview .eyebrow {
  color: #7c643e;
  margin-bottom: 22px;
}
.journal-preview > div:last-child {
  align-self: center;
  max-width: 440px;
  color: var(--muted);
}
.journal-preview .text-link {
  margin-top: 24px;
  color: var(--ink);
}
.page-shell {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 6vw;
  padding: 75px 6vw 90px;
  align-items: center;
}
.page-shell h1 {
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}
.page-shell h1 em {
  color: #777b75;
}
.page-image {
  margin: 0;
  align-self: stretch;
  min-height: 540px;
  position: relative;
}
.page-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.page-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 24px 20px;
  background: linear-gradient(transparent, #101a1ecc);
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.empty-note {
  margin-top: 42px;
  padding-top: 28px;
}
body:has(.gallery-dialog[open]) {
  overflow: hidden;
}
.gallery-dialog figure {
  pointer-events: none;
}
.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .page-shell {
    gap: 4vw;
  }
  .page-image {
    min-height: 480px;
  }
}
@media (max-width: 760px) {
  .hero {
    height: calc(100svh - 94px);
    min-height: 530px;
    max-height: 850px;
  }
  .hero-content {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: clamp(3.4rem, 11.4vw, 5.5rem);
  }
  .hero .hero-brand {
    font-size: 1.05rem;
  }
  .hero-bottom > span {
    max-width: 130px;
  }
  .hero-bottom a span {
    margin-left: 8px;
  }
  .menu-toggle {
    min-height: 44px;
  }
  .site-header nav {
    max-height: calc(100svh - 94px);
    overflow: auto;
  }
  .journal-preview,
  .page-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-shell {
    padding: 55px 24px 60px;
  }
  .page-image {
    min-height: 0;
    height: 390px;
    margin-top: 12px;
  }
  .page-shell h1 {
    font-size: clamp(3rem, 10vw, 4.5rem);
  }
}
@media (max-height: 700px) and (min-width: 761px) {
  .hero {
    min-height: 470px;
  }
  .hero-content {
    padding-top: 25px;
  }
  .hero h1 {
    font-size: 4rem;
    margin: 14px 0;
  }
  .hero-copy {
    font-size: 0.95rem;
  }
  .button-light {
    margin-top: 20px;
  }
  .hero-bottom {
    bottom: 18px;
    padding-top: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

/* Dedicated pages share the established homepage design language. */
.work h1,
.contact h1,
.story h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.work h1 em,
.contact h1 em {
  color: #777b75;
}
.story h1 {
  margin-bottom: 32px;
}
.story h1 em {
  color: #b8c1bf;
}
.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #f5f6f4;
}
@media (max-width: 760px) {
  .page-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Architecture-led masonry and published project stories. */
.masonry-grid {
  columns: 3;
  column-gap: 24px;
  margin-top: 42px;
}
.masonry-item {
  display: block;
  break-inside: avoid;
  width: 100%;
  padding: 0;
  margin: 0 0 24px;
  border: 0;
  background: #eff1ee;
  overflow: hidden;
  text-align: left;
}
.masonry-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
  min-height: 100px;
}
.masonry-item:hover img,
.masonry-item:focus-visible img {
  transform: scale(1.025);
}
.masonry-item > span {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  background: #f2f3ef;
  color: #4a5655;
}
.portfolio-more {
  margin-top: 20px;
}
.portfolio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding-top: 70px;
  align-items: center;
}
.portfolio-intro p {
  color: var(--muted);
  max-width: 500px;
}
.portfolio-intro h2 {
  font-size: clamp(2.8rem, 4vw, 4rem);
}
.project-introduction > .text-link,
.article-detail > .text-link {
  margin-bottom: 35px;
}
.project-introduction > .eyebrow {
  margin-bottom: 16px;
  color: #79613a;
}
.project-introduction h1,
.article-detail h1,
.privacy-page h1,
.detail-loading h1 {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: 1.05;
  max-width: 950px;
  letter-spacing: -0.03em;
}
.project-summary {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 720px;
  margin-top: 25px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}
.service-tags li {
  font-size: 0.8rem;
  padding: 7px 12px;
  border: 1px solid #c7cdc5;
  color: #5a624f;
  border-radius: 2px;
}
.project-cover {
  width: 100%;
  max-height: 740px;
  object-fit: cover;
  margin-top: 40px;
}
.project-story {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10vw;
  padding-top: 0;
  padding-bottom: 40px;
}
.editorial-prose {
  max-width: 740px;
  font-size: 1.05rem;
  color: #53605f;
}
.editorial-prose p + p {
  margin-top: 20px;
}
.editorial-prose ul,
.editorial-prose ol {
  padding-left: 24px;
}
.project-facts {
  margin: 0;
}
.project-facts > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.project-facts dt {
  font-size: 0.8rem;
  color: var(--muted);
}
.project-facts dd {
  margin: 0;
  font-size: 0.9rem;
}
.project-gallery-section {
  padding-top: 50px;
}
.project-gallery-section > .eyebrow {
  margin-bottom: 20px;
  color: #79613a;
}
.project-stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin: 35px 0 70px;
}
.project-story-link img {
  aspect-ratio: 1.45;
  object-fit: cover;
  width: 100%;
}
.project-story-link h3 {
  font-size: 2.3rem;
  margin-top: 20px;
}
.project-story-link p {
  color: var(--muted);
  margin-top: 10px;
}
.article-detail .editorial-prose {
  margin: 40px auto;
}
.journal-list-item + .journal-list-item {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 30px;
}
.client-quote {
  margin: 0 0 35px;
}
.client-quote blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 2rem;
}
.client-quote figcaption {
  font-size: 0.85rem;
  color: var(--muted);
}
.inquiry-form select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bcc4c3;
  background: transparent;
  padding: 12px 0;
  font: inherit;
  color: var(--ink);
  border-radius: 0;
}
.optional {
  font-size: 0.75rem;
  color: var(--muted);
}
.inquiry-form .consent-row {
  font-size: 0.8rem;
  line-height: 1.7;
}
.inquiry-form .consent-row input {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  vertical-align: middle;
}
.consent-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.privacy-page {
  max-width: 1000px;
}
.privacy-page h1 {
  margin: 20px 0 35px;
}
.privacy-page h2 {
  font-size: 2.5rem;
  margin: 40px 0 18px;
}
.privacy-page p {
  color: var(--muted);
  margin-top: 18px;
}
.draft-preview-banner {
  padding: 12px 24px;
  background: #f4e8cc;
  color: #594321;
  text-align: center;
  font-size: 0.85rem;
}
.consent-row[hidden] {
  display: none;
}
@media (max-width: 1000px) {
  .masonry-grid {
    columns: 2;
    column-gap: 18px;
  }
  .masonry-item {
    margin-bottom: 18px;
  }
}
@media (max-width: 760px) {
  .masonry-grid {
    column-gap: 12px;
    margin-top: 28px;
  }
  .masonry-item {
    margin-bottom: 12px;
  }
  .masonry-item > span {
    font-size: 0.65rem;
    padding: 8px;
  }
  .portfolio-intro,
  .project-story {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .portfolio-intro {
    padding-top: 30px;
  }
  .project-stories-grid {
    grid-template-columns: 1fr;
  }
  .project-story {
    padding-top: 0;
  }
  .project-gallery-section {
    padding-top: 25px;
  }
  .project-cover {
    margin-top: 28px;
  }
  .project-introduction {
    padding-bottom: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .masonry-item img {
    transition: none;
  }
}
/* WYSIWYG formats survive publication. */
.editorial-prose h2 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  margin: 34px 0 18px;
  color: var(--ink);
}
.editorial-prose h3 {
  font-size: 2rem;
  margin: 28px 0 14px;
  color: var(--ink);
}
.editorial-prose blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 25px 0;
}
.editorial-prose a,
[data-cms] a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Client-supplied About Us story: full-width photography and readable chapters. */
.about-hero {
  position: relative;
  isolation: isolate;
  min-height: 510px;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.about-hero-image,
.about-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-hero-image {
  object-fit: cover;
  object-position: center 55%;
}
.about-hero-shade {
  background:
    linear-gradient(90deg, #101a1ee6, #101a1e45),
    linear-gradient(0deg, #101a1eb8, transparent);
}
.about-hero-content {
  padding: 90px 6vw 65px;
  width: 100%;
}
.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 1180px;
}
.about-hero .eyebrow {
  margin-top: 28px;
  color: #e5cba5;
  letter-spacing: 0.18em;
}
.about-opening {
  padding-block: 80px;
}
.about-reading {
  max-width: 900px;
  margin: auto;
}
.about-opening p,
.about-chapter-copy p,
.about-feature-copy p,
.about-closing p {
  margin: 0 0 22px;
  color: var(--muted);
}
.about-opening p:last-child,
.about-chapter-copy p:last-child,
.about-feature-copy p:last-child {
  margin-bottom: 0;
}
.about-opening .about-lede {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 1.3;
  color: var(--ink);
}
.about-opening .about-promise {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: #79613a;
  margin-top: 34px;
}
.about-feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #f2f4ef;
  align-items: stretch;
}
.about-feature-image {
  margin: 0;
  min-height: 580px;
}
.about-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-feature-copy {
  padding: 75px 6vw;
  align-self: center;
}
.about-feature h2,
.about-chapter h2,
.about-closing h2 {
  font-size: clamp(2.3rem, 3.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
}
.about-feature .about-lede {
  font-size: 1.12rem;
  color: var(--ink);
}
.about-feature .about-principles,
.about-closing .about-principles {
  color: #79613a;
  font-weight: 500;
}
.about-feature-reverse {
  grid-template-columns: 1.15fr 1fr;
  background: var(--ink);
  color: white;
}
.about-feature-reverse .about-feature-image {
  order: 2;
}
.about-feature-reverse p {
  color: #d0d6d1;
}
.about-chapter {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 8vw;
  border-bottom: 1px solid var(--line);
}
.about-chapter-copy {
  max-width: 720px;
}
.about-chapter h2 {
  max-width: 500px;
}
.about-chapter .about-lede {
  color: var(--ink);
  font-size: 1.1rem;
}
.about-license {
  background: #f6f5f0;
}
.about-license .about-principles {
  border-top: 1px solid #cbd0c6;
  padding-top: 24px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.9;
}
.about-closing {
  background: var(--ink);
  color: white;
  text-align: center;
}
.about-closing .about-reading {
  max-width: 780px;
}
.about-closing h2 {
  color: #e4cba1;
}
.about-closing p {
  color: #d0d6d1;
}
.about-closing .about-principles {
  color: #e4cba1;
}
.about-closing .about-wordmark {
  color: white;
  letter-spacing: 0.15em;
  font-size: 1.5rem;
  margin: 45px 0 18px;
}
.about-closing .about-signoff {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.about-closing .button {
  margin-top: 30px;
}
@media (max-width: 1000px) {
  .about-feature-copy {
    padding: 55px 4vw;
  }
  .about-chapter {
    gap: 5vw;
  }
  .about-feature-image {
    min-height: 500px;
  }
}
@media (max-width: 760px) {
  .about-hero {
    min-height: 440px;
  }
  .about-hero-content {
    padding: 65px 24px 45px;
  }
  .about-hero h1 {
    font-size: clamp(2rem, 7.8vw, 3.5rem);
  }
  .about-hero .eyebrow {
    font-size: 0.7rem;
  }
  .about-hero-image {
    object-position: 60% center;
  }
  .about-opening {
    padding-block: 55px;
  }
  .about-feature,
  .about-feature-reverse,
  .about-chapter {
    grid-template-columns: 1fr;
  }
  .about-feature-image {
    min-height: 0;
    height: 350px;
  }
  .about-feature-reverse .about-feature-image {
    order: 0;
  }
  .about-feature-copy {
    padding: 50px 24px;
  }
  .about-feature h2,
  .about-chapter h2,
  .about-closing h2 {
    font-size: 2.2rem;
  }
  .about-chapter {
    gap: 10px;
  }
  .about-chapter h2 {
    margin-bottom: 15px;
  }
  .about-closing .about-wordmark {
    font-size: 1.3rem;
  }
}

/* Client-supplied testimonials: one consistent user icon, no client portraits. */
.testimonials-intro {
  max-width: 1250px;
  margin: auto;
  padding-bottom: 55px;
}
.testimonials-intro .eyebrow {
  color: #79613a;
  margin-bottom: 24px;
}
.testimonials-intro h1 {
  font-family: var(--serif);
  font-size: clamp(2.9rem, 5.4vw, 5.7rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  max-width: 900px;
}
.testimonials-list {
  max-width: 1250px;
  margin: auto;
  padding-top: 0;
  padding-bottom: 80px;
}
.testimonial {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 45px;
  align-items: start;
  margin: 0;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  background: var(--ink);
  padding: 16px 12px;
  display: grid;
  place-items: center;
  min-height: 100px;
}
.testimonial-avatar img {
  width: 120px;
  height: auto;
  object-fit: contain;
}
.testimonial-copy h2,
.testimonial-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.testimonial-copy blockquote {
  margin: 0;
  color: #52605f;
  font-size: 1.03rem;
  line-height: 1.85;
  max-width: 790px;
}
.testimonial-copy blockquote p {
  margin: 0 0 16px;
}
.testimonial-copy blockquote p:last-child {
  margin-bottom: 0;
}
.testimonial-copy figcaption {
  margin-top: 26px;
  display: grid;
  gap: 6px;
}
.testimonial-copy figcaption strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.testimonial-copy figcaption span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
}
.testimonials-carousel {
  max-width: 1000px;
  margin: 40px auto 0;
  text-align: left;
}
.testimonials-carousel .testimonial {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 32px;
  padding: 32px 0 20px;
}
.testimonials-carousel .testimonial-avatar {
  min-height: 85px;
  padding: 13px 9px;
}
.testimonials-carousel .testimonial-avatar img {
  width: 100px;
}
.testimonials-carousel .testimonial-copy h3 {
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
}
.testimonials-carousel .testimonial-copy blockquote {
  font-size: 0.98rem;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 14px 0 0;
}
.testimonial-controls button {
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid #a9b2ab;
  color: var(--ink);
  font-size: 1.25rem;
}
.testimonial-controls button:hover {
  background: #e4e9df;
}
.testimonial-count {
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  color: #52605f;
}
.testimonial[hidden],
.testimonials-carousel[hidden],
.testimonial-controls[hidden] {
  display: none;
}
@media (max-width: 760px) {
  .testimonials-intro {
    padding-bottom: 40px;
  }
  .testimonials-intro h1 {
    font-size: clamp(2.65rem, 10vw, 4rem);
  }
  .testimonials-list {
    padding-bottom: 45px;
  }
  .testimonial,
  .testimonials-carousel .testimonial {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 32px 0;
  }
  .testimonial-avatar,
  .testimonials-carousel .testimonial-avatar {
    width: 110px;
    min-height: 75px;
    padding: 12px;
  }
  .testimonial-avatar img,
  .testimonials-carousel .testimonial-avatar img {
    width: 88px;
  }
  .testimonial-copy blockquote {
    font-size: 1rem;
  }
  .testimonials-carousel {
    margin-top: 30px;
  }
  .testimonial-copy h2,
  .testimonial-copy h3 {
    font-size: 2rem;
  }
  .testimonial-controls {
    margin-top: 0;
  }
}

/* Neutral, decorative avatars for client testimonials. */
.testimonial-avatar,
.testimonials-carousel .testimonial-avatar {
  width: 80px;
  height: 80px;
  min-height: 0;
  padding: 20px;
  border-radius: 50%;
  background: #e7ece8;
}
.testimonial-avatar img,
.testimonials-carousel .testimonial-avatar img {
  width: 40px;
  height: 40px;
}
.testimonials-carousel .testimonial-avatar {
  width: 64px;
  height: 64px;
  padding: 16px;
}
.testimonials-carousel .testimonial-avatar img {
  width: 32px;
  height: 32px;
}

.project-gallery-jump {
  display: inline-block;
  margin-top: 24px;
}
#project-gallery {
  scroll-margin-top: 110px;
}
.project-story-link {
  display: block;
}
.project-story-link .eyebrow {
  margin-top: 20px;
  font-size: 0.72rem;
  color: #79613a;
}
.project-story-link .text-link {
  display: inline-block;
  margin-top: 20px;
}
.project-story-link h3 {
  margin-top: 10px;
}
.project-story-link:hover .text-link {
  text-decoration: underline;
}
.project-related {
  border-top: 1px solid var(--line);
}
.project-related > .eyebrow {
  color: #79613a;
  margin-bottom: 20px;
}

.project-details { min-width: 0; }
.project-map-preview { margin-top: 28px; }
.project-map-preview iframe { display: block; width: 100%; height: 320px; border: 1px solid var(--line); background: #edf0eb; }
.project-map-caption { margin-top: 10px; font-size: .8rem; color: var(--muted); }
@media (max-width: 650px) { .project-map-preview iframe { height: 280px; } }

/* Service navigation and editorial service pages. */
.services-menu{position:relative}.services-menu summary{cursor:pointer;list-style:none;display:flex;align-items:center;gap:8px;font-size:13px;min-height:44px}.services-menu summary::-webkit-details-marker{display:none}.services-dropdown{position:absolute;top:100%;left:-24px;min-width:260px;background:#f7f6f3;color:#152023;box-shadow:0 15px 35px #0002;padding:10px 0;z-index:30}.site-header .services-dropdown a{display:block;padding:15px 24px;border-bottom:1px solid #18222314;color:#182223;font-size:14px;line-height:1.5}.services-dropdown a:last-child{border:0}.services-dropdown a:hover{background:#eae6de}.services-menu summary:focus-visible{outline:2px solid #a48851;outline-offset:4px}
.service-hero{position:relative;min-height:650px;height:calc(90svh - 110px);isolation:isolate;display:flex;align-items:flex-end;color:#fff;background:#121b1e}.service-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2}.service-hero-shade{position:absolute;inset:0;background:linear-gradient(0deg,rgba(10,18,20,.87),rgba(10,18,20,.02));z-index:-1}.service-hero-copy{padding:65px max(6vw,24px);max-width:1000px}.service-hero h1{font-size:clamp(46px,5.7vw,86px);line-height:1.04;margin:20px 0 32px;max-width:850px;color:#fff}.service-hero .text-link{color:#fff}.service-intro{max-width:1120px;margin:auto}.service-intro>p:last-child{font-size:clamp(23px,2.3vw,34px);line-height:1.65}.service-details{background:#f2f3ef}.service-details article{display:grid;grid-template-columns:100px 1fr;gap:40px;max-width:1050px;margin:0 auto;padding:45px 0;border-top:1px solid #cdd1cd}.service-details h2{font-size:clamp(30px,3vw,48px);margin:0 0 22px}.service-details p{line-height:1.9;max-width:760px;color:#4a5557}.service-number{color:#79633c;font-size:16px;padding-top:12px}.service-work-grid{columns:3;column-gap:30px;margin-top:45px}.service-work-grid a{display:block;break-inside:avoid;margin-bottom:35px}.service-work-grid img{width:100%;height:auto;display:block}.service-work-grid h3{font-size:25px;line-height:1.35;margin:18px 0}.service-inquire{background:#131d20;color:#fff}.service-inquire h2{color:#fff;max-width:750px;font-size:clamp(38px,5vw,68px)}.service-inquire a{color:#fff}.service-select-label{display:grid;gap:10px;margin-bottom:26px}.service-select-label select{width:100%;padding:15px;background:#fff;border:1px solid #b6bfbb;font:inherit}
@media(min-width:761px) and (max-width:1100px){.site-header{gap:15px;padding-left:24px;padding-right:24px}.site-header nav{gap:16px}.site-header nav a,.services-menu summary{font-size:12px}.brand img{width:145px}}
@media(max-width:760px){.services-menu{width:100%}.services-menu summary{font-size:20px;padding:10px 0}.services-dropdown{position:static;box-shadow:none;min-width:0;background:#f3f2ee;margin:6px 0 14px}.site-header .services-dropdown a{font-size:16px;padding:12px 20px}.service-hero{min-height:540px;height:calc(90svh - 90px)}.service-hero-copy{padding:40px 24px}.service-details article{grid-template-columns:30px 1fr;gap:18px}.service-work-grid{columns:1}.service-intro>p:last-child{font-size:24px}}
/* CMS prose must wrap even when pasted text contains long words or URLs. */
main, main section, main section > div { min-width: 0; }
main { overflow-wrap: anywhere; }
.article-attachments { margin-top: 64px; }
.article-attachments h2 { margin-bottom: 28px; }
