:root {
  color-scheme: light;
  --bg: #f5f0e8;
  --paper: #fcf8f1;
  --paper-2: #efe7db;
  --ink: #111111;
  --muted: #6e685f;
  --line: rgba(17, 17, 17, 0.1);
  --dark: #121212;
  --dark-soft: #1d1d1d;
  --acid: #ddff4f;
  --orange: #ff7a2f;
  --green: #254135;
  --sand: #d8ccb8;
  --shadow: 0 28px 90px rgba(17, 17, 17, 0.08);
  --serif: "Times New Roman", "Songti SC", "Noto Serif SC", serif;
  --sans: "Helvetica Neue", "PingFang SC", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 0% 0%, rgba(221, 255, 79, 0.22), transparent 20%),
    radial-gradient(circle at 100% 20%, rgba(255, 122, 47, 0.16), transparent 20%),
    linear-gradient(180deg, #f7f3ec 0%, #efe8dc 100%);
}

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

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

.progress-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: rgba(17, 17, 17, 0.08);
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--acid));
}

.site-header {
  position: sticky;
  top: 3px;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  background: rgba(245, 240, 232, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-cn,
.brand-en,
.eyebrow,
.page-meta,
.cover-submasthead,
.source-chip,
.product-tag,
.reading-indicator,
.contents-grid span,
.fact-columns span,
.comparison-grid span,
.spec-card span,
.pick-card span,
.note-card span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.brand-cn {
  font-size: 13px;
  font-weight: 700;
}

.brand-en,
.eyebrow,
.page-meta,
.cover-submasthead,
.reading-indicator,
.contents-grid span,
.fact-columns span,
.comparison-grid span,
.spec-card span,
.pick-card span,
.note-card span {
  font-size: 11px;
  color: var(--muted);
}

.top-nav {
  display: flex;
  gap: 16px;
}

.nav-link {
  font-size: 13px;
  color: var(--muted);
}

.update-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.reading-indicator {
  display: flex;
  gap: 6px;
  white-space: nowrap;
}

.site-shell {
  width: min(1180px, calc(100% - 20px));
  margin: 0 auto;
  padding: 28px 0 84px;
}

.site-section,
.page-hero,
.home-hero {
  margin-bottom: 22px;
}

.home-hero,
.page-hero {
  padding: 28px 10px 10px;
}

.portal-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 18px;
  min-height: 78svh;
  margin: 20px 0 28px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 122, 47, 0.74), transparent 13%),
    radial-gradient(circle at 90% 62%, rgba(221, 255, 79, 0.9), transparent 12%),
    linear-gradient(135deg, #101010 0%, #141414 52%, #e8edd2 52%, #f4f0e8 100%);
  color: #f8f4ec;
  box-shadow: var(--shadow);
}

.portal-hero::before,
.portal-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portal-hero::before {
  inset: 18px auto auto 48%;
  width: 38%;
  height: 22%;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-9deg);
}

.portal-hero::after {
  right: 22px;
  bottom: 22px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
}

.portal-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  justify-items: start;
  padding: clamp(18px, 4vw, 42px);
}

.portal-mark {
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: rgba(248, 244, 236, 0.68);
}

.portal-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 10vw, 138px);
  line-height: 0.76;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.portal-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  line-height: 1.8;
  color: rgba(248, 244, 236, 0.78);
}

.portal-copy .home-cta-row {
  margin-top: 24px;
}

.portal-copy .text-link {
  color: rgba(248, 244, 236, 0.72);
}

.portal-stage {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 560px;
  color: var(--ink);
}

.portal-cover {
  position: relative;
  display: grid;
  align-content: space-between;
  width: min(100%, 440px);
  min-height: 560px;
  margin-left: auto;
  padding: 24px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 76% 24%, #e95848 0 13%, transparent 13.5%),
    radial-gradient(circle at 74% 66%, #f3c756 0 20%, transparent 20.5%),
    linear-gradient(155deg, #f7f0e3 0%, #e1d1ba 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  transform: rotate(2.5deg);
}

.portal-cover::before {
  content: "";
  position: absolute;
  left: -18%;
  top: 22%;
  width: 82%;
  height: 32%;
  background: rgba(17, 17, 17, 0.08);
  transform: rotate(-14deg);
}

.portal-cover span,
.portal-cover strong,
.portal-cover em {
  position: relative;
  z-index: 2;
}

.portal-cover span {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(17, 17, 17, 0.52);
}

.portal-cover strong {
  max-width: 320px;
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.82;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.portal-cover em {
  max-width: 300px;
  font-style: normal;
  font-size: 18px;
  line-height: 1.45;
}

.portal-ticket {
  position: absolute;
  right: min(10%, 70px);
  bottom: 46px;
  width: min(300px, 76%);
  padding: 18px;
  border-radius: 24px;
  background: rgba(18, 18, 18, 0.9);
  color: #f8f4ec;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.portal-ticket span,
.current-issue-card span,
.visit-grid span,
.shelf-copy small,
.shelf-copy a,
.shelf-copy > span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portal-ticket strong {
  display: block;
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 0.95;
  font-weight: 400;
}

.portal-ticket p {
  margin: 0;
  color: rgba(248, 244, 236, 0.72);
  line-height: 1.7;
}

.section-heading-row {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.current-issue-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: 14px;
  padding-top: 14px;
}

.current-issue-card,
.current-index,
.visit-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.current-issue-card {
  display: grid;
  justify-items: start;
  gap: 16px;
  min-height: 320px;
  padding: clamp(20px, 4vw, 38px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 20%, rgba(221, 255, 79, 0.88), transparent 16%),
    linear-gradient(135deg, #fcf8f1 0%, #efe5d5 100%);
}

.current-issue-card h3 {
  max-width: 740px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.86;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.current-issue-card p {
  max-width: 610px;
  margin: 0;
  line-height: 1.8;
}

.current-index {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 320px;
  padding: 24px;
  border-radius: 32px;
  background: var(--dark);
  color: #f8f4ec;
}

.current-index strong {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 0.95;
  font-weight: 400;
}

.current-index p,
.current-index span {
  margin: 0;
  color: rgba(248, 244, 236, 0.72);
  line-height: 1.75;
}

.archive-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 14px;
  padding-top: 14px;
}

.shelf-issue {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.shelf-cover {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 330px;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 24%, #e25d4a 0 15%, transparent 15.5%),
    radial-gradient(circle at 18% 76%, #ddff4f 0 18%, transparent 18.5%),
    linear-gradient(145deg, #121212 0%, #202020 100%);
  color: #f8f4ec;
  box-shadow: var(--shadow);
}

.shelf-issue:nth-child(2) .shelf-cover {
  background:
    radial-gradient(circle at 75% 18%, #ddff4f 0 14%, transparent 14.5%),
    linear-gradient(145deg, #f0eadf 0%, #d8ccb8 100%);
  color: var(--ink);
}

.shelf-issue:nth-child(3) .shelf-cover {
  background:
    radial-gradient(circle at 68% 70%, #ff7a2f 0 18%, transparent 18.5%),
    linear-gradient(145deg, #244135 0%, #111 100%);
}

.shelf-cover::after {
  content: "";
  position: absolute;
  inset: auto -12% 22% 20%;
  height: 24%;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-12deg);
}

.shelf-cover span,
.shelf-cover strong,
.shelf-cover em {
  position: relative;
  z-index: 2;
}

.shelf-cover span {
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0.7;
}

.shelf-cover strong {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.shelf-cover em {
  max-width: 230px;
  font-style: normal;
  line-height: 1.5;
  opacity: 0.74;
}

.shelf-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 0 4px;
}

.shelf-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.shelf-copy a,
.shelf-copy > span {
  color: var(--green);
}

.is-locked .shelf-cover {
  filter: saturate(0.82);
}

.is-locked .shelf-cover::before {
  content: "COMING SOON";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 34px;
}

.visit-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 70px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.visit-grid {
  display: grid;
  gap: 12px;
}

.visit-grid article {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.visit-grid article:last-child {
  border-bottom: 0;
}

.visit-grid strong {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  font-weight: 400;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  gap: 20px;
  align-items: stretch;
}

.home-copy h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.home-copy p,
.page-hero p {
  max-width: 680px;
  line-height: 1.8;
}

.home-cta-row,
.issue-intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.text-link {
  font-size: 14px;
  color: var(--muted);
}

.home-cover-card,
.issue-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    linear-gradient(145deg, #f8f2e8 0%, #ebe0d0 100%);
  box-shadow: var(--shadow);
}

.home-cover-card {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 22px;
}

.home-cover-card::before,
.home-cover-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.home-cover-card::before {
  width: 170px;
  height: 170px;
  right: 20px;
  top: 20px;
  background: #db694d;
}

.home-cover-card::after {
  width: 120px;
  height: 120px;
  left: 32px;
  bottom: 84px;
  background: #f0c96d;
}

.home-cover-card strong,
.issue-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.home-cover-card p,
.home-cover-card em,
.home-cover-volume {
  position: relative;
  z-index: 2;
}

.home-cover-card p {
  margin: 10px 0 0;
  max-width: 280px;
  line-height: 1.7;
}

.home-cover-card em,
.home-cover-volume,
.issue-card-meta,
.issue-card-footer span,
.issue-link,
.drink-card span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
}

.home-cover-card em {
  margin-top: 18px;
  color: var(--green);
}

.home-cover-volume {
  margin-bottom: 12px;
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 6px;
  padding: 8px 10px 0;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.issue-card-grid,
.drink-grid,
.system-grid,
.about-grid {
  display: grid;
  gap: 14px;
  padding: 14px 0 0;
}

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

.drink-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.issue-card {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 20px;
}

.issue-card-feature {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    linear-gradient(145deg, #dcff64 0%, #edf7bf 100%);
}

.issue-card h3 {
  font-size: clamp(30px, 4vw, 56px);
}

.issue-card p {
  max-width: 460px;
  margin: 0;
  line-height: 1.8;
}

.issue-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.issue-link-muted {
  color: var(--muted);
}

.drink-card,
.system-grid article,
.about-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.drink-card strong,
.system-grid strong,
.about-grid strong {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 0.95;
  font-weight: 400;
}

.drink-card p,
.system-grid p,
.about-grid p {
  margin: 0;
  line-height: 1.8;
}

.drink-card em {
  font-style: normal;
  color: var(--green);
}

.issue-intro-rich {
  padding-top: 18px;
}

.site-footer {
  width: min(1180px, calc(100% - 20px));
  margin: 0 auto;
  padding: 0 0 40px;
}

.site-footer p {
  margin: 0;
  padding: 18px 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.8;
}

.magazine-shell {
  width: min(1180px, calc(100% - 20px));
  margin: 0 auto;
  padding: 24px 0 84px;
}

.issue-intro {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 16px 6px 28px;
}

.issue-intro h1,
.mag-page h2,
.cover-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.issue-intro h1 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.issue-intro p {
  max-width: 620px;
  margin: 0;
  line-height: 1.7;
}

.intro-cta,
.source-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.intro-cta {
  color: var(--ink);
  font-weight: 800;
}

.portal-copy .intro-cta {
  border-color: rgba(248, 244, 236, 0.16);
  background: #f8f4ec;
  color: var(--ink);
}

.mag-page {
  min-height: 100svh;
  padding: 10px 0;
}

.page-frame {
  position: relative;
  min-height: calc(100svh - 110px);
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(252, 248, 241, 0.88);
  box-shadow: var(--shadow);
}

.page-dark .page-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--dark);
  color: #f5f1ea;
}

.page-acid .page-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    linear-gradient(145deg, #e6ff77 0%, #cfe86d 100%);
}

.page-dark .eyebrow,
.page-dark .page-meta,
.page-dark .cover-submasthead,
.page-dark .source-chip {
  color: rgba(245, 241, 234, 0.72);
}

.page-dark .source-chip {
  border-color: rgba(245, 241, 234, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.cover-masthead {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(72px, 11vw, 150px);
  line-height: 0.8;
  letter-spacing: -0.08em;
  max-width: 760px;
}

.cover-title {
  position: relative;
  z-index: 3;
  margin-top: 22px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 98px);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.cover-deck {
  position: relative;
  z-index: 3;
  max-width: 420px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.75;
}

.cover-art {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: min(38vw, 370px);
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 28px;
  z-index: 2;
  background: linear-gradient(145deg, #efe6d9 0%, #d8ccb8 100%);
  border: 1px solid rgba(245, 241, 234, 0.16);
}

.cover-art::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 34px;
  width: 142px;
  height: 142px;
  border-radius: 999px;
  background: #e1614d;
}

.cover-art::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 42px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: #f7c156;
}

.cover-art-label,
.cover-art-note {
  position: absolute;
  z-index: 3;
  left: 26px;
  right: 26px;
  text-transform: uppercase;
}

.cover-art-label {
  top: 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #22372d;
}

.cover-art-note {
  bottom: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(17, 17, 17, 0.58);
}

.cover-accent {
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 3;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(245, 241, 234, 0.72);
  writing-mode: vertical-rl;
}

.cover-photo {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  width: min(44vw, 390px);
  aspect-ratio: 0.66;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.22);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.cover-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

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

.cover-graphic {
  position: absolute;
  pointer-events: none;
}

.cover-ring {
  inset: auto -180px -120px auto;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 234, 0.14);
}

.cover-block {
  background: rgba(255, 255, 255, 0.06);
}

.cover-block-a {
  width: 280px;
  height: 120px;
  right: 220px;
  top: 160px;
  transform: rotate(-10deg);
}

.cover-block-b {
  width: 130px;
  height: 260px;
  right: -24px;
  top: 240px;
  transform: rotate(14deg);
}

.cover-bean {
  border-radius: 999px;
  background: linear-gradient(135deg, #4f301f 0%, #0f0f0f 100%);
}

.cover-bean-a {
  width: 180px;
  height: 102px;
  right: 320px;
  bottom: 110px;
  transform: rotate(22deg);
}

.cover-bean-b {
  width: 100px;
  height: 58px;
  left: 110px;
  top: 250px;
  transform: rotate(-28deg);
}

.cover-cup,
.cover-tomato,
.cover-citrus {
  position: absolute;
  z-index: 2;
}

.cover-cup {
  right: 112px;
  bottom: 76px;
  width: 160px;
  height: 198px;
  z-index: 3;
  border-radius: 28px 28px 48px 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0 26%, transparent 26%),
    linear-gradient(180deg, #603826 0%, #191514 100%);
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.24),
    0 18px 45px rgba(17, 17, 17, 0.18);
}

.cover-cup::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 28px;
  right: 28px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

.cover-cup::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -18px;
  width: 28px;
  height: 68px;
  border: 8px solid rgba(255, 255, 255, 0.26);
  border-left: 0;
  border-radius: 0 28px 28px 0;
}

.cover-tomato,
.cover-citrus {
  border-radius: 999px;
}

.cover-tomato {
  background: #d95443;
}

.cover-tomato-a {
  width: 96px;
  height: 96px;
  right: 248px;
  top: 194px;
}

.cover-tomato-b {
  width: 58px;
  height: 58px;
  right: 72px;
  top: 214px;
}

.cover-citrus {
  background: #f5c96d;
}

.cover-citrus-a {
  width: 88px;
  height: 88px;
  right: 48px;
  bottom: 230px;
}

.cover-citrus-b {
  width: 48px;
  height: 48px;
  right: 274px;
  bottom: 58px;
}

.split-layout,
.media-layout,
.data-layout,
.product-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.text-block {
  grid-column: span 8;
  align-self: center;
  max-width: 720px;
}

.text-block h2,
.story-panel h2,
.overlay-card h2,
.band-copy h2,
.data-copy h2,
.back-layout h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.text-block p,
.story-panel p,
.overlay-card p,
.band-copy p,
.data-copy p,
.product-copy p,
.comparison-note,
.lead,
.closer-layout p,
.grid-copy p {
  font-size: 15px;
  line-height: 1.8;
}

.quote-panel {
  grid-column: span 4;
  display: grid;
  align-content: end;
  padding: 20px;
  border-left: 1px solid var(--line);
}

.quote-panel span {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.quote-panel strong {
  max-width: 220px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 0.95;
  font-weight: 400;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.contents-grid div,
.fact-columns div,
.spec-card,
.pick-card,
.note-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.contents-grid strong,
.fact-columns strong,
.comparison-grid strong,
.spec-card strong,
.pick-card strong,
.note-card strong,
.product-copy h2,
.data-number span {
  font-family: var(--serif);
  font-weight: 400;
}

.contents-grid strong,
.fact-columns strong,
.spec-card strong,
.pick-card strong,
.note-card strong {
  font-size: 28px;
  line-height: 1;
}

.contents-grid em {
  font-style: normal;
  color: var(--muted);
}

.media-panel {
  grid-column: span 6;
  display: grid;
  gap: 8px;
}

.media-panel img,
.hero-photo img,
.product-media img {
  height: 100%;
  object-fit: cover;
}

.media-panel img,
.hero-photo,
.product-media {
  overflow: hidden;
  border-radius: 28px;
}

.media-panel figcaption,
.product-media figcaption {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

.story-panel {
  grid-column: span 6;
  align-self: center;
  max-width: 440px;
}

.page-quote .page-frame {
  display: grid;
  align-content: center;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, #f7f2e8 0%, #ede5d8 100%);
}

.oversized-copy {
  display: grid;
  gap: 4px;
}

.oversized-copy span {
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.oversized-copy strong {
  font-family: var(--serif);
  font-size: clamp(68px, 10vw, 180px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.quote-copy {
  max-width: 580px;
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

.page-image-full .page-frame {
  padding: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 34px;
}

.overlay-card {
  position: relative;
  z-index: 2;
  width: min(480px, calc(100% - 32px));
  margin: 22px;
  padding: 20px;
  background: rgba(252, 248, 241, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.grid-copy {
  max-width: 560px;
}

.fact-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.band-copy {
  max-width: 620px;
}

.page-accent-band .page-frame {
  display: grid;
  align-content: end;
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.04) 0 34%, transparent 34% 60%, rgba(255, 122, 47, 0.16) 60% 100%),
    linear-gradient(180deg, #f9f5ee 0%, #efe6d8 100%);
}

.closer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: end;
  min-height: 100%;
}

.closer-layout h2 {
  font-size: clamp(38px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.page-observe .lead,
.page-next .lead,
.page-bean .lead,
.page-reco .lead {
  max-width: 560px;
  margin-top: 18px;
}

.page-data .page-frame {
  display: grid;
  align-content: center;
}

.data-number {
  grid-column: span 5;
  display: grid;
  gap: 10px;
  align-content: center;
}

.data-number span {
  font-size: clamp(82px, 14vw, 180px);
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.data-copy {
  grid-column: span 7;
  align-self: center;
  max-width: 460px;
}

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

.three-columns div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.three-columns strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 0.95;
}

.spec-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.spec-note {
  grid-column: 1 / -1;
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.inline-poster {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(38vw, 330px);
  max-height: 62%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.reverse .story-panel {
  order: 1;
}

.reverse .media-panel {
  order: 2;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.comparison-grid div {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--line);
}

.comparison-note {
  grid-column: 1 / span 2;
  margin: 4px 0 0;
}

.product-copy {
  grid-column: span 5;
  align-self: center;
}

.product-copy h2 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.product-media {
  grid-column: span 7;
  display: grid;
  gap: 8px;
}

.product-media img {
  min-height: 520px;
}

.placeholder-line {
  color: var(--muted);
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.pick-card {
  min-height: 240px;
  background: rgba(255, 255, 255, 0.42);
}

.pick-card-dark {
  background: var(--dark);
  color: #f5f1ea;
}

.pick-card-accent {
  background: linear-gradient(135deg, var(--acid) 0%, #f0ff9c 100%);
}

.notes-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.back-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: 20px;
  align-content: start;
}

.back-info {
  align-self: start;
  padding-top: 42px;
}

.back-info p {
  margin: 0 0 10px;
  color: var(--muted);
}

.qr-panel {
  display: grid;
  gap: 10px;
  align-self: start;
  width: min(100%, 240px);
  padding-top: 22px;
}

.qr-panel img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.qr-panel p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.sources-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.sources-panel strong {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sources-panel a {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .top-nav {
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .home-hero,
  .portal-hero,
  .current-issue-board,
  .visit-panel,
  .issue-card-grid,
  .drink-grid,
  .system-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .portal-hero {
    min-height: auto;
    padding: 10px;
    border-radius: 30px;
    background:
      radial-gradient(circle at 78% 14%, rgba(255, 122, 47, 0.82), transparent 16%),
      radial-gradient(circle at 88% 48%, rgba(221, 255, 79, 0.82), transparent 14%),
      linear-gradient(180deg, #101010 0%, #171717 56%, #f4f0e8 56%, #efe7db 100%);
  }

  .portal-copy {
    min-height: 56svh;
    padding: 20px 12px 28px;
  }

  .portal-stage {
    min-height: auto;
    padding: 0 8px 8px;
  }

  .portal-cover {
    width: 100%;
    min-height: 460px;
    transform: none;
  }

  .portal-ticket {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -38px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .archive-shelf {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 14px 6px 8px;
    scroll-snap-type: x mandatory;
  }

  .shelf-issue {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .current-index,
  .current-issue-card {
    min-height: auto;
  }

  .reading-indicator {
    justify-self: end;
  }

  .page-frame {
    min-height: auto;
    padding: 18px;
    border-radius: 28px;
  }

  .cover-art {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 18px;
  }

  .cover-accent {
    right: 14px;
  }

  .cover-cup {
    right: 68px;
    bottom: 72px;
    width: 136px;
    height: 170px;
  }

  .cover-tomato-a {
    right: 196px;
    top: 182px;
  }

  .split-layout,
  .media-layout,
  .data-layout,
  .product-layout,
  .closer-layout,
  .back-layout,
  .notes-layout,
  .comparison-grid,
  .fact-columns,
  .three-columns,
  .product-cards,
  .contents-grid,
  .spec-layout {
    grid-template-columns: 1fr;
  }

  .text-block,
  .quote-panel,
  .media-panel,
  .story-panel,
  .data-number,
  .data-copy,
  .product-copy,
  .product-media {
    grid-column: auto;
    max-width: none;
  }

  .quote-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 0 0;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    height: 54svh;
    border-radius: 28px;
  }

  .page-image-full .page-frame {
    padding: 18px;
  }

  .overlay-card {
    width: 100%;
    margin: 12px 0 0;
  }

  .comparison-note,
  .spec-note,
  .sources-panel {
    grid-column: auto;
  }

  .cover-masthead {
    font-size: clamp(62px, 21vw, 116px);
  }

  .cover-title {
    font-size: clamp(34px, 12vw, 68px);
  }

  .oversized-copy strong,
  .data-number span {
    font-size: clamp(66px, 24vw, 130px);
  }

  .mag-page {
    min-height: auto;
  }
}

.portal-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 720px);
  margin-top: 28px;
}

.portal-feature-strip article,
.magazine-rules article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(248, 244, 236, 0.18);
  background: rgba(248, 244, 236, 0.08);
  backdrop-filter: blur(18px);
}

.portal-feature-strip article {
  min-height: 112px;
  align-content: end;
  padding: 14px;
  border-radius: 22px;
}

.portal-feature-strip strong,
.magazine-rules strong {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.portal-feature-strip span,
.magazine-rules p {
  margin: 0;
  color: rgba(248, 244, 236, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

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

.magazine-rules article {
  min-height: 260px;
  align-content: end;
  padding: clamp(20px, 4vw, 34px);
  border-color: var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(221, 255, 79, 0.9), transparent 16%),
    var(--dark);
  color: #f8f4ec;
  box-shadow: var(--shadow);
}

.magazine-rules article:nth-child(2) {
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 122, 47, 0.84), transparent 18%),
    linear-gradient(135deg, #f8f2e7 0%, #ded0bc 100%);
  color: var(--ink);
}

.magazine-rules article:nth-child(2) p {
  color: rgba(17, 17, 17, 0.64);
}

.magazine-rules span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acid);
}

.magazine-rules article:nth-child(2) span {
  color: var(--green);
}

@media (max-width: 900px) {
  .portal-feature-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .portal-feature-strip article {
    min-height: auto;
    padding: 12px 14px;
    border-color: rgba(248, 244, 236, 0.14);
  }

  .portal-feature-strip strong {
    font-size: 24px;
  }

  .portal-feature-strip span {
    font-size: 12px;
  }

  .magazine-rules {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .magazine-rules article {
    min-height: 210px;
    padding: 20px;
    border-radius: 28px;
  }

  .magazine-rules strong {
    font-size: clamp(34px, 12vw, 52px);
  }

  .magazine-rules p {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* Avant-garde flat direction for the long-term QR entry and horizontal reader. */
:root {
  --flat-bg: #f4f4ef;
  --flat-ink: #0b0b0b;
  --flat-green: #194f36;
  --flat-acid: #dfff28;
  --flat-red: #ff4c32;
  --flat-silver: #c9cbc4;
}

body {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 11, 11, 0.035) 1px, transparent 1px),
    var(--flat-bg);
  background-size: 42px 42px;
}

.site-header {
  top: 3px;
  background: rgba(244, 244, 239, 0.9);
}

.portal-hero {
  min-height: 74svh;
  border-radius: 0;
  background:
    radial-gradient(circle at 82% 18%, var(--flat-red) 0 9%, transparent 9.4%),
    linear-gradient(112deg, var(--flat-ink) 0 50%, var(--flat-acid) 50% 67%, var(--flat-bg) 67%);
  box-shadow: none;
}

.portal-hero::before {
  left: 45%;
  top: 12%;
  width: 28%;
  height: 64%;
  background: var(--flat-silver);
  transform: rotate(0deg);
  mix-blend-mode: multiply;
}

.portal-hero::after {
  right: 5%;
  bottom: 8%;
  width: 28vw;
  max-width: 320px;
  height: 28vw;
  max-height: 320px;
  border: 28px solid var(--flat-green);
  border-radius: 0 999px 999px 0;
}

.portal-mark {
  color: rgba(244, 244, 239, 0.72);
}

.portal-copy h1 {
  font-family: var(--sans);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.09em;
}

.portal-copy p {
  max-width: 480px;
  color: rgba(244, 244, 239, 0.78);
}

.portal-cover {
  width: min(100%, 420px);
  min-height: 540px;
  border: 1px solid rgba(11, 11, 11, 0.16);
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 0 58%, var(--flat-green) 58% 100%),
    linear-gradient(180deg, var(--flat-bg), #ffffff);
  box-shadow: 18px 18px 0 var(--flat-ink);
  transform: rotate(-2deg);
}

.portal-cover::before {
  left: 22px;
  top: 22px;
  width: 118px;
  height: 118px;
  background: var(--flat-red);
  border-radius: 999px;
  transform: none;
}

.portal-cover::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 110px;
  width: 62%;
  height: 24px;
  background: var(--flat-acid);
}

.portal-cover span {
  color: var(--flat-green);
  font-weight: 900;
}

.portal-cover strong {
  font-family: var(--sans);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.portal-cover em {
  max-width: 230px;
  font-size: 16px;
  font-weight: 800;
}

.portal-ticket {
  border-radius: 0;
  background: var(--flat-ink);
  box-shadow: 10px 10px 0 var(--flat-red);
}

.portal-ticket strong,
.current-index strong,
.visit-grid strong,
.visit-panel h2,
.section-heading h2,
.current-issue-card h3 {
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.current-issue-card,
.current-index,
.visit-panel {
  border-radius: 0;
  box-shadow: none;
}

.current-issue-card {
  background:
    linear-gradient(90deg, transparent 0 72%, var(--flat-acid) 72%),
    var(--paper);
}

.current-index {
  background: var(--flat-green);
}

.archive-list {
  display: grid;
  gap: 0;
  padding-top: 16px;
  border-top: 2px solid var(--flat-ink);
}

.archive-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.8fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 11, 11, 0.18);
}

.archive-row-link {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
}

.archive-row-link span,
.archive-row-link em {
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flat-green);
}

.archive-row-link strong {
  font-size: clamp(24px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.archive-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.magazine-shell {
  width: 100%;
  padding: 22px 0 56px;
}

.issue-intro {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.magazine-track {
  display: grid;
  gap: 14px;
  width: min(760px, calc(100% - 20px));
  margin: 0 auto;
  padding: 8px 0 28px;
  scroll-snap-type: y proximity;
}

.mag-page {
  min-height: calc(100svh - 86px);
  padding: 0;
  scroll-snap-align: start;
}

.mag-page .page-frame {
  min-height: calc(100svh - 104px);
  border-radius: 0;
  box-shadow: none;
}

.page-slide .page-frame {
  display: grid;
  align-content: end;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 11, 11, 0.055) 1px, transparent 1px),
    #f7f7f1;
  background-size: 34px 34px;
}

.page-flat-cover .page-frame {
  background:
    radial-gradient(circle at 76% 18%, var(--flat-red) 0 12%, transparent 12.5%),
    linear-gradient(118deg, var(--flat-ink) 0 52%, var(--flat-acid) 52% 70%, var(--flat-bg) 70%);
  color: #fff;
}

.flat-shape {
  position: absolute;
  z-index: -1;
}

.flat-leaf-a {
  right: 34px;
  bottom: 58px;
  width: 150px;
  height: 240px;
  border-radius: 999px 999px 0 999px;
  background: var(--flat-green);
  transform: rotate(38deg);
}

.flat-seed-a {
  left: 30px;
  top: 90px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background: var(--flat-red);
}

.flat-bar-a {
  right: 0;
  top: 42%;
  width: 52%;
  height: 28px;
  background: var(--flat-silver);
}

.slide-number,
.flat-index,
.swipe-hint {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.flat-masthead {
  align-self: start;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.page-flat-cover h2,
.page-slide h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(46px, 12vw, 88px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.09em;
}

.page-slide p {
  max-width: 520px;
  margin: 16px 0 0;
  line-height: 1.75;
  font-weight: 600;
}

.swipe-hint {
  margin-top: 28px;
  color: var(--flat-acid);
}

.page-flat-editor .page-frame {
  align-content: center;
  background: var(--flat-bg);
}

.flat-index {
  color: var(--flat-red);
}

.page-flat-diagram .page-frame {
  background: var(--flat-ink);
  color: #fff;
}

.species-map,
.variety-strip,
.system-ladder,
.back-info {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.species-map div,
.variety-strip article,
.system-ladder div {
  padding: 16px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.04);
}

.species-map span,
.variety-strip span,
.system-ladder span,
.back-info span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flat-red);
}

.species-map strong,
.variety-strip strong,
.system-ladder strong,
.back-info strong {
  font-size: clamp(24px, 6vw, 46px);
  line-height: 0.95;
}

.flat-note {
  color: var(--flat-acid);
}

.page-flat-cards .page-frame {
  background:
    linear-gradient(90deg, var(--flat-acid) 0 36%, transparent 36%),
    #fff;
}

.page-flat-quote .page-frame {
  align-content: center;
  background: var(--flat-green);
  color: #fff;
}

.quote-mark {
  color: var(--flat-acid);
  font-size: 180px;
  font-weight: 950;
  line-height: 0.45;
}

.page-flat-system .page-frame {
  background:
    radial-gradient(circle at 86% 16%, var(--flat-red) 0 11%, transparent 11.5%),
    var(--flat-bg);
}

.page-flat-back .page-frame {
  background: var(--flat-ink);
  color: #fff;
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 16px, 520px);
    padding: 10px 0 56px;
  }

  .site-section {
    margin-bottom: 16px;
  }

  .site-header {
    padding: 12px 16px 10px;
  }

  .brand-cn {
    font-size: 12px;
  }

  .brand-en {
    font-size: 10px;
  }

  .update-badge {
    min-height: 28px;
    font-size: 11px;
  }

  .portal-hero {
    gap: 10px;
    margin: 8px 0 18px;
    padding: 12px;
    border-radius: 26px;
    background:
      radial-gradient(circle at 88% 10%, var(--flat-red) 0 52px, transparent 53px),
      linear-gradient(180deg, var(--flat-ink) 0 62%, var(--flat-acid) 62% 72%, var(--flat-bg) 72%);
  }

  .portal-hero::before {
    inset: auto 16px 132px auto;
    width: 130px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(-10deg);
  }

  .portal-hero::after {
    display: none;
  }

  .portal-copy {
    min-height: auto;
    padding: 18px 8px 12px;
    align-content: start;
  }

  .portal-mark {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .portal-copy h1 {
    font-size: clamp(48px, 17vw, 68px);
    line-height: 0.84;
  }

  .portal-copy p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .portal-copy .home-cta-row {
    width: 100%;
    margin-top: 18px;
    gap: 8px;
  }

  .portal-copy .intro-cta {
    flex: 1 1 150px;
    min-height: 46px;
    justify-content: center;
  }

  .portal-copy .text-link {
    display: inline-flex;
    flex: 1 1 120px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(248, 244, 236, 0.38);
    color: #f8f4ec;
    font-weight: 800;
  }

  .portal-stage {
    min-height: auto;
    padding: 0;
  }

  .portal-cover {
    width: calc(100% - 18px);
    min-height: 198px;
    margin: 0 auto;
    padding: 16px;
    box-shadow: 8px 8px 0 var(--flat-ink);
    transform: rotate(-1.5deg);
  }

  .portal-cover::before {
    width: 82px;
    height: 82px;
  }

  .portal-cover::after {
    bottom: 72px;
    height: 16px;
  }

  .portal-cover span {
    font-size: 10px;
  }

  .portal-cover strong {
    max-width: 240px;
    font-size: clamp(30px, 10.5vw, 40px);
    letter-spacing: -0.09em;
  }

  .portal-cover em {
    max-width: 220px;
    font-size: 13px;
  }

  .portal-ticket {
    width: calc(100% - 18px);
    margin: 10px auto 2px;
    padding: 14px;
    box-shadow: 7px 7px 0 var(--flat-red);
  }

  .portal-ticket strong {
    font-size: 22px;
  }

  .portal-ticket p {
    font-size: 13px;
  }

  .current-issue-board {
    gap: 10px;
  }

  .current-issue-card {
    gap: 12px;
    padding: 18px;
  }

  .current-issue-card h3 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .current-issue-card p,
  .current-index p,
  .current-index span {
    font-size: 14px;
    line-height: 1.65;
  }

  .current-index {
    padding: 18px;
  }

  .current-index strong {
    font-size: 30px;
  }

  .section-heading h2 {
    font-size: clamp(32px, 11vw, 50px);
  }

  .archive-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .archive-row-link {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
  }

  .archive-row-link em {
    grid-column: 2;
  }

  .archive-row-link strong {
    font-size: clamp(24px, 9vw, 38px);
  }

  .archive-row p {
    padding-left: 46px;
    font-size: 13px;
  }

  .visit-panel {
    padding: 18px;
  }

  .visit-grid {
    gap: 10px;
  }

  .magazine-track {
    gap: 10px;
    width: calc(100% - 20px);
  }

  .mag-page .page-frame {
    min-height: calc(100svh - 150px);
    padding: 18px;
  }

  .reverse .media-panel,
  .product-media {
    order: 1;
  }

  .reverse .story-panel,
  .product-copy {
    order: 2;
  }

  .product-media img {
    min-height: 0;
    aspect-ratio: 0.82;
  }
}
