/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: #1c1a17;
  background: #FEFEFE;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #1c1a17;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

a:hover {
  color: #d6488a;
}

/* ---------- Layout ---------- */
.site-header {
  border-bottom: 1px solid #e6e0d4;
  background: #FEFEFE;
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6488a;
  display: inline-block;
  flex-shrink: 0;
}

.site-nav a {
  margin-left: 24px;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  color: #4a4640;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #000;
}

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

.site-footer {
  border-top: 1px solid #e6e0d4;
  margin-top: 80px;
  padding: 36px 28px;
  font-size: 15px;
  color: #6f6a61;
  text-align: center;
  background: #f4efe6;
}

/* ---------- Article shell ---------- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 28px 24px;
}

.article--wide {
  max-width: 1100px;
}

.article--deck {
  max-width: 1280px;
}

.kicker {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6488a;
  margin: 0 0 16px;
}

.headline {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 5.4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 19px;
  color: #14110d;
}

.subhead {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-style: normal;
  font-size: clamp(1.1625rem, 2vw, 1.4125rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #4a4640;
  margin: 0 0 25px;
  font-weight: 400;
}

.byline {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6f6a61;
  margin: 0 0 5px;
  padding-bottom: 5px;
}

.byline strong {
  color: #1c1a17;
  font-weight: 600;
}

/* ---------- Article header & CTAs ---------- */
.article-header {
  margin-bottom: 8px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.cta--primary {
  background: #14110d;
  color: #FEFEFE;
  border: 1px solid #14110d;
}

.cta--primary:hover {
  background: #d6488a;
  border-color: #d6488a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(214, 72, 138, 0.25);
}

.cta--secondary {
  background: transparent;
  color: #14110d;
  border: 1px solid #c8bfac;
}

.cta--secondary:hover {
  border-color: #14110d;
  color: #14110d;
  transform: translateY(-1px);
}

.cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d6488a;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  padding-left: 1px;
}

.cta--primary:hover .cta__icon {
  background: #fff;
  color: #d6488a;
}

/* ---------- Opener gallery (full-bleed images) ---------- */
.opener-gallery {
  margin: 5px 0 8px;
  display: grid;
  gap: 36px;
}

.figure--bleed {
  margin: 60px 0 30px;
  /* Break out of the 720px article column visually */
  margin-left: calc(50% - min(50vw, 620px) + 0px);
  margin-right: calc(50% - min(50vw, 620px) + 0px);
}

.figure--bleed img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #e6e0d4;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 17, 13, 0.06);
}

.figure--bleed figcaption {
  font-size: 15px;
  color: #6f6a61;
  margin-top: 14px;
  line-height: 1.5;
  font-style: italic;
  max-width: 720px;
  margin-inline: auto;
  padding: 0 4px;
  text-align: left;
}

.figure__hint {
  display: inline;
  margin-left: 8px;
  color: #d6488a;
  font-style: normal;
  font-weight: 600;
}

/* ---------- Sculpture pair (two photos side-by-side) ---------- */
.sculpture-pair__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sculpture-pair__grid img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid #e6e0d4;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 17, 13, 0.06);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 16 / 10;
}

@media (max-width: 600px) {
  .sculpture-pair__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Reveal figure (click to expand tall screenshots) ---------- */
.reveal-figure {
  text-align: center;
}

.reveal-figure__frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #e6e0d4;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 17, 13, 0.06);
}

/* Collapsed: crop the frame to ~1/4 of the image height */
.reveal-figure:not(.is-open) .reveal-figure__frame {
  aspect-ratio: var(--peek-aspect, 2880 / 1065);
}

.reveal-figure__frame img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.reveal-figure__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.96)
  );
  pointer-events: none;
}

.reveal-figure.is-open .reveal-figure__fade {
  display: none;
}

.reveal-figure__toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 17, 13, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: #14110d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(20, 17, 13, 0.12);
  z-index: 2;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, transform 0.15s ease;
}

.reveal-figure__toggle:hover,
.reveal-figure__toggle:focus-visible {
  background: #14110d;
  border-color: #14110d;
  color: #FEFEFE;
  transform: translateY(-1px);
  outline: none;
}

.reveal-figure__toggle-icon {
  font-size: 17px;
  line-height: 1;
}

/* ---------- Video still (clickable thumbnail) ---------- */
.video-still {
  margin: 28px 0 12px;
}

.video-still__link {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(20, 17, 13, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-still__link:hover,
.video-still__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(20, 17, 13, 0.18);
  outline: none;
}

.video-still__link img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #e6e0d4;
  border-radius: 6px;
  background: #000;
}

.video-still__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(20, 17, 13, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.video-still__link:hover .video-still__play,
.video-still__link:focus-visible .video-still__play {
  background: #d6488a;
  transform: translate(-50%, -50%) scale(1.05);
}

.video-still__triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #FEFEFE;
  margin-left: 6px;
}

@media (max-width: 600px) {
  .video-still__play {
    width: 64px;
    height: 64px;
  }
  .video-still__triangle {
    border-width: 10px 0 10px 16px;
    margin-left: 4px;
  }
}

/* ---------- Interactive map ---------- */
.map-figure {
  cursor: default;
}

.map-container {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #e6e0d4;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 17, 13, 0.06);
}

.map-pin {
  position: absolute;
  width: 8.5%;
  aspect-ratio: 1 / 1;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.map-pin:hover::after,
.map-pin:focus-visible::after {
  border-color: #14110d;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.85),
    0 8px 24px rgba(20, 17, 13, 0.18);
  transform: scale(1.08);
}

.map-pin:hover,
.map-pin:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
}

.map-pin:focus-visible {
  outline: none;
}

/* Pin positions (percentage of map image), tuned to image */
.map-pin--hawaii {
  left: 14%;
  top: 70%;
}

.map-pin--california {
  left: 19%;
  top: 51%;
}

.map-pin--colorado {
  left: calc(40% + 10px);
  top: 15%;
}

.map-pin--newyork {
  left: 87%;
  top: 32%;
}

.map-expand {
  position: absolute;
  bottom: 12px;
  right: 12px;
  height: 36px;
  padding: 0 14px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 17, 13, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: #14110d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, background 0.15s ease,
    color 0.15s ease;
  box-shadow: 0 4px 14px rgba(20, 17, 13, 0.12);
}

.map-expand__icon {
  font-size: 17px;
  line-height: 1;
}

.map-expand:hover,
.map-expand:focus-visible {
  background: #14110d;
  color: #FEFEFE;
  transform: translateY(-1px);
  outline: none;
}

/* Time zone strip — horizontal across the bottom of the map */
.map-timezones {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2px;
  height: 25px;
  margin: 0;
  padding: 0;
}

.map-tz-box {
  background: #e5e5e5;
  color: #6f6a61;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

/* Make sure pins stay above the time zone overlay */
.map-pin {
  z-index: 3;
}

/* ---------- Lightbox ---------- */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 13, 0.92);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lb-fade 0.18s ease-out;
}

@keyframes lb-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FEFEFE;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 2;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: #d6488a;
  transform: rotate(90deg);
  outline: none;
}

.lightbox__inner {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  max-height: calc(100vh - 120px);
}

.lightbox__map-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(100vh - 140px);
  min-width: 0;
}

.lightbox__map-inner {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  line-height: 0;
}

.lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__card {
  flex: 0 0 400px;
  background: #FEFEFE;
  color: #14110d;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.lightbox__card[hidden] {
  display: none;
}

.lightbox__ai-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
  background: #f4efe6;
  border: 1px solid #e6e0d4;
}

.lightbox__artist-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 10px;
  background: #f4efe6;
  border: 1px solid #e6e0d4;
}

.lightbox__kicker {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6488a;
  margin: 0 0 4px;
}

.lightbox__name {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-size: 2.0625rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 2px;
  color: #14110d;
}

.lightbox__artwork {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-style: italic;
  font-size: 1.1625rem;
  color: #4a4640;
  margin: 0 0 12px;
}

.lightbox__artist {
  font-size: 16px;
  color: #14110d;
  margin: 0;
  padding-top: 10px;
}

.lightbox__artist-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f6a61;
  margin-bottom: 4px;
}

.lightbox__hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.6);
}

.lightbox__hint kbd {
  font-family: inherit;
  padding: 1px 6px;
  border: 1px solid rgba(250, 247, 242, 0.3);
  border-radius: 3px;
  font-size: 13px;
}

@media (max-width: 860px) {
  .lightbox__inner {
    flex-direction: column;
    gap: 16px;
    max-height: none;
  }
  .lightbox__card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
    padding: 20px 22px;
  }
  .lightbox__map-wrap {
    max-height: 55vh;
  }
  .lightbox__image {
    max-height: 55vh;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox__close,
  .map-pin,
  .map-pin::after,
  .map-expand {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Deck sections (rail + two columns) ---------- */
.section {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 3.5fr);
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid #e6e0d4;
}

.section:last-child {
  border-bottom: 1px solid #e6e0d4;
}

.section__rail {
  position: relative;
}

.prose .section__label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6488a;
  margin: 0;
}

.prose .section__title {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-size: clamp(1.625rem, 2.4vw, 2.0625rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #14110d;
  margin: 0;
}

.section__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.section__col > p {
  margin: 0 0 14px;
}

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

.section__pull {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #14110d;
  margin: 0;
}

@media (max-width: 900px) {
  .section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }
  .section__body {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---------- Body content ---------- */
.prose h2 {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-size: clamp(1.5625rem, 3vw, 2.0625rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 32px 0 12px;
  color: #14110d;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-size: 1.3125rem;
  font-weight: 600;
  margin: 20px 0 8px;
  color: #14110d;
  letter-spacing: -0.015em;
}

.prose p {
  margin: 0 0 10px;
}

.prose p em {
  font-style: italic;
}

.prose p strong {
  font-weight: 600;
  color: #14110d;
}

/* ---------- Pull quote ---------- */
.pullquote {
  margin: 44px 0;
  padding: 8px 0 8px 28px;
  border-left: 4px solid #d6488a;
  font-family: "Source Serif Pro", "Georgia", serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.3125rem, 2.4vw, 1.6625rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #14110d;
}

.pullquote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f6a61;
}

/* ---------- Figures ---------- */
.figure {
  margin: 12px 0;
}

.figure--full {
  margin-left: calc(50% - 50vw + 14px);
  margin-right: calc(50% - 50vw + 14px);
  max-width: 1100px;
  margin-inline: auto;
}

.figure img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #e6e0d4;
  background: #fff;
}

.figure figcaption {
  font-size: 15px;
  color: #6f6a61;
  margin-top: 12px;
  line-height: 1.5;
  font-style: italic;
}

/* ---------- Image placeholder (when image file is missing) ---------- */
.figure__placeholder {
  background: repeating-linear-gradient(
    45deg,
    #f4efe6,
    #f4efe6 14px,
    #efe9dc 14px,
    #efe9dc 28px
  );
  border: 1px dashed #c8bfac;
  border-radius: 4px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #6f6a61;
  font-size: 15px;
}

.figure__placeholder code {
  background: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 14px;
  color: #14110d;
}

/* ---------- Q&A (interview) styling ---------- */
.qa {
  margin: 0;
}

.prose .qa__q {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-size: clamp(1.3125rem, 2.4vw, 1.6625rem);
  font-weight: 700;
  line-height: 1.3;
  color: #14110d;
  margin: 25px 0 16px;
  padding-left: 0;
  position: relative;
}

.qa__a {
  position: relative;
  padding-left: 28px;
}

.qa__a::before {
  content: "A.";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Source Serif Pro", "Georgia", serif;
  font-weight: 600;
  color: #d6488a;
  font-size: 1.1625rem;
  letter-spacing: 0.02em;
}

.qa__q::before {
  content: "Q.";
  margin-right: 10px;
  color: #d6488a;
  font-weight: 600;
}

/* Questions are h2s inside .prose; override .prose h2's heavier weight */
.prose .qa__q {
  font-weight: 600;
}

/* Closing launch announcement */
.launch-note {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid #e6e0d4;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d6488a;
}

.qa + .qa {
  padding-top: 0;
}

/* ---------- Read-next card ---------- */
.read-next {
  margin: 80px auto 0;
  max-width: 720px;
  padding: 0 28px;
}

.read-next__card {
  display: block;
  padding: 32px;
  border: 1px solid #e6e0d4;
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.read-next__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 17, 13, 0.06);
  border-color: #d6488a;
}

.read-next__label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6488a;
  margin-bottom: 8px;
}

.read-next__title {
  font-family: "Source Serif Pro", "Georgia", serif;
  font-size: 1.5625rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #14110d;
}

.read-next__desc {
  font-size: 16px;
  color: #4a4640;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  body {
    font-size: 18px;
  }

  .article {
    padding: 40px 22px 16px;
  }

  .site-header__inner {
    padding: 16px 18px;
    gap: 12px;
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .brand {
    font-size: 18px;
    line-height: 1.1;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    margin-left: 12px;
    font-size: 13px;
    line-height: 1.15;
  }

  .site-nav a:first-child {
    margin-left: 0;
  }

  /* Tighten leading on multi-line headings/quotes when they wrap */
  .headline {
    line-height: 1;
  }

  .subhead {
    line-height: 1.25;
  }

  .pullquote {
    padding: 20px 0 20px 20px;
    line-height: 1.25;
  }

  .prose .qa__q {
    line-height: 1.2;
  }

  .figure figcaption,
  .figure--bleed figcaption {
    line-height: 1.35;
  }

  .read-next__title {
    line-height: 1.15;
  }

  .qa__a {
    padding-left: 22px;
  }
}

@media (max-width: 420px) {
  .site-header__inner {
    padding: 14px 14px;
    gap: 8px;
  }

  .brand {
    font-size: 16px;
  }

  .site-nav a {
    margin-left: 10px;
    font-size: 12px;
  }

  .site-nav a:first-child {
    margin-left: 0;
  }
}
