:root {
  --page: #f5efe8;
  --app: #fffdf9;
  --card: #ffffff;
  --card-soft: #fbf6ef;
  --ink: #29231e;
  --muted: #756a61;
  --subtle: #a5978d;
  --line: #eadfd5;
  --brown: #8a4f2c;
  --brown-dark: #6f3d23;
  --brown-soft: #f2e4d9;
  --red: #dc4f62;
  --shadow: 0 20px 50px rgba(77, 57, 38, 0.08);
  --shadow-card: 0 10px 24px rgba(77, 57, 38, 0.055);
  --radius: 13px;
  --radius-sm: 9px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fbf7f1 0%, #f4eee7 100%);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.72;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.app-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 22px auto 32px;
  overflow: hidden;
  background: var(--app);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 22px;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 850;
}

.brand-icon {
  width: 22px;
  height: 22px;
  color: var(--brown);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 26px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.desktop-nav a[aria-current="page"]::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 2px;
  content: "";
  background: var(--brown);
  border-radius: 99px;
}

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 4px 10px 4px 5px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.user-chip img,
.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.user-chip img {
  width: 28px;
  height: 28px;
}

.avatar-large { width: 70px; height: 70px; }
.avatar-xl { width: 86px; height: 86px; }

.hamburger {
  display: none;
  width: 34px;
  height: 34px;
  place-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--brown-dark);
  cursor: pointer;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 99px;
}

.mobile-menu {
  display: none;
  padding: 10px 18px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--app);
}

.mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--card-soft);
  color: var(--brown-dark);
  font-weight: 750;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  min-width: 190px;
  background: var(--brown);
  color: #fff;
}

.btn-primary:hover { background: var(--brown-dark); }
.btn-outline { min-width: 154px; border-color: #d7c7bb; color: var(--ink); }
.btn-ghost { min-width: 0; min-height: 30px; padding: 0 13px; background: rgba(255,255,255,0.86); color: var(--brown-dark); }
.btn-small { min-height: 34px; padding: 0 18px; font-size: 12px; }
.btn-icon { gap: 8px; }

.field,
.search,
.select {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.select {
  width: auto;
  min-width: 118px;
  font-weight: 750;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  min-height: 438px;
}

.hero-media {
  position: relative;
  min-height: 438px;
  overflow: hidden;
  order: 2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 17px;
  padding: 64px 32px 58px 48px;
}

.hero-copy h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.32;
}

.hero-copy p,
.section-lead,
.tiny {
  margin: 0;
  color: var(--muted);
}

.hero-copy p {
  max-width: 340px;
  font-size: 14px;
  line-height: 1.9;
}

.live-badge {
  position: absolute;
  top: 34px;
  right: 24px;
  display: flex;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(36, 28, 22, 0.58);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.pill-live { background: var(--red); }

.button-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px 42px 12px;
}

.mini-card,
.panel-card,
.dashboard-card,
.letter-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.mini-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  min-height: 118px;
  padding: 18px 17px;
}

.mini-card h3,
.dashboard-card h3,
.panel-card h3,
.letter-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.45;
}

.mini-card p,
.dashboard-card p,
.panel-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.72;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--brown);
  font-weight: 900;
}

.live-card {
  align-items: center;
}

.mini-card.live-card .btn {
  grid-column: 2;
  justify-self: start;
}

.live-card.is-live {
  border-color: rgba(220, 79, 98, 0.35);
  background: linear-gradient(180deg, #fff, #fff7f6);
}

.live-card.wide {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 14px;
  align-items: center;
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(220, 79, 98, 0.13);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 850;
}

.price-strip {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 0 42px 12px;
  padding: 20px 28px;
  border-radius: var(--radius);
  background: var(--card-soft);
}

.house-line {
  width: 86px;
  height: 86px;
  color: var(--brown);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
}

.price-main strong {
  font-size: 34px;
  letter-spacing: 0.02em;
}

.price-main span { font-size: 13px; }
.price-strip p { margin: 0; color: var(--muted); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 42px;
  padding: 8px 18px 18px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
}

.page-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 610px;
}

.side-nav {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.7);
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.side-nav a[aria-current="page"] {
  background: var(--card-soft);
  color: var(--brown-dark);
}

.content {
  padding: 28px 34px 36px;
}

.content-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.content-head h1 {
  margin: 0;
  font-size: 23px;
}

.content-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.welcome-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--card-soft);
}

.welcome-card h1 {
  margin: 0 0 4px;
  font-size: 26px;
  line-height: 1.35;
}

.welcome-card p { margin: 0; color: var(--muted); }

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.panel-card {
  padding: 18px;
}

.wide { grid-column: 1 / -1; }

.profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.profile-card.compact p { margin: 0; }

.check-list {
  display: grid;
  gap: 10px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.check-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--brown);
}

.library-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.library-toolbar .search { width: 270px; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.archive-grid-small {
  grid-template-columns: repeat(3, 1fr);
}

.archive-list {
  display: grid;
  gap: 12px;
}

.archive-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border-radius: 10px;
  background: #ddd;
  color: #fff;
  box-shadow: var(--shadow-card);
}

.archive-card img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.archive-card:hover img { transform: scale(1.04); }

.archive-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.06) 60%);
}

.play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
  color: var(--brown-dark);
  font-size: 18px;
  font-weight: 900;
}

.archive-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: end;
  font-weight: 850;
}

.archive-date { font-size: 22px; line-height: 1; }
.archive-time { font-size: 11px; }

.archive-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 34px;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: 160ms ease;
}

.archive-card:hover .archive-info {
  opacity: 1;
  transform: translateY(0);
}

.archive-info h3 { margin: 0 0 3px; font-size: 14px; }
.archive-info p { margin: 0 0 8px; color: rgba(255,255,255,0.86); font-size: 11px; }

.mobile-archive-row {
  display: grid;
  grid-template-columns: 118px 1fr 18px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.archive-thumb {
  position: relative;
  overflow: hidden;
  min-height: 82px;
  border-radius: 10px;
}

.archive-thumb img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.archive-thumb .play {
  width: 34px;
  height: 34px;
  font-size: 14px;
}

.mobile-archive-row h3 { margin: 0 0 4px; font-size: 16px; }
.mobile-archive-row p { margin: 0; color: var(--muted); font-size: 12px; }
.arrow-link { color: var(--brown); font-size: 24px; }

.letter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.letter-list {
  display: grid;
  gap: 16px;
}

.letter-list .letter-card {
  display: grid;
  grid-template-columns: 126px 1fr;
  min-height: 128px;
}

.letter-list .letter-card img {
  height: 100%;
  aspect-ratio: auto;
}

.letter-card {
  overflow: hidden;
}

.letter-card img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.letter-body {
  padding: 15px 15px 16px;
}

.date {
  margin: 0 0 7px;
  color: var(--brown-dark);
  font-size: 11px;
  font-weight: 850;
}

.letter-card p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.78;
}

.letter-card h3 {
  margin-bottom: 7px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 12px;
}

.pagination span,
.pagination a {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 8px;
}

.pagination .current { background: var(--brown-soft); }

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.setting-card {
  display: grid;
  gap: 12px;
}

.setting-profile {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.setting-profile input {
  grid-column: 1 / -1;
}

.setting-danger {
  border-color: #ead6d6;
}

.settings-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
}

.mobile-bottom-nav { display: none; }

@media (max-width: 760px) {
  body {
    background: #f7f2ec;
    font-size: 13px;
  }

  .app-shell {
    width: min(390px, calc(100% - 18px));
    margin: 10px auto 78px;
    border-radius: 18px;
  }

  .app-header {
    min-height: 52px;
    padding: 0 13px;
  }

  .brand { font-size: 15px; }
  .brand-icon { width: 18px; height: 18px; }

  .desktop-nav,
  .user-chip,
  .app-header > .btn,
  .side-nav { display: none; }

  .hamburger { display: grid; }

  .hero-layout {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-media {
    min-height: 206px;
    order: -1;
  }

  .hero-copy {
    padding: 18px 22px 12px;
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: 23px;
    line-height: 1.42;
  }

  .hero-copy p {
    font-size: 12px;
    line-height: 1.8;
  }

  .button-row { display: grid; gap: 9px; }

  .btn,
  .btn-primary,
  .btn-outline {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    font-size: 12px;
  }

  .live-badge {
    top: 9px;
    right: 12px;
  }

  .home-feature-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 16px;
  }

  .mini-card {
    min-height: 112px;
    padding: 16px 14px;
  }

  .mini-card.live-card .btn {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .price-strip {
    grid-template-columns: 72px 1fr;
    gap: 12px;
    margin: 10px 16px 0;
    padding: 17px 14px;
  }

  .price-strip .btn { grid-column: 1 / -1; }
  .house-line { width: 68px; height: 68px; }
  .price-main strong { font-size: 27px; }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
    padding-bottom: 15px;
    font-size: 10px;
  }

  .page-layout {
    display: block;
    min-height: 0;
  }

  .content {
    padding: 18px 16px 22px;
  }

  .content-head {
    align-items: center;
    margin-bottom: 14px;
  }

  .content-head h1 { font-size: 20px; }
  .content-head p { font-size: 11px; }

  .welcome-card {
    padding: 14px;
    align-items: flex-start;
  }

  .welcome-card h1 { font-size: 21px; }
  .avatar-large { width: 56px; height: 56px; }

  .dashboard-grid,
  .settings-grid,
  .letter-grid {
    grid-template-columns: 1fr;
  }

  .panel-card { padding: 15px; }

  .live-card.wide {
    grid-template-columns: 30px 1fr;
  }

  .live-card.wide .btn {
    grid-column: 1 / -1;
  }

  .library-head {
    display: block;
  }

  .library-toolbar {
    justify-content: stretch;
    margin-top: 12px;
  }

  .library-toolbar .search { width: 100%; }
  .select { min-width: 96px; }

  .archive-grid { display: none; }
  .archive-list { display: grid; }

  .letter-grid { gap: 12px; }

  .letter-card {
    display: grid;
    grid-template-columns: 116px 1fr;
    min-height: 126px;
  }

  .letter-grid .letter-card:first-child {
    display: block;
  }

  .letter-grid .letter-card:first-child img {
    height: auto;
    aspect-ratio: 1.35 / 1;
  }

  .letter-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .letter-body { padding: 10px 11px; }
  .letter-card h3 { font-size: 13px; }
  .letter-card p { font-size: 11px; line-height: 1.72; }

  .setting-profile {
    grid-template-columns: 1fr auto;
  }

  .settings-actions { display: block; }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(390px, 100%);
    margin: 0 auto;
    min-height: 60px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.97);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a {
    display: grid;
    place-items: center;
    gap: 1px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 850;
  }

  .mobile-bottom-nav a[aria-current="page"] { color: var(--brown); }
}

@media (min-width: 761px) {
  .archive-list { display: none; }
}

.state-line {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.state-line p { margin: 0 0 10px; }

/* Website experience: public pages are an editorial home, member pages remain task-oriented. */
.public-site {
  background: var(--app);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}

.public-site .app-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.public-header {
  position: relative;
  z-index: 20;
  width: min(1180px, calc(100% - 72px));
  min-height: 82px;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.public-header .brand { gap: 10px; letter-spacing: .04em; }
.public-header .brand > span { display: grid; line-height: 1.15; }
.public-header .brand small { margin-top: 4px; color: var(--subtle); font-size: 9px; font-weight: 600; letter-spacing: .12em; }
.public-header .desktop-nav { gap: 32px; margin-right: 36px; }
.public-header .desktop-nav a { font-weight: 650; }
.header-login { padding-bottom: 3px; border-bottom: 1px solid var(--brown); color: var(--brown-dark); font-size: 12px; font-weight: 750; }

.website-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr);
  width: min(1380px, 100%);
  min-height: 700px;
  margin: 0 auto;
  background: #f8f3ed;
}

.website-hero-media { position: relative; min-height: 700px; overflow: hidden; }
.website-hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 65%, rgba(248,243,237,.18)); }
.website-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.website-hero-copy { display: grid; align-content: center; gap: 24px; padding: 70px 64px; }
.site-kicker, .section-number { margin: 0; color: var(--brown); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.website-hero-copy h1 { margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(34px, 3.25vw, 52px); font-weight: 600; line-height: 1.55; letter-spacing: .03em; }
.website-hero-copy > p:not(.site-kicker) { max-width: 410px; margin: 0; color: var(--muted); font-size: 14px; line-height: 2.15; }
.website-hero-copy .button-row { align-items: center; gap: 24px; margin-top: 8px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px; border-bottom: 1px solid #c9b5a6; color: var(--brown-dark); font-size: 12px; font-weight: 750; }

.story-section { width: min(1080px, calc(100% - 72px)); margin: 0 auto; padding: 132px 0; }
.story-section h2, .membership-section h2, .editorial-page-head h1 { margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-weight: 600; letter-spacing: .025em; }
.story-section h2 { font-size: clamp(30px, 3vw, 44px); line-height: 1.65; }
.intro-section { max-width: 980px; }
.story-copy { display: grid; grid-template-columns: 1fr .8fr; gap: 100px; align-items: start; margin-top: 26px; }
.story-copy p, .receive-copy p, .membership-section p { margin: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 2.15; }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 42px; }
.section-heading h2 { margin-top: 12px; }
.section-heading .section-lead { max-width: 600px; margin-top: 14px; line-height: 2; }

.home-update-section { padding-top: 80px; }
.home-feature-update .letter-card { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); min-height: 520px; border: 0; border-radius: 0; box-shadow: none; background: #f7f1eb; }
.home-feature-update .letter-card img { width: 100%; height: 520px; aspect-ratio: auto; object-fit: cover; }
.home-feature-update .letter-body { display: grid; align-content: center; padding: 60px; }
.home-feature-update .letter-card h3 { margin: 0 0 20px; font-family: "Yu Mincho", serif; font-size: 28px; font-weight: 600; line-height: 1.6; }
.home-feature-update .letter-card p:not(.date) { color: var(--muted); font-size: 14px; line-height: 2.05; }
.home-feature-update .letter-card p:not(.date)::after { display: block; margin-top: 24px; color: var(--brown-dark); content: "続きを読む  →"; font-size: 12px; font-weight: 750; }

.home-live-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.live-story-copy h2 { margin: 14px 0 20px; }
.live-story-copy > p:last-child { color: var(--muted); line-height: 2.1; }
.live-story-panel { display: grid; grid-template-columns: 34px 1fr; gap: 22px; align-items: center; min-height: 330px; padding: 60px; background: #302923; color: #fff; }
.live-story-panel .eyebrow { color: #e8bca7; }
.live-story-panel h3 { margin: 6px 0 10px; font-family: "Yu Mincho", serif; font-size: 30px; font-weight: 500; }
.live-story-panel p { color: rgba(255,255,255,.72); line-height: 1.9; }
.live-story-panel .btn { grid-column: 1 / -1; justify-self: start; width: auto; }
.live-story-panel .mini-icon { color: #e8bca7; font-size: 24px; }

.editorial-archives { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px 24px; }
.editorial-archives .archive-card { min-height: 0; overflow: visible; border-radius: 0; background: transparent; color: var(--ink); box-shadow: none; }
.editorial-archives .archive-card:first-child { grid-column: span 2; grid-row: span 2; }
.editorial-archives .archive-image { position: relative; overflow: hidden; aspect-ratio: 1.5 / 1; background: #ddd; }
.editorial-archives .archive-card:first-child .archive-image { aspect-ratio: 1.48 / 1; }
.editorial-archives .archive-card img { height: 100%; min-height: 0; object-fit: cover; }
.editorial-archives .archive-card::after { display: none; }
.editorial-archives .archive-meta { position: static; margin-top: 16px; color: var(--brown); justify-content: flex-start; gap: 12px; }
.editorial-archives .archive-date { font-size: 11px; letter-spacing: .08em; }
.editorial-archives .archive-time { color: var(--subtle); font-size: 11px; }
.editorial-archives .archive-info { position: static; opacity: 1; transform: none; }
.editorial-archives .archive-info h3 { margin: 8px 0 6px; color: var(--ink); font-family: "Yu Mincho", serif; font-size: 20px; font-weight: 600; }
.editorial-archives .archive-card:first-child .archive-info h3 { font-size: 28px; }
.editorial-archives .archive-info p { margin: 0 0 14px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.editorial-archives .btn-ghost { min-height: 0; padding: 0 0 3px; border: 0; border-bottom: 1px solid #c9b5a6; border-radius: 0; background: transparent; color: var(--brown-dark); }
.editorial-archives .play { background: rgba(255,255,255,.84); }

.receive-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; width: min(1180px, calc(100% - 72px)); }
.receive-image img { width: 100%; height: 620px; object-fit: cover; }
.receive-copy h2 { margin: 14px 0 24px; }

.membership-section { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: end; width: min(1080px, calc(100% - 72px)); margin: 30px auto 120px; padding: 80px; background: #f2e8de; }
.membership-section h2 { margin: 12px 0 18px; font-size: 38px; }
.membership-section p { max-width: 560px; margin-bottom: 0; }
.membership-price { display: grid; grid-template-columns: auto auto auto; align-items: baseline; gap: 8px; min-width: 280px; }
.membership-price strong { font-family: Georgia, serif; font-size: 54px; font-weight: 500; }
.membership-price .btn { grid-column: 1 / -1; margin-top: 20px; }

.website-footer { display: grid; grid-template-columns: 1fr auto; gap: 34px 80px; padding: 70px max(36px, calc((100% - 1080px) / 2)); background: #2e2823; color: rgba(255,255,255,.88); }
.footer-brand { display: grid; gap: 6px; font-size: 20px; font-weight: 800; letter-spacing: .08em; }
.footer-brand small { color: rgba(255,255,255,.5); font-size: 10px; font-weight: 500; }
.website-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 28px; font-size: 12px; }
.website-footer .footer-legal { grid-column: 2; color: rgba(255,255,255,.54); font-size: 10px; }
.website-footer > p { margin: 0; color: rgba(255,255,255,.38); font-size: 10px; }

.editorial-page-head { width: min(920px, calc(100% - 72px)); margin: 0 auto; padding: 120px 0 88px; text-align: center; }
.editorial-page-head h1 { margin: 18px 0 24px; font-size: clamp(38px, 5vw, 64px); line-height: 1.5; }
.editorial-page-head > p:last-child { max-width: 590px; margin: 0 auto; color: var(--muted); font-size: 14px; line-height: 2.2; }
.letter-stream { display: grid; gap: 110px; width: min(940px, calc(100% - 72px)); margin: 0 auto; padding-bottom: 140px; }
.letter-stream .letter-card { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; min-height: 440px; overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.letter-stream .letter-card:nth-child(even) { grid-template-columns: .8fr 1.2fr; }
.letter-stream .letter-card:nth-child(even) img { order: 2; }
.letter-stream .letter-card img { width: 100%; height: 440px; aspect-ratio: auto; object-fit: cover; }
.letter-stream .letter-body { padding: 50px 60px; }
.letter-stream .letter-card h3 { margin: 10px 0 18px; font-family: "Yu Mincho", serif; font-size: 26px; font-weight: 600; }
.letter-stream .letter-card p:not(.date) { color: var(--muted); font-size: 14px; line-height: 2.15; }

.library-editorial { width: min(1080px, calc(100% - 72px)); margin: 0 auto; padding-bottom: 140px; }
.library-tools { display: flex; justify-content: flex-end; gap: 20px; margin-bottom: 54px; padding-top: 22px; border-top: 1px solid var(--line); }
.library-tools label { display: grid; gap: 7px; color: var(--subtle); font-size: 10px; font-weight: 750; letter-spacing: .08em; }
.library-tools .search { width: 270px; }
.library-archives { grid-template-columns: repeat(3, 1fr); }
.library-archives .archive-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1.45fr .55fr; column-gap: 42px; align-items: center; }
.library-archives .archive-card:first-child .archive-image { grid-row: 1 / span 2; }
.library-archives .archive-card:first-child .archive-meta { align-self: end; }
.library-archives .archive-card:first-child .archive-info { align-self: start; }
.library-editorial > .archive-list { display: none; }
.compact-footer { margin-top: 0; }

.member-dashboard { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 20px; }
.member-dashboard .panel-card { padding: 22px; }
.member-latest-update .letter-list .letter-card { grid-template-columns: 180px 1fr; }
.member-latest-archive .archive-grid { grid-template-columns: 1fr; }
.member-latest-archive .archive-card { min-height: 250px; }
.member-latest-archive .archive-card img { min-height: 250px; }
.member-settings-card { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.member-settings-card .btn { margin-top: 16px; }

@media (max-width: 760px) {
  .public-site .app-shell { width: 100%; margin: 0; border-radius: 0; }
  .public-header { width: calc(100% - 36px); min-height: 68px; padding: 0; }
  .public-header .brand { font-size: 14px; }
  .public-header .header-login { display: none; }
  .public-site .mobile-menu { padding: 8px 18px 18px; background: var(--app); }
  .public-site .mobile-menu a { padding: 9px 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
  .website-hero { display: flex; flex-direction: column; min-height: 0; }
  .website-hero-media { min-height: 430px; order: -1; }
  .website-hero-copy { gap: 17px; padding: 38px 24px 50px; }
  .website-hero-copy h1 { font-size: 29px; line-height: 1.58; }
  .website-hero-copy > p:not(.site-kicker) { font-size: 13px; line-height: 2; }
  .website-hero-copy .button-row { display: flex; align-items: flex-start; gap: 20px; }
  .website-hero-copy .btn { width: auto; padding: 0 22px; }
  .story-section { width: calc(100% - 48px); padding: 88px 0; }
  .story-section h2 { font-size: 28px; line-height: 1.65; }
  .story-copy { grid-template-columns: 1fr; gap: 28px; }
  .story-copy p, .receive-copy p, .membership-section p { font-size: 13px; line-height: 2.05; }
  .section-heading { display: grid; gap: 24px; align-items: start; margin-bottom: 30px; }
  .section-heading .text-link { justify-self: start; }
  .home-feature-update .letter-card { display: block; min-height: 0; }
  .home-feature-update .letter-card img { height: 380px; }
  .home-feature-update .letter-body { padding: 30px 24px 36px; }
  .home-feature-update .letter-card h3 { font-size: 23px; }
  .home-live-section { grid-template-columns: 1fr; gap: 38px; }
  .live-story-panel { min-height: 280px; padding: 36px 28px; }
  .live-story-panel h3 { font-size: 25px; }
  .editorial-archives { grid-template-columns: 1fr; gap: 50px; }
  .editorial-archives .archive-card:first-child { grid-column: auto; grid-row: auto; }
  .editorial-archives .archive-card:first-child .archive-info h3 { font-size: 23px; }
  .receive-section { grid-template-columns: 1fr; gap: 38px; width: 100%; }
  .receive-image img { height: 480px; }
  .receive-copy { padding: 0 24px; }
  .membership-section { grid-template-columns: 1fr; gap: 36px; width: calc(100% - 32px); margin: 50px auto 80px; padding: 48px 26px; }
  .membership-section h2 { font-size: 30px; }
  .membership-price { min-width: 0; }
  .membership-price .btn { width: 100%; }
  .website-footer { grid-template-columns: 1fr; gap: 28px; padding: 54px 24px; }
  .website-footer nav { justify-content: flex-start; }
  .website-footer .footer-legal { grid-column: 1; }
  .editorial-page-head { width: calc(100% - 48px); padding: 76px 0 64px; text-align: left; }
  .editorial-page-head h1 { font-size: 36px; }
  .editorial-page-head > p:last-child { font-size: 13px; }
  .letter-stream { gap: 74px; width: 100%; padding-bottom: 100px; }
  .letter-stream .letter-card, .letter-stream .letter-card:nth-child(even) { display: flex; flex-direction: column; min-height: 0; }
  .letter-stream .letter-card:nth-child(even) img { order: 0; }
  .letter-stream .letter-card img { height: 390px; }
  .letter-stream .letter-body { padding: 28px 24px 0; }
  .letter-stream .letter-card h3 { font-size: 23px; }
  .library-editorial { width: calc(100% - 48px); padding-bottom: 100px; }
  .library-tools { display: grid; justify-content: stretch; margin-bottom: 44px; }
  .library-tools .search, .library-tools .select { width: 100%; }
  .library-archives { display: grid; grid-template-columns: 1fr; }
  .library-archives .archive-card:first-child { display: block; grid-column: auto; }
  .library-editorial > .archive-list { display: none; }
  .member-dashboard { grid-template-columns: 1fr; }
  .member-settings-card { grid-template-columns: 1fr; }
  .member-latest-update .letter-list .letter-card { grid-template-columns: 116px 1fr; }
}

@media (max-width: 360px) {
  .website-hero-media { min-height: 360px; }
  .website-hero-copy { padding-inline: 20px; }
  .website-hero-copy h1 { font-size: 25px; }
  .website-hero-copy .button-row { display: grid; }
  .website-hero-copy .btn { width: 100%; }
  .story-section, .editorial-page-head, .library-editorial { width: calc(100% - 40px); }
  .home-feature-update .letter-card img, .letter-stream .letter-card img { height: 330px; }
  .live-story-panel { padding: 30px 22px; }
  .membership-price strong { font-size: 46px; }
}
