:root {
  --container-width: 1160px;
  --container-pad: 24px;
  --color-bg: #f7eedc;
  --color-text: #273a33;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-heading: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --paper: #f7eedc;
  --ink: #273a33;
  --hero-height: 960px;
}

:where(:root) {
  text-spacing-trim: trim-start;
  text-autospace: normal;
  line-break: strict;
  overflow-wrap: anywhere;
}

:where(:root:lang(ja)) { font-kerning: none; }

:where(h1, h2, h3):lang(ja) {
  font-feature-settings: "palt";
  font-kerning: normal;
  word-break: auto-phrase;
}

html, body { min-width: 320px; }

body {
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

figure { margin: 0; }

.hero {
  --fv-height: var(--hero-height);
  --fv-focus: 50% 50%;
  display: grid;
  min-height: var(--hero-height);
  place-items: start center;
  overflow: visible;
  background: var(--paper);
}

.hero__art { z-index: 0; }

.hero__art { overflow: hidden; }

.hero__art picture {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.hero__art img {
  object-fit: cover;
  object-position: var(--fv-focus);
}

.hero__content {
  z-index: 2;
  display: flex;
  width: min(760px, calc(100% - 48px));
  translate: 28px 0;
  flex-direction: column;
  align-items: center;
  padding-block-start: 124px;
  text-align: center;
}

.hero__label {
  --caption-size: 20.4px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.3235em;
}

.hero__heading {
  position: relative;
  right: 20px;
  display: flex;
  width: 664px;
  height: 226px;
  max-width: 100%;
  margin-block-start: 45px;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-feature-settings: normal;
  font-size: 110px;
  font-weight: 400;
  line-height: 100px;
  letter-spacing: -0.018em;
  text-wrap: nowrap;
}

.hero__line {
  display: block;
  height: 100px;
  flex: 0 0 100px;
}

.hero__line:first-child { width: 664px; }

.hero__line:last-child {
  position: relative;
  left: 13px;
  width: 556px;
}

.hero__lead {
  margin-block-start: 49px;
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.02em;
}

.hero__date {
  margin-block-start: 32px;
  font-size: 19px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.08em;
  text-autospace: no-autospace;
}

.hero__cta {
  display: inline-grid;
  width: 268px;
  min-height: 54px;
  margin-block-start: 15px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 8px 24px rgb(39 58 51 / 0.12);
  color: #fffdf5;
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero__cta:focus-visible {
  outline: 3px solid #e5b532;
  outline-offset: 4px;
}

@media (max-width: 767px) {
  :root { --hero-height: 880px; }

  .hero { --fv-focus: 50% 100%; }

  .hero__art {
    display: grid;
    background: var(--paper);
    place-items: end center;
  }

  .hero__art img {
    width: 100%;
    height: 43%;
    object-fit: contain;
    object-position: 50% 100%;
  }

  .hero__art picture { place-items: end center; }

  .hero__content {
    width: min(100% - 32px, 560px);
    padding-block-start: 54px;
    translate: 0 0;
  }

  .hero__label {
    --caption-size: 11px;
    line-height: 18px;
    letter-spacing: 0.2em;
  }

  .hero__heading {
    right: auto;
    width: 100%;
    height: auto;
    margin-block-start: 24px;
    gap: 0;
    font-size: clamp(42px, 13vw, 56px);
    line-height: 1.23;
    letter-spacing: -0.025em;
  }

  .hero__line,
  .hero__line:first-child,
  .hero__line:last-child {
    left: auto;
    width: 100%;
    height: auto;
    flex-basis: auto;
  }

  .hero__lead {
    width: min(320px, 100%);
    margin-block-start: 12px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero__date {
    width: 270px;
    margin-block-start: 10px;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.06em;
  }

  .hero__cta {
    width: min(268px, 100%);
    min-height: 52px;
    margin-block-start: 13px;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero__content { translate: 24px 0; }

  .hero__heading { font-size: 96px; }

  .stories { min-height: 0; }

  .stories__header { padding-inline: 40px; }

  .stories__heading { max-width: 100%; }

  .stories__grid {
    display: block;
    width: auto;
    margin-inline: 0;
  }

  .story__copy,
  .story--sally .story__copy,
  .story--fujiko .story__copy {
    height: auto;
    padding: 8px 40px 34px;
  }

  .story__profile { white-space: normal; }

  .story__art {
    width: 100%;
    height: min(62vw, 600px);
  }

  .story--fujiko { padding-block-start: 56px; }

  .stories__seam { display: none; }
}

@media (max-width: 360px) {
  .stories__label { font-size: 9px; }

  .hero__date { font-size: 10px; }

  .stories__header { padding-inline: 12px; }

  .stories__heading {
    font-size: 38px;
    letter-spacing: -0.04em;
  }
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fffdf5;
  text-decoration: none;
  translate: 0 -160%;
}

.skip-link:focus { translate: 0 0; }

.shell {
  width: min(calc(100% - 48px), 1160px);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 22px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

.section-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-feature-settings: "palt";
  font-size: clamp(48px, 5.7vw, 78px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-lead {
  max-width: 620px;
  margin-block-start: 28px;
  color: rgb(39 58 51 / 0.76);
  font-size: 17px;
  line-height: 2;
}

.chapter,
.story-notes,
.invitation,
.program,
.application,
.after-story,
.faq,
.closing {
  position: relative;
  padding-block: 120px;
}

.chapter--about {
  background:
    linear-gradient(90deg, rgb(39 58 51 / 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    #fbf6e9;
}

.intro-grid {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: 0.72fr 1.28fr;
}

.chapter__index {
  display: flex;
  flex-direction: column;
  color: rgb(39 58 51 / 0.22);
}

.chapter__index span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.chapter__index strong {
  margin-block-start: 12px;
  font-family: var(--font-heading);
  font-size: clamp(150px, 20vw, 270px);
  font-weight: 400;
  line-height: 0.9;
}

.chapter__copy p:not(.eyebrow) {
  margin: 32px 0 0;
  color: rgb(39 58 51 / 0.82);
  font-size: 17px;
  line-height: 2.15;
}

.chapter__copy strong { color: var(--ink); }

.number-strip {
  display: grid;
  margin-block-start: 100px;
  border-block: 1px solid rgb(39 58 51 / 0.2);
  grid-template-columns: repeat(3, 1fr);
}

.number-strip div {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 144px;
  padding-inline: 34px;
  border-right: 1px solid rgb(39 58 51 / 0.2);
}

.number-strip div:last-child { border-right: 0; }

.number-strip strong {
  font-family: var(--font-heading);
  font-size: 76px;
  font-weight: 400;
  line-height: 1;
}

.number-strip span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.story-notes {
  background: #efe5d2;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.section-intro .eyebrow { grid-column: 1 / -1; }

.section-intro .section-lead {
  align-self: end;
  margin: 0 0 8px 72px;
}

.note-grid {
  display: grid;
  gap: 24px;
  margin-block-start: 80px;
  grid-template-columns: repeat(2, 1fr);
}

.note-card {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 52px 52px 46px;
  background: #fffaf0;
  box-shadow: 0 24px 60px rgb(61 48 24 / 0.08);
}

.note-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  background: currentColor;
  content: "";
}

.note-card--sally { color: #176f6e; }

.note-card--fujiko { color: #cf684a; }

.note-card__seed {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.note-card h3 {
  margin-block-start: 42px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.25;
}

.note-card > p:not(.note-card__seed) {
  margin-block-start: 28px;
  color: var(--ink);
  font-size: 15px;
  line-height: 2;
}

.note-card ol {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid currentColor;
  color: var(--ink);
  list-style: none;
}

.note-card li {
  display: grid;
  gap: 18px;
  padding-block: 14px;
  border-bottom: 1px solid rgb(39 58 51 / 0.15);
  grid-template-columns: 68px 1fr;
  font-size: 14px;
}

.note-card li span {
  color: currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.invitation {
  background: var(--ink);
  color: #fffaf0;
}

.invitation-grid,
.program-grid,
.faq-grid,
.after-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.85fr 1.15fr;
}

.invitation .section-lead { color: rgb(255 250 240 / 0.74); }

.invitation-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 250 240 / 0.28);
  list-style: none;
}

.invitation-list li {
  display: grid;
  align-items: center;
  gap: 24px;
  padding-block: 25px;
  border-bottom: 1px solid rgb(255 250 240 / 0.28);
  grid-template-columns: 48px 1fr;
}

.invitation-list b {
  color: #e6b633;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
}

.invitation-list span { line-height: 1.8; }

.program { background: #fbf6e9; }

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 62px;
  width: 2px;
  background: repeating-linear-gradient(180deg, #d8a320 0 7px, transparent 7px 14px);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  gap: 42px;
  min-height: 112px;
  grid-template-columns: 92px 1fr;
}

.timeline time {
  position: relative;
  z-index: 1;
  align-self: start;
  padding-block: 8px;
  background: #fbf6e9;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
}

.timeline div {
  padding: 7px 0 28px;
  border-bottom: 1px solid rgb(39 58 51 / 0.16);
}

.timeline strong,
.timeline span { display: block; }

.timeline strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
}

.timeline span {
  margin-block-start: 6px;
  color: rgb(39 58 51 / 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.application {
  background: #d96f4e;
}

.application-card {
  background: #fffaf0;
  box-shadow: 0 30px 80px rgb(61 48 24 / 0.18);
}

.application-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 62px 68px 52px;
  border-bottom: 1px solid rgb(39 58 51 / 0.17);
}

.seed-mark {
  position: relative;
  width: 78px;
  height: 78px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.seed-mark::before,
.seed-mark::after {
  position: absolute;
  top: 17px;
  width: 26px;
  height: 34px;
  border-radius: 80% 10% 80% 10%;
  background: #176f6e;
  content: "";
}

.seed-mark::before { left: 13px; rotate: -35deg; }

.seed-mark::after { right: 13px; background: #cf684a; rotate: 125deg; }

.seed-mark span {
  position: absolute;
  bottom: 9px;
  left: 37px;
  width: 2px;
  height: 31px;
  background: var(--ink);
}

.application-card__body {
  display: grid;
  gap: 64px;
  padding: 52px 68px 66px;
  grid-template-columns: 1.15fr 0.85fr;
}

.event-data { margin: 0; }

.event-data > div {
  display: grid;
  gap: 24px;
  padding-block: 15px;
  border-bottom: 1px solid rgb(39 58 51 / 0.14);
  grid-template-columns: 116px 1fr;
}

.event-data dt {
  color: rgb(39 58 51 / 0.62);
  font-size: 12px;
  font-weight: 700;
}

.event-data dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.event-data small { color: rgb(39 58 51 / 0.65); }

.application-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.primary-button,
.secondary-button,
.closing__link {
  display: inline-grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 17px;
  text-align: center;
  text-decoration: none;
}

.primary-button {
  background: var(--ink);
  color: #fffaf0;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.secondary-button {
  margin-block-start: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.application-actions p {
  margin: 16px 12px 0;
  color: rgb(39 58 51 / 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.after-story { background: #efe5d2; }

.after-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(39 58 51 / 0.22);
  list-style: none;
}

.after-list li {
  position: relative;
  padding: 24px 18px 24px 42px;
  border-bottom: 1px solid rgb(39 58 51 / 0.22);
  font-family: var(--font-heading);
  font-size: 19px;
}

.after-list li::before {
  position: absolute;
  top: 31px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8a320;
  content: "";
}

.faq { background: #fbf6e9; }

.faq-list { border-top: 1px solid rgb(39 58 51 / 0.2); }

.faq-list details { border-bottom: 1px solid rgb(39 58 51 / 0.2); }

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 8px;
  color: #cf684a;
  content: "+";
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list p {
  margin: 0;
  padding: 0 52px 25px 0;
  color: rgb(39 58 51 / 0.72);
  font-size: 14px;
  line-height: 1.9;
}

.closing {
  overflow: hidden;
  background: var(--ink);
  color: #fffaf0;
  text-align: center;
}

.closing__inner { position: relative; }

.closing .eyebrow { color: #e6b633; }

.closing p:not(.eyebrow) {
  margin-block-start: 30px;
  color: rgb(255 250 240 / 0.76);
  line-height: 2;
}

.closing__link {
  width: 290px;
  margin-block-start: 32px;
  border-color: #fffaf0;
  color: #fffaf0;
}

.closing__seeds {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-block-start: 72px;
}

.closing__seeds span {
  position: relative;
  width: 44px;
  height: 25px;
  border-radius: 50%;
  background: #176f6e;
  rotate: -18deg;
}

.closing__seeds span:last-child { background: #cf684a; rotate: 18deg; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(24px, calc((100% - 1160px) / 2));
  background: #172520;
  color: rgb(255 250 240 / 0.62);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.share-status {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  max-width: 310px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: #fffaf0;
  font-size: 12px;
}

.share-status:empty { display: none; }

@media (max-width: 900px) {
  .intro-grid,
  .section-intro,
  .invitation-grid,
  .program-grid,
  .faq-grid,
  .after-grid,
  .application-card__body {
    grid-template-columns: 1fr;
  }

  .section-intro .section-lead { margin: 30px 0 0; }

  .intro-grid,
  .invitation-grid,
  .program-grid,
  .faq-grid,
  .after-grid { gap: 56px; }

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

@media (max-width: 767px) {
  .shell { width: min(calc(100% - 40px), 1160px); }

  .section-heading {
    font-size: clamp(39px, 11.5vw, 54px);
    line-height: 1.25;
  }

  .section-lead { font-size: 15px; }

  .chapter,
  .story-notes,
  .invitation,
  .program,
  .application,
  .after-story,
  .faq,
  .closing { padding-block: 78px; }

  .chapter__index strong { font-size: 150px; }

  .chapter__copy p:not(.eyebrow) { font-size: 15px; }

  .number-strip {
    margin-block-start: 64px;
    grid-template-columns: 1fr;
  }

  .number-strip div {
    min-height: 110px;
    padding-inline: 20px;
    border-right: 0;
    border-bottom: 1px solid rgb(39 58 51 / 0.2);
  }

  .number-strip div:last-child { border-bottom: 0; }

  .number-strip strong { width: 84px; font-size: 58px; }

  .note-grid { margin-block-start: 52px; }

  .note-card {
    min-height: 0;
    padding: 38px 26px 42px;
  }

  .note-card h3 {
    margin-block-start: 30px;
    font-size: 38px;
  }

  .note-card > p:not(.note-card__seed) { font-size: 14px; }

  .note-card li { grid-template-columns: 58px 1fr; }

  .invitation-list li { gap: 18px; }

  .timeline::before { left: 48px; }

  .timeline li {
    gap: 24px;
    grid-template-columns: 72px 1fr;
  }

  .timeline time { font-size: 20px; }

  .application-card { width: calc(100% - 32px); }

  .application-card__title {
    padding: 38px 26px 34px;
  }

  .seed-mark {
    width: 54px;
    height: 54px;
    scale: 0.72;
    transform-origin: top right;
  }

  .application-card__body { padding: 32px 26px 38px; }

  .event-data > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .primary-button,
  .secondary-button { font-size: 15px; }

  .faq-list summary { font-size: 16px; }

  .closing__seeds { gap: 68px; }

  .site-footer {
    flex-direction: column;
    padding: 24px 20px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .stories { min-height: 0; }

  .stories__header { padding-inline: 40px; }

  .stories__heading { max-width: 100%; }

  .stories__grid {
    display: block;
    width: auto;
    margin-inline: 0;
  }

  .story__copy,
  .story--sally .story__copy,
  .story--fujiko .story__copy {
    height: auto;
    padding: 8px 40px 34px;
  }

  .story__profile { white-space: normal; }

  .story__art {
    width: 100%;
    height: min(62vw, 600px);
  }

  .story--fujiko { padding-block-start: 56px; }

  .stories__seam { display: none; }
}

@media (max-width: 360px) {
  .stories__header { padding-inline: 12px; }

  .stories__label { font-size: 9px; }

  .stories__heading {
    font-size: 38px;
    letter-spacing: -0.04em;
  }
}

.stories {
  position: relative;
  min-height: 1040px;
  overflow: visible;
  background:
    linear-gradient(rgb(247 238 220 / 0.72), rgb(247 238 220 / 0.72)),
    radial-gradient(circle at 50% 38%, #fffaf0 0 25%, transparent 64%),
    var(--paper);
}

.stories__header {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: 45px 60px 0;
}

.stories__label {
  width: 355px;
  height: 25px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.12em;
}

.stories__heading {
  display: flex;
  width: 666px;
  height: 190px;
  margin-block-start: 20px;
  flex-direction: column;
  color: var(--ink);
  font-family: var(--font-heading);
  font-feature-settings: "palt";
  font-size: 80px;
  font-weight: 500;
  line-height: 95px;
  letter-spacing: -0.02em;
}

.stories__heading span { display: block; }

.stories__grid {
  display: grid;
  width: min(1415px, calc(100% - 48px));
  margin-block-start: 25px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 700fr) minmax(0, 715fr);
}

.story__copy {
  height: 195px;
  padding-block-start: 7px;
}

.story--sally .story__copy { padding-inline: 50px 38px; }

.story--fujiko .story__copy { padding-inline: 90px 38px; }

.story__name {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.12em;
}

.story__name::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, currentColor 0 6px, transparent 6px 9px);
  content: "";
  opacity: 0.65;
}

.story__profile {
  margin-block-start: 22px;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.story__theme {
  margin-block-start: 15px;
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.story--sally { color: #166c6c; }

.story--fujiko { color: #cf684a; }

.story__theme { color: var(--ink); }

.story__art {
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.story__art picture {
  display: block;
  width: 100%;
  height: 100%;
}

.story__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories__seam {
  position: absolute;
  z-index: 2;
  top: 190px;
  left: 50%;
  width: 8px;
  height: 770px;
  background: repeating-linear-gradient(180deg, transparent 0 8px, #c96c51 8px 16px, transparent 16px 22px);
  filter: drop-shadow(1px 0 0 rgb(39 58 51 / 0.24));
  opacity: 0.78;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .stories {
    min-height: 0;
    overflow: visible;
  }

  .stories__header {
    padding: 56px 22px 0;
  }

  .stories__label {
    width: auto;
    height: auto;
    font-size: 10px;
    line-height: 1.5;
  }

  .stories__heading {
    width: 100%;
    height: auto;
    margin-block-start: 8px;
    font-size: clamp(38px, 10.5vw, 48px);
    line-height: 1.22;
  }

  .stories__grid {
    display: block;
    width: auto;
    margin-block-start: 38px;
    margin-inline: 0;
  }

  .story__copy,
  .story--sally .story__copy,
  .story--fujiko .story__copy {
    height: auto;
    padding: 0 22px 30px;
  }

  .story__name { font-size: 23px; }

  .story__profile {
    margin-block-start: 18px;
    font-size: clamp(28px, 8vw, 36px);
    white-space: normal;
  }

  .story__theme {
    margin-block-start: 12px;
    font-size: 17px;
  }

  .story__art {
    width: 100%;
    height: min(100vw, 460px);
  }

  .story--fujiko { padding-block-start: 48px; }

  .stories__seam {
    top: auto;
    bottom: 50%;
    left: 22px;
    width: calc(100% - 44px);
    height: 3px;
    background: repeating-linear-gradient(90deg, transparent 0 7px, #c96c51 7px 14px, transparent 14px 20px);
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .stories { min-height: 0; }

  .stories__header { padding-inline: 40px; }

  .stories__heading { max-width: 100%; }

  .stories__grid {
    display: block;
    width: auto;
    margin-inline: 0;
  }

  .story__copy,
  .story--sally .story__copy,
  .story--fujiko .story__copy {
    height: auto;
    padding: 8px 40px 34px;
  }

  .story__profile { white-space: normal; }

  .story__art {
    width: 100%;
    height: min(62vw, 600px);
  }

  .story--fujiko { padding-block-start: 56px; }

  .stories__seam { display: none; }
}

@media (max-width: 360px) {
  .stories__header { padding-inline: 12px; }

  .stories__label { font-size: 9px; }

  .stories__heading {
    font-size: 36px;
    letter-spacing: -0.04em;
  }
}
