:root {
  --rose: #C85C7A;
  --peach: #E7B7A8;
  --ink: #2B2228;
  --paper: #FBF7F5;
  --paper-soft: #F3E9E6;
  --text: #342F32;
  --muted: #746A6F;
  --gold: #D9913D;
  --white: #FFFDFC;
  --line: rgba(43, 34, 40, 0.14);
  --line-strong: rgba(43, 34, 40, 0.28);
  --shadow-soft: 0 18px 54px rgba(43, 34, 40, 0.09);
  --shadow-card: 0 10px 30px rgba(43, 34, 40, 0.07);
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shell: min(1180px, calc(100% - 64px));
  --reading: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--rose);
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5.6rem);
}

h2 {
  font-size: clamp(1.75rem, 3.1vw, 3.2rem);
}

h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
}

::selection {
  background: var(--peach);
  color: var(--ink);
}

.content-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-top: clamp(64px, 8vw, 118px);
  padding-bottom: clamp(64px, 8vw, 118px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #f7d9df;
}

.section-lead,
.page-hero__lead,
.article-head__summary {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.8;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 56px;
  align-items: end;
}

.section-heading--split > p,
.section-heading--split > a {
  margin-bottom: 8px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 245, 0.96);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: var(--shell);
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 156px;
  text-decoration: none;
}

.brand-mark img {
  width: 48px;
  height: 34px;
  object-fit: contain;
}

.brand-mark__text {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.primary-nav a {
  position: relative;
  padding: 10px 11px;
  border-radius: 999px;
  color: #51474c;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--paper-soft);
  color: var(--rose);
}

.search-open,
.nav-toggle {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 9px 14px;
  cursor: pointer;
}

.search-open:hover,
.nav-toggle:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.nav-toggle {
  display: none;
}

.search-modal[hidden] {
  display: none !important;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 34, 40, 0.72);
}

.search-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(20, 15, 18, 0.28);
}

.search-panel h2 {
  margin-bottom: 28px;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.search-form label,
.search-page__form label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 700;
}

.search-form__row,
.search-page__form > div {
  display: flex;
  gap: 10px;
}

.search-form input,
.search-page__form input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: white;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

.search-form input:focus,
.search-page__form input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200, 92, 122, 0.12);
}

.search-form button,
.search-page__form button {
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  padding: 14px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--accent {
  background: var(--gold);
  color: #201914;
}

.button--accent:hover {
  color: #201914;
  background: #e4a04f;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.54);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost:hover {
  border-color: white;
  color: white;
}

.button--dark {
  background: var(--ink);
  color: white;
}

.button--dark:hover {
  color: white;
  background: #3c3037;
}

.button--light {
  background: var(--paper);
  color: var(--ink);
}

.button--light:hover {
  color: var(--rose);
}

.text-link {
  color: var(--rose);
  font-weight: 750;
  text-decoration: underline;
}

.breadcrumbs {
  padding-top: 26px;
  margin-bottom: 38px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "／";
  margin-left: 8px;
  color: #aa9fa4;
}

.breadcrumbs a {
  text-decoration: none;
}

.home-cover {
  position: relative;
  min-height: min(790px, calc(100vh - 76px));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.home-cover__media,
.home-cover__shade {
  position: absolute;
  inset: 0;
}

.home-cover__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.82) contrast(0.94);
}

.home-cover__shade {
  background: linear-gradient(180deg, rgba(43,34,40,0.06) 5%, rgba(43,34,40,0.44) 48%, rgba(43,34,40,0.92) 100%);
}

.home-cover__content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 120px;
}

.home-cover h1 {
  max-width: 1050px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(3rem, 6.2vw, 6.7rem);
  line-height: 1.03;
}

.home-cover__lead {
  max-width: 800px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.home-cover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-cover__rail {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.26);
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.home-cover__rail span {
  padding: 17px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.home-cover__rail span:last-child {
  border-right: 0;
}

.route-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.route-map__intro {
  position: sticky;
  top: 118px;
}

.route-map__intro h2 {
  margin-bottom: 20px;
}

.route-map__intro p:last-child {
  color: var(--muted);
}

.route-map__list {
  border-top: 1px solid var(--line-strong);
}

.route-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.route-step--secondary {
  opacity: 0.78;
}

.route-step__number {
  color: var(--peach);
  font-size: 1.7rem;
  font-weight: 800;
}

.route-step__kicker {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.route-step h3 {
  margin-bottom: 10px;
}

.route-step p {
  margin-bottom: 10px;
}

.editorial-band {
  background: var(--paper-soft);
}

.editorial-band__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: start;
}

.editorial-band__visual {
  position: sticky;
  top: 112px;
}

.editorial-band__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 180px 180px 22px 22px;
  box-shadow: var(--shadow-soft);
}

.editorial-band__visual figcaption {
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.editorial-band__content h2 {
  max-width: 710px;
}

.editorial-band__content .button {
  margin-top: 28px;
}

.editorial-list {
  border-top: 1px solid var(--line-strong);
}

.story-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.story-row__meta {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-row h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.story-row h3 a {
  text-decoration: none;
}

.story-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.editorial-list--roomy .story-row {
  padding: 34px 0;
}

.split-feature__header {
  max-width: 800px;
  margin-bottom: 44px;
}

.split-feature__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  gap: 28px;
}

.split-feature__primary {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.split-feature__primary img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.66;
}

.split-feature__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(28px, 6vw, 58px);
  color: white;
  background: linear-gradient(180deg, transparent, rgba(43,34,40,0.88));
}

.split-feature__copy h3 {
  max-width: 680px;
  color: white;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.split-feature__copy p {
  max-width: 720px;
  color: rgba(255,255,255,0.82);
}

.split-feature__copy .text-link {
  color: #ffd8e2;
}

.split-feature__aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding: 28px;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-card);
}

.aside-label {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.compact-story {
  display: block;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.compact-story span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.compact-story strong {
  display: block;
  color: var(--ink);
  line-height: 1.5;
}

.topic-ribbon {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
}

.topic-ribbon__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.topic-ribbon h2 {
  color: white;
}

.topic-ribbon__copy p:not(.eyebrow) {
  margin-bottom: 28px;
}

.topic-ribbon__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 50% 50% 28px 28px;
}

.brand-notes {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  column-gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.brand-notes__heading {
  grid-row: span 2;
}

.brand-notes__body {
  border-top: 1px solid var(--line-strong);
}

.brand-notes__quote {
  padding: 32px 0;
  font-size: 1.32rem;
  color: var(--ink);
}

.brand-notes__list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.brand-notes__list span {
  color: var(--rose);
  font-weight: 800;
}

.brand-notes__list p {
  margin: 0;
}

.brand-notes > .text-link {
  grid-column: 2;
  margin-top: 24px;
  justify-self: start;
}

.visual-index {
  background: #fffaf8;
  border-top: 1px solid rgba(43,34,40,0.07);
  border-bottom: 1px solid rgba(43,34,40,0.07);
}

.visual-index__items {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.visual-item {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
}

.visual-item--wide {
  grid-row: span 2;
  min-height: 740px;
}

.visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.visual-item > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(43,34,40,0.84));
}

.visual-item span {
  color: #f3c6d2;
  font-size: 0.78rem;
  font-weight: 800;
}

.visual-item h3 {
  margin: 8px 0 10px;
  color: white;
}

.visual-item a {
  color: white;
  font-weight: 750;
}

.utility-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
}

.utility-strip__visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.utility-strip__content {
  padding: clamp(34px, 5vw, 64px);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--paper-soft);
}

.utility-strip__links {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.utility-strip__links a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.closing-index {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.closing-index__links {
  border-top: 1px solid var(--line-strong);
}

.closing-index__links a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.closing-index__links span {
  color: var(--rose);
  font-weight: 800;
}

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

.page-hero,
.topic-hero,
.guide-hero,
.faq-hero,
.article-head,
.category-head,
.search-page {
  padding-bottom: clamp(60px, 7vw, 96px);
}

.page-hero__grid,
.topic-hero__grid,
.faq-hero__grid,
.article-head__grid,
.category-head__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.page-hero__grid--reverse {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
}

.page-hero h1,
.topic-hero h1,
.guide-hero h1,
.faq-hero h1,
.article-head h1,
.category-head h1,
.search-page h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
}

.page-hero__media img,
.topic-hero__grid > img,
.faq-hero__grid > img,
.category-head__grid > img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-hero__media--tall img {
  aspect-ratio: 4 / 5;
  border-radius: 150px 150px 28px 28px;
}

.page-hero--utility .page-hero__media img {
  border-radius: 28px 150px 28px 150px;
}

.page-hero--related .page-hero__media img {
  border-radius: 180px 24px 180px 24px;
}

.reading-grid,
.article-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

.reading-main,
.article-body {
  min-width: 0;
}

.prose {
  font-size: 1.04rem;
}

.prose--wide {
  max-width: 900px;
}

.prose h2 {
  margin-top: 54px;
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-bottom: 8px;
}

.prose p {
  color: #4c4448;
  line-height: 1.9;
}

.prose a:not(.button):not(.text-link) {
  color: var(--rose);
}

.reading-aside,
.article-aside,
.faq-layout__aside {
  position: relative;
}

.aside-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-card);
}

.aside-card--sticky {
  position: sticky;
  top: 110px;
}

.aside-card h2 {
  font-size: 1.4rem;
}

.aside-card p {
  color: var(--muted);
}

.aside-card a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.aside-image {
  margin-top: 24px;
}

.aside-image img {
  width: 100%;
  border-radius: var(--radius-md);
}

.numbered-notes {
  margin: 30px 0;
  border-top: 1px solid var(--line-strong);
}

.numbered-notes > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.numbered-notes > div > span {
  color: var(--rose);
  font-size: 1.15rem;
  font-weight: 800;
}

.numbered-notes p {
  margin: 0;
}

.soft-panel {
  background: var(--paper-soft);
}

.narrow-copy {
  max-width: 870px;
}

.narrow-copy h2 {
  margin-bottom: 18px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
}

.inline-links--column {
  display: grid;
  margin-top: 0;
}

.inline-links a {
  color: var(--rose);
  font-weight: 750;
}

.watch-intro {
  background: var(--ink);
  color: white;
  padding-bottom: 58px;
}

.watch-intro .breadcrumbs {
  color: rgba(255,255,255,0.6);
}

.watch-intro .breadcrumbs a:hover {
  color: white;
}

.watch-intro__title {
  max-width: 960px;
  padding: 56px 0 44px;
}

.watch-intro__title h1 {
  color: white;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.watch-intro__title p:last-child {
  max-width: 800px;
  color: rgba(255,255,255,0.78);
  font-size: 1.18rem;
}

.watch-intro__visual img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 28px;
}

.watch-flow {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

.watch-flow__heading p:last-child {
  color: var(--muted);
}

.watch-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.watch-flow__steps article {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.watch-flow__steps article:last-child {
  border-right: 0;
}

.watch-flow__steps span {
  color: var(--rose);
  font-weight: 800;
}

.watch-flow__steps h3 {
  margin: 22px 0 10px;
}

.watch-flow__steps p {
  color: var(--muted);
}

.watch-editorial {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
}

.watch-editorial__lead {
  position: sticky;
  top: 108px;
  align-self: start;
}

.watch-editorial__lead img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 150px 24px 24px 24px;
  margin-bottom: 30px;
}

.watch-editorial__lead p:not(.eyebrow) {
  color: var(--muted);
}

.media-pair {
  background: #fffaf8;
}

.media-pair__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.media-pair__copy p:not(.eyebrow) {
  color: var(--muted);
}

.media-pair figure img {
  width: 100%;
  border-radius: 24px 160px 24px 24px;
}

.compact-guide {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.compact-guide__items {
  border-top: 1px solid var(--line-strong);
}

.compact-guide__items a {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.compact-guide__items span {
  color: var(--rose);
  font-weight: 800;
}

.device-notes__intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.device-notes__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 16px;
}

.device-notes__grid article {
  padding: 32px;
  border-top: 4px solid var(--peach);
  background: white;
  box-shadow: var(--shadow-card);
}

.device-notes__grid span {
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 800;
}

.device-notes__grid h3 {
  margin: 24px 0 10px;
}

.device-notes__grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.app-story {
  background: var(--paper-soft);
}

.app-story__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.app-story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px 140px 24px 140px;
}

.topic-hero {
  padding-top: 0;
}

.topic-hero__grid {
  align-items: end;
}

.topic-hero__grid > div {
  padding-bottom: 20px;
}

.topic-hero__grid > img {
  border-radius: 160px 30px 30px 30px;
}

.topic-group {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.topic-group--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.topic-group--reverse .topic-group__media {
  order: 2;
}

.topic-group__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.topic-group__links {
  margin-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.topic-group__links a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.topic-group__links span {
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.topic-index {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
}

.topic-index h2 {
  color: white;
}

.topic-index__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,0.2);
}

.topic-index__item {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  text-decoration: none;
}

.topic-index__item:nth-child(2n) {
  border-right: 0;
}

.topic-index__item span {
  display: block;
  margin-bottom: 30px;
  color: #f2becb;
  font-weight: 800;
}

.topic-index__item strong {
  display: block;
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
}

.guide-hero__header {
  max-width: 930px;
  padding: 48px 0 34px;
}

.guide-hero__header p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.13rem;
}

.guide-hero__media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.guide-path {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.guide-path__list {
  border-top: 1px solid var(--line-strong);
}

.guide-path__list a {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.guide-path__list span {
  color: var(--rose);
  font-size: 0.84rem;
  font-weight: 800;
}

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

.guide-path__list p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.guide-reading {
  background: #fffaf8;
}

.guide-reading__grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 70px;
  align-items: start;
}

.guide-reading__visual {
  position: sticky;
  top: 110px;
}

.guide-reading__visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.faq-hero__grid > img {
  border-radius: 30px 150px 30px 30px;
}

.faq-stack {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 780px;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.article-head__grid {
  align-items: end;
}

.article-head__copy {
  padding-bottom: 18px;
}

.article-head__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 160px 28px 28px 28px;
}

.article-head__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.article-head__tags span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-body > section {
  margin-bottom: 52px;
}

.article-body > section h2 {
  margin-bottom: 18px;
}

.article-next {
  margin-top: 64px;
  padding: 28px;
  border-left: 4px solid var(--rose);
  background: var(--paper-soft);
}

.article-next a {
  font-weight: 800;
}

.related-reading {
  background: #fffaf8;
}

.category-head__grid > img {
  border-radius: 28px 160px 28px 28px;
}

.category-head__grid > div > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.category-count {
  display: inline-block;
  margin-top: 12px;
  color: var(--rose);
  font-weight: 800;
}

.search-page__head {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 70px;
  align-items: center;
}

.search-page__head img {
  width: 100%;
  border-radius: 120px 28px 28px 28px;
}

.search-page__form {
  max-width: 820px;
  margin-top: 36px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--paper-soft);
}

.empty-state {
  padding: clamp(42px, 8vw, 88px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  background: white;
}

.empty-state p {
  color: var(--muted);
}

.empty-state a {
  color: var(--rose);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.contact-grid span {
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-grid h2 {
  margin-top: 20px;
  font-size: 1.5rem;
}

.contact-grid p {
  color: var(--muted);
}

.contact-grid a {
  color: var(--rose);
  font-weight: 800;
}

.safety-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.safety-checks article {
  padding: clamp(30px, 5vw, 54px);
  background: var(--paper);
}

.safety-checks span {
  color: var(--rose);
  font-weight: 800;
}

.safety-checks h2 {
  margin: 28px 0 16px;
  font-size: 1.65rem;
}

.safety-checks p {
  margin: 0;
  color: var(--muted);
}

.not-found {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 90px;
}

.not-found__media img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.not-found__copy p:not(.eyebrow) {
  color: var(--muted);
}

.not-found__links {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.not-found__links a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--rose);
  font-weight: 800;
}

.site-footer {
  padding: 70px 0 28px;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}

.site-footer__grid,
.site-footer__bottom {
  width: var(--shell);
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 50px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.site-footer a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,0.74);
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}

.site-footer__brand p {
  max-width: 420px;
  font-size: 0.94rem;
}

.footer-brand {
  margin-bottom: 14px;
  color: white !important;
  font-size: 1.55rem;
  font-weight: 800;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.13);
  font-size: 0.78rem;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.back-to-top[hidden] {
  display: none;
}

@media (max-width: 1200px) {
  :root {
    --shell: min(100% - 48px, 1080px);
  }

  .primary-nav {
    gap: 2px;
  }

  .primary-nav a {
    padding-inline: 8px;
    font-size: 0.88rem;
  }

  .site-header__inner {
    gap: 16px;
  }

  .brand-mark__text {
    display: none;
  }

  .brand-mark {
    min-width: auto;
  }

  .visual-item--wide {
    min-height: 660px;
  }
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 40px, 940px);
  }

  .site-header__inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 1px);
    display: none;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .primary-nav a {
    padding: 12px 14px;
  }

  .route-map,
  .brand-notes,
  .closing-index,
  .watch-flow,
  .compact-guide,
  .guide-path {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .route-map__intro,
  .editorial-band__visual,
  .watch-editorial__lead,
  .guide-reading__visual {
    position: static;
  }

  .brand-notes__heading {
    grid-row: auto;
  }

  .brand-notes > .text-link {
    grid-column: auto;
  }

  .editorial-band__grid,
  .topic-ribbon__grid,
  .media-pair__grid,
  .app-story__grid,
  .topic-group,
  .topic-group--reverse,
  .guide-reading__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .topic-group--reverse .topic-group__media {
    order: initial;
  }

  .page-hero__grid,
  .topic-hero__grid,
  .faq-hero__grid,
  .article-head__grid,
  .category-head__grid,
  .page-hero__grid--reverse {
    grid-template-columns: 1fr 0.78fr;
    gap: 42px;
  }

  .reading-grid,
  .article-layout,
  .faq-layout {
    grid-template-columns: 1fr 250px;
    gap: 48px;
  }

  .watch-flow__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .watch-editorial {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 42px;
  }

  .device-notes__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .section-pad {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4.4rem);
  }

  .site-header__inner {
    min-height: 68px;
    grid-template-columns: auto auto 1fr auto;
  }

  .search-open {
    font-size: 0;
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .search-open::before {
    content: "搜";
    font-size: 0.9rem;
    font-weight: 800;
  }

  .nav-toggle {
    padding: 8px 12px;
  }

  .primary-nav.is-open {
    grid-template-columns: 1fr;
  }

  .home-cover {
    min-height: 760px;
  }

  .home-cover__content {
    padding-top: 120px;
    padding-bottom: 128px;
  }

  .home-cover h1 {
    font-size: clamp(3rem, 13vw, 5.1rem);
  }

  .home-cover__rail {
    grid-template-columns: 1fr;
  }

  .home-cover__rail span {
    display: none;
  }

  .home-cover__rail span:first-child {
    display: block;
    border-right: 0;
  }

  .editorial-band__grid,
  .topic-ribbon__grid,
  .media-pair__grid,
  .app-story__grid,
  .topic-group,
  .topic-group--reverse,
  .guide-reading__grid,
  .page-hero__grid,
  .topic-hero__grid,
  .faq-hero__grid,
  .article-head__grid,
  .category-head__grid,
  .page-hero__grid--reverse,
  .search-page__head,
  .not-found {
    grid-template-columns: 1fr;
  }

  .editorial-band__visual img,
  .watch-editorial__lead img {
    aspect-ratio: 16 / 11;
    border-radius: 26px;
  }

  .split-feature__layout {
    grid-template-columns: 1fr;
  }

  .split-feature__aside {
    padding: 22px;
  }

  .visual-index__items {
    grid-template-columns: 1fr;
  }

  .visual-item,
  .visual-item--wide {
    grid-row: auto;
    min-height: 420px;
  }

  .utility-strip {
    grid-template-columns: 1fr;
  }

  .utility-strip__visual img {
    min-height: 300px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .utility-strip__content {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reading-grid,
  .article-layout,
  .faq-layout,
  .watch-editorial {
    grid-template-columns: 1fr;
  }

  .reading-aside,
  .article-aside,
  .faq-layout__aside {
    order: 2;
  }

  .aside-card--sticky {
    position: static;
  }

  .watch-flow__steps {
    grid-template-columns: 1fr;
  }

  .watch-flow__steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .device-notes__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .topic-index__grid,
  .safety-checks {
    grid-template-columns: 1fr;
  }

  .topic-index__item {
    border-right: 0;
  }

  .topic-group__media img,
  .guide-reading__visual img {
    aspect-ratio: 16 / 10;
    border-radius: 24px;
  }

  .article-head__media img,
  .page-hero__media img,
  .topic-hero__grid > img,
  .faq-hero__grid > img,
  .category-head__grid > img,
  .search-page__head img {
    aspect-ratio: 16 / 10;
    border-radius: 24px;
  }

  .page-hero__media,
  .topic-hero__grid > img,
  .faq-hero__grid > img,
  .article-head__media,
  .category-head__grid > img {
    order: -1;
  }

  .page-hero__grid--reverse .page-hero__media,
  .page-hero__grid--reverse > img {
    order: -1;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 24px);
  }

  body {
    font-size: 15px;
  }

  .site-header__inner {
    gap: 8px;
  }

  .brand-mark img {
    width: 42px;
  }

  .nav-toggle {
    font-size: 0.86rem;
  }

  .home-cover {
    min-height: 700px;
  }

  .home-cover__content {
    padding-bottom: 108px;
  }

  .home-cover__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .route-step {
    grid-template-columns: 44px 1fr;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .story-row__meta {
    margin-bottom: 0;
  }

  .split-feature__primary,
  .split-feature__primary img {
    min-height: 500px;
  }

  .visual-item,
  .visual-item--wide {
    min-height: 360px;
  }

  .brand-notes__quote {
    font-size: 1.14rem;
  }

  .closing-index__links a,
  .compact-guide__items a,
  .guide-path__list a,
  .topic-group__links a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .guide-path__list p {
    grid-column: 1;
    margin-top: 0;
  }

  .watch-intro__title {
    padding-top: 34px;
  }

  .watch-intro__title h1,
  .page-hero h1,
  .topic-hero h1,
  .guide-hero h1,
  .faq-hero h1,
  .article-head h1,
  .category-head h1,
  .search-page h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .search-form__row,
  .search-page__form > div {
    flex-direction: column;
  }

  .search-form button,
  .search-page__form button {
    width: 100%;
  }

  .search-panel {
    padding: 52px 22px 26px;
  }

  .faq-answer {
    padding-right: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

@media (max-width: 375px) {
  :root {
    --shell: calc(100% - 20px);
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand-mark img {
    width: 38px;
  }

  .nav-toggle {
    padding-inline: 10px;
  }

  .home-cover__content {
    padding-top: 100px;
  }

  .home-cover h1,
  .watch-intro__title h1,
  .page-hero h1,
  .topic-hero h1,
  .guide-hero h1,
  .faq-hero h1,
  .article-head h1,
  .category-head h1,
  .search-page h1 {
    font-size: 2.55rem;
  }

  .section-pad {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .split-feature__primary,
  .split-feature__primary img {
    min-height: 460px;
  }

  .split-feature__copy {
    padding: 24px;
  }

  .visual-item,
  .visual-item--wide {
    min-height: 330px;
  }

  .device-notes__grid article,
  .contact-grid article,
  .aside-card,
  .search-page__form {
    padding: 22px;
  }
}

.home-faq-preview {
  background: var(--paper-soft);
  border-top: 1px solid rgba(43, 34, 40, 0.06);
}

.home-faq-preview__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.home-faq-preview__grid > div:first-child > p:last-child {
  color: var(--muted);
}

.home-faq-preview__list {
  border-top: 1px solid var(--line-strong);
}

.home-faq-preview__list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.home-faq-preview__list h3 {
  margin-bottom: 8px;
}

.home-faq-preview__list p {
  margin-bottom: 0;
  color: var(--muted);
}

.home-faq-preview__list > .text-link {
  display: inline-block;
  margin-top: 22px;
}

@media (max-width: 1024px) {
  .home-faq-preview__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
