:root {
  --ink: #172f34;
  --ink-deep: #0e2429;
  --paper: #f4efe5;
  --paper-bright: #fbf8f1;
  --rust: #924d3d;
  --rust-light: #c78369;
  --gold: #b18a48;
  --slate: #53686a;
  --line: rgba(23, 47, 52, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(177, 138, 72, 0.08), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--paper-bright);
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
}

.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 92px;
  max-width: 1420px;
  margin: 0 auto;
  padding: 1.25rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.monogram {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: -0.08em;
}

.wordmark strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.wordmark small {
  display: block;
  margin-top: 0.18rem;
  color: var(--rust);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.8rem);
}

nav a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 2px;
  background: var(--rust);
  transition: right 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after { right: 0; }

.hero {
  max-width: 1420px;
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 7.5rem) 4vw 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.hero-copy { padding-left: clamp(0rem, 4vw, 4.5rem); }

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--rust);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.6;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #132529;
  font-size: clamp(3.9rem, 7vw, 7.4rem);
  letter-spacing: -0.055em;
  line-height: 0.91;
}

h1 em {
  display: block;
  margin-top: 0.16em;
  color: var(--rust);
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin: 2.1rem 0 0;
  color: var(--slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.3rem;
}

.button {
  min-height: 52px;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

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

.button-primary:hover { background: var(--rust); }

.button-quiet { border-color: var(--line); }

.button-quiet:hover { border-color: var(--rust); color: var(--rust); }

.portrait-frame {
  position: relative;
  width: min(100%, 570px);
  margin: 0;
  justify-self: center;
  background: var(--ink);
  box-shadow: 24px 24px 0 rgba(23, 47, 52, 0.08);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(146, 77, 61, 0.6);
  z-index: -1;
}

.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.55;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.86) contrast(1.03);
}

.portrait-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.15rem;
  width: 5px;
  background: var(--rust);
  z-index: 1;
}

.portrait-frame figcaption {
  min-height: 58px;
  padding: 1rem 1.25rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portrait-frame figcaption span:last-child { color: #d7b99b; }

.book-feature {
  min-height: 880px;
  padding: clamp(5rem, 9vw, 9rem) max(5vw, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  overflow: hidden;
  background: var(--ink-deep);
  color: #e9e4d8;
}

.book-art {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 239, 229, 0.15);
  background:
    linear-gradient(rgba(244, 239, 229, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 229, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.book-art::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(199, 131, 105, 0.32);
  pointer-events: none;
}

.book-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(74%, 390px);
  height: auto;
  filter: drop-shadow(22px 24px 20px rgba(0, 0, 0, 0.35));
}

.book-art img.portrait-cover {
  width: min(74%, 390px);
  filter: drop-shadow(18px 22px 18px rgba(0, 0, 0, 0.38));
}

.series-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 0.9rem 1.15rem;
  background: var(--rust);
  color: #fff8ec;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-copy { max-width: 690px; }
.eyebrow-light { color: #d7b99b; }

.book-copy h2 {
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(3.1rem, 5.6vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.book-hook {
  margin: 1.4rem 0 2rem;
  color: #e5c7a9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.book-copy > p:not(.eyebrow):not(.book-hook) {
  max-width: 640px;
  color: #bcc7c5;
  font-size: 1rem;
  line-height: 1.8;
}

.format-line {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.format-line span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(244, 239, 229, 0.2);
  color: #d5dddb;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.text-link {
  color: #e5c7a9;
  text-underline-offset: 0.35rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

blockquote {
  max-width: 580px;
  margin: 3rem 0 0;
  padding: 1.3rem 0 0 1.3rem;
  border-top: 1px solid rgba(244, 239, 229, 0.2);
  border-left: 4px solid var(--rust-light);
  color: #e6e0d5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.65;
}

.next-book {
  position: relative;
  max-width: 1320px;
  min-height: 760px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 4vw;
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.chapter-number {
  position: absolute;
  top: 50%;
  left: 42%;
  z-index: 0;
  color: rgba(23, 47, 52, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(9rem, 19vw, 17rem);
  line-height: 0.72;
  letter-spacing: -0.1em;
  transform: translate(-50%, -50%);
}

.next-book-art {
  position: relative;
  z-index: 1;
  padding: 1.15rem;
  display: grid;
  place-items: center;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  box-shadow: 18px 22px 0 rgba(23, 47, 52, 0.08);
  transform: rotate(-1.1deg);
}

.next-book-art img {
  display: block;
  width: min(100%, 385px);
  height: auto;
}

.next-book-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.next-book-heading {
  position: relative;
  z-index: 1;
}

.next-book-heading h2,
.about h2,
.history h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(3.3rem, 6vw, 6.2rem);
  letter-spacing: -0.05em;
  line-height: 0.93;
}

.next-book-copy {
  position: relative;
  padding: 2.3rem 0 2.3rem 2.3rem;
  border-left: 1px solid var(--line);
}

.status-stamp {
  width: fit-content;
  margin: 0 0 1.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--rust);
  color: var(--rust);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.next-hook {
  margin: 0 0 1.2rem;
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.next-book-copy > p:last-of-type {
  margin-bottom: 0;
  color: var(--slate);
  line-height: 1.8;
}

.next-book-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
}

.next-book-actions > span {
  color: var(--rust);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about {
  padding: clamp(5rem, 10vw, 10rem) max(5vw, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 9vw, 9rem);
  background: var(--paper-bright);
  border-top: 1px solid var(--line);
}

.about-title-wrap {
  position: relative;
  padding-top: 0.75rem;
}

.about-title-wrap::after {
  content: "";
  display: block;
  width: 84px;
  height: 5px;
  margin-top: 2.3rem;
  background: var(--rust);
}

.about-copy { max-width: 810px; }

.about-lead {
  margin: 0 0 2.5rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.5;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.about-columns p {
  margin: 0;
  color: var(--slate);
  line-height: 1.85;
}

.signature-line {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.signature-line span {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.35rem;
  transform: rotate(-3deg);
}

.signature-line small {
  color: var(--rust);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.events {
  padding: clamp(5rem, 9vw, 8.5rem) max(5vw, calc((100vw - 1320px) / 2));
  background: var(--rust);
  color: var(--paper-bright);
}

.section-heading {
  margin-bottom: 3.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 3rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(3.3rem, 6vw, 6rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 0.4rem;
  color: #ead8ce;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.65;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255, 248, 236, 0.28);
}

.event-card {
  grid-column: span 2;
  min-height: 260px;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1.5rem;
  border-right: 1px solid rgba(255, 248, 236, 0.18);
  border-bottom: 1px solid rgba(255, 248, 236, 0.18);
}

.event-card:nth-child(4),
.event-card:nth-child(5) { grid-column: span 3; }

.event-card time {
  min-width: 60px;
  padding-right: 1.3rem;
  border-right: 1px solid rgba(255, 248, 236, 0.22);
}

.event-card time strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.1;
}

.event-card time span,
.event-card > div > p {
  display: block;
  margin: 0.55rem 0 0;
  color: #e3c6b8;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 1.25rem 0 0.8rem;
  color: var(--paper-bright);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}

.event-card > div > span {
  color: #f1e2d8;
  font-size: 0.85rem;
  line-height: 1.55;
}

.history {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) 4vw;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.history-image {
  position: relative;
  display: block;
  padding: 1.25rem 1.25rem 3.8rem;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transform: rotate(-1.2deg);
  box-shadow: 18px 22px 0 rgba(23, 47, 52, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.history-image:hover,
.history-image:focus-visible {
  transform: rotate(-0.4deg) translateY(-4px);
  box-shadow: 20px 26px 0 rgba(23, 47, 52, 0.11);
}

.history-image img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.72) sepia(0.08);
}

.history-image > span {
  position: absolute;
  left: 1.4rem;
  bottom: 1.35rem;
  color: var(--rust);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.history-copy { max-width: 720px; }

.history-lead {
  margin: 1.8rem 0 1.2rem;
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.5;
}

.history-copy > p:not(.eyebrow):not(.history-lead) {
  color: var(--slate);
  line-height: 1.8;
}

.history-copy ul {
  margin: 1.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  list-style: none;
}

.history-copy li {
  padding: 0.8rem 0 0.8rem 1.35rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

.history-copy li::before {
  content: "•";
  margin-left: -1.3rem;
  padding-right: 0.8rem;
  color: var(--rust);
}

.media-callout {
  padding: clamp(4rem, 7vw, 6.5rem) max(5vw, calc((100vw - 1320px) / 2));
  background: #d8c29f;
  color: var(--ink-deep);
}

.media-callout > p {
  margin: 0 0 1.2rem;
  color: var(--rust);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.media-callout h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.media-callout > div {
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(23, 47, 52, 0.3);
}

.media-callout > div > span {
  max-width: 720px;
  line-height: 1.7;
}

.media-callout a,
.footer-links a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-underline-offset: 0.35rem;
}

.documentary-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 18%, rgba(177, 138, 72, 0.1), transparent 24rem),
    var(--paper);
}

.documentary-hero {
  max-width: 1420px;
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 4vw;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.documentary-copy { max-width: 690px; }

.documentary-copy h1 {
  font-size: clamp(3.8rem, 6.5vw, 7rem);
  line-height: 0.91;
}

.documentary-lead {
  margin: 2rem 0 1.3rem;
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.5;
}

.documentary-copy > p:not(.eyebrow):not(.documentary-lead) {
  color: var(--slate);
  line-height: 1.85;
}

.documentary-art {
  margin: 0;
  padding: 1.15rem 1.15rem 0;
  background: var(--ink-deep);
  border: 1px solid rgba(23, 47, 52, 0.28);
  box-shadow: 24px 28px 0 rgba(23, 47, 52, 0.08);
  transform: rotate(0.65deg);
}

.documentary-art img {
  display: block;
  width: 100%;
  height: auto;
}

.documentary-art figcaption {
  min-height: 58px;
  padding: 1rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #d9c6ad;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.documentary-art figcaption span:last-child { color: var(--rust-light); }

.documentary-video {
  padding: clamp(5rem, 9vw, 8rem) max(5vw, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--paper-bright);
  border-top: 1px solid var(--line);
}

.documentary-video-copy h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.documentary-video-copy > p:last-child {
  margin: 1.8rem 0 0;
  color: var(--slate);
  line-height: 1.85;
}

.documentary-video-frame {
  margin: 0;
  padding: 1rem 1rem 0;
  background: var(--ink-deep);
  box-shadow: 22px 26px 0 rgba(23, 47, 52, 0.09);
}

.documentary-video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 910 / 512;
  background: #05090a;
}

.documentary-video-frame figcaption {
  min-height: 54px;
  padding: 0.9rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #d9c6ad;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.documentary-video-frame figcaption span:last-child { color: var(--rust-light); }

.documentary-progress {
  padding: clamp(5rem, 9vw, 8rem) max(5vw, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--ink-deep);
  color: var(--paper-bright);
}

.documentary-progress h2 {
  max-width: 680px;
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(3rem, 5.8vw, 6rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.documentary-progress-copy {
  padding-left: clamp(0rem, 4vw, 3rem);
  border-left: 1px solid rgba(244, 239, 229, 0.2);
}

.documentary-progress-copy p {
  margin-top: 0;
  color: #bcc7c5;
  line-height: 1.85;
}

.documentary-email {
  display: inline-block;
  margin-top: 1.4rem;
  color: #e5c7a9;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-underline-offset: 0.4rem;
}

.documentary-footer {
  padding: 2rem max(5vw, calc((100vw - 1320px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(244, 239, 229, 0.16);
  color: #96a7a5;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.documentary-footer a { color: #d9c6ad; }

.contact-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 24%, rgba(177, 138, 72, 0.11), transparent 25rem),
    var(--paper);
}

.contact-hero {
  max-width: 1320px;
  min-height: calc(100vh - 92px - 78px);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 4vw;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.contact-heading h1 {
  font-size: clamp(4rem, 7vw, 7.2rem);
}

.contact-heading > p:last-child {
  max-width: 610px;
  margin: 2rem 0 0;
  color: var(--slate);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  line-height: 1.7;
}

.contact-card {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--ink-deep);
  color: var(--paper-bright);
  box-shadow: 24px 28px 0 rgba(23, 47, 52, 0.09);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(199, 131, 105, 0.28);
  pointer-events: none;
}

.contact-label {
  position: relative;
  margin: 0 0 1rem;
  color: #d7b99b;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-address {
  position: relative;
  display: inline-block;
  color: var(--paper-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  line-height: 1.25;
  text-decoration-color: var(--rust-light);
  text-underline-offset: 0.45rem;
}

.contact-actions {
  position: relative;
  margin-top: 2.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-card .contact-copy-button {
  min-height: 52px;
  height: auto;
  padding: 0 1.4rem;
  border: 1px solid rgba(244, 239, 229, 0.34);
  border-radius: 0;
  background: transparent;
  color: var(--paper-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card .contact-copy-button:hover,
.contact-card .contact-copy-button:focus-visible {
  border-color: var(--rust-light);
  background: rgba(255, 255, 255, 0.06);
}

.contact-help {
  position: relative;
  max-width: 570px;
  margin: 1.7rem 0 0;
  color: #aebdbb;
  font-size: 0.83rem;
  line-height: 1.7;
}

.contact-page .documentary-footer { background: var(--ink-deep); }

footer {
  padding: clamp(5rem, 9vw, 8rem) max(5vw, calc((100vw - 1320px) / 2)) 2rem;
  background: var(--ink-deep);
  color: var(--paper-bright);
}

.footer-intro {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  align-items: start;
  gap: 3rem;
}

.footer-intro h2 {
  max-width: 920px;
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(3rem, 6vw, 6.2rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.footer-links {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) minmax(230px, 1.45fr);
  border-top: 1px solid rgba(244, 239, 229, 0.22);
  border-bottom: 1px solid rgba(244, 239, 229, 0.22);
}

.footer-links a {
  padding: 1.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-right: 1px solid rgba(244, 239, 229, 0.18);
  color: #d9c6ad;
}

.footer-links a:hover { color: var(--paper-bright); background: rgba(255,255,255,0.04); }

.footer-base {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: #96a7a5;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-base a { color: #d9c6ad; }

@media (max-width: 920px) {
  .site-header { align-items: flex-start; }
  nav { max-width: 300px; justify-content: flex-end; flex-wrap: wrap; row-gap: 1rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 5rem; }
  .hero-copy { padding-left: 0; }
  .portrait-frame { width: min(88vw, 570px); }
  .book-feature { grid-template-columns: 1fr; }
  .book-art { min-height: 680px; }
  .book-copy { max-width: 760px; }
  .next-book { grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr); }
  .next-book-details { grid-template-columns: 1fr; gap: 2.4rem; }
  .next-book-copy { padding: 2rem 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .chapter-number { left: 56%; }
  .about { grid-template-columns: 1fr; }
  .event-card { grid-column: span 3; }
  .event-card:nth-child(4),
  .event-card:nth-child(5) { grid-column: span 3; }
  .history { grid-template-columns: 1fr; }
  .history-image { width: min(88vw, 610px); justify-self: center; }
  .documentary-hero { min-height: auto; grid-template-columns: 1fr; }
  .documentary-art { width: min(88vw, 760px); justify-self: center; }
  .documentary-video { grid-template-columns: 1fr; }
  .documentary-progress { grid-template-columns: 1fr; }
  .documentary-progress-copy { padding: 2.2rem 0 0; border-left: 0; border-top: 1px solid rgba(244, 239, 229, 0.2); }
  .contact-hero { min-height: auto; grid-template-columns: 1fr; }
  .footer-intro { grid-template-columns: 1fr; gap: 1rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-header { padding: 1rem 1.1rem; flex-direction: column; gap: 1.1rem; }
  nav { max-width: none; width: 100%; justify-content: space-between; gap: 0.65rem; overflow-x: auto; padding-bottom: 0.3rem; }
  nav a { white-space: nowrap; font-size: 0.61rem; }
  .hero { padding: 4rem 1.3rem 4.5rem; gap: 4rem; }
  h1 { font-size: clamp(3.3rem, 17vw, 5.2rem); }
  .hero-intro { font-size: 1.05rem; }
  .button { width: 100%; }
  .portrait-frame figcaption { align-items: flex-start; flex-direction: column; }
  .book-feature { padding: 5rem 1.3rem; gap: 4rem; }
  .book-art { min-height: 520px; }
  .book-art img { width: min(76%, 320px); }
  .book-art img.portrait-cover { width: min(76%, 320px); }
  .book-copy h2 { font-size: clamp(3.2rem, 16vw, 4.8rem); }
  .text-link { width: 100%; text-align: center; }
  .next-book { grid-template-columns: 1fr; padding: 5rem 1.3rem; }
  .chapter-number { position: absolute; top: 2rem; right: 1.5rem; left: auto; font-size: 9rem; transform: none; }
  .next-book-art { width: min(78vw, 360px); justify-self: center; }
  .next-book-details { grid-template-columns: 1fr; }
  .next-book-copy { padding: 2rem 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .about { padding: 5rem 1.3rem; }
  .about-columns { grid-template-columns: 1fr; }
  .signature-line { align-items: flex-start; flex-direction: column; }
  .events { padding: 5rem 1.3rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .event-list { grid-template-columns: 1fr; }
  .event-card,
  .event-card:nth-child(4),
  .event-card:nth-child(5) { grid-column: 1; padding: 1.5rem 0.5rem; }
  .history { padding: 5rem 1.3rem; }
  .documentary-hero { padding: 4.5rem 1.3rem 5rem; }
  .documentary-copy h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .documentary-art { width: 100%; }
  .documentary-art figcaption { align-items: flex-start; flex-direction: column; }
  .documentary-video { padding: 5rem 1.3rem; }
  .documentary-video-frame figcaption { align-items: flex-start; flex-direction: column; }
  .documentary-progress { padding: 5rem 1.3rem; }
  .contact-hero { padding: 5rem 1.3rem; }
  .contact-actions { flex-direction: column; }
  .contact-card .contact-copy-button { width: 100%; }
  .media-callout { padding: 4.5rem 1.3rem; }
  .media-callout > div { align-items: flex-start; flex-direction: column; }
  footer { padding: 5rem 1.3rem 2rem; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; }
  .documentary-footer { padding: 2rem 1.3rem; flex-direction: column; }
}

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