:root {
  --paper: #f9f7f3;
  --paper-deep: #ece7de;
  --surface: #fff;
  --ink: #2d3337;
  --ink-deep: #1c252b;
  --muted: #626b70;
  --line: rgb(74 89 102 / 17%);
  --line-strong: rgb(74 89 102 / 32%);
  --blue: #6b7c8a;
  --blue-deep: #4a5966;
  --blue-soft: #e7ecef;
  --teal: #7d9e7f;
  --gold: #c4a574;
  --rust: #9b624c;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --site-width: 74rem;
  --site-pad: clamp(1.2rem, 4vw, 3rem);
  --radius: 0.35rem;
  --shadow: 0 1.4rem 4rem rgb(16 41 54 / 12%);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 100%;
  line-height: 1.6;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 86% 4%, rgb(107 124 138 / 10%), transparent 24rem),
    var(--paper);
}

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

[hidden] {
  display: none !important;
}

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

a:hover {
  color: var(--blue);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-170%);
  color: #fff;
  background: var(--ink-deep);
  border-radius: var(--radius);
  font-weight: 700;
}

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

.site-shell,
.section,
.page-shell {
  width: min(var(--site-width), calc(100% - (var(--site-pad) * 2)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(249 247 243 / 94%);
  backdrop-filter: blur(12px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 4.75rem;
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}

.site-nav {
  justify-content: flex-end;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

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

.footer-nav a:hover {
  color: #fff;
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.15rem;
  text-underline-offset: 0.4rem;
}

.site-home .site-header,
.overlay-header .site-header {
  position: absolute;
  inset: 0 0 auto;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-home .site-header-inner,
.overlay-header .site-header-inner {
  min-height: 5.5rem;
}

.site-home .site-nav a,
.overlay-header .site-nav a {
  color: rgb(255 255 255 / 88%);
  text-shadow: 0 1px 8px rgb(0 0 0 / 70%);
}

.site-home .site-nav a:hover,
.site-home .site-nav a[aria-current="page"],
.overlay-header .site-nav a:hover,
.overlay-header .site-nav a[aria-current="page"] {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 550;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.button-primary:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.button-secondary {
  color: var(--ink-deep);
  background: transparent;
  border-color: var(--line-strong);
}

.button-secondary:hover {
  color: var(--ink-deep);
  background: var(--surface);
}

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

.button-light:hover {
  color: var(--ink-deep);
  background: var(--paper-deep);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  width: min(var(--site-width), calc(100% - (var(--site-pad) * 2)));
  min-height: 42rem;
  margin-inline: auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.hero-copy {
  display: grid;
  justify-items: start;
  gap: 1.3rem;
}

.eyebrow,
.card-number,
.signal-label {
  margin: 0;
  color: var(--blue);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.45;
}

.home-intro .eyebrow {
  padding-top: 0.3rem;
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero h1,
.display-title,
.page-shell > h1,
.cta-panel h2 {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 6.8vw, 6rem);
}

.lede,
.page-lede {
  max-width: 45rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-note {
  max-width: 41rem;
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: -2.5rem -2rem 2rem 2rem;
  content: "";
  border: 1px solid var(--line-strong);
  transform: rotate(4deg);
}

.signal-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  color: #fff;
  background: var(--blue-deep);
  box-shadow: var(--shadow);
}

.signal-card .signal-label {
  color: var(--gold);
}

.signal-list {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.signal-list li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.signal-list span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
}

.signal-foot {
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 0.88rem;
}

.trust-strip {
  color: #fff;
  background: var(--ink-deep);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip p {
  margin: 0;
  padding: 1rem;
  border-right: 1px solid rgb(255 255 255 / 14%);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.trust-strip p:last-child {
  border-right: 0;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

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

.section-intro,
.section-heading,
.page-section-split,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
}

.display-title {
  max-width: 16ch;
  margin-top: 0.8rem;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.section-copy,
.section-heading > p,
.page-section-split > div:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-copy p:first-child,
.page-section-split p:first-child {
  margin-top: 0;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading > p {
  max-width: 34rem;
  margin: 0;
}

.card-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--surface);
}

.content-card,
.principle-grid article {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-left: 1px solid var(--line);
}

.content-card:first-child,
.principle-grid article:first-child {
  border-left: 0;
}

.content-card h3,
.principle-grid h2,
.contact-card h2,
.contact-prep h2,
.page-section h2 {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 550;
  line-height: 1.15;
}

.content-card p:last-child,
.principle-grid p {
  color: var(--muted);
}

.cta-panel {
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background: var(--blue-deep);
}

.cta-panel .eyebrow {
  color: var(--gold);
}

.cta-panel h2 {
  max-width: 18ch;
  margin-top: 0.8rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.cta-actions p {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 0.9rem;
}

.page {
  min-height: 60vh;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-shell > .eyebrow {
  margin-bottom: 0.8rem;
}

.page-shell > h1 {
  max-width: 17ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-shell > .page-lede {
  margin-top: 1.5rem;
}

.page-section {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.page-section h2:first-child {
  margin-top: 0;
}

.prose {
  max-width: 48rem;
}

.prose p,
.page-section p {
  font-size: 1.04rem;
}

.principle-grid {
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.contact-layout-single {
  grid-template-columns: minmax(0, 52rem);
  justify-content: center;
}

.contact-page-content {
  display: grid;
  justify-items: center;
}

.contact-page-title,
.contact-page-content > .contact-layout {
  width: min(100%, 52rem);
}

.contact-page-title {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.contact-page-content > .contact-layout {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.contact-card,
.contact-prep {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact-card h2,
.contact-prep h2 {
  margin: 0 0 1.3rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-field,
.form-field-row {
  display: grid;
  gap: 0.45rem;
}

.form-field-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field label {
  color: var(--ink-deep);
  font-size: 0.92rem;
  font-weight: 750;
}

.field-optional {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

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

.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--blue);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue-deep);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy,
.form-fallback {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-fallback {
  margin: 1.25rem 0 0;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 850;
}

.site-footer {
  color: rgb(255 255 255 / 72%);
  background: var(--ink-deep);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 2rem;
  align-items: start;
  padding-block: 3rem;
}

.footer-brand {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
  text-decoration: none;
}

.footer-brand:hover {
  color: #fff;
}

.site-footer p {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
}

.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem 1.4rem;
}

.footer-nav a {
  color: rgb(255 255 255 / 75%);
}

.footer-meta {
  margin-top: 0 !important;
  text-align: right;
}

.footer-artwork {
  margin: 0;
  background: #050607;
}

.footer-artwork a,
.footer-artwork img {
  display: block;
  width: 100%;
}

.footer-artwork a {
  color: inherit;
}

.footer-artwork img {
  height: auto;
}

.photo-hero {
  position: relative;
  display: grid;
  min-height: clamp(30rem, 70vh, 48rem);
  place-items: center;
  overflow: hidden;
  color: #fff;
  background-color: var(--blue-deep);
  background-image:
    linear-gradient(115deg, rgb(28 37 43 / 78%), rgb(74 89 102 / 40%)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.photo-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgb(28 37 43 / 32%), transparent 50%);
  pointer-events: none;
}

.photo-hero-page {
  min-height: clamp(24rem, 55vh, 38rem);
}

.photo-hero-top {
  background-position: center 30%;
}

.photo-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.photo-hero-inner h1,
.home-intro h1 {
  max-width: 18ch;
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.8vw, 4.65rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.photo-hero-inner h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgb(0 0 0 / 30%);
}

.hero-line {
  display: block;
}

.word-cycle {
  display: inline-block;
  color: var(--rust);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.word-cycle.is-changing {
  opacity: 0;
  transform: translateY(-0.16em);
}

.verb-create {
  font-family: var(--serif);
  font-style: italic;
}

.verb-operate {
  font-family: var(--mono);
  font-size: 0.82em;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.verb-explore {
  font-family: var(--sans);
  font-size: 0.82em;
  font-weight: 750;
  letter-spacing: 0;
}

.subject-cycle {
  font-family: var(--sans);
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0;
}

.photo-hero-inner .lede {
  max-width: 42rem;
  margin-top: 1.4rem;
  color: rgb(255 255 255 / 86%);
}

.eyebrow-light {
  color: var(--blue);
}

.photo-hero .eyebrow-light {
  color: #f1d8a2;
}

.opening-photo {
  width: 100%;
  height: clamp(22rem, 60vh, 44rem);
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.opening-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-introduction {
  display: grid;
  gap: clamp(4rem, 9vw, 7.5rem);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(11rem, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.home-intro h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

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

.interest-card {
  padding: 0;
}

.interest-card h2,
.project-group h2,
.project-page-group > h2 {
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 550;
  letter-spacing: -0.025em;
  text-shadow:
    0 1px 0 rgb(255 255 255 / 90%),
    0 -1px 0 rgb(45 51 55 / 20%);
  transform: translateX(0.14em);
}

.interest-card h2 {
  margin: 0 0 1.1rem;
}

.interest-card p:not(.card-number) {
  color: var(--muted);
}

.text-link {
  color: var(--blue-deep);
  font-weight: 600;
}

.project-section {
  border-top: 0 !important;
  padding-top: clamp(1rem, 3vw, 2.5rem);
}

.project-groups {
  display: grid;
  gap: clamp(3rem, 7vw, 5.5rem);
}

.project-group {
  display: grid;
  gap: 1.2rem;
}

.project-group h2,
.project-page-group > h2 {
  margin: 0;
}

.project-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.project-logo-card {
  display: grid;
  min-height: clamp(8rem, 15vw, 12rem);
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  color: var(--ink);
  background: transparent;
  border: 0;
  opacity: 0.76;
  text-decoration: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.project-logo-card:hover {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-0.15rem);
}

.project-logo-card img {
  max-width: min(90%, 18rem);
  max-height: 7rem;
  filter: grayscale(1);
  object-fit: contain;
}

.project-logo-card-cove-light img {
  max-width: min(100%, 22rem);
  max-height: 8.5rem;
  transform: scale(1.12);
}

.project-logo-card-photography img {
  max-width: min(70%, 12rem);
  max-height: 5.25rem;
}

.section-separator {
  width: 100%;
  height: clamp(14rem, 28vw, 24rem);
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.section-separator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.project-role {
  margin: 0.7rem 0;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.project-status {
  color: var(--rust);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 700;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.4rem);
}

.photo-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 700ms ease;
}

.photo-card-link:hover {
  color: inherit;
}

.photo-card-link.is-leaving,
.photo-card-link.is-entering {
  opacity: 0;
}

.photo-card {
  position: relative;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 350ms ease;
}

.photo-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem 1rem 0.8rem;
  color: #fff;
  background: linear-gradient(transparent, rgb(0 0 0 / 72%));
  font-size: 0.82rem;
  font-weight: 700;
}

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

.section-action,
.photo-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 0;
}

.photo-gallery-actions {
  align-items: center;
  column-gap: 1.5rem;
}

.photo-rotation-toggle {
  padding: 0;
  color: rgb(249 247 243 / 74%);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 550;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.photo-rotation-toggle:hover {
  color: var(--gold);
}

.article-shell,
.project-list {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.article-shell {
  display: grid;
  gap: 1.25rem;
}

.story-card,
.draft-note {
  width: min(100%, 56rem);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 1rem 3rem rgb(74 89 102 / 8%);
}

.story-card h2,
.draft-note h2 {
  margin-top: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 550;
}

.story-card p,
.story-card li {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.story-lede p {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  text-align: center;
}

.draft-note {
  border-color: rgb(155 98 76 / 30%);
  background: #fff8f3;
}

.draft-note code {
  overflow-wrap: anywhere;
}

.project-list {
  display: grid;
  gap: clamp(4rem, 8vw, 7rem);
}

.project-page-group {
  display: grid;
  gap: 1.25rem;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  scroll-margin-top: 7rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.project-detail-logo {
  display: grid;
  min-height: 10rem;
  place-items: center;
  padding: 1rem;
  background: var(--paper);
}

.project-detail-logo img {
  max-width: 100%;
  max-height: 8rem;
  object-fit: contain;
}

.project-detail-copy > p:not(.project-role, .project-emphasis, .project-status) {
  color: var(--muted);
  font-size: 1.03rem;
}

.project-emphasis {
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.dialog-open {
  overflow: hidden;
}

dialog {
  color: var(--ink);
}

dialog::backdrop {
  background: rgb(7 10 12 / 92%);
  backdrop-filter: blur(6px);
}

.project-dialog {
  width: min(48rem, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  overflow: auto;
  background: transparent;
  border: 0;
}

.project-dialog-inner {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 2rem 6rem rgb(0 0 0 / 30%);
}

.project-dialog-logo {
  display: grid;
  min-height: clamp(11rem, 27vw, 15rem);
  place-items: center;
  padding: clamp(2.5rem, 7vw, 4.5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.project-dialog-logo img {
  max-width: min(100%, 28rem);
  max-height: 9.5rem;
  object-fit: contain;
}

.project-dialog-logo-12g-solutions img {
  max-width: 9.5rem;
}

.project-dialog-copy {
  max-width: 44rem;
  padding: clamp(2rem, 6vw, 3.5rem);
}

.project-dialog-copy .project-role {
  margin: 0 0 0.8rem;
}

.project-dialog-copy h2 {
  margin: 0 0 1.4rem;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 550;
  line-height: 1;
}

.project-dialog-copy > p:not(.project-role, .project-emphasis, .project-status) {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.project-dialog-copy .project-emphasis {
  margin-block: 1.75rem;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  place-items: center;
  color: var(--ink-deep);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.dialog-close:hover {
  background: var(--paper-deep);
}

.media-dialog {
  position: fixed;
  inset: 0;
  display: none;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(4rem, 7vh, 5.5rem) clamp(1rem, 3vw, 3rem) clamp(1rem, 3vh, 2rem);
  overflow: auto;
  background: transparent;
  border: 0;
}

.media-dialog[open] {
  display: grid;
  place-items: center;
}

.media-dialog-figure {
  display: grid;
  max-width: 100%;
  max-height: 100%;
  justify-items: center;
  margin: 0;
}

.media-dialog-figure img {
  max-width: 100%;
  max-height: calc(100dvh - 10rem);
  object-fit: contain;
  box-shadow: 0 2rem 6rem rgb(0 0 0 / 45%);
}

.media-dialog-figure figcaption {
  padding: 1rem;
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  text-align: center;
  text-shadow: 0 1px 4px #000;
}

.dialog-close-light {
  color: #fff;
  background: rgb(15 20 24 / 76%);
  border-color: rgb(255 255 255 / 50%);
}

.dialog-close-light:hover {
  background: rgb(15 20 24 / 95%);
}

.photo-band {
  color: var(--paper);
  background: var(--ink-deep);
}

.photo-band .display-title {
  max-width: 20ch;
  margin-top: 0.65rem;
  color: var(--paper);
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.06;
}

.photo-band .eyebrow {
  color: var(--gold);
}

.photo-section-heading {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.photo-section-lede {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: rgb(249 247 243 / 74%);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.photo-band-link {
  color: var(--paper);
  font-weight: 550;
}

.photo-band-link:hover {
  color: var(--gold);
}

.photography-gallery {
  padding-top: 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.topic-grid article {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  background: var(--surface);
}

.topic-grid h2 {
  margin-top: 0;
}

@media (max-width: 60rem) {
  .site-header-inner {
    padding: 0.9rem 0;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    max-width: 15ch;
  }

  .hero-visual {
    width: min(35rem, 100%);
  }

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

  .trust-strip p:nth-child(2) {
    border-right: 0;
  }

  .trust-strip p:nth-child(n + 3) {
    border-top: 1px solid rgb(255 255 255 / 14%);
  }

  .section-intro,
  .section-heading,
  .page-section-split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .principle-grid,
  .interest-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

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

  .content-card,
  .principle-grid article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .content-card:first-child,
  .principle-grid article:first-child {
    border-top: 0;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 40rem) {
  :root {
    --site-pad: 1rem;
  }

  .site-nav {
    gap: 0.45rem 1rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .home-intro {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-intro .eyebrow {
    padding-top: 0;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-visual::before {
    display: none;
  }

  .signal-card {
    padding: 1.5rem;
  }

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

  .trust-strip p,
  .trust-strip p:nth-child(2) {
    border-top: 1px solid rgb(255 255 255 / 14%);
    border-right: 0;
  }

  .trust-strip p:first-child {
    border-top: 0;
  }

  .contact-layout,
  .form-field-row,
  .project-detail {
    grid-template-columns: 1fr;
  }

  .project-logo-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .project-logo-card {
    min-height: 10rem;
  }

  .photo-hero {
    min-height: 27rem;
    background-attachment: scroll;
  }

  .photo-hero-page {
    min-height: 22rem;
  }

  .photo-card,
  .photo-card img {
    min-height: 15rem;
  }

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

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

@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;
  }

  .word-cycle {
    transition: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cta-panel {
    display: none;
  }

  body {
    background: #fff;
  }
}
