:root {
  --paper: #f2efe6;
  --paper-deep: #e5e2d8;
  --ink: #17191b;
  --muted: #686c6d;
  --line: rgba(23, 25, 27, 0.24);
  --blue: #245fb3;
  --green: #2d6254;
  --coral: #e6654d;
  --amber: #bb7c29;
  --serif: "Iowan Old Style", "Times New Roman", "Noto Serif KR", Batang, serif;
  --sans: Inter, "Pretendard Variable", Pretendard, "Noto Sans KR", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px) 0 0 / 38px 38px,
    #b9bcb8;
  font-family: var(--sans);
  word-break: keep-all;
}

body.is-gated {
  overflow: hidden;
}

.start-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(480px, 1.22fr);
  min-height: 100svh;
  overflow: hidden;
  color: #f4efe2;
  background: #121719;
  transition: opacity 720ms ease, visibility 720ms ease;
}

.start-gate.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.start-gate__image {
  grid-column: 2;
  grid-row: 1;
  background:
    linear-gradient(90deg, #121719 0%, rgba(18, 23, 25, 0.25) 32%, rgba(18, 23, 25, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 13, 17, 0.38), rgba(6, 13, 17, 0.06)),
    url("assets/start-thumbnail-1.png") 50% top / cover no-repeat;
  filter: saturate(0.78) contrast(1.05);
  transform: scale(1.015);
  animation: gateImageIn 1100ms ease-out both;
}

.start-gate__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 42px 42px,
    url("assets/editorial-pattern-v1.png") 50% 50% / 820px 820px repeat;
  mix-blend-mode: screen;
  opacity: 0.12;
}

.start-gate__panel {
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(36px, 6vw, 92px);
  border-right: 1px solid rgba(244, 239, 226, 0.28);
  background: linear-gradient(110deg, rgba(18, 23, 25, 0.98), rgba(18, 23, 25, 0.9));
  animation: gateCopyIn 850ms 100ms ease-out both;
}

.start-gate__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 239, 226, 0.38);
  color: #d8b36a;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.start-gate__kicker {
  margin: clamp(54px, 9vh, 92px) 0 15px;
  color: #8baea0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.start-gate h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.2vw, 6.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.start-gate__name {
  margin: 19px 0 0;
  color: #ed795e;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.start-gate__copy {
  margin: 48px 0 0;
  color: rgba(244, 239, 226, 0.78);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.015em;
}

.start-gate__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  margin-top: clamp(38px, 7vh, 72px);
  padding: 0 21px;
  border: 1px solid #f4efe2;
  color: #121719;
  background: #f4efe2;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.start-gate__button:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.start-gate__button:disabled {
  cursor: wait;
}

.start-gate__notice {
  margin: 12px 0 0;
  color: rgba(244, 239, 226, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

@keyframes gateImageIn {
  from { opacity: 0; transform: scale(1.055); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes gateCopyIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

figure,
p,
h1,
h2,
dl,
dd,
ul {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
  width: min(1460px, calc(100% - 48px));
  margin: 24px auto 150px;
  background: var(--paper);
  border: 1px solid rgba(23, 25, 27, 0.45);
  box-shadow: 0 22px 70px rgba(18, 21, 23, 0.17);
}

.page-shell::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: url("assets/editorial-pattern-v1.png") 50% 0 / 820px 820px repeat;
  mix-blend-mode: multiply;
  opacity: 0.16;
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

.print-surface {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.issue-masthead {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(150px, 0.6fr));
  min-height: 76px;
  border-bottom: 1px solid var(--ink);
}

.issue-masthead > * {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.issue-masthead > :last-child {
  border-right: 0;
}

.issue-title {
  gap: 18px;
}

.issue-title span {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.issue-title strong {
  color: var(--green);
  font-size: 0.62rem;
}

.masthead-cta {
  justify-content: space-between;
  color: #fff;
  background: var(--ink);
  transition: background 160ms ease;
}

.masthead-cta:hover {
  background: var(--blue);
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.cover {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  padding: 42px;
  border-bottom: 1px solid var(--ink);
}

.cover-photo {
  grid-column: 1 / span 7;
  position: relative;
  align-self: start;
  padding: 10px 10px 28px;
  background: #fff;
  border: 1px solid var(--ink);
  transform: rotate(-0.55deg);
}

.cover-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -16px;
  bottom: -17px;
  width: 42%;
  height: 34%;
  background: var(--blue);
}

.cover-photo img {
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  object-position: center 49%;
  filter: saturate(0.92) contrast(1.02);
}

.cover-photo .print-surface {
  aspect-ratio: 1.38 / 1;
}

.cover-photo figcaption,
.frame figcaption,
.place-photo figcaption,
.closing-photo figcaption {
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.cover-photo figcaption {
  padding-top: 10px;
}

.cover-copy {
  grid-column: 8 / -1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 4px 0 0;
}

.cover-index {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.cover-index span:first-child {
  color: var(--coral);
}

.kicker {
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.cover-copy > .kicker {
  margin-top: clamp(32px, 5vw, 74px);
}

.cover h1 {
  margin: 12px 0 18px;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 8.4vw, 8.5rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.085em;
}

.cover h1 span {
  display: block;
}

.cover h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}

.cover-ko {
  color: #a96517;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cover-deck {
  max-width: 430px;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  line-height: 1.45;
}

.cover-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: auto;
  padding-top: 38px;
}

.cover-facts div {
  min-height: 74px;
  padding: 12px 10px 10px 0;
  border-top: 1px solid var(--ink);
}

.cover-facts div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.cover-facts div:nth-child(even) {
  padding-left: 14px;
}

.cover-facts dt,
.profile-slip dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.cover-facts dd {
  margin-top: 8px;
  font-size: 0.96rem;
  font-weight: 800;
}

.cover-note {
  margin-top: 20px;
  color: #515657;
  font-size: 0.84rem;
  line-height: 1.75;
}

.vera-notes {
  grid-column: 1 / -1;
  padding: 42px;
  border-bottom: 1px solid var(--ink);
}

.notes-heading {
  display: grid;
  grid-template-columns: 72px minmax(300px, 1.3fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 30px;
}

.section-number {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.notes-heading h2,
.place-copy h2,
.conversation-card h2 {
  margin-top: 8px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.notes-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.notes-intro {
  color: #4e5354;
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-sheet {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.frame {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  padding: 8px 8px 14px;
  background: #faf9f4;
  border: 1px solid var(--line);
}

.frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.frame .print-surface {
  height: 100%;
}

.frame figcaption {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  min-width: 0;
  padding-top: 10px;
  line-height: 1.45;
}

.frame figcaption span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.frame time {
  color: var(--coral);
}

.frame--portrait {
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
  transform: rotate(-0.4deg);
}

.frame--portrait img {
  aspect-ratio: 4 / 5;
  object-position: center 35%;
}

.frame--coffee {
  grid-column: 5 / span 5;
  grid-row: 1;
}

.frame--coffee img {
  aspect-ratio: 16 / 9;
}

.profile-slip {
  grid-column: 10 / -1;
  grid-row: 1;
  padding: 20px;
  color: #f2efe6;
  background: var(--green);
  transform: rotate(0.7deg);
}

.slip-label {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: #d9c296;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.profile-slip dl div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-slip dt {
  color: rgba(255, 255, 255, 0.58);
}

.profile-slip dd {
  font-size: 0.84rem;
  line-height: 1.5;
}

.frame--after {
  grid-column: 5 / span 3;
  grid-row: 2;
}

.frame--after img {
  aspect-ratio: 1 / 1;
}

.frame--dusk {
  grid-column: 8 / -1;
  grid-row: 2;
  transform: rotate(0.35deg);
}

.frame--dusk img {
  aspect-ratio: 16 / 9;
}

.place-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 4fr 8fr;
  min-height: 520px;
  border-bottom: 1px solid var(--ink);
}

.place-copy {
  display: flex;
  flex-direction: column;
  padding: 42px;
  border-right: 1px solid var(--ink);
}

.place-copy .kicker {
  margin-top: 26px;
}

.place-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
}

.place-copy > p:not(.section-number, .kicker) {
  color: #4e5354;
  font-size: 0.9rem;
  line-height: 1.85;
}

.place-facts {
  margin-top: auto;
  padding-top: 32px;
}

.place-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.place-facts dt {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.place-facts dd {
  color: var(--muted);
  font-size: 0.8rem;
}

.place-photo {
  position: relative;
  min-height: 520px;
  padding: 18px 18px 38px;
  background: rgba(215, 208, 193, 0.88);
}

.place-photo__switch {
  position: absolute;
  inset: 18px 18px 38px;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: #fff;
  background: #292d2d;
  cursor: pointer;
}

.place-photo__clock {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  padding: 8px 10px;
  color: #fff;
  background: var(--coral);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.place-photo__hint {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 14px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(14, 18, 20, 0.72);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.place-photo__switch:hover .place-photo__hint,
.place-photo__switch:focus-visible .place-photo__hint {
  opacity: 1;
  transform: none;
}

.place-photo__switch img {
  height: 100%;
  min-height: 464px;
  object-fit: cover;
  transition: opacity 140ms ease;
}

.place-photo__switch.is-changing img {
  opacity: 0.35;
}

.place-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 13px;
}

.closing-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  align-items: stretch;
}

.closing-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 18px 18px 34px;
  border-right: 1px solid var(--ink);
}

.closing-photo .print-surface {
  height: 100%;
}

.closing-photo img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.closing-photo figcaption {
  padding-top: 10px;
}

.conversation-card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-right: 1px solid var(--ink);
}

.conversation-card .kicker {
  margin-top: 22px;
}

.conversation-card h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 3.3vw, 3.8rem);
}

.conversation-card > p:not(.section-number, .kicker) {
  color: #525657;
  font-size: 0.86rem;
  line-height: 1.8;
}

.conversation-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  margin-top: auto;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 160ms ease;
}

.conversation-card > a:hover {
  background: var(--coral);
}

.evening-note {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
  color: #f6f0df;
  background: var(--green);
}

.evening-note__mark {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: #e4b45f;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.evening-note .kicker {
  margin-top: 26px;
  color: #e3c48e;
}

.evening-note h3 {
  margin: 8px 0 22px;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.preference-group + .preference-group {
  margin-top: 20px;
}

.preference-group h4 {
  margin: 0 0 6px;
  color: #e3c48e;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.preference-group--dislikes h4 {
  color: #efaa92;
}

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

.preference-group li {
  position: relative;
  padding: 10px 0 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 700;
  line-height: 1.4;
}

.preference-group li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e3c48e;
}

.preference-group--dislikes li::before {
  background: #ef8d72;
}

.sound-card {
  position: fixed;
  z-index: 20;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 46px;
  grid-template-rows: auto 14px 22px;
  gap: 8px 12px;
  align-content: center;
  width: min(410px, calc(100vw - 36px));
  padding: 10px 12px;
  color: #f5f2e9;
  background: var(--ink);
  border: 1px solid rgba(242, 239, 230, 0.28);
  box-shadow: 0 16px 45px rgba(10, 12, 14, 0.32);
}

.sound-card > img {
  grid-row: 1;
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.sound-copy {
  align-self: center;
  min-width: 0;
}

.sound-copy p,
.sound-copy span {
  display: block;
  color: #949a9b;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sound-copy strong {
  display: block;
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.sound-card button {
  align-self: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.sound-card > [data-audio-progress] {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  accent-color: var(--coral);
  cursor: pointer;
}

.sound-volume {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 36px;
  gap: 8px;
  align-items: center;
}

.sound-volume label,
.sound-volume output {
  color: #a6acad;
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.sound-volume output {
  text-align: right;
}

.sound-volume input {
  width: 100%;
  accent-color: #d9c18f;
  cursor: pointer;
}

.issue-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  border-top: 1px solid var(--ink);
}

.issue-footer > * {
  min-height: 58px;
  padding: 20px;
  border-right: 1px solid var(--line);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.issue-footer > :last-child {
  border-right: 0;
}

@media (max-width: 1050px) {
  .page-shell {
    width: min(960px, calc(100% - 28px));
    margin: 14px auto 140px;
  }

  .issue-masthead {
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
  }

  .issue-masthead > p:nth-of-type(1) {
    display: none;
  }

  .cover {
    padding: 28px;
  }

  .cover-photo {
    grid-column: 1 / span 7;
  }

  .cover-copy {
    grid-column: 8 / -1;
  }

  .cover h1 {
    font-size: clamp(4.1rem, 8.7vw, 6.8rem);
  }

  .contact-sheet {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .frame--portrait {
    grid-column: 1 / span 3;
  }

  .frame--coffee {
    grid-column: 4 / span 5;
  }

  .profile-slip {
    grid-column: 1 / span 3;
    grid-row: 3;
  }

  .frame--after {
    grid-column: 4 / span 2;
  }

  .frame--dusk {
    grid-column: 6 / -1;
  }

  .closing-row {
    grid-template-columns: 1.15fr 1fr 0.75fr;
  }

  .conversation-card,
  .evening-note {
    padding: 26px;
  }

}

@media (max-width: 760px) {
  .start-gate {
    display: block;
  }

  .start-gate__image {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(0deg, #121719 4%, rgba(18, 23, 25, 0.92) 38%, rgba(18, 23, 25, 0.24) 78%, rgba(18, 23, 25, 0.08)),
      url("assets/start-thumbnail-1.png") 50% top / cover no-repeat;
  }

  .start-gate__panel {
    position: relative;
    justify-content: flex-end;
    min-height: 100svh;
    padding: max(28px, env(safe-area-inset-top)) 22px max(26px, env(safe-area-inset-bottom));
    border-right: 0;
    background: none;
  }

  .start-gate__meta {
    position: absolute;
    top: max(22px, env(safe-area-inset-top));
    right: 20px;
    left: 20px;
  }

  .start-gate__kicker {
    margin: 0 0 11px;
  }

  .start-gate h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  .start-gate__copy {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .start-gate__button {
    min-height: 58px;
    margin-top: 26px;
  }

  body {
    background: var(--paper-deep);
  }

  .page-shell {
    width: 100%;
    margin: 0 0 112px;
    border: 0;
    box-shadow: none;
  }

  .issue-masthead {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .issue-masthead > p {
    display: none;
  }

  .issue-title {
    display: block;
    padding: 11px 16px;
  }

  .issue-title span,
  .issue-title strong {
    display: block;
  }

  .issue-title strong {
    margin-top: 5px;
  }

  .masthead-cta {
    min-width: 112px;
    padding-inline: 14px;
  }

  .cover {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 18px 18px 30px;
  }

  .cover-photo {
    order: 1;
    width: calc(100% - 18px);
    margin-left: 9px;
    padding: 7px 7px 24px;
  }

  .cover-photo img {
    aspect-ratio: 4 / 5;
    object-position: 53% center;
  }

  .cover-copy {
    order: 2;
  }

  .cover-copy > .kicker {
    margin-top: 26px;
  }

  .cover h1 {
    font-size: clamp(4.5rem, 24vw, 7rem);
  }

  .cover-deck {
    font-size: 1.45rem;
  }

  .cover-facts {
    margin-top: 34px;
    padding-top: 0;
  }

  .vera-notes {
    padding: 28px 18px 34px;
  }

  .notes-heading {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
  }

  .notes-intro {
    grid-column: 2;
  }

  .notes-heading h2 {
    font-size: 2.45rem;
  }

  .contact-sheet {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    grid-template-rows: auto;
    gap: 14px;
    overflow-x: auto;
    padding: 24px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .contact-sheet > * {
    grid-column: auto;
    grid-row: 1;
    scroll-snap-align: center;
    transform: none;
  }

  .frame img,
  .frame--portrait img,
  .frame--coffee img,
  .frame--after img,
  .frame--dusk img {
    aspect-ratio: 4 / 5;
  }

  .profile-slip {
    min-height: 380px;
  }

  .place-note {
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
  }

  .place-copy {
    padding: 28px 18px 34px;
    border-top: 1px solid var(--ink);
    border-right: 0;
  }

  .place-copy h2 {
    font-size: 2.8rem;
  }

  .place-facts {
    margin-top: 28px;
  }

  .place-photo {
    min-height: 0;
    padding: 12px 12px 32px;
  }

  .place-photo__switch {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .place-photo__switch img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .place-photo__hint {
    display: none;
  }

  .place-photo figcaption {
    left: 12px;
    bottom: 10px;
  }

  .closing-row {
    display: flex;
    flex-direction: column;
  }

  .closing-photo,
  .conversation-card,
  .evening-note {
    border-right: 0;
  }

  .closing-photo {
    padding: 12px 12px 30px;
  }

  .closing-photo img {
    aspect-ratio: 4 / 3;
  }

  .conversation-card {
    min-height: 430px;
    padding: 28px 18px;
    border-top: 1px solid var(--ink);
  }

  .conversation-card h2 {
    font-size: 2.7rem;
  }

  .conversation-card > a {
    margin-top: 38px;
  }

  .evening-note {
    min-height: 390px;
    padding: 28px 18px;
    border-top: 1px solid var(--ink);
  }

  .sound-card {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    grid-template-columns: 48px minmax(0, 1fr) 42px;
    width: calc(100vw - 20px);
    padding: 8px;
  }

  .sound-card > img {
    width: 48px;
    height: 48px;
  }

  .sound-card button {
    width: 42px;
    height: 42px;
  }

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

  .issue-footer p:nth-child(2) {
    display: none;
  }
}

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

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