* {
  box-sizing: border-box;
}

/* Author-first homepage
--------------------------------------------- */

:root {
  --sa-paper: #e9e4db;
  --sa-paper-deep: #d8d1c5;
  --sa-ink: #11110f;
  --sa-muted: #69665f;
  --sa-red: #8e1e21;
  --sa-line: rgba(17, 17, 15, 0.2);
}

body.sa-body {
  margin: 0;
  background: var(--sa-paper);
  color: var(--sa-ink);
  overflow-x: hidden;
}

.sa-body .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sa-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  min-height: 112px;
  padding: 18px 4vw;
  background: rgba(8, 8, 7, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  color: #f4f0e8;
  font-family: Arial, Helvetica, sans-serif;
}

.sa-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 76px;
  color: inherit;
  text-decoration: none;
}

.sa-wordmark-name,
.sa-wordmark-imprint {
  display: block;
  text-transform: uppercase;
}

.sa-wordmark-name {
  font: 700 clamp(16px, 1.6vw, 22px)/0.95 Georgia, "Times New Roman", serif;
  letter-spacing: 0.14em;
}

.sa-wordmark-imprint {
  margin-top: 7px;
  color: #c6a45a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.sa-nav {
  display: flex;
  gap: clamp(24px, 3vw, 52px);
  padding-top: 5px;
}

.sa-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.sa-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.sa-nav a:hover::after,
.sa-nav a:focus-visible::after,
.sa-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sa-menu-toggle {
  display: none;
}

.sa-page {
  background: var(--sa-paper);
  font-family: Arial, Helvetica, sans-serif;
}

.sa-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  min-height: 100vh;
  padding: 150px 8vw 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.98) 0%, rgba(12, 12, 10, 0.94) 48%, rgba(16, 16, 13, 0.56) 72%, rgba(10, 10, 9, 0.78) 100%),
    var(--sa-hero-background) center 31% / cover;
  color: #f3efe7;
}

.sa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 55%, rgba(142, 30, 33, 0.2) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.055) 25%);
  pointer-events: none;
}

.sa-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 850px;
  padding-top: 30px;
}

.sa-eyebrow,
.sa-section-number {
  margin: 0 0 28px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.sa-eyebrow {
  color: var(--sa-red);
}

.sa-hero .sa-eyebrow {
  color: #c75759;
}

.sa-hero h1 {
  max-width: 900px;
  margin: 0;
  font: 400 clamp(60px, 8vw, 130px)/0.83 Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
}

.sa-hero h1 em {
  color: #c8c0b4;
  font-weight: 400;
}

.sa-intro {
  max-width: 640px;
  margin: 45px 0 0;
  color: #c9c4bb;
  font: 400 clamp(16px, 1.45vw, 21px)/1.65 Georgia, "Times New Roman", serif;
}

.sa-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 42px;
}

.sa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  transition: background 180ms ease, color 180ms ease;
}

.sa-button-dark {
  border-color: #eee9e0;
  background: #eee9e0;
  color: var(--sa-ink);
}

.sa-button-dark:hover,
.sa-button-dark:focus-visible {
  background: transparent;
  color: #eee9e0;
}

.sa-button-light {
  border-color: var(--sa-ink);
  color: var(--sa-ink);
}

.sa-button-light:hover,
.sa-button-light:focus-visible {
  background: var(--sa-ink);
  color: var(--sa-paper);
}

.sa-route-note {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--sa-line);
  color: var(--sa-muted);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.sa-route-note-light {
  margin-top: 20px;
  border-color: rgba(255, 255, 255, 0.25);
  color: #8f8a82;
}

.sa-text-link {
  display: inline-flex;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.sa-text-link span {
  color: var(--sa-red);
}

.sa-hero-portrait {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(100%, 390px);
  margin-top: 55px;
}

.sa-portrait-frame {
  position: relative;
  aspect-ratio: 0.73;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.sa-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35));
}

.sa-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04);
}

.sa-hero-portrait > p {
  display: flex;
  justify-content: space-between;
  margin: 13px 0 0;
  color: #8d8981;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.23em;
}

.sa-hero-note {
  position: absolute;
  right: 4vw;
  bottom: 28px;
  left: 4vw;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.3em;
}

.sa-manifesto {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  padding: 120px 8vw 135px;
  border-bottom: 1px solid var(--sa-line);
}

.sa-section-number {
  color: var(--sa-muted);
}

.sa-manifesto blockquote {
  max-width: 1080px;
  margin: 0;
  font: 400 clamp(34px, 5vw, 75px)/1.08 Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}

.sa-feature {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  min-height: 850px;
  background: #bdb4a8;
}

.sa-feature-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(106, 15, 18, 0.72), transparent 38%),
    linear-gradient(140deg, #1a1714, #090909);
}

.sa-feature-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.035) 80px);
}

.sa-feature-art img {
  position: relative;
  z-index: 2;
  width: min(48%, 330px);
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.68);
  transform: rotate(-2deg);
}

.sa-book-glow {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #921f24;
  filter: blur(95px);
  opacity: 0.23;
}

.sa-vertical-label {
  position: absolute;
  z-index: 3;
  left: 30px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sa-feature-copy {
  align-self: center;
  max-width: 690px;
  padding: 100px 8vw;
}

.sa-feature-copy h2 {
  margin: 0;
  font: 400 clamp(62px, 7vw, 112px)/0.82 Georgia, "Times New Roman", serif;
  letter-spacing: -0.06em;
}

.sa-book-subtitle {
  margin: 20px 0 44px;
  color: var(--sa-red);
  text-transform: uppercase;
  font: 700 12px/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: 0.28em;
}

.sa-feature-copy > p:not(.sa-eyebrow, .sa-book-subtitle) {
  max-width: 580px;
  color: #45413c;
  font: 400 16px/1.7 Arial, Helvetica, sans-serif;
}

.sa-feature-copy .sa-feature-lead {
  color: var(--sa-ink) !important;
  font: 400 clamp(20px, 2vw, 28px)/1.45 Georgia, "Times New Roman", serif !important;
}

.sa-book-meta {
  margin: 38px 0;
  border-top: 1px solid var(--sa-line);
}

.sa-book-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--sa-line);
}

.sa-book-meta dt,
.sa-book-meta dd {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.sa-book-meta dt {
  color: var(--sa-muted);
}

.sa-world {
  display: grid;
  grid-template-columns: 0.85fr 0.65fr 0.8fr;
  gap: 6vw;
  align-items: end;
  padding: 130px 8vw;
  background: #10100e;
  color: #eee8df;
}

.sa-world .sa-section-number {
  color: #77736c;
}

.sa-world-heading h2,
.sa-about-heading h2 {
  margin: 0;
  font: 400 clamp(68px, 8vw, 128px)/0.78 Georgia, "Times New Roman", serif;
  letter-spacing: -0.065em;
}

.sa-world-copy {
  align-self: end;
  padding-bottom: 35px;
}

.sa-world-copy p {
  color: #aaa59d;
  font-size: 14px;
  line-height: 1.75;
}

.sa-world-copy .sa-dropcap {
  color: #eee8df;
  font: 400 24px/1.4 Georgia, "Times New Roman", serif;
}

.sa-text-link-light {
  margin-top: 20px;
  color: #eee8df;
}

.sa-world-image {
  position: relative;
}

.sa-world-image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  filter: grayscale(1) contrast(1.13);
}

.sa-world-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55));
}

.sa-world-image span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.24em;
}

.sa-about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  padding: 140px 8vw;
  background: var(--sa-paper);
}

.sa-about-copy {
  align-self: end;
  max-width: 760px;
}

.sa-about-lead {
  margin: 0 0 46px;
  font: 400 clamp(25px, 3vw, 43px)/1.3 Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.sa-about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--sa-line);
}

.sa-about-columns p {
  margin: 0;
  color: #555149;
  font-size: 14px;
  line-height: 1.75;
}

.sa-next {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10vw;
  align-items: end;
  padding: 110px 8vw;
  background: var(--sa-red);
  color: #f5ece4;
}

.sa-next .sa-eyebrow {
  color: rgba(255, 255, 255, 0.57);
}

.sa-next h2 {
  margin: 0;
  font: 400 clamp(45px, 5.8vw, 88px)/0.93 Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}

.sa-next > div:last-child p {
  max-width: 530px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.73);
  font: 400 17px/1.7 Georgia, "Times New Roman", serif;
}

.sa-coming-soon {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.sa-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
  padding: 70px 8vw 45px;
  background: #090908;
  color: #eee8df;
  font-family: Arial, Helvetica, sans-serif;
}

.sa-footer-brand {
  display: flex;
  align-items: center;
  gap: 35px;
}

.sa-footer-brand img {
  width: clamp(190px, 24vw, 340px);
  height: 120px;
  object-fit: contain;
  object-position: left center;
}

.sa-footer-brand p {
  max-width: 300px;
  margin: 0;
  color: #77736c;
  font: 400 12px/1.65 Arial, Helvetica, sans-serif;
  text-transform: none;
  letter-spacing: 0.02em;
}

.sa-footer-links {
  display: flex;
  gap: 28px;
  align-self: center;
}

.sa-footer a {
  color: #aaa59d;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.sa-footer a:hover,
.sa-footer a:focus-visible {
  color: #fff;
}

.sa-footer-legal {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #64615c;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Author contact page
--------------------------------------------- */

.sa-contact-body {
  background: var(--sa-paper);
}

.sa-header-solid {
  position: fixed;
  background: #0b0b09;
}

.sa-header + main {
  padding-top: 112px;
}

.sa-header + .sa-page {
  padding-top: 0;
}

body.admin-bar .sa-header {
  top: 32px;
}

body.admin-bar .sa-header + main {
  padding-top: 144px;
}

body.admin-bar .sa-header + .sa-page {
  padding-top: 0;
}

.sa-contact-page {
  font-family: Arial, Helvetica, sans-serif;
}

.sa-contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 10vw;
  align-items: end;
  min-height: 620px;
  padding: 110px 8vw 100px;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.97), rgba(10, 10, 9, 0.82)),
    var(--sa-contact-background) center 43% / cover;
  color: #f2ede5;
}

/* Author biography page
--------------------------------------------- */

.sa-about-page {
  background: var(--sa-paper);
  font-family: Arial, Helvetica, sans-serif;
}

.sa-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 8vw;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: 80px 8vw;
  background:
    linear-gradient(115deg, rgba(8, 8, 7, 0.98), rgba(17, 12, 12, 0.78)),
    var(--sa-hero-background) center / cover;
  color: #f1ece4;
}

.sa-about-hero-copy h1 {
  margin: 0;
  font: 400 clamp(70px, 9vw, 138px)/0.78 Georgia, "Times New Roman", serif;
  letter-spacing: -0.065em;
}

.sa-about-hero-copy h1 em {
  color: #c7beb2;
  font-weight: 400;
}

.sa-about-hero-copy > p:last-child {
  max-width: 600px;
  margin: 50px 0 0;
  color: #c5bfb6;
  font: 400 clamp(18px, 1.6vw, 23px)/1.6 Georgia, "Times New Roman", serif;
}

.sa-about-portrait {
  width: min(100%, 440px);
  margin: 0 0 0 auto;
}

.sa-about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 0.73;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sa-about-portrait figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: #8d8881;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.22em;
}

.sa-about-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
  padding: 135px 8vw;
  background: var(--sa-paper);
}

.sa-about-story-heading h2,
.sa-about-focus-copy h2,
.sa-about-cta h2 {
  margin: 0;
  font: 400 clamp(48px, 6vw, 90px)/0.92 Georgia, "Times New Roman", serif;
  letter-spacing: -0.05em;
}

.sa-about-story-copy {
  max-width: 690px;
}

.sa-about-story-copy p,
.sa-about-focus-copy > p {
  color: #565149;
  font-size: 15px;
  line-height: 1.8;
}

.sa-about-story-copy .sa-about-story-lead {
  margin-top: 0;
  color: var(--sa-ink);
  font: 400 clamp(24px, 2.7vw, 39px)/1.35 Georgia, "Times New Roman", serif;
}

.sa-about-focus {
  min-height: 0;
  background: #10100e;
  color: #f1ece4;
}

.sa-about-focus-copy {
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 8vw 130px;
}

.sa-about-focus-copy .sa-section-number {
  color: #8e8981;
}

.sa-about-focus-copy > p {
  color: #aaa49b;
}

.sa-about-focus-copy blockquote {
  margin: 50px 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #eee8df;
  font: 400 clamp(24px, 2.8vw, 40px)/1.35 Georgia, "Times New Roman", serif;
}

.sa-about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #c8c0b4;
}

.sa-about-facts article {
  min-height: 330px;
  padding: 55px 4vw;
  border-right: 1px solid var(--sa-line);
}

.sa-about-facts article:last-child {
  border-right: 0;
}

.sa-about-facts span {
  color: var(--sa-red);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.sa-about-facts h2 {
  margin: 75px 0 18px;
  font: 400 clamp(26px, 2.8vw, 43px)/1.05 Georgia, "Times New Roman", serif;
}

.sa-about-facts p {
  max-width: 390px;
  margin: 0;
  color: #5b564f;
  font-size: 13px;
  line-height: 1.7;
}

.sa-about-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  padding: 110px 8vw;
  background: var(--sa-red);
  color: #f3ede5;
}

.sa-about-cta .sa-eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.sa-contact-title h1 {
  margin: 0;
  font: 400 clamp(68px, 8vw, 128px)/0.8 Georgia, "Times New Roman", serif;
  letter-spacing: -0.06em;
}

.sa-contact-title h1 em {
  color: #c8c0b4;
  font-weight: 400;
}

.sa-contact-intro {
  padding-bottom: 15px;
}

.sa-contact-intro p {
  margin: 0 0 35px;
  color: #b8b2aa;
  font: 400 clamp(18px, 1.7vw, 24px)/1.55 Georgia, "Times New Roman", serif;
}

.sa-contact-intro a {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid #706b64;
  color: #f2ede5;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.sa-contact-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--sa-line);
  background: #c8c0b4;
}

.sa-contact-types article {
  min-height: 280px;
  padding: 45px 35px;
  border-right: 1px solid var(--sa-line);
}

.sa-contact-types article:last-child {
  border-right: 0;
}

.sa-contact-types span {
  color: var(--sa-red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.sa-contact-types h2 {
  margin: 55px 0 18px;
  font: 400 clamp(21px, 2vw, 30px)/1.05 Georgia, "Times New Roman", serif;
}

.sa-contact-types p {
  margin: 0;
  color: #5c5851;
  font-size: 13px;
  line-height: 1.65;
}

.sa-contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(500px, 1.3fr);
  gap: 10vw;
  padding: 130px 8vw 150px;
  background: var(--sa-paper);
}

.sa-contact-form-heading {
  align-self: start;
  position: sticky;
  top: 40px;
}

.sa-contact-form-heading h2 {
  margin: 0 0 28px;
  font: 400 clamp(46px, 5vw, 78px)/0.92 Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}

.sa-contact-form-heading > p:last-child {
  max-width: 340px;
  color: var(--sa-muted);
  font-size: 13px;
  line-height: 1.7;
}

.sa-contact-form {
  display: grid;
  gap: 30px;
}

.sa-contact-form label:not(.sa-consent, .sa-hidden-field) {
  display: grid;
  gap: 11px;
}

.sa-contact-form label > span {
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.sa-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.sa-contact-form input,
.sa-contact-form select,
.sa-contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8d877e;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--sa-ink);
  font: 400 17px/1.4 Georgia, "Times New Roman", serif;
}

.sa-contact-form input,
.sa-contact-form select {
  min-height: 50px;
}

.sa-contact-form select {
  cursor: pointer;
}

.sa-contact-form textarea {
  min-height: 190px;
  padding: 14px 0;
  resize: vertical;
}

.sa-contact-form input:focus,
.sa-contact-form select:focus,
.sa-contact-form textarea:focus {
  border-color: var(--sa-red);
  box-shadow: 0 1px 0 var(--sa-red);
}

.sa-consent {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #5e5a53;
  cursor: pointer;
}

.sa-consent input {
  width: 17px;
  min-height: 17px;
  margin: 0;
  accent-color: var(--sa-red);
}

.sa-consent span {
  padding-top: 1px;
  text-transform: none !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.5;
  letter-spacing: 0.02em !important;
}

.sa-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 300px);
  min-height: 60px;
  padding: 0 24px;
  border: 1px solid var(--sa-ink);
  background: var(--sa-ink);
  color: var(--sa-paper);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: background 180ms ease, color 180ms ease;
}

.sa-submit:hover,
.sa-submit:focus-visible {
  background: transparent;
  color: var(--sa-ink);
}

.sa-hidden-field {
  position: absolute !important;
  left: -9999px !important;
}

.sa-form-status {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-left: 3px solid;
  background: rgba(255, 255, 255, 0.35);
}

.sa-form-status strong {
  font: 400 23px/1.2 Georgia, "Times New Roman", serif;
}

.sa-form-status span {
  color: var(--sa-muted);
  font-size: 12px;
  line-height: 1.5;
}

.sa-form-status.success {
  border-color: #496548;
}

.sa-form-status.error {
  border-color: var(--sa-red);
}

@media (max-width: 980px) {
  .sa-hero {
    grid-template-columns: 1fr 300px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .sa-manifesto {
    grid-template-columns: 150px 1fr;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .sa-feature {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .sa-feature-copy {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .sa-world {
    grid-template-columns: 1fr 1fr;
  }

  .sa-world-image {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .sa-contact-types {
    grid-template-columns: 1fr 1fr;
  }

  .sa-contact-types article:nth-child(2) {
    border-right: 0;
  }

  .sa-contact-types article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--sa-line);
  }

  .sa-contact-form-section {
    gap: 6vw;
  }

  .sa-about-hero {
    grid-template-columns: 1fr 300px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .sa-about-story {
    gap: 6vw;
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

@media (max-width: 900px) {
  body.sa-nav-open {
    overflow: hidden;
  }

  body.sa-nav-open::after {
    content: "";
    position: fixed;
    z-index: 24;
    inset: 0;
    background: rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(2px);
  }

  .sa-header,
  .sa-header-solid {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    align-items: center;
    padding: 20px;
  }

  .sa-wordmark {
    position: relative;
    z-index: 22;
    width: auto;
    height: 60px;
  }

  .sa-menu-toggle {
    position: relative;
    z-index: 32;
    display: block;
    width: 44px;
    height: 44px;
    padding: 12px 3px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .sa-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 1px;
    margin: 6px 0;
    background: #fff;
    transition: transform 180ms ease;
  }

  .sa-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .sa-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .sa-nav {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    width: min(82vw, 390px);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 110px 34px 50px;
    background:
      linear-gradient(135deg, rgba(9, 9, 8, 0.98), rgba(24, 7, 8, 0.98)),
      #0b0b09;
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.44);
    transform: translateX(105%);
    visibility: hidden;
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .sa-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .sa-nav a {
    display: flex;
    align-items: center;
    min-height: 68px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font: 400 clamp(25px, 6.5vw, 38px)/1 Georgia, "Times New Roman", serif;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .sa-nav a::after {
    display: none;
  }

  .sa-nav a[aria-current="page"] {
    color: #c75759;
  }

  .sa-contact-form-section {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .sa-contact-form-heading {
    position: static;
  }

  .sa-contact-form-heading > p:last-child {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .sa-hero {
    display: block;
    min-height: auto;
    padding: 145px 20px 80px;
    background-position: 60% center;
  }

  .sa-header + main {
    padding-top: 100px;
  }

  .sa-header + .sa-page {
    padding-top: 0;
  }

  body.admin-bar .sa-header {
    top: 46px;
  }

  body.admin-bar .sa-header + main {
    padding-top: 146px;
  }

  body.admin-bar .sa-header + .sa-page {
    padding-top: 0;
  }

  .sa-hero h1 {
    font-size: clamp(54px, 17vw, 82px);
  }

  .sa-intro {
    font-size: 17px;
  }

  .sa-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .sa-hero-portrait {
    width: 64%;
    margin-top: 70px;
  }

  .sa-hero-note {
    display: none;
  }

  .sa-manifesto {
    display: block;
    padding: 75px 20px 85px;
  }

  .sa-manifesto blockquote {
    margin-top: 45px;
    font-size: 37px;
  }

  .sa-feature {
    display: block;
  }

  .sa-feature-art {
    min-height: 580px;
  }

  .sa-feature-art img {
    width: 54%;
  }

  .sa-feature-copy {
    padding: 75px 20px 85px;
  }

  .sa-feature-copy h2 {
    font-size: 68px;
  }

  .sa-world {
    display: block;
    padding: 85px 20px;
  }

  .sa-world-copy {
    margin: 60px 0;
    padding: 0;
  }

  .sa-world-image {
    width: 78%;
    margin-left: auto;
  }

  .sa-about {
    display: block;
    padding: 90px 20px;
  }

  .sa-about-copy {
    margin-top: 65px;
  }

  .sa-about-columns {
    grid-template-columns: 1fr;
  }

  .sa-next {
    display: block;
    padding: 80px 20px;
  }

  .sa-next > div:last-child {
    margin-top: 55px;
  }

  .sa-footer {
    display: block;
    padding: 60px 20px 35px;
  }

  .sa-footer-brand {
    display: block;
  }

  .sa-footer-brand img {
    width: 250px;
    height: 100px;
  }

  .sa-footer-brand p {
    margin-top: 20px;
  }

  .sa-contact-hero {
    display: block;
    min-height: auto;
    padding: 90px 20px 80px;
  }

  .sa-contact-title h1 {
    font-size: clamp(50px, 14.5vw, 64px);
    line-height: 0.88;
  }

  .sa-contact-intro {
    margin-top: 60px;
  }

  .sa-contact-types {
    display: block;
  }

  .sa-contact-types article,
  .sa-contact-types article:nth-child(2) {
    min-height: 0;
    padding: 38px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--sa-line);
  }

  .sa-contact-types h2 {
    margin-top: 28px;
  }

  .sa-contact-form-section {
    display: block;
    padding: 85px 20px 100px;
  }

  .sa-about-hero {
    display: block;
    min-height: auto;
    padding: 70px 20px 85px;
  }

  .sa-about-hero-copy h1 {
    font-size: clamp(60px, 19vw, 86px);
  }

  .sa-about-portrait {
    width: 76%;
    margin: 70px 0 0 auto;
  }

  .sa-about-story {
    display: block;
    padding: 85px 20px;
  }

  .sa-about-story-copy {
    margin-top: 60px;
  }

  .sa-about-focus {
    min-height: 0;
  }

  .sa-about-focus-copy {
    padding: 80px 20px 90px;
  }

  .sa-about-facts {
    display: block;
  }

  .sa-about-facts article {
    min-height: 0;
    padding: 48px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--sa-line);
  }

  .sa-about-facts h2 {
    margin-top: 36px;
  }

  .sa-about-cta {
    display: block;
    padding: 80px 20px;
  }

  .sa-about-cta .sa-button {
    margin-top: 50px;
  }

  .sa-contact-form-heading {
    position: static;
    margin-bottom: 70px;
  }

  .sa-field-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sa-footer-links {
    flex-wrap: wrap;
    margin: 35px 0 50px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  overflow-x: hidden;
}

.shc-page {
  min-height: 100vh;
  background: #050505;
  color: #f4efe8;
  font-family: Georgia, "Times New Roman", serif;
}

.shc-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.shc-nav a {
  color: #f4efe8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.shc-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.shc-nav-logo {
  color: #d7cec7;
  font-weight: 700;
}

.shc-nav a:hover,
.shc-nav a:focus-visible,
.shc-nav a[aria-current="page"] {
  color: #b21f24;
}

.shc-hero {
  min-height: 90vh;
  padding: 70px 28px;
  background:
    radial-gradient(circle at 70% 35%, rgba(120, 0, 0, 0.55), transparent 42%),
    linear-gradient(120deg, #050505 0%, #120506 52%, #2a0507 100%);
}

.shc-wrap {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.shc-logo {
  display: block;
  max-width: 360px;
  margin-bottom: 46px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
}

.shc-logo.small {
  max-width: 300px;
}

.shc-kicker {
  color: #b21f24;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

.shc-title {
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.88;
  margin: 0;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.shc-subtitle {
  color: #b21f24;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 22px 0 16px;
}

.shc-series-line {
  margin-bottom: 34px;
  color: #b8aaa3;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.shc-copy {
  font-size: 22px;
  line-height: 1.55;
  max-width: 640px;
  color: #ddd5ce;
}

.shc-dates {
  margin: 38px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.shc-dates div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 8px 0;
  font-size: 18px;
}

.shc-dates span {
  color: #b8aaa3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.shc-dates strong {
  color: #fff;
}

.shc-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.shc-btn {
  display: inline-block;
  padding: 15px 28px;
  border: 1px solid #b21f24;
  color: #f4efe8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.shc-btn:hover,
.shc-btn:focus-visible {
  transform: translateY(-1px);
}

.shc-btn.primary {
  background: #b21f24;
}

.shc-btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.shc-cover-wrap {
  position: relative;
  text-align: center;
}

.shc-cover-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 8% 4%;
  background: #7a0000;
  filter: blur(70px);
  opacity: 0.42;
}

.shc-cover {
  position: relative;
  width: 100%;
  max-width: 430px;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.75);
}

.shc-start-section {
  padding: 54px 28px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.shc-start-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.shc-start-grid a {
  display: block;
  min-height: 190px;
  padding: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    #0b0b0b;
  color: #f4efe8;
  text-decoration: none;
}

.shc-start-grid a:hover,
.shc-start-grid a:focus-visible {
  background:
    linear-gradient(150deg, rgba(178, 31, 36, 0.22), rgba(255, 255, 255, 0.018)),
    #0b0b0b;
}

.shc-start-grid span {
  display: block;
  margin-bottom: 18px;
  color: #b21f24;
  text-transform: uppercase;
  letter-spacing: 2px;
  font: 11px Arial, Helvetica, sans-serif;
}

.shc-start-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.05;
}

.shc-start-grid em {
  color: #d7cec7;
  font: normal 16px/1.5 Arial, Helvetica, sans-serif;
}

.shc-section {
  padding: 80px 28px;
  background: #0b0b0b;
}

.shc-blurb-section {
  padding: 92px 28px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(18, 5, 6, 0.9)),
    #080606;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.shc-blurb-wrap {
  max-width: 1040px;
  margin: auto;
}

.shc-blurb-wrap h2 {
  max-width: 900px;
  margin: 0 0 36px;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 1px;
}

.shc-blurb-copy {
  max-width: 820px;
  column-count: 2;
  column-gap: 52px;
}

.shc-blurb-copy p {
  break-inside: avoid;
  margin: 0 0 22px;
  color: #d7cec7;
  font-size: 20px;
  line-height: 1.66;
}

.shc-blurb-copy strong,
.shc-blurb-copy em {
  color: #f4efe8;
}

.shc-blurb-callout {
  color: #b21f24 !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1.05 !important;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.shc-poster-section {
  padding: 90px 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.78fr);
  gap: 70px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(25, 4, 5, 0.9)),
    #070505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.shc-characters-section {
  padding: 92px 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(178, 31, 36, 0.18), transparent 32%),
    linear-gradient(180deg, #090707, #050505);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.shc-characters-intro {
  max-width: 980px;
  margin: 0 auto 44px;
}

.shc-characters-intro h2 {
  max-width: 860px;
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.96;
}

.shc-characters-intro p {
  max-width: 760px;
  color: #d7cec7;
  font-size: 22px;
  line-height: 1.58;
}

.shc-character-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.shc-character-grid article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #0b0b0b;
}

.shc-character-portrait {
  position: relative;
  height: 320px;
  margin: calc(clamp(28px, 4vw, 44px) * -1) calc(clamp(28px, 4vw, 44px) * -1) 30px;
  overflow: hidden;
  background: #050505;
}

.shc-character-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05) brightness(0.82);
  transform: scale(1.01);
}

.shc-character-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(11, 11, 11, 0.96)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.5), transparent 38%, rgba(5, 5, 5, 0.28));
}

.shc-character-portrait.sam img {
  object-position: center top;
}

.shc-character-portrait.celeste img {
  object-position: center top;
}

.shc-character-portrait.harbringer img,
.shc-character-portrait.harbinger img {
  object-position: center center;
}

.shc-character-grid span,
.shc-case-card span,
.shc-press-grid span,
.shc-assets-grid span {
  display: block;
  margin-bottom: 18px;
  color: #b21f24;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
}

.shc-character-grid h3 {
  margin: 0 0 20px;
  color: #f4efe8;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
}

.shc-character-grid p {
  margin: 0;
  color: #d7cec7;
  font-size: 19px;
  line-height: 1.6;
}

.shc-dossier-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.shc-dossier-list div {
  display: grid;
  gap: 4px;
}

.shc-dossier-list b {
  color: #f4efe8;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font: 11px Arial, Helvetica, sans-serif;
}

.shc-dossier-list small {
  color: #b8aaa3;
  font: 14px/1.45 Arial, Helvetica, sans-serif;
}

.shc-poster-copy {
  max-width: 640px;
  justify-self: end;
}

.shc-poster-copy h2 {
  margin: 0 0 28px;
  color: #f4efe8;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 2px;
}

.shc-poster-copy p {
  color: #d7cec7;
  font-size: 21px;
  line-height: 1.65;
}

.shc-poster {
  display: block;
  width: min(100%, 430px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.75);
}

.shc-format-section {
  padding: 86px 28px;
  background:
    radial-gradient(circle at 18% 10%, rgba(178, 31, 36, 0.18), transparent 34%),
    linear-gradient(180deg, #050505, #0b0606);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.shc-format-wrap {
  max-width: 1160px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.shc-format-copy h2 {
  margin: 0 0 22px;
  color: #f4efe8;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.shc-format-copy p {
  margin: 0;
  color: #d7cec7;
  font-size: 20px;
  line-height: 1.6;
}

.shc-format-image {
  width: 100%;
  display: block;
  box-shadow: 0 40px 88px rgba(0, 0, 0, 0.56);
}

.shc-inner {
  max-width: 980px;
  margin: auto;
}

.shc-section h2 {
  font-size: 42px;
  margin: 0 0 24px;
  letter-spacing: 2px;
}

.shc-section p {
  font-size: 20px;
  line-height: 1.7;
  color: #d7cec7;
}

.shc-panel {
  margin-top: 42px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.shc-newsletter-section {
  padding: 86px 28px;
  background:
    radial-gradient(circle at 86% 10%, rgba(178, 31, 36, 0.18), transparent 34%),
    linear-gradient(135deg, #050505, #100405 58%, #050505);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.shc-newsletter-card {
  max-width: 1080px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: 56px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.74);
  box-shadow: 0 38px 88px rgba(0, 0, 0, 0.42);
}

.shc-newsletter-card h2 {
  margin: 0 0 20px;
  color: #f4efe8;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

.shc-newsletter-card p {
  margin: 0;
  max-width: 680px;
  color: #d7cec7;
  font-size: 20px;
  line-height: 1.6;
}

.shc-newsletter-form {
  display: grid;
  gap: 14px;
}

.shc-newsletter-form label {
  display: grid;
  gap: 9px;
  color: #b8aaa3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font: 12px Arial, Helvetica, sans-serif;
}

.shc-newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #f4efe8;
  font: 18px Arial, Helvetica, sans-serif;
}

.shc-newsletter-note {
  color: #9f9690 !important;
  font: 12px/1.5 Arial, Helvetica, sans-serif !important;
}

.shc-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.shc-qr-block {
  margin-top: 28px;
}

.shc-qr-block > strong {
  display: block;
  margin-bottom: 16px;
  color: #b8aaa3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font: 12px Arial, Helvetica, sans-serif;
}

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

.shc-qr-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #f4efe8;
  text-decoration: none;
  text-align: center;
}

.shc-qr-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #ffffff;
  padding: 10px;
}

.shc-qr-card span {
  margin: 0;
  color: #f4efe8;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font: 11px Arial, Helvetica, sans-serif;
}

.shc-qr-card:hover,
.shc-qr-card:focus-visible {
  border-color: #b21f24;
}

.shc-social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f4efe8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font: 11px Arial, Helvetica, sans-serif;
}

.shc-social-link:hover,
.shc-social-link:focus-visible {
  border-color: #b21f24;
  color: #fff;
}

.shc-footer {
  text-align: center;
  padding: 50px 28px;
  background: #050505;
  color: #9f9690;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.shc-page-hero {
  min-height: 68vh;
  padding: 90px 28px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 30%, rgba(120, 0, 0, 0.45), transparent 40%),
    linear-gradient(120deg, #050505 0%, #120506 54%, #270406 100%);
}

.shc-about-hero {
  background:
    radial-gradient(circle at 82% 26%, rgba(120, 0, 0, 0.32), transparent 34%),
    linear-gradient(120deg, #050505 0%, #120506 58%, #1a0304 100%);
}

.shc-series-hero {
  background:
    radial-gradient(circle at 82% 26%, rgba(120, 0, 0, 0.26), transparent 34%),
    linear-gradient(120deg, #050505 0%, #100405 58%, #1a0304 100%);
}

.shc-press-hero {
  background:
    radial-gradient(circle at 82% 26%, rgba(120, 0, 0, 0.26), transparent 34%),
    linear-gradient(120deg, #050505 0%, #100405 58%, #1a0304 100%);
}

.shc-contact-hero {
  background:
    radial-gradient(circle at 82% 26%, rgba(120, 0, 0, 0.26), transparent 34%),
    linear-gradient(120deg, #050505 0%, #100405 58%, #1a0304 100%);
}

.shc-page-wrap {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 0.52fr);
  gap: 70px;
  align-items: center;
}

.shc-page-title {
  margin: 0 0 26px;
  max-width: 850px;
  font-size: clamp(44px, 5.6vw, 82px);
  line-height: 0.92;
  letter-spacing: 2px;
}

.shc-page-copy {
  max-width: 720px;
  color: #ddd5ce;
  font-size: 24px;
  line-height: 1.5;
}

.shc-author-card,
.shc-contact-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.82);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
}

.shc-author-photo-card {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  max-width: 310px;
  justify-self: center;
  opacity: 0.82;
}

.shc-author-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(0.96) brightness(0.82);
}

.shc-author-photo-card figcaption {
  padding: 16px 4px 2px;
  color: #b8aaa3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.shc-author-card p {
  margin: 0;
  color: #d7cec7;
  font-size: 20px;
  line-height: 1.65;
}

.shc-two-column {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 60px;
  align-items: start;
}

.shc-two-column > div {
  max-width: 780px;
  justify-self: end;
}

.shc-two-column .shc-panel {
  margin-top: 0;
  justify-self: start;
}

.shc-contact-card span {
  display: block;
  margin: 22px 0 16px;
  color: #b8aaa3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.shc-contact-card span:first-child {
  margin-top: 0;
}

.shc-contact-card a {
  color: #f4efe8;
  display: inline-block;
  max-width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.shc-contact-card .shc-qr-card {
  display: grid;
}

.shc-contact-card .shc-qr-card span {
  margin: 0;
  color: #f4efe8;
  font-size: 11px;
  letter-spacing: 1.7px;
}

.shc-form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(300px, 0.9fr);
  gap: 60px;
  align-items: start;
}

.shc-form-copy {
  max-width: 520px;
  justify-self: end;
}

.shc-contact-form {
  display: grid;
  gap: 18px;
  max-width: 680px;
  width: 100%;
}

.shc-contact-form label {
  display: grid;
  gap: 10px;
  color: #b8aaa3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.shc-contact-form input,
.shc-contact-form select,
.shc-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #f4efe8;
  font: 18px Arial, Helvetica, sans-serif;
}

.shc-contact-form select {
  color: #050505;
  background: #f4efe8;
}

.shc-contact-form textarea {
  resize: vertical;
}

.shc-hidden-field {
  position: absolute;
  left: -9999px;
}

.shc-contact-form input:focus,
.shc-contact-form select:focus,
.shc-contact-form textarea:focus {
  outline: 2px solid #b21f24;
  outline-offset: 2px;
}

.shc-form-status {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(178, 31, 36, 0.16);
  color: #f4efe8;
}

.shc-form-status.success {
  border-color: rgba(70, 180, 100, 0.5);
  background: rgba(70, 180, 100, 0.14);
}

.shc-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  padding: 1px;
}

.shc-contact-grid article {
  padding: 44px 34px;
  background: #0b0b0b;
}

.shc-contact-grid h2 {
  font-size: 34px;
}

.shc-contact-grid a {
  color: #f4efe8;
}

.shc-author-strip {
  padding: 34px 28px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.shc-author-strip div {
  max-width: 1180px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.shc-author-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d7cec7;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.shc-case-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.shc-case-card {
  min-height: 430px;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #0b0b0b;
}

.shc-case-card.active {
  background:
    linear-gradient(150deg, rgba(178, 31, 36, 0.24), rgba(255, 255, 255, 0.015)),
    #0b0b0b;
}

.shc-case-card h2,
.shc-press-grid h2,
.shc-assets-copy h2 {
  margin: 0 0 22px;
  color: #f4efe8;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

.shc-case-card p,
.shc-press-grid p,
.shc-assets-copy p {
  color: #d7cec7;
  font-size: 20px;
  line-height: 1.62;
}

.shc-press-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.shc-press-grid article {
  min-height: 250px;
  padding: 34px;
  background: #0b0b0b;
}

.shc-press-grid a {
  color: #f4efe8;
}

.shc-assets-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 60px;
  padding: 90px 28px;
  background: #050505;
}

.shc-assets-copy {
  max-width: 520px;
  justify-self: end;
}

.shc-assets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shc-assets-grid a {
  display: block;
  color: #f4efe8;
  text-decoration: none;
}

.shc-assets-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.shc-assets-grid span {
  margin: 16px 0 0;
  color: #d7cec7;
}

.shc-review-section {
  padding: 74px 28px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(18, 5, 6, 0.9)),
    #080606;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.shc-review-wrap {
  max-width: 1040px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) auto;
  gap: 34px;
  align-items: center;
}

.shc-review-wrap h2 {
  margin: 0 0 16px;
  color: #f4efe8;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.shc-review-wrap p {
  margin: 0;
  color: #d7cec7;
  font-size: 19px;
  line-height: 1.58;
}

.shc-footer-rich {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
}

.shc-footer-rich div {
  display: grid;
  gap: 8px;
}

.shc-footer-rich strong {
  color: #f4efe8;
}

.shc-footer-rich nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.shc-footer-rich a {
  color: #d7cec7;
  text-decoration: none;
}

.shc-footer-rich a:hover,
.shc-footer-rich a:focus-visible {
  color: #b21f24;
}

@media (max-width: 850px) {
  .shc-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shc-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .shc-poster-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shc-poster-copy {
    justify-self: center;
  }

  .shc-poster {
    margin: auto;
  }

  .shc-blurb-copy {
    column-count: 1;
  }

  .shc-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .shc-dates div {
    display: block;
  }

  .shc-buttons {
    justify-content: center;
  }

  .shc-page-wrap,
  .shc-two-column,
  .shc-form-section,
  .shc-format-wrap,
  .shc-contact-grid,
  .shc-character-grid,
  .shc-start-grid,
  .shc-case-section,
  .shc-press-grid,
  .shc-assets-section,
  .shc-assets-grid,
  .shc-newsletter-card,
  .shc-review-wrap {
    grid-template-columns: 1fr;
  }

  .shc-about-hero,
  .shc-series-hero,
  .shc-press-hero,
  .shc-contact-hero {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78)),
      linear-gradient(120deg, #050505, #260305);
  }

  .shc-two-column > div,
  .shc-form-copy,
  .shc-assets-copy,
  .shc-two-column .shc-panel {
    justify-self: stretch;
  }

  .shc-footer-rich {
    flex-direction: column;
  }

  .shc-footer-rich nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .shc-nav {
    position: relative;
    gap: 12px;
    padding: 12px 14px;
  }

  .shc-nav-logo {
    width: 100%;
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .shc-nav div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 0;
  }

  .shc-nav a {
    font-size: 9px;
    letter-spacing: 1.2px;
    line-height: 1.35;
  }

  .shc-hero,
  .shc-page-hero {
    min-height: auto;
    padding: 30px 16px 42px;
  }

  .shc-wrap,
  .shc-page-wrap {
    gap: 24px;
  }

  .shc-logo {
    max-width: min(190px, 64vw);
    margin-bottom: 24px;
  }

  .shc-logo.small {
    max-width: min(180px, 62vw);
  }

  .shc-kicker {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 3px;
  }

  .shc-title {
    font-size: clamp(36px, 12.5vw, 46px);
    line-height: 1;
    letter-spacing: 1.2px;
  }

  .shc-subtitle {
    margin: 14px 0 12px;
    font-size: clamp(13px, 4.6vw, 16px);
    letter-spacing: 2.2px;
    line-height: 1.15;
  }

  .shc-series-line {
    margin-bottom: 24px;
    font-size: 11px;
    letter-spacing: 2.4px;
    line-height: 1.35;
  }

  .shc-copy,
  .shc-page-copy,
  .shc-characters-intro p,
  .shc-poster-copy p,
  .shc-section p,
  .shc-author-card p,
  .shc-case-card p,
  .shc-press-grid p,
  .shc-assets-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .shc-dates {
    margin: 28px 0;
    padding: 20px 0;
  }

  .shc-dates div {
    padding: 12px 0;
    font-size: 16px;
  }

  .shc-dates span {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 1.7px;
  }

  .shc-buttons {
    gap: 10px;
  }

  .shc-btn {
    width: 100%;
    padding: 14px 18px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .shc-cover {
    max-width: min(230px, 68vw);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.72);
  }

  .shc-cover-wrap::before {
    inset: 12% 16% 8%;
    filter: blur(44px);
    opacity: 0.34;
  }

  .shc-section,
  .shc-start-section,
  .shc-blurb-section,
  .shc-characters-section,
  .shc-poster-section,
  .shc-format-section,
  .shc-assets-section,
  .shc-newsletter-section,
  .shc-review-section {
    padding: 42px 16px;
  }

  .shc-blurb-wrap h2,
  .shc-characters-intro h2,
  .shc-poster-copy h2,
  .shc-page-title,
  .shc-case-card h2,
  .shc-press-grid h2,
  .shc-assets-copy h2,
  .shc-format-copy h2,
  .shc-newsletter-card h2,
  .shc-review-wrap h2 {
    font-size: clamp(26px, 9.2vw, 34px);
    line-height: 1.06;
    letter-spacing: 0.4px;
  }

  .shc-section h2,
  .shc-contact-grid h2 {
    font-size: 26px;
    line-height: 1.08;
  }

  .shc-blurb-copy p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.58;
  }

  .shc-blurb-callout {
    font-size: 24px !important;
    letter-spacing: 1.5px;
  }

  .shc-character-grid article,
  .shc-start-grid a,
  .shc-case-card,
  .shc-press-grid article,
  .shc-contact-grid article {
    min-height: auto;
    padding: 22px 18px;
  }

  .shc-character-portrait {
    height: 240px;
    margin: -22px -18px 24px;
  }

  .shc-character-grid h3 {
    font-size: 28px;
    line-height: 1.02;
  }

  .shc-poster-section {
    gap: 34px;
  }

  .shc-poster {
    width: min(100%, 260px);
    order: -1;
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.72);
  }

  .shc-format-wrap {
    gap: 26px;
  }

  .shc-format-copy p {
    font-size: 16px;
  }

  .shc-format-image {
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.58);
  }

  .shc-panel,
  .shc-author-card,
  .shc-contact-card,
  .shc-newsletter-card {
    margin-top: 22px;
    padding: 20px 16px;
  }

  .shc-newsletter-card {
    gap: 24px;
  }

  .shc-newsletter-card p {
    font-size: 16px;
  }

  .shc-review-wrap {
    gap: 22px;
  }

  .shc-review-wrap p {
    font-size: 16px;
  }

  .shc-social-links {
    gap: 8px;
  }

  .shc-social-link {
    padding: 10px 11px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .shc-qr-grid {
    grid-template-columns: 1fr;
  }

  .shc-qr-card {
    padding: 12px;
  }

  .shc-page-wrap .shc-contact-card,
  .shc-page-wrap .shc-author-photo-card {
    margin-top: 0;
  }

  .shc-author-photo-card {
    max-width: min(235px, 72vw);
    padding: 10px;
  }

  .shc-author-photo-card figcaption {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .shc-two-column,
  .shc-form-section {
    gap: 30px;
  }

  .shc-contact-card span,
  .shc-character-grid span,
  .shc-case-card span,
  .shc-press-grid span,
  .shc-assets-grid span {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .shc-contact-card a {
    font-size: 14px;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .shc-contact-form {
    gap: 14px;
  }

  .shc-contact-form input,
  .shc-contact-form select,
  .shc-contact-form textarea {
    padding: 13px 14px;
    font-size: 16px;
  }

  .shc-author-strip {
    padding: 26px 18px;
  }

  .shc-author-strip div {
    gap: 10px;
  }

  .shc-author-strip span {
    padding: 9px 11px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .shc-assets-grid {
    gap: 22px;
  }

  .shc-assets-grid img {
    max-width: 260px;
    margin: auto;
    display: block;
  }

  .shc-footer {
    padding: 30px 16px;
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .shc-footer-rich {
    gap: 20px;
  }

  .shc-footer-rich nav {
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .shc-title {
    font-size: 34px;
  }

  .shc-page-title,
  .shc-blurb-wrap h2,
  .shc-characters-intro h2,
  .shc-poster-copy h2,
  .shc-case-card h2,
  .shc-press-grid h2,
  .shc-assets-copy h2,
  .shc-format-copy h2,
  .shc-newsletter-card h2,
  .shc-review-wrap h2 {
    font-size: 25px;
  }

  .shc-contact-card a {
    font-size: 13px;
  }
}

/* Consistency pass */

:root {
  --shc-font-serif: Georgia, "Times New Roman", serif;
  --shc-font-sans: Arial, Helvetica, sans-serif;
  --shc-text-primary: #f4efe8;
  --shc-text-secondary: #d7cec7;
  --shc-text-muted: #b8aaa3;
  --shc-border-soft: rgba(255, 255, 255, 0.12);
  --shc-border-strong: rgba(255, 255, 255, 0.15);
  --shc-panel-shadow: 0 28px 64px rgba(0, 0, 0, 0.36);
  --shc-panel-bg:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(11, 11, 11, 0.96);
  --shc-section-space: 88px;
  --shc-section-space-tight: 64px;
}

.shc-page {
  color: var(--shc-text-primary);
  font-family: var(--shc-font-serif);
}

.shc-nav a,
.shc-kicker,
.shc-dates span,
.shc-newsletter-form label,
.shc-contact-form label,
.shc-contact-card span,
.shc-character-grid span,
.shc-case-card span,
.shc-press-grid span,
.shc-assets-grid span,
.shc-dossier-list b,
.shc-qr-block > strong,
.shc-author-strip span {
  font-family: var(--shc-font-sans);
  letter-spacing: 0.16em;
}

.shc-nav a {
  font-size: 11px;
}

.shc-kicker {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.28em;
}

.shc-title {
  font-size: clamp(50px, 7.2vw, 94px);
  line-height: 0.9;
  letter-spacing: 0.05em;
}

.shc-subtitle {
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: 0.24em;
  margin: 18px 0 12px;
}

.shc-series-line {
  font-family: var(--shc-font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.shc-page-title,
.shc-blurb-wrap h2,
.shc-characters-intro h2,
.shc-poster-copy h2,
.shc-format-copy h2,
.shc-newsletter-card h2,
.shc-review-wrap h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.shc-section h2,
.shc-case-card h2,
.shc-press-grid h2,
.shc-assets-copy h2,
.shc-contact-grid h2,
.shc-character-grid h3,
.shc-start-grid strong {
  letter-spacing: 0.02em;
  line-height: 1.06;
}

.shc-section h2,
.shc-contact-grid h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 18px;
}

.shc-character-grid h3,
.shc-case-card h2,
.shc-press-grid h2,
.shc-assets-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.shc-start-grid strong {
  font-size: clamp(24px, 3.2vw, 34px);
}

.shc-copy,
.shc-page-copy,
.shc-characters-intro p,
.shc-poster-copy p,
.shc-format-copy p,
.shc-newsletter-card p,
.shc-review-wrap p {
  color: var(--shc-text-secondary);
  font-size: 20px;
  line-height: 1.66;
}

.shc-section p,
.shc-blurb-copy p,
.shc-character-grid p,
.shc-case-card p,
.shc-contact-grid p,
.shc-author-card p {
  color: var(--shc-text-secondary);
  font-size: 18px;
  line-height: 1.72;
}

.shc-start-grid em,
.shc-dossier-list small,
.shc-newsletter-note {
  font-size: 13px;
  line-height: 1.58;
}

.shc-btn,
.shc-social-link,
.shc-qr-card span {
  font-family: var(--shc-font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.shc-start-grid a,
.shc-character-grid article,
.shc-case-card,
.shc-contact-grid article,
.shc-panel,
.shc-contact-card,
.shc-author-card,
.shc-newsletter-card,
.shc-qr-card,
.shc-author-photo-card {
  border-color: var(--shc-border-strong);
  box-shadow: var(--shc-panel-shadow);
}

.shc-start-grid a,
.shc-character-grid article,
.shc-case-card,
.shc-contact-grid article,
.shc-panel,
.shc-qr-card {
  background: var(--shc-panel-bg);
}

.shc-contact-card,
.shc-author-card,
.shc-newsletter-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.88);
}

.shc-section,
.shc-blurb-section,
.shc-characters-section,
.shc-poster-section,
.shc-format-section,
.shc-newsletter-section {
  padding-block: var(--shc-section-space);
}

.shc-start-section,
.shc-review-section,
.shc-author-strip {
  padding-block: var(--shc-section-space-tight);
}

.shc-page-hero {
  min-height: 64vh;
  padding-block: 84px;
}

.shc-wrap,
.shc-page-wrap,
.shc-poster-section,
.shc-format-wrap,
.shc-newsletter-card,
.shc-two-column,
.shc-form-section,
.shc-review-wrap {
  gap: clamp(32px, 4vw, 56px);
}

.shc-blurb-callout {
  letter-spacing: 0.12em !important;
}

.shc-preview-band {
  padding: var(--shc-section-space) 28px;
  background:
    radial-gradient(circle at 18% 10%, rgba(178, 31, 36, 0.16), transparent 34%),
    linear-gradient(180deg, #080606, #050505);
  border-block: 1px solid var(--shc-border-soft);
}

.shc-preview-stack {
  max-width: 1040px;
  margin: auto;
}

.shc-preview-dual {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.shc-preview-card {
  padding: 34px;
  border: 1px solid var(--shc-border-strong);
  background: var(--shc-panel-bg);
  box-shadow: var(--shc-panel-shadow);
}

.shc-preview-card h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.04;
  letter-spacing: 0.02em;
}

.shc-preview-card p {
  margin: 0;
  color: var(--shc-text-secondary);
  font-size: 18px;
  line-height: 1.72;
}

.shc-preview-band-alt {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(6, 6, 6, 0.98)),
    #070606;
}

.shc-preview-band-quote {
  text-align: center;
}

.shc-preview-band-quote .shc-preview-stack {
  max-width: 900px;
}

.shc-preview-grid {
  max-width: 1180px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--shc-border-soft);
}

.shc-preview-grid article {
  padding: 34px;
  background: var(--shc-panel-bg);
  box-shadow: var(--shc-panel-shadow);
}

.shc-preview-grid h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.shc-preview-grid p {
  margin: 0;
  color: var(--shc-text-secondary);
  font-size: 18px;
  line-height: 1.72;
}

@media (max-width: 860px) {
  .shc-page-title,
  .shc-blurb-wrap h2,
  .shc-characters-intro h2,
  .shc-poster-copy h2,
  .shc-format-copy h2,
  .shc-newsletter-card h2,
  .shc-review-wrap h2 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .shc-section h2,
  .shc-case-card h2,
  .shc-press-grid h2,
  .shc-assets-copy h2,
  .shc-contact-grid h2,
  .shc-character-grid h3,
  .shc-start-grid strong,
  .shc-preview-grid h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .shc-copy,
  .shc-page-copy,
  .shc-characters-intro p,
  .shc-poster-copy p,
  .shc-format-copy p,
  .shc-newsletter-card p,
  .shc-review-wrap p {
    font-size: 18px;
  }

  .shc-section p,
  .shc-blurb-copy p,
  .shc-character-grid p,
  .shc-case-card p,
  .shc-contact-grid p,
  .shc-author-card p,
  .shc-preview-grid p {
    font-size: 17px;
  }

  .shc-preview-grid {
    grid-template-columns: 1fr;
  }

  .shc-preview-dual {
    grid-template-columns: 1fr;
  }
}

/* Stronger unification pass */

.shc-hero,
.shc-page-hero,
.shc-about-hero,
.shc-series-hero,
.shc-contact-hero {
  background:
    radial-gradient(circle at 72% 24%, rgba(130, 10, 18, 0.26), transparent 36%),
    linear-gradient(120deg, #050505 0%, #120607 58%, #190708 100%);
}

.shc-section,
.shc-blurb-section,
.shc-characters-section,
.shc-format-section,
.shc-newsletter-section,
.shc-assets-section,
.shc-author-strip {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(6, 6, 6, 0.98)),
    #080707;
  border-block: 1px solid var(--shc-border-soft);
}

.shc-start-section,
.shc-poster-section,
.shc-review-section,
.shc-preview-band {
  background:
    radial-gradient(circle at 16% 12%, rgba(178, 31, 36, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(5, 5, 5, 0.98)),
    #070606;
  border-block: 1px solid var(--shc-border-soft);
}

.shc-start-grid,
.shc-character-grid,
.shc-case-section,
.shc-contact-grid,
.shc-press-grid {
  background: var(--shc-border-soft);
}

.shc-character-portrait,
.shc-assets-grid img,
.shc-poster,
.shc-cover,
.shc-format-image {
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.48);
}

/* Homepage editorial refinement */

.shc-nav .shc-nav-logo {
  font-family: var(--shc-font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--shc-text-primary);
}

.shc-nav div {
  gap: 20px;
}

.shc-hero {
  min-height: 84vh;
  padding-block: 84px 72px;
  background:
    radial-gradient(circle at 74% 28%, rgba(130, 10, 18, 0.22), transparent 32%),
    linear-gradient(118deg, #040404 0%, #100607 54%, #170708 100%);
}

.shc-wrap {
  gap: clamp(36px, 4vw, 56px);
}

.shc-proof-section {
  padding: 0 28px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(5, 5, 5, 0.98)),
    #070606;
  border-block: 1px solid var(--shc-border-soft);
}

.shc-proof-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--shc-border-soft);
}

.shc-proof-card {
  min-height: 100%;
  padding: 34px 30px 32px;
  background: rgba(8, 8, 8, 0.94);
}

.shc-proof-card h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.shc-proof-card p {
  margin: 0;
  color: var(--shc-text-secondary);
  font-size: 17px;
  line-height: 1.72;
}

.shc-home-blurb {
  padding-block: 84px;
}

.shc-home-blurb .shc-blurb-wrap {
  max-width: 980px;
}

.shc-home-blurb .shc-kicker {
  margin-bottom: 14px;
}

.shc-home-blurb .shc-blurb-wrap h2 {
  max-width: 760px;
  margin-bottom: 28px;
}

.shc-home-blurb .shc-blurb-copy {
  max-width: 760px;
  column-count: 1;
  column-gap: 0;
}

.shc-home-blurb .shc-blurb-copy p {
  font-size: 19px;
  line-height: 1.74;
}

.shc-home-blurb .shc-blurb-callout {
  margin: 8px 0 20px;
}

.shc-characters-section {
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.98), rgba(5, 5, 5, 0.98)),
    #080707;
}

.shc-characters-intro {
  margin-bottom: 36px;
}

.shc-character-grid {
  gap: 1px;
}

.shc-character-grid article {
  padding: 26px 26px 28px;
  background: rgba(9, 9, 9, 0.94);
}

.shc-character-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3.3vw, 38px);
}

.shc-dossier-list {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--shc-border-soft);
}

.shc-newsletter-section {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(5, 5, 5, 0.98)),
    #070606;
}

.shc-newsletter-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.84fr);
  gap: clamp(30px, 4vw, 48px);
  padding: 38px;
}

.shc-home-cta-note {
  max-width: 42ch;
  color: var(--shc-text-muted) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.shc-newsletter-form {
  padding: 28px;
  border: 1px solid var(--shc-border-soft);
  background: rgba(255, 255, 255, 0.02);
}

.shc-social-links {
  margin-top: 22px;
}

@media (max-width: 860px) {
  .shc-proof-grid,
  .shc-newsletter-card {
    grid-template-columns: 1fr;
  }

  .shc-proof-card,
  .shc-newsletter-card {
    padding-inline: 24px;
  }

  .shc-home-blurb .shc-blurb-wrap h2 {
    max-width: none;
  }

  .shc-home-blurb .shc-blurb-copy p,
  .shc-proof-card p {
    font-size: 17px;
  }
}

/* Professional reset */

body {
  background: #f5f1ea;
}

.shc-page {
  background: #f5f1ea;
  color: #1b1b1b;
  font-family: Georgia, "Times New Roman", serif;
}

.shc-nav {
  position: sticky;
  top: 0;
  padding: 22px 32px;
  background: rgba(245, 241, 234, 0.96);
  border-bottom: 1px solid #d8cfc4;
  backdrop-filter: blur(10px);
}

.shc-nav a {
  color: #1d1d1d;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.shc-nav a:hover,
.shc-nav a:focus-visible,
.shc-nav a[aria-current="page"] {
  color: #6b1f1f;
}

.shc-nav .shc-nav-logo {
  color: #111111;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.shc-hero,
.shc-page-hero,
.shc-about-hero,
.shc-series-hero,
.shc-contact-hero {
  min-height: auto;
  padding: 72px 32px 56px;
  background: #f5f1ea;
  border-bottom: 1px solid #d8cfc4;
}

.shc-wrap,
.shc-page-wrap {
  max-width: 1120px;
  gap: 44px;
  align-items: start;
}

.shc-logo,
.shc-logo.small {
  max-width: 220px;
  margin-bottom: 24px;
  filter: none;
}

.shc-cover-wrap::before {
  display: none;
}

.shc-cover {
  max-width: 360px;
  border: 1px solid #d8cfc4;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.shc-kicker {
  color: #6b1f1f;
  margin-bottom: 12px;
  font: 600 11px/1.4 Arial, Helvetica, sans-serif;
  letter-spacing: 0.14em;
}

.shc-title,
.shc-page-title,
.shc-blurb-wrap h2,
.shc-characters-intro h2,
.shc-newsletter-card h2,
.shc-case-card h2,
.shc-contact-grid h2,
.shc-section h2,
.shc-character-grid h3 {
  color: #111111;
  text-transform: none;
  letter-spacing: 0;
}

.shc-title {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.98;
}

.shc-subtitle {
  margin: 10px 0 10px;
  color: #6b1f1f;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.04em;
  text-transform: none;
}

.shc-series-line {
  margin-bottom: 22px;
  color: #6a625a;
  font: 500 12px/1.5 Arial, Helvetica, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shc-copy,
.shc-page-copy,
.shc-blurb-copy p,
.shc-characters-intro p,
.shc-character-grid p,
.shc-section p,
.shc-case-card p,
.shc-contact-grid p,
.shc-newsletter-card p,
.shc-proof-card p,
.shc-author-card p {
  color: #413b35;
}

.shc-copy,
.shc-page-copy {
  font-size: 21px;
  line-height: 1.62;
  max-width: 34ch;
}

.shc-dates {
  margin: 28px 0 30px;
  padding: 18px 0;
  border-top: 1px solid #d8cfc4;
  border-bottom: 1px solid #d8cfc4;
}

.shc-dates div {
  padding: 10px 0;
  font-size: 17px;
}

.shc-dates span {
  color: #746b63;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.shc-dates strong {
  color: #171717;
}

.shc-btn {
  padding: 14px 22px;
  border: 1px solid #171717;
  color: #171717;
  font: 600 11px/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: 0.12em;
}

.shc-btn.primary {
  background: #171717;
  color: #f8f5f0;
  border-color: #171717;
}

.shc-btn.disabled {
  opacity: 0.48;
}

.shc-proof-section,
.shc-blurb-section,
.shc-characters-section,
.shc-newsletter-section,
.shc-section,
.shc-start-section,
.shc-author-strip {
  padding: 56px 32px;
  background: #fbf8f3;
  border-top: 1px solid #d8cfc4;
  border-bottom: none;
}

.shc-proof-grid,
.shc-character-grid,
.shc-contact-grid,
.shc-case-section,
.shc-start-grid,
.shc-press-grid {
  max-width: 1120px;
  margin: 0 auto;
  gap: 24px;
  padding: 0;
  background: transparent;
}

.shc-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shc-proof-card,
.shc-character-grid article,
.shc-case-card,
.shc-contact-grid article,
.shc-panel,
.shc-contact-card,
.shc-newsletter-card,
.shc-author-photo-card,
.shc-start-grid a {
  padding: 28px;
  border: 1px solid #d8cfc4;
  background: #ffffff;
  box-shadow: none;
}

.shc-proof-card h2,
.shc-case-card h2,
.shc-contact-grid h2,
.shc-character-grid h3,
.shc-section h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
}

.shc-home-blurb {
  background: #f5f1ea;
}

.shc-home-blurb .shc-blurb-wrap,
.shc-blurb-wrap {
  max-width: 820px;
}

.shc-home-blurb .shc-blurb-wrap h2,
.shc-blurb-wrap h2 {
  max-width: 18ch;
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
}

.shc-blurb-copy,
.shc-home-blurb .shc-blurb-copy {
  max-width: 760px;
  column-count: 1;
}

.shc-blurb-copy p,
.shc-home-blurb .shc-blurb-copy p {
  font-size: 19px;
  line-height: 1.76;
}

.shc-blurb-callout {
  color: #6b1f1f !important;
  font-size: 22px !important;
  letter-spacing: 0.08em;
}

.shc-characters-intro {
  max-width: 760px;
  margin: 0 auto 28px;
}

.shc-character-portrait,
.shc-assets-grid img,
.shc-poster,
.shc-format-image {
  box-shadow: none;
  border: 1px solid #d8cfc4;
}

.shc-dossier-list {
  border-top: 1px solid #e3dbd1;
}

.shc-newsletter-card {
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 32px;
}

.shc-newsletter-form {
  padding: 0;
  border: none;
  background: transparent;
}

.shc-newsletter-form label,
.shc-contact-form label {
  color: #171717;
  font: 600 11px/1.4 Arial, Helvetica, sans-serif;
  letter-spacing: 0.12em;
}

.shc-newsletter-form input,
.shc-contact-form input,
.shc-contact-form select,
.shc-contact-form textarea {
  border: 1px solid #cfc5b8;
  background: #fff;
  color: #171717;
}

.shc-contact-card span,
.shc-case-card span,
.shc-character-grid span,
.shc-dossier-list b {
  color: #6b1f1f;
}

.shc-contact-card a {
  color: #171717;
}

.shc-contact-card a:hover,
.shc-social-link:hover,
.shc-footer-rich a:hover {
  color: #6b1f1f;
}

.shc-social-link {
  color: #171717;
  font: 600 11px/1.3 Arial, Helvetica, sans-serif;
  letter-spacing: 0.12em;
}

.shc-author-photo-card figcaption,
.shc-newsletter-note,
.shc-home-cta-note {
  color: #746b63 !important;
}

.shc-footer,
.shc-footer-rich {
  padding: 28px 32px 36px;
  background: #f5f1ea;
  border-top: 1px solid #d8cfc4;
}

.shc-footer-rich strong {
  color: #111111;
}

.shc-footer-rich a,
.shc-footer-rich span {
  color: #6a625a;
}

@media (max-width: 900px) {
  .shc-wrap,
  .shc-page-wrap,
  .shc-newsletter-card,
  .shc-two-column,
  .shc-contact-grid,
  .shc-case-section,
  .shc-character-grid,
  .shc-proof-grid {
    grid-template-columns: 1fr;
  }

  .shc-nav {
    padding-inline: 22px;
  }

  .shc-hero,
  .shc-page-hero,
  .shc-proof-section,
  .shc-blurb-section,
  .shc-characters-section,
  .shc-newsletter-section,
  .shc-section,
  .shc-footer {
    padding-inline: 22px;
  }

  .shc-title {
    font-size: clamp(40px, 12vw, 60px);
  }

  .shc-copy,
  .shc-page-copy,
  .shc-blurb-copy p {
    font-size: 18px;
  }
}

/* Page-specific tone */

.shc-nav-link-series,
.shc-nav-link-about {
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.shc-nav-link-series {
  border-bottom: 1px solid transparent;
}

.shc-nav-link-about {
  border-bottom: 1px solid transparent;
}

.shc-nav-link-series:hover,
.shc-nav-link-series:focus-visible {
  color: #4d1820;
  border-bottom-color: #8b5c64;
}

.shc-nav-link-about:hover,
.shc-nav-link-about:focus-visible {
  color: #7b5b3f;
  border-bottom-color: #c1ab92;
}

.shc-page-series .shc-nav-link-series[aria-current="page"] {
  color: #f2ebe2;
  background: #24191a;
  padding: 8px 12px;
  border: 1px solid #4d3639;
}

.shc-page-about .shc-nav-link-about[aria-current="page"] {
  color: #5e4737;
  background: #f1e7d9;
  padding: 8px 12px;
  border: 1px solid #d3c0aa;
}

.shc-page-series .shc-series-hero {
  background:
    linear-gradient(180deg, rgba(25, 20, 20, 0.96), rgba(18, 16, 16, 0.98)),
    #171414;
  border-bottom: 1px solid #3d3232;
}

.shc-page-series .shc-series-hero .shc-page-title,
.shc-page-series .shc-series-hero .shc-page-copy,
.shc-page-series .shc-series-hero .shc-kicker,
.shc-page-series .shc-series-hero .shc-contact-card,
.shc-page-series .shc-series-hero .shc-contact-card a,
.shc-page-series .shc-series-hero .shc-contact-card span {
  color: #f2ebe2;
}

.shc-page-series .shc-series-hero .shc-kicker {
  color: #b4878a;
}

.shc-page-series .shc-series-hero .shc-contact-card {
  border-color: #3d3232;
  background: #211a1a;
}

.shc-page-series .shc-proof-section,
.shc-page-series .shc-case-section {
  background: #f1ebe4;
}

.shc-page-series .shc-case-card.active {
  border-color: #5b4345;
  background: #f8f3ee;
}

.shc-page-series .shc-case-card.active span {
  color: #6b1f1f;
}

.shc-page-about .shc-about-hero {
  background:
    linear-gradient(180deg, rgba(250, 244, 236, 0.98), rgba(245, 239, 230, 0.98)),
    #f6efe5;
  border-bottom: 1px solid #dccfbe;
}

.shc-page-about .shc-about-hero .shc-kicker {
  color: #8d6a49;
}

.shc-page-about .shc-page-copy {
  max-width: 36ch;
  color: #504840;
}

.shc-page-about .shc-author-photo-card {
  background: #fffdfa;
  border-color: #dccfbe;
}

.shc-page-about .shc-author-photo-card img {
  border: 1px solid #e4d8ca;
}

.shc-page-about .shc-section,
.shc-page-about .shc-proof-section {
  background: #fcf8f3;
}

.shc-page-about .shc-panel {
  background: #f8f1e8;
  border-color: #dccfbe;
}
/* Author updates */
.sa-updates-page {
  background: #e7e0d6;
  color: #161412;
}

.sa-updates-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
  min-height: 680px;
  padding: 140px 7vw 100px;
  background: linear-gradient(115deg, rgba(8, 8, 7, 0.97), rgba(22, 17, 16, 0.91)), var(--sa-hero-background);
  background-position: center;
  background-size: cover;
  color: #f4eee6;
}

.sa-updates-hero h1 {
  grid-row: 2;
  margin: 0;
  font: 400 clamp(78px, 10vw, 160px)/0.82 Georgia, "Times New Roman", serif;
  letter-spacing: -0.065em;
}

.sa-updates-hero h1 em {
  color: #b7302a;
  font-weight: 400;
}

.sa-updates-hero > p:last-child {
  grid-column: 2;
  grid-row: 2;
  max-width: 480px;
  margin: 0 0 12px;
  color: #c8c0b6;
  font: 400 clamp(18px, 1.7vw, 26px)/1.55 Georgia, "Times New Roman", serif;
}

.sa-updates-list {
  padding: 110px 7vw 130px;
}

.sa-updates-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 65px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(22, 20, 18, 0.24);
}

.sa-updates-heading h2,
.sa-social-stream h2,
.sa-updates-conversion h2 {
  margin: 0;
  font: 400 clamp(46px, 6vw, 88px)/0.95 Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}

.sa-update-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 42px;
}

.sa-update-card {
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(22, 20, 18, 0.24);
}

.sa-update-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #171514;
}

.sa-update-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.sa-update-card-image:hover img {
  transform: scale(1.025);
}

.sa-update-card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #b7302a;
  font: 400 clamp(70px, 9vw, 140px)/1 Georgia, "Times New Roman", serif;
}

.sa-update-card-copy {
  padding-top: 26px;
}

.sa-update-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 18px;
  color: #706a63;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sa-update-meta a {
  color: inherit;
}

.sa-update-card h3 {
  margin: 0 0 18px;
  font: 400 clamp(30px, 3vw, 48px)/1.05 Georgia, "Times New Roman", serif;
}

.sa-update-card h3 a {
  color: inherit;
  text-decoration: none;
}

.sa-update-card-copy > p {
  max-width: 660px;
  color: #5f5952;
  line-height: 1.75;
}

.sa-updates-empty {
  max-width: 780px;
  padding: 70px;
  border: 1px solid rgba(22, 20, 18, 0.2);
  background: rgba(255, 255, 255, 0.24);
}

.sa-updates-empty h3 {
  margin: 16px 0;
  font: 400 clamp(38px, 5vw, 68px)/1 Georgia, "Times New Roman", serif;
}

.sa-pagination {
  margin-top: 70px;
}

.sa-pagination ul {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.sa-pagination a,
.sa-pagination span {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(22, 20, 18, 0.24);
  color: #161412;
  text-decoration: none;
}

.sa-pagination .current {
  background: #161412;
  color: #f4eee6;
}

.sa-social-stream {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: 8vw;
  padding: 115px 7vw;
  background: #151412;
  color: #f3eee6;
}

.sa-social-stream-copy > p:not(.sa-section-number) {
  max-width: 520px;
  color: #aaa49b;
  line-height: 1.75;
}

.sa-social-links {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}

.sa-social-links a {
  color: #f3eee6;
  text-underline-offset: 6px;
}

.sa-social-feed {
  min-height: 390px;
}

.sa-social-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.sa-social-feed-network {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0c0c0b;
}

.sa-social-feed-label {
  margin: 0 0 22px;
  color: #c75759;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Bring third-party social feeds into the author-site palette. */
.sa-social-feed-network #sb_instagram,
.sa-social-feed-network .cff-wrapper,
.sa-social-feed-network #cff {
  background: transparent !important;
  color: #e9e2d8 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

.sa-social-feed-network #sb_instagram *,
.sa-social-feed-network .cff-wrapper *,
.sa-social-feed-network #cff * {
  border-color: rgba(255, 255, 255, 0.13) !important;
}

.sa-social-feed-network #sb_instagram a,
.sa-social-feed-network .cff-wrapper a,
.sa-social-feed-network #cff a,
.sa-social-feed-network .cff-more,
.sa-social-feed-network .cff-less {
  color: #c75759 !important;
  text-decoration-color: rgba(199, 87, 89, 0.55) !important;
}

.sa-social-feed-network #sb_instagram a:hover,
.sa-social-feed-network #sb_instagram a:focus-visible,
.sa-social-feed-network .cff-wrapper a:hover,
.sa-social-feed-network .cff-wrapper a:focus-visible {
  color: #f0e9df !important;
}

.sa-social-feed-network .sb_instagram_header,
.sa-social-feed-network .cff-visual-header,
.sa-social-feed-network .cff-item {
  background: #12110f !important;
}

.sa-social-feed-network .sbi_header_link,
.sa-social-feed-network .cff-header-name,
.sa-social-feed-network .cff-page-name {
  color: #f0e9df !important;
  font-family: Georgia, "Times New Roman", serif !important;
}

.sa-social-feed-network .sbi_bio,
.sa-social-feed-network .cff-bio,
.sa-social-feed-network .cff-text,
.sa-social-feed-network .cff-post-text,
.sa-social-feed-network .cff-date {
  color: #c3bbb1 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.sa-social-feed-network .cff-header-name,
.sa-social-feed-network .cff-page-name {
  font-size: 18px !important;
  line-height: 1.25 !important;
}

.sa-social-feed-network .cff-item {
  margin-bottom: 22px !important;
  padding: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.sa-social-feed-network .cff-post-links,
.sa-social-feed-network .cff-media-link {
  color: #c75759 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
}

.sa-social-feed-network .sbi_follow_btn a,
.sa-social-feed-network #sb_instagram .sbi_follow_btn a,
.sa-social-feed-network .cff-load-more,
.sa-social-feed-network .cff-follow-link,
.sa-social-feed-network .cff-likebox {
  border: 1px solid #a73c3d !important;
  border-radius: 0 !important;
  background: #8e1e21 !important;
  box-shadow: none !important;
  color: #fff7ec !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

.sa-social-feed-network .sbi_follow_btn a:hover,
.sa-social-feed-network .sbi_follow_btn a:focus-visible,
.sa-social-feed-network .cff-load-more:hover,
.sa-social-feed-network .cff-follow-link:hover {
  background: #f0e9df !important;
  color: #171513 !important;
}

.sa-social-feed-network .sbi_new_logo,
.sa-social-feed-network .sbi_playbtn,
.sa-social-feed-network .cff-square-logo,
.sa-social-feed-network .cff-likes-box svg {
  color: #c75759 !important;
  fill: #c75759 !important;
}

.sa-social-feed-network .cff-likes-box {
  border-radius: 0 !important;
  background: #f0e9df !important;
  color: #171513 !important;
}

.sa-social-feed-placeholder {
  display: flex;
  min-height: 390px;
  padding: 55px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex-direction: column;
  justify-content: end;
  background: radial-gradient(circle at 75% 15%, rgba(183, 48, 42, 0.32), transparent 35%), #0c0c0b;
}

.sa-social-feed-placeholder span {
  color: #b7302a;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sa-social-feed-placeholder strong {
  margin: 18px 0;
  font: 400 clamp(38px, 5vw, 72px)/1 Georgia, "Times New Roman", serif;
}

.sa-social-feed-placeholder p {
  max-width: 580px;
  margin: 0;
  color: #aaa49b;
  line-height: 1.7;
}

.sa-updates-conversion {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sa-updates-book,
.sa-updates-newsletter {
  min-height: 700px;
  padding: 90px 6vw;
}

.sa-updates-book {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.6fr);
  gap: 45px;
  align-items: center;
  background: #bbb2a6;
}

.sa-updates-book img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.28));
}

.sa-updates-book p,
.sa-updates-newsletter > p {
  line-height: 1.7;
}

.sa-updates-newsletter {
  background: #f3ede4;
}

.sa-reader-form {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.sa-reader-form label {
  display: grid;
  gap: 8px;
}

.sa-reader-form label > span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sa-reader-form input {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(22, 20, 18, 0.36);
  background: transparent;
  color: #161412;
  font: inherit;
}

.sa-reader-form .sa-reader-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #5f5952;
  line-height: 1.5;
}

.sa-reader-form .sa-reader-consent input {
  width: auto;
  margin-top: 3px;
}

.sa-reader-form .sa-reader-consent span {
  letter-spacing: 0;
  text-transform: none;
}

.sa-reader-status {
  padding: 14px 18px;
  border-left: 3px solid #777;
}

.sa-reader-status.success {
  border-color: #4b7354;
}

.sa-reader-status.error {
  border-color: #b7302a;
}

.sa-honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.sa-single-update {
  padding: 120px 7vw 130px;
  background: #eee7dd;
  color: #171513;
}

.sa-single-update > article {
  max-width: 1180px;
  margin: 0 auto;
}

.sa-single-update-header {
  max-width: 980px;
  margin-bottom: 65px;
}

.sa-update-back {
  display: inline-block;
  margin-bottom: 55px;
  color: #8f2824;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-underline-offset: 6px;
}

.sa-single-update-header h1 {
  margin: 18px 0 26px;
  font: 400 clamp(58px, 8vw, 118px)/0.92 Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
}

.sa-single-update-intro {
  max-width: 760px;
  color: #5e5851;
  font: 400 clamp(22px, 2.3vw, 34px)/1.45 Georgia, "Times New Roman", serif;
}

.sa-single-update-image {
  margin: 0 0 75px;
}

.sa-single-update-image img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.sa-single-update-content {
  max-width: 760px;
  margin: 0 auto;
  color: #393530;
  font: 400 19px/1.85 Georgia, "Times New Roman", serif;
}

.sa-single-update-content h2,
.sa-single-update-content h3 {
  color: #171513;
  line-height: 1.12;
}

.sa-single-update-content h2 {
  margin: 65px 0 22px;
  font-size: clamp(36px, 4vw, 56px);
}

.sa-single-update-content h3 {
  margin: 48px 0 18px;
  font-size: 30px;
}

.sa-single-update-content a {
  color: #8f2824;
}

.sa-single-update-content img {
  max-width: 100%;
  height: auto;
}

.sa-single-update-content blockquote {
  margin: 55px -7vw;
  padding: 42px 7vw;
  border-top: 1px solid rgba(22, 20, 18, 0.2);
  border-bottom: 1px solid rgba(22, 20, 18, 0.2);
  color: #171513;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.4;
}

.sa-single-update-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  max-width: 980px;
  margin: 90px auto 0;
  padding-top: 45px;
  border-top: 1px solid rgba(22, 20, 18, 0.24);
}

.sa-single-update-footer a:not(.sa-button) {
  margin-right: 22px;
  color: #171513;
  text-underline-offset: 6px;
}

@media (max-width: 900px) {
  .sa-updates-hero,
  .sa-social-stream,
  .sa-updates-conversion {
    display: block;
  }

  .sa-updates-hero {
    min-height: 600px;
  }

  .sa-updates-hero > p:last-child {
    max-width: 620px;
    margin-top: 45px;
  }

  .sa-social-feed {
    margin-top: 60px;
  }

  .sa-social-feed-grid {
    grid-template-columns: 1fr;
  }

  .sa-updates-book,
  .sa-updates-newsletter {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .sa-updates-hero {
    min-height: 520px;
    padding: 105px 20px 70px;
  }

  .sa-updates-hero h1 {
    font-size: clamp(62px, 20vw, 92px);
  }

  .sa-updates-list,
  .sa-social-stream {
    padding: 80px 20px;
  }

  .sa-updates-heading,
  .sa-single-update-footer {
    display: block;
  }

  .sa-update-grid {
    grid-template-columns: 1fr;
  }

  .sa-updates-empty,
  .sa-social-feed-placeholder,
  .sa-updates-book,
  .sa-updates-newsletter {
    padding: 55px 20px;
  }

  .sa-updates-book {
    grid-template-columns: 1fr;
  }

  .sa-updates-book img {
    max-width: 260px;
    margin: 45px auto 0;
  }

  .sa-single-update {
    padding: 95px 20px 90px;
  }

  .sa-single-update-header h1 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .sa-single-update-content {
    font-size: 18px;
  }

  .sa-single-update-content blockquote {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .sa-single-update-footer .sa-button {
    margin-top: 35px;
  }
}
/* SEO-focused book and article pathways */
.sa-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 28px 7vw;
  border-bottom: 1px solid rgba(22, 20, 18, 0.16);
  background: #e7e0d6;
  color: #756e66;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sa-breadcrumbs a {
  color: #8e1e21;
  text-underline-offset: 4px;
}

.sa-book-page {
  background: #e7e0d6;
  color: #171513;
}

.sa-book-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 8vw;
  align-items: center;
  min-height: 820px;
  padding: 85px 8vw 105px;
  background: radial-gradient(circle at 18% 30%, rgba(142, 30, 33, 0.17), transparent 34%), #171513;
  color: #f2ece3;
}

.sa-book-cover {
  text-align: center;
}

.sa-book-cover img {
  width: min(100%, 480px);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.5));
}

.sa-book-hero-copy h1 {
  margin: 20px 0 0;
  font: 400 clamp(78px, 10vw, 154px)/0.84 Georgia, "Times New Roman", serif;
  letter-spacing: -0.065em;
}

.sa-book-page-subtitle {
  margin: 10px 0 38px;
  color: #c75759;
  font: 400 clamp(28px, 3vw, 46px)/1.1 Georgia, "Times New Roman", serif;
}

.sa-book-page-lead {
  max-width: 760px;
  color: #d3cbc1;
  font: 400 clamp(21px, 2vw, 31px)/1.5 Georgia, "Times New Roman", serif;
}

.sa-book-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin: 46px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sa-book-details div {
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sa-book-details dt {
  color: #938c83;
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.sa-book-details dd {
  margin: 7px 0 0;
  color: #f2ece3;
}

.sa-book-hero .sa-button-dark {
  background: #eee7dd;
  color: #171513;
}

.sa-book-synopsis {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 8vw;
  padding: 120px 8vw;
}

.sa-book-synopsis h2,
.sa-book-links h2 {
  margin: 20px 0 0;
  font: 400 clamp(48px, 6vw, 90px)/0.97 Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}

.sa-book-synopsis > div:last-child {
  max-width: 760px;
  color: #58524c;
  font-size: 18px;
  line-height: 1.8;
}

.sa-book-synopsis-lead {
  color: #171513;
  font: 400 clamp(25px, 2.6vw, 38px)/1.45 Georgia, "Times New Roman", serif;
}

.sa-book-themes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #bdb4a8;
}

.sa-book-themes article {
  min-height: 350px;
  padding: 60px 4vw;
  border-right: 1px solid rgba(22, 20, 18, 0.2);
}

.sa-book-themes article:last-child {
  border-right: 0;
}

.sa-book-themes span {
  color: #8e1e21;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sa-book-themes h2 {
  margin: 25px 0 18px;
  font: 400 clamp(31px, 3.2vw, 51px)/1.05 Georgia, "Times New Roman", serif;
}

.sa-book-themes p {
  color: #5e5851;
  line-height: 1.7;
}

.sa-book-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 110px 8vw;
  background: #f2ece3;
}

.sa-book-links > div:last-child {
  display: grid;
  align-content: center;
}

.sa-book-links > div:last-child a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(22, 20, 18, 0.22);
  color: #171513;
  text-decoration: none;
  font: 400 clamp(22px, 2.4vw, 35px)/1.2 Georgia, "Times New Roman", serif;
}

.sa-related-updates {
  max-width: 1180px;
  margin: 110px auto 0;
  padding-top: 70px;
  border-top: 1px solid rgba(22, 20, 18, 0.22);
}

.sa-related-updates > h2,
.sa-article-book-link h2 {
  margin: 14px 0 45px;
  font: 400 clamp(42px, 5vw, 72px)/1 Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}

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

.sa-related-grid article {
  padding: 30px;
  border: 1px solid rgba(22, 20, 18, 0.18);
  background: rgba(255, 255, 255, 0.25);
}

.sa-related-grid h3 {
  margin: 15px 0;
  font: 400 clamp(24px, 2.4vw, 35px)/1.1 Georgia, "Times New Roman", serif;
}

.sa-related-grid h3 a {
  color: #171513;
  text-decoration: none;
}

.sa-related-grid article > p:last-child {
  color: #655f58;
  line-height: 1.65;
}

.sa-article-book-link {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  max-width: 1180px;
  margin: 80px auto 0;
  padding: 55px;
  background: #bbb2a6;
}

.sa-article-book-link h2 {
  margin-bottom: 15px;
}

.sa-article-book-link p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .sa-book-hero,
  .sa-book-synopsis,
  .sa-book-links {
    grid-template-columns: 1fr;
  }

  .sa-book-hero {
    gap: 65px;
  }

  .sa-book-cover img {
    max-height: 560px;
  }

  .sa-book-themes,
  .sa-related-grid {
    grid-template-columns: 1fr;
  }

  .sa-book-themes article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(22, 20, 18, 0.2);
  }
}

@media (max-width: 680px) {
  .sa-breadcrumbs {
    padding: 20px;
  }

  .sa-book-hero,
  .sa-book-synopsis,
  .sa-book-links {
    padding: 75px 20px;
  }

  .sa-book-hero-copy h1 {
    font-size: clamp(68px, 21vw, 96px);
  }

  .sa-book-details {
    grid-template-columns: 1fr;
  }

  .sa-book-themes article {
    padding: 52px 20px;
  }

  .sa-article-book-link {
    display: block;
    padding: 40px 24px;
  }

  .sa-article-book-link .sa-button {
    margin-top: 30px;
  }
}
