:root {
  --coal: #0d1215;
  --coal-soft: #151c20;
  --slate: #222c31;
  --slate-light: #344147;
  --chalk: #ebe6da;
  --paper: #f4f0e6;
  --paper-deep: #e7e0d2;
  --ink: #14191b;
  --muted-dark: #b8c0bf;
  --muted-light: #5d6463;
  --sand: #d7b66e;
  --sand-light: #efd492;
  --oxide: #a94f37;
  --teal: #6d9c96;
  --line-dark: #354248;
  --line-light: #cec6b7;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--chalk);
  background: var(--coal);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3.35rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

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

p {
  margin: 0;
}

ul,
ol {
  margin-top: 0;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(790px, 100%);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: var(--coal);
  background: var(--sand-light);
  transform: translateY(-160%);
}

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line-dark);
  background: var(--coal);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-grid;
  gap: 2px;
  min-width: 210px;
  color: var(--chalk);
  text-decoration: none;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.brand span {
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 24px;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  color: #d8d9d5;
  font-size: 0.875rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav .nav-external {
  padding-left: 18px;
  border-left: 1px solid var(--sand);
  color: var(--sand-light);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--sand);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  color: var(--chalk);
  background: transparent;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -7px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 7px;
}

.eyebrow,
.section-index,
.meta-label {
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  border-bottom: 1px solid var(--line-dark);
  background: var(--coal-soft);
}

.hero-grid {
  display: grid;
  min-height: min(820px, calc(100vh - 92px));
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  align-items: stretch;
}

.hero-copy {
  display: flex;
  padding: clamp(72px, 9vw, 126px) clamp(38px, 7vw, 90px) clamp(72px, 9vw, 126px) 0;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin-top: 20px;
}

.hero-lead {
  max-width: 720px;
  margin-top: 30px;
  color: #cbd0cd;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions,
.action-row {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.text-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--sand);
  border-radius: 2px;
  color: var(--coal);
  background: var(--sand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  border-color: var(--sand-light);
  background: var(--sand-light);
}

.button-secondary {
  color: var(--chalk);
  background: transparent;
  border-color: #566166;
}

.button-secondary:hover {
  color: var(--coal);
  background: var(--chalk);
  border-color: var(--chalk);
}

.button-dark {
  color: var(--chalk);
  background: var(--coal);
  border-color: var(--coal);
}

.button-dark:hover {
  color: var(--coal);
  background: var(--sand);
  border-color: var(--sand);
}

.text-button {
  min-height: auto;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
  background: #1b2428;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.08);
}

.hero-visual::after {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 112px;
  height: 112px;
  border-right: 1px solid rgba(239, 212, 146, 0.65);
  border-bottom: 1px solid rgba(239, 212, 146, 0.65);
  content: "";
}

.hero-caption {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  padding: 16px 18px;
  color: var(--chalk);
  background: rgba(13, 18, 21, 0.88);
  font-size: 0.82rem;
}

.page-hero {
  padding: clamp(70px, 10vw, 124px) 0 clamp(58px, 8vw, 94px);
  border-bottom: 1px solid var(--line-dark);
  background: var(--coal-soft);
}

.breadcrumbs {
  margin-bottom: 36px;
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: var(--sand-light);
}

.page-hero h1 {
  margin-top: 18px;
}

.page-lead {
  max-width: 820px;
  margin-top: 28px;
  color: #c6cecb;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.section {
  padding: clamp(74px, 9vw, 118px) 0;
}

.section-dark {
  color: var(--chalk);
  background: var(--coal);
}

.section-slate {
  color: var(--chalk);
  background: var(--slate);
}

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

.section-heading {
  display: grid;
  margin-bottom: clamp(42px, 6vw, 70px);
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 30px 60px;
  align-items: start;
}

.section-heading h2 {
  max-width: 15ch;
}

.section-heading .heading-copy {
  max-width: 700px;
  padding-top: 8px;
  color: inherit;
  opacity: 0.78;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}

.prose {
  max-width: 780px;
}

.prose > * + * {
  margin-top: 1.25em;
}

.prose h2,
.prose h3 {
  margin-top: 1.7em;
}

.prose p,
.prose li {
  color: inherit;
}

.prose-lead {
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2.5vw, 2.05rem);
  line-height: 1.38;
}

.fact-panel,
.quote-panel,
.memorial,
.contact-panel {
  padding: clamp(28px, 4vw, 42px);
  border-top: 4px solid var(--sand);
  background: var(--slate);
}

.section-paper .fact-panel,
.section-paper .quote-panel,
.section-paper .contact-panel {
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--oxide);
  background: #fffdf7;
}

.fact-panel dl {
  margin: 22px 0 0;
}

.fact-panel div {
  padding: 15px 0;
  border-top: 1px solid var(--line-dark);
}

.section-paper .fact-panel div {
  border-color: var(--line-light);
}

.fact-panel dt {
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-paper .fact-panel dt {
  color: var(--oxide);
}

.fact-panel dd {
  margin: 4px 0 0;
}

.quote-panel blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.45;
}

.quote-panel cite {
  display: block;
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-style: normal;
}

.memorial {
  border-top-color: var(--sand);
}

.memorial p + p {
  margin-top: 12px;
  color: var(--muted-dark);
}

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

.section-paper .card-grid {
  background: var(--line-light);
  border-color: var(--line-light);
}

.card {
  min-height: 270px;
  padding: 32px;
  color: var(--chalk);
  background: var(--coal-soft);
}

.section-paper .card {
  color: var(--ink);
  background: #fffdf7;
}

.card .section-index {
  display: block;
  margin-bottom: 44px;
}

.card h3 {
  margin-bottom: 16px;
}

.card p {
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.section-paper .card p {
  color: var(--muted-light);
}

.card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--sand-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-paper .card a {
  color: var(--oxide);
}

.step-list {
  counter-reset: process;
  border-top: 1px solid var(--line-light);
}

.step {
  display: grid;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 84px minmax(190px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  counter-increment: process;
}

.step::before {
  color: var(--oxide);
  font-family: var(--serif);
  font-size: 2rem;
  content: counter(process, decimal-leading-zero);
}

.step h2,
.step h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.step p {
  color: var(--muted-light);
}

.image-band {
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
  background: var(--coal-soft);
}

.image-band img {
  width: 100%;
  height: clamp(220px, 34vw, 470px);
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.video-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #080b0d;
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  opacity: 0.65;
}

.video-card button {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.video-card button span {
  display: inline-block;
  padding: 10px 13px;
  border-left: 4px solid var(--sand);
  background: rgba(13, 18, 21, 0.9);
  font-weight: 750;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  min-height: 310px;
  border: 0;
}

.gallery-section + .gallery-section {
  margin-top: clamp(70px, 9vw, 112px);
}

.gallery-intro {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 28px 56px;
  align-items: end;
}

.gallery-intro p {
  max-width: 660px;
  color: var(--muted-light);
}

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

.gallery-card {
  display: grid;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line-light);
  color: var(--ink);
  background: #fffdf7;
  cursor: zoom-in;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #dcd6c9;
}

.gallery-card span {
  display: grid;
  min-height: 98px;
  padding: 18px 20px;
  align-content: start;
}

.gallery-card strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.gallery-card small {
  margin-top: 5px;
  color: var(--muted-light);
}

.lightbox {
  width: min(960px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 18px;
  border: 1px solid var(--line-dark);
  color: var(--chalk);
  background: var(--coal);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  background: #080b0d;
}

.lightbox-bar {
  display: flex;
  margin-top: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lightbox-close {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line-dark);
  color: var(--chalk);
  background: transparent;
  cursor: pointer;
}

.document-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.document-link {
  display: grid;
  padding: 22px 24px;
  color: var(--ink);
  background: #fffdf7;
  text-decoration: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.document-link:hover {
  background: #efe9dd;
}

.document-link strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.document-link small {
  color: var(--oxide);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

details.archive {
  margin-top: 28px;
  border: 1px solid var(--line-light);
  background: #fffdf7;
}

details.archive summary {
  padding: 20px 24px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
}

.archive-links {
  display: grid;
  padding: 0 24px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}

.archive-links a {
  color: var(--oxide);
  overflow-wrap: anywhere;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.contact-value {
  display: inline-block;
  margin-top: 18px;
  color: var(--oxide);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2.3vw, 1.6rem);
  overflow-wrap: anywhere;
}

.legal h2 {
  margin-top: 1.7em;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.legal h3 {
  margin-top: 1.5em;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: 0;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  color: #bdc4c1;
  background: #090d0f;
}

.footer-grid {
  display: grid;
  padding: 56px 0 44px;
  grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(135px, 0.55fr));
  gap: 38px 48px;
}

.footer-brand p {
  max-width: 430px;
  margin-top: 14px;
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 12px;
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--sand-light);
}

.footer-bottom {
  display: flex;
  padding: 18px 0 26px;
  border-top: 1px solid #262f33;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8f9996;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: #c5cbc8;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 8px 14px;
  }

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

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

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

@media (max-width: 1260px) {
  .header-inner {
    position: relative;
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    width: 100%;
    max-height: calc(100vh - 78px);
    padding: 18px 0 24px;
    border-top: 1px solid var(--line-dark);
    align-items: flex-start;
    flex-direction: column;
    overflow-y: auto;
  }

  .site-nav .nav-external {
    width: 100%;
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .js .header-inner {
    flex-wrap: wrap;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav[data-open="true"] {
    display: flex;
  }

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

  .hero-copy {
    padding-right: 0;
  }

  .hero-visual {
    min-height: 440px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .section-heading,
  .editorial-grid,
  .gallery-intro {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .step p {
    grid-column: 2;
  }

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

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

@media (max-width: 620px) {
  body {
    font-size: 16.5px;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand span {
    font-size: 0.6rem;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .gallery-grid,
  .media-grid,
  .contact-grid,
  .footer-grid,
  .archive-links {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
  }

  .gallery-card img {
    height: 250px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
