/* Rich Mason — prestige editorial design system
   Display: Cormorant Garamond · UI: Outfit
   Paper / ink / oxblood · 8–96 spacing scale */

:root {
  --paper: #f3eadc;
  --paper-2: #e8dcc8;
  --paper-3: #faf6ee;
  --ink: #1b1512;
  --ink-soft: #4e453c;
  --ink-faint: #8a7e70;
  --wine: #6a1b28;
  --wine-deep: #3f1018;
  --wine-mid: #8a2434;
  --brass: #9a7b45;
  --brass-soft: #c4a56a;
  --rule: rgba(27, 21, 18, 0.16);
  --rule-strong: rgba(27, 21, 18, 0.32);

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 96px;

  --font-display: "Cormorant Garamond", "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
  --font-ui: "Outfit", "Avenir Next", "Segoe UI", sans-serif;

  --wrap: min(1180px, calc(100% - 48px));
  --wrap-wide: min(1280px, calc(100% - 40px));
  --measure: 38rem;

  --masthead-h: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--masthead-h) + 12px);
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
}

::selection {
  background: var(--wine);
  color: var(--paper);
}

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

a {
  color: var(--wine);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  text-decoration-color: rgba(106, 27, 40, 0.35);
}

a:hover {
  color: var(--wine-deep);
  text-decoration-color: var(--brass);
}

:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: var(--space-3);
  top: -100px;
  z-index: 500;
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.skip:focus {
  top: var(--space-3);
  color: var(--paper);
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--wine);
}

button,
input,
textarea {
  font-family: inherit;
}

input.btn {
  -webkit-appearance: none;
  appearance: none;
}

.site > main,
.site > .page {
  flex: 1;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.wrap--wide {
  width: var(--wrap-wide);
}

/* Type */

.kicker {
  margin: 0 0 var(--space-3);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 8vw, 6.25rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display--on-ink,
.display--on-wine {
  color: var(--paper);
}

.display em,
.display i {
  font-style: italic;
  font-weight: 400;
}

.section-title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.lede {
  margin: var(--space-4) 0 0;
  max-width: var(--measure);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink-soft);
}

.prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.prose p {
  margin: 0 0 var(--space-4);
}

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

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.prose ul {
  margin: 0 0 var(--space-4);
  padding-left: 1.15em;
}

.prose li {
  margin-bottom: var(--space-2);
}

.prose li::marker {
  color: var(--wine);
}

.rule {
  display: block;
  width: 48px;
  height: 1px;
  margin: var(--space-4) 0;
  background: var(--brass);
  border: 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--wine {
  background: var(--wine);
  color: var(--paper-3);
  border-color: var(--wine);
}

.btn--wine:hover {
  background: var(--wine-deep);
  color: var(--paper);
  border-color: var(--wine-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--ghost-paper {
  background: transparent;
  color: var(--paper);
  border-color: rgba(243, 234, 220, 0.55);
}

.btn--ghost-paper:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn--paper {
  background: var(--paper);
  color: var(--wine);
  border-color: var(--paper);
}

.btn--paper:hover {
  background: var(--paper-3);
  color: var(--wine-deep);
}

.btn--block {
  width: 100%;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

/* Masthead */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--masthead-h);
  background: rgba(243, 234, 220, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.masthead__inner {
  width: var(--wrap-wide);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-4);
}

.wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: var(--ink);
  justify-self: start;
}

.wordmark:hover {
  color: var(--ink);
  text-decoration: none;
}

.wordmark__name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.wordmark__tag {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
}

.masthead__nav {
  display: none;
  gap: var(--space-5);
  align-items: center;
}

.masthead__nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
}

.masthead__nav a:hover {
  color: var(--wine);
}

.masthead__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
  flex-wrap: nowrap;
}

.masthead__cta {
  display: none;
}

.menu-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

.menu-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Drawer */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: var(--paper);
  color: var(--ink);
  overflow: auto;
}

.drawer.is-open {
  display: block;
}

.drawer__top {
  width: var(--wrap-wide);
  margin-inline: auto;
  min-height: var(--masthead-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}

.drawer__body {
  width: min(760px, calc(100% - 48px));
  margin: var(--space-6) auto var(--space-7);
}

.drawer__kicker {
  margin-bottom: var(--space-5);
}

.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer__list li {
  border-top: 1px solid var(--rule);
}

.drawer__list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.drawer__list a {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  text-decoration: none;
  color: var(--ink);
}

.drawer__list a:hover {
  color: var(--wine);
}

.drawer__num {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--brass);
}

.drawer__label {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.drawer__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

/* Cover */

.cover {
  padding: var(--space-6) 0 var(--space-7);
  border-bottom: 1px solid var(--rule);
}

.cover__issue {
  width: var(--wrap-wide);
  margin: 0 auto var(--space-5);
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.cover__grid {
  width: var(--wrap-wide);
  margin-inline: auto;
  display: grid;
  gap: var(--space-6);
  align-items: end;
}

.cover__plate {
  margin: 0;
  position: relative;
}

.cover__plate img {
  width: 100%;
  height: min(78vh, 820px);
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.12) contrast(1.04);
}

.cover__plate figcaption {
  position: absolute;
  left: var(--space-3);
  bottom: var(--space-3);
  padding: 6px 10px;
  background: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cover__copy .display {
  max-width: 12ch;
}

.folio {
  width: var(--wrap-wide);
  margin: var(--space-7) auto 0;
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
  display: grid;
  gap: var(--space-4);
}

.folio__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}

.folio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.folio__item {
  text-decoration: none;
  color: inherit;
}

.folio__item:hover {
  color: inherit;
  text-decoration: none;
}

.folio__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--paper-2);
  box-shadow: 0 18px 40px rgba(27, 21, 18, 0.12);
}

.folio__item p {
  margin: var(--space-3) 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Bands / sections */

.band {
  padding: var(--space-7) 0;
}

.band--paper {
  background: var(--paper);
}

.band--paper-2 {
  background: var(--paper-2);
}

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

.band--ink .section-title,
.band--ink .prose,
.band--ink .prose strong {
  color: var(--paper);
}

.band--ink .prose {
  color: rgba(243, 234, 220, 0.82);
}

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

.band--wine .section-title {
  color: var(--paper);
}

.band--photo {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  min-height: 560px;
  display: flex;
  align-items: center;
}

.band--photo .band__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.band--photo .band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
}

.band--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(18, 14, 12, 0.62) 0%,
    rgba(18, 14, 12, 0.86) 48%,
    rgba(18, 14, 12, 0.94) 100%
  );
}

/* Latest Calling — solid readable panel over hero photo */
#calling.band--photo {
  min-height: 520px;
}

#calling.band--photo::after {
  background: linear-gradient(
    105deg,
    rgba(8, 6, 5, 0.94) 0%,
    rgba(8, 6, 5, 0.9) 45%,
    rgba(8, 6, 5, 0.97) 100%
  );
}

#calling .band__bg img {
  filter: grayscale(0.4) contrast(1.05) brightness(0.32);
}

.band--photo .section-title {
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.band--photo .kicker {
  color: var(--brass-soft);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.band--photo .prose,
.band--photo .prose p {
  color: rgba(243, 234, 220, 0.94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.band--photo .prose strong {
  color: var(--paper);
}

.calling-plate {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  background: rgba(18, 14, 12, 0.78);
  padding: var(--space-5);
  border: 1px solid rgba(243, 234, 220, 0.14);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

#calling .calling-plate {
  background-color: #0a0807;
  background-image: linear-gradient(180deg, #0c0a09 0%, #080706 100%);
  border-color: rgba(250, 246, 238, 0.28);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
}

#calling .section-title {
  color: #ffffff;
  font-weight: 600;
  text-shadow: none;
}

#calling .prose,
#calling .prose p {
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}

#calling .prose strong {
  color: #ffffff;
  font-weight: 700;
}

#calling .calling-plate .btn--paper {
  background: #faf6ee;
  color: #3f1018;
  border-color: #faf6ee;
  font-weight: 600;
}

#calling .calling-plate .btn--paper:hover {
  background: #ffffff;
  color: #3f1018;
  border-color: #ffffff;
}

.band__intro {
  max-width: 46rem;
  margin-bottom: var(--space-6);
}

.band__intro .section-title {
  max-width: 18ch;
}

.split {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}

.split--top {
  align-items: start;
}

.portrait {
  margin: 0;
}

.portrait img {
  width: 100%;
  object-fit: cover;
  object-position: 78% center;
  aspect-ratio: 4 / 5;
  filter: grayscale(0.08);
}

.portrait figcaption {
  margin-top: var(--space-3);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.book-plate img {
  width: min(100%, 420px);
  margin-inline: auto;
  box-shadow: 0 24px 60px rgba(27, 21, 18, 0.28);
}

.book-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
}

.book-pair img {
  width: 100%;
  box-shadow: 0 20px 48px rgba(27, 21, 18, 0.16);
}

/* Videos */

.videos {
  display: grid;
  gap: var(--space-5);
}

.video {
  margin: 0;
}

.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}

.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video figcaption {
  margin-top: var(--space-2);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.band--ink .video figcaption {
  color: var(--brass-soft);
}

/* Forms */

.form-ed {
  margin-top: var(--space-5);
  display: grid;
  gap: var(--space-4);
}

.form-ed--2 {
  grid-template-columns: 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.field label,
.field .field__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  border-radius: 0;
  background: transparent;
  padding: 10px 0 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
  line-height: 1.5;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--wine);
}

.band--ink .field input,
.band--wine .field input {
  color: var(--paper);
  border-bottom-color: rgba(243, 234, 220, 0.35);
}

.band--ink .field input:focus,
.band--wine .field input:focus {
  border-bottom-color: var(--brass-soft);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.flash {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 80;
  padding: 16px 24px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.flash--ok {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 3px solid var(--brass);
}

.flash--err {
  background: var(--wine);
  color: var(--paper);
}

/* Photo plates */

.plates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.plate {
  margin: 0;
}

.plate button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.plate img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.04);
  transition: filter 200ms ease, transform 200ms ease;
}

.plate button:hover img {
  filter: grayscale(0) contrast(1.06);
}

.plate figcaption {
  margin-top: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.band--ink .plate figcaption,
.band--photo .plate figcaption {
  color: rgba(243, 234, 220, 0.7);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(27, 21, 18, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  cursor: pointer;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox p {
  margin-top: var(--space-4);
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  text-align: center;
}

/* Bibliography */

.biblio {
  display: grid;
  gap: var(--space-5);
}

.biblio p {
  margin: 0 0 var(--space-3);
  padding-left: 1.2em;
  text-indent: -1.2em;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(243, 234, 220, 0.86);
}

.biblio em {
  font-style: italic;
}

/* Press teaser */

.press-card {
  display: block;
  max-width: 46rem;
  text-decoration: none;
  color: inherit;
  padding-top: var(--space-4);
  border-top: 1px solid var(--rule);
}

.press-card:hover {
  color: inherit;
  text-decoration: none;
}

.press-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
}

.press-card:hover h2 {
  color: var(--wine);
}

.press-card p {
  margin: var(--space-3) 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Page hero / article */

.page-hero {
  padding: var(--space-7) 0 var(--space-6);
  border-bottom: 1px solid var(--rule);
}

.page-hero .display {
  /* Cover .display is 6.25rem / 18ch. That size hid the BAM page H1
     (BAM for Investors & Founders: NEW BOOKS) under the sticky masthead. */
  max-width: min(28ch, 100%);
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
  line-height: 1.05;
}

.article {
  padding: var(--space-7) 0;
}

.article__layout {
  display: grid;
  gap: var(--space-6);
}

.article__body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 42rem;
}

.article__body p {
  margin: 0 0 var(--space-4);
}

.article-date {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-5) !important;
}

.drop > p.lede-graf::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 5.4rem;
  line-height: 0.75;
  padding: 8px 10px 0 0;
  color: var(--wine);
  font-weight: 500;
}

.pullquote {
  margin: var(--space-6) 0;
  padding: var(--space-4) 0 var(--space-4) var(--space-5);
  border-left: 2px solid var(--brass);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}

.meta-block {
  padding-top: var(--space-4);
  border-top: 1px solid var(--rule);
}

.meta-block h2 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.meta-block p {
  margin: 0 0 var(--space-4);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.bam-covers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.bam-covers figure {
  margin: 0;
}

.bam-covers img {
  width: 100%;
  box-shadow: 0 24px 50px rgba(27, 21, 18, 0.14);
}

.bam-covers figcaption {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

/* Colophon footer */

.colophon {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-7) 0 var(--space-5);
  margin-top: auto;
}

.colophon a {
  color: var(--paper);
  text-decoration-color: rgba(243, 234, 220, 0.3);
}

.colophon a:hover {
  color: var(--brass-soft);
}

.colophon__grid {
  display: grid;
  gap: var(--space-6);
}

.colophon__brand .wordmark__name {
  color: var(--paper);
}

.colophon__brand .wordmark__tag {
  color: var(--brass-soft);
}

.colophon h2 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.colophon ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.colophon li {
  margin-bottom: var(--space-2);
}

.colophon li a {
  text-decoration: none;
  font-size: 0.95rem;
}

.colophon__legal {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(243, 234, 220, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 234, 220, 0.55);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(243, 234, 220, 0.28);
  color: var(--paper);
  text-decoration: none;
}

.socials a:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.masthead .socials a,
.drawer .socials a {
  border-color: var(--rule-strong);
  color: var(--ink);
}

.masthead .socials a:hover,
.drawer .socials a:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Socials live in the index drawer and colophon — keep the masthead sparse. */
.masthead .socials {
  display: none;
}

/* UserWay sits lower-right; keep colophon clear of it */
.colophon {
  padding-bottom: 88px;
}

@media (max-width: 719px) {
  .calling-plate {
    padding: var(--space-4);
  }
}

@media (min-width: 720px) {
  .form-ed--2 {
    grid-template-columns: 1fr 1fr;
  }

  .form-ed--2 .form-actions {
    grid-column: 1 / -1;
  }

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

  .plates {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }

  .colophon__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }

  .article__layout {
    grid-template-columns: minmax(0, 2.2fr) minmax(16rem, 0.9fr);
    align-items: start;
  }
}

@media (min-width: 980px) {
  :root {
    --wrap: min(1180px, calc(100% - 96px));
    --wrap-wide: min(1280px, calc(100% - 80px));
  }

  .masthead__nav {
    display: flex;
  }

  .masthead__cta {
    display: inline-flex;
  }

  .cover__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-7);
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }

  .split--reverse {
    grid-template-columns: 1fr 1fr;
  }

  .split--reverse > :first-child {
    order: 2;
  }

  .cover {
    padding-top: var(--space-7);
  }
}

@media (max-width: 719px) {
  .folio__grid {
    grid-template-columns: 1fr;
  }

  .cover__plate img {
    height: min(62vh, 520px);
  }

  .book-pair,
  .bam-covers {
    grid-template-columns: 1fr;
  }

  .masthead__inner {
    grid-template-columns: 1fr auto;
  }

  .cover__issue {
    flex-direction: column;
  }
}

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

  .plate img,
  .btn {
    transition: none;
  }
}
