:root {
  --paper: #ffffff;
  --paper-deep: #edf3f9;
  --ink: #2b2b2b;
  --muted: #6e6e6e;
  --line: #dde6ee;
  --accent: #7bafd4;
  --accent-deep: #4a8bb5;
  --chip: #dfebf4;
  --blush: #c9bdd8;
  --gold: #ead58a;
  --deep: #3d5a6c;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --pill: 999px;
  --max: 1180px;
  --nav-h: 72px;
  --serif: "Fraunces", "Noto Serif SC", "Songti SC", serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body::before { display: none; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.site-nav + .wrap {
  padding-top: 36px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}

.section-desc {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 36px;
}

#scenes .section-desc {
  margin-bottom: 22px;
}

.crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
}

.crumb a:hover { color: var(--accent); }

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-nav-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.25;
  padding: 0;
}

.brand-en {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand-cn {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 4px;
  max-width: 280px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
}

.nav-links a {
  padding: 6px 12px;
  font-size: 14px;
  color: var(--muted);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
}

.nav-shop {
  margin-left: 0;
  padding: 6px 12px !important;
  border: 0;
  color: var(--muted) !important;
}

.nav-shop:hover {
  background: transparent;
  color: var(--ink) !important;
}

.nav-shop::after { display: none !important; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.hero-swiper .swiper-container {
  width: 100%;
}

.hero-swiper .swiper-slide {
  height: auto;
}

.hero-swiper .swiper-slide a,
.hero-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-swiper .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

.prose {
  max-width: 760px;
  color: #444;
  line-height: 2;
  font-size: 15px;
}

.prose p { margin-bottom: 4px; }

/* ===== Celebrity banner ===== */
.celebrity-banner {
  display: block;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin: 8px 0 22px;
}

.celebrity-banner-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
}

.celebrity-tag {
  display: block;
  font-size: 11px;
  color: var(--accent-deep);
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}

.celebrity-banner h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}

.card-sub { font-size: 14px; color: var(--muted); }

.celebrity-cta {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--ink);
  padding: 0;
  border: 0;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.celebrity-banner:hover .celebrity-cta {
  color: var(--accent-deep);
}

/* ===== Topic grid ===== */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.topic-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
}

.topic-card-media {
  display: grid;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #eef2f7;
}

.topic-card-media img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  image-rendering: auto;
}

.topic-card-media--bra img {
  /* 保持商品卡片铺满感，同时把人像焦点略微上移，避免头部裁切怪异。 */
  object-fit: cover;
  object-position: center 8%;
}

.topic-card-media--panty { background: #efe4ea; }
.topic-card-media--lounge { background: #eee6da; }
.topic-card-media--thermal { background: #eadfd4; }
.topic-card-media--men { background: #d5e0ea; }
.topic-card-media--fragrance { background: #eadde3; }
.topic-card-media--pants { background: #e5ddd4; }
.topic-card-media--other { background: #dce8f0; }

.topic-card-body {
  padding: 14px 14px 16px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.topic-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.topic-card-body p { font-size: 13px; color: var(--muted); }

.topic-card:hover { border-color: var(--accent); }

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  color: inherit;
}

.card h3 { font-size: 17px; margin-bottom: 6px; }
.card p { font-size: 14px; color: var(--muted); }
.card:hover { border-color: var(--accent); }

/* ===== Scene lookbook ===== */
.scene-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.scene-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 9px 14px 9px 12px;
  border: 0;
  border-radius: var(--pill);
  background: transparent;
  color: var(--muted);
  transition: background 0.22s ease, color 0.22s ease;
}

.scene-tab-no {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.scene-tab:hover {
  background: var(--chip);
  color: var(--accent-deep);
}

.scene-tab.active {
  background: var(--accent);
  color: #fff;
}

.scene-tab.active .scene-tab-no {
  color: #fff;
}

.scene-panels {
  margin-top: 0;
}

.scene-panel { display: none; }
.scene-panel.active {
  display: block;
  animation: sceneIn 0.45s ease;
}

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

.scene-panels a.scene-card,
.scene-card {
  --scene-from: #eaf2f8;
  --scene-to: #c7dcea;
  --scene-glow: rgba(255, 255, 255, 0.55);
  --scene-ring: rgba(255, 255, 255, 0.55);
  --scene-ink: #3d5a6c;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.88fr);
  min-height: 292px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  color: inherit;
  padding: 0;
  margin-top: 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.scene-card:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 40px -28px rgba(61, 90, 108, 0.45);
}

.scene-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 40px 32px;
  min-width: 0;
}

.scene-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.scene-card h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0;
}

.scene-card .scene-prod {
  font-size: 15px;
  color: var(--accent-deep);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 12px 0 0;
}

.scene-card .scene-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 10px 0 0;
  max-width: 36em;
}

.scene-fits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.scene-fits li {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--deep);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 5px 12px;
}

.scene-card .scene-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--accent-deep);
  background: var(--chip);
  border-radius: var(--pill);
  padding: 5px 12px;
  margin-top: 16px;
}

.scene-cta {
  margin-top: auto;
  padding-top: 22px;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.scene-cta::after {
  content: " →";
  display: inline-block;
  transition: transform 0.22s ease;
}

.scene-card:hover .scene-cta {
  color: var(--accent-deep);
}

.scene-card:hover .scene-cta::after {
  transform: translateX(4px);
}

.scene-card-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 68% 38%, var(--scene-glow), transparent 68%),
    linear-gradient(158deg, var(--scene-from) 0%, var(--scene-to) 100%);
}

.scene-card-visual::before,
.scene-card-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.scene-card-visual::before {
  width: 240px;
  height: 240px;
  border: 1px solid var(--scene-ring);
  right: 12%;
  top: 14%;
}

.scene-card-visual::after {
  width: 148px;
  height: 148px;
  background: var(--scene-glow);
  right: 24%;
  top: 28%;
}

.scene-visual-en {
  position: absolute;
  left: 22px;
  top: 26px;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.38em;
  color: var(--scene-ink);
  opacity: 0.42;
}

.scene-visual-no {
  position: absolute;
  right: 6%;
  bottom: -6%;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(92px, 11vw, 148px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.48);
}

.scene-card[data-scene="commute"] {
  --scene-from: #e8f1f7;
  --scene-to: #b7d0e4;
  --scene-ink: #3d5a6c;
}
.scene-card[data-scene="date"] {
  --scene-from: #f6ecef;
  --scene-to: #d9b7c4;
  --scene-ink: #7a4e5d;
}
.scene-card[data-scene="bare"] {
  --scene-from: #f4eee4;
  --scene-to: #e0cba0;
  --scene-ink: #7a6540;
}
.scene-card[data-scene="sleek"] {
  --scene-from: #e8ecef;
  --scene-to: #b7c4ce;
  --scene-ink: #4a5864;
}
.scene-card[data-scene="home"] {
  --scene-from: #f4efe6;
  --scene-to: #d8c7ae;
  --scene-ink: #6d5b45;
}
.scene-card[data-scene="warm"] {
  --scene-from: #efe6dc;
  --scene-to: #c9b09a;
  --scene-ink: #6a5343;
}
.scene-card[data-scene="shape"] {
  --scene-from: #efe8ef;
  --scene-to: #c9b5c7;
  --scene-ink: #6a5368;
}
.scene-card[data-scene="cool"] {
  --scene-from: #e7f3f2;
  --scene-to: #b4d6d4;
  --scene-ink: #3d6462;
}

.scene-card[data-scene="date"] .scene-card-visual::before {
  width: 300px;
  height: 190px;
  right: -6%;
  top: 22%;
}
.scene-card[data-scene="bare"] .scene-card-visual::before {
  width: 170px;
  height: 170px;
  right: 30%;
  top: 10%;
}
.scene-card[data-scene="bare"] .scene-card-visual::after {
  width: 210px;
  height: 210px;
  right: 8%;
  top: 38%;
}
.scene-card[data-scene="sleek"] .scene-card-visual::before {
  border-radius: 8px;
  width: 160px;
  height: 220px;
  right: 18%;
  top: 16%;
}
.scene-card[data-scene="home"] .scene-card-visual::after {
  width: 260px;
  height: 260px;
  right: -8%;
  top: 20%;
}
.scene-card[data-scene="warm"] .scene-card-visual::before {
  width: 420px;
  height: 420px;
  right: -20%;
  top: -18%;
}
.scene-card[data-scene="shape"] .scene-card-visual::before {
  width: 200px;
  height: 280px;
  border-radius: 100px;
  right: 16%;
  top: 12%;
}
.scene-card[data-scene="cool"] .scene-card-visual::after {
  width: 90px;
  height: 90px;
  right: 18%;
  top: 22%;
}

@media (prefers-reduced-motion: reduce) {
  .scene-panel.active { animation: none; }
  .scene-tab, .scene-card, .scene-cta::after { transition: none; }
}

/* ===== Brand story timeline ===== */
.brand-story-card { padding: 0 0 56px; }

.brand-story-link {
  display: block;
  color: inherit;
  padding: 32px 28px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brand-story-head { margin-bottom: 28px; }
.brand-story-link .section-title { margin-bottom: 8px; }
.brand-story-link .section-desc { margin: 0; }
.brand-story-link .more { color: var(--accent-deep); }

.story-timeline {
  list-style: none;
  margin: 22px auto 0;
  padding: 0;
  max-width: 760px;
  position: relative;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  bottom: 55px;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  column-gap: 28px;
  padding: 0 0 30px;
  position: relative;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  grid-column: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  margin-top: 6px;
}

.tl-year {
  grid-column: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-deep);
  text-align: right;
  line-height: 1.4;
}

.tl-body { grid-column: 3; text-align: left; }
.tl-item:nth-child(even) .tl-year { grid-column: 3; text-align: left; }
.tl-item:nth-child(even) .tl-body { grid-column: 1; text-align: right; }

.tl-title { font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.tl-desc { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.7; }

.tl-item--more { grid-template-columns: 1fr; justify-items: center; }
.tl-item--more .tl-dot { grid-column: 1; border-style: dashed; }
.tl-item--more .tl-body { grid-column: 1; text-align: center; }
.tl-more { font-style: italic; color: var(--muted); font-weight: 500; font-size: 13px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px 20px;
  margin-bottom: 10px;
}

.faq-item h3,
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  cursor: default;
  list-style: none;
  position: static;
}

.faq-item summary::after { display: none; }

.faq-item p {
  padding: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-cat {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin: 40px 0 8px;
}

.faq-more {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  color: var(--accent);
}

.faq-more:hover { text-decoration: underline; }

/* ===== Footer ===== */
.site-footer {
  background: var(--paper-deep);
  color: var(--ink);
  padding: 64px 0 28px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 40px;
}

.site-footer h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a { font-size: 14px; color: var(--muted); }

.site-footer a:hover { color: var(--accent-deep); }

.footer-legal {
  width: min(var(--max), calc(100% - 40px));
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-legal a { color: var(--muted); text-decoration: underline; }

/* ===== Products page ===== */
.series-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}

.series-nav {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 16px;
}

.series-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.series-card-label { font-size: 15px; font-weight: 600; }
.series-card-desc { font-size: 12px; color: var(--muted); grid-column: 1; }
.series-card-arrow { grid-column: 2; grid-row: 1 / span 2; color: var(--muted); }
.series-card.is-active .series-card-label { color: var(--accent); }
.series-card:hover .series-card-label { color: var(--accent); }

.series-detail,
.sub-product,
.sub-product-feature { scroll-margin-top: 88px; }

.series-detail[hidden] { display: none; }
.series-detail-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}
.series-detail-desc { color: var(--muted); margin-bottom: 28px; }

.sub-product-list { display: flex; flex-direction: column; gap: 18px; }

.sub-product,
.sub-product-feature {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.sub-product h4,
.sub-feature-info h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sub-desc { font-size: 14px; color: #4a5962; }

.sub-feature-head {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 32px;
  align-items: start;
}

.sub-feature-head:not(:has(.sub-feature-media)) { grid-template-columns: 1fr; }

.sub-feature-media {
  background: var(--paper-deep);
  overflow: hidden;
  border-radius: var(--radius);
}

.cele-badge {
  display: inline;
  font-size: 12px;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.14em;
  padding: 0 0 0 12px;
  margin-left: 10px;
  border: 0;
  border-left: 1px solid var(--accent);
  color: var(--accent-deep);
  vertical-align: 3px;
  line-height: 1;
}

.spec-list { margin: 16px 0; border-top: 1px solid var(--line); }
.spec-row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.spec-k { color: var(--accent); font-weight: 600; }

.sub-cta-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

.sub-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  border: 1px solid var(--accent);
  border-radius: var(--pill);
  background: var(--accent);
  color: #fff;
}

.sub-cta-btn--ghost,
.sub-cta-btn--ghost:hover {
  background: transparent;
  color: var(--accent-deep);
}

.sub-cta-btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }

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

a.celebrity-card,
.celebrity-card {
  display: block;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: inherit;
}

a.celebrity-card--featured {
  grid-column: 1 / -1;
  padding: 8px 0 28px;
  border-top: 1px solid var(--ink);
}

a.celebrity-card--featured h4 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.cele-product-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.cele-product-list a {
  font-size: 13px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
}

.cele-product-list a:hover { border-color: var(--accent); color: var(--accent); }

.cele-label {
  flex: 1 0 100%;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

/* ===== Shop / contact ===== */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.shop-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-height: 0;
}

.shop-card:hover {
  background: transparent;
  border-color: var(--accent);
}

.shop-text { min-width: 0; }

.shop-ch {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  margin-bottom: 4px;
}

.shop-card h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.shop-link {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--ink);
  border: 0;
  white-space: nowrap;
}

.shop-card:hover .shop-link { color: var(--accent-deep); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  min-height: 160px;
}

.contact-card:hover { background: var(--paper-deep); }

.contact-card h3 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-list { display: flex; flex-direction: column; gap: 8px; }
.product-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
}
.product-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}

/* ===== Story ===== */
.story-page .section-desc {
  margin-bottom: 16px;
}

.story-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  max-width: 760px;
}

.story-page .story-item:first-of-type {
  padding-top: 8px;
}
.story-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.story-item p { color: #3d4a52; }

/* ===== Guide ===== */
.guide-toc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin: 12px 0 40px;
  border-top: 1px solid var(--line);
}

.guide-toc a {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  min-height: 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 6px;
  align-items: baseline;
}

.guide-toc a:hover {
  background: transparent;
}

.guide-toc a:hover .t { color: var(--accent-deep); }

.guide-toc .num {
  grid-row: 1 / span 2;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.16em;
}

.guide-toc .t {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.guide-toc .d {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.post {
  max-width: 760px;
  padding: 8px 0 40px;
  background: transparent;
  border: 0;
}

.post h5, .post h6 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 28px 0 10px;
  color: var(--ink);
}
.post h6 { font-size: 22px; }
.post h5 { font-size: 17px; }
.post p { margin: 10px 0; color: #3d4a52; }
.post ul, .post ol { margin: 8px 0 8px 22px; }
.post li { margin: 4px 0; color: #3d4a52; }
.post hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }

.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px;
}
.guide-table td, .guide-table th {
  border: 1px solid var(--line);
  padding: 10px 12px;
  vertical-align: top;
  text-align: left;
}
.guide-table tr:first-child td,
.guide-table th { background: var(--paper-deep); font-weight: 600; }

.article-top-nav,
.post-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 12px 0 28px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.post-nav { margin-top: 32px; }
.article-top-nav .section-title,
.article-top-nav h1 {
  font-size: 18px;
  text-align: center;
  margin: 0;
}
.article-top-nav .section-title::after,
.article-top-nav h1::after { display: none; }
.article-top-nav .prev, .article-top-nav .next,
.post-nav a {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article-top-nav .next, .post-nav a:last-child { text-align: right; align-items: flex-end; }
.post-nav .back { text-align: center; align-items: center; }

.geo-details { display: none; }

.pd-empty {
  width: 100%;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.pd-empty .pd-name { margin-bottom: 12px; }
.pd-empty .pd-lead { padding-top: 0; }
.pd-empty .sub-cta-row { margin-top: 18px; }

.pd-crumb-current { color: var(--ink); }

.product-detail { margin-bottom: 56px; scroll-margin-top: 88px; }
.product-detail[hidden] { display: none; }

.pd-hero {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) 1.18fr;
  gap: 12px 48px;
  align-items: start;
  margin-bottom: 28px;
}
.pd-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}
.pd-name .cele-badge {
  vertical-align: 0.12em;
  letter-spacing: 0.1em;
}
.pd-lead {
  font-size: 14px;
  color: #4a5962;
  line-height: 1.85;
  margin: 0;
  padding-top: 4px;
}
.pd-hero .sub-cta-row { margin-top: 16px; }

.pd-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pd-block {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.pd-block h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.pd-block p {
  font-size: 14px;
  color: #4a5962;
  line-height: 1.8;
  margin: 0;
}

.page-hero {
  padding: 48px 0 0;
}

/* article page reuse */
.article-page #article { padding: 40px 0 80px; }
.article-page .title-wrap {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.article-page .title { font-family: var(--serif); font-size: 32px; font-weight: 500; }
.article-page .content,
.article-page .subtitle {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 16px;
  font-size: 16px;
  text-indent: 0;
}
.article-page .subtitle { font-weight: 600; margin-top: 28px; }
.article-page img { width: min(760px, calc(100% - 40px)); margin: 16px auto; }

@media (max-width: 980px) {
  .scene-panels a.scene-card,
  .scene-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .scene-card-visual {
    min-height: 168px;
    order: -1;
  }
  .scene-visual-no { font-size: 108px; bottom: -12%; }
  .scene-card-copy { padding: 28px 26px 24px; }
  .series-layout { grid-template-columns: 1fr; gap: 32px; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .series-nav { position: relative; top: auto; flex-direction: row; overflow-x: auto; padding: 4px 12px; }
  .series-card { flex: 0 0 180px; padding: 12px 16px 12px 0; }
  .series-card-desc, .series-card-arrow { display: none; }
  .celebrity-grid { grid-template-columns: 1fr 1fr; }
  .sub-feature-head { grid-template-columns: 1fr; }
  .pd-sections { grid-template-columns: 1fr; }
  .pd-hero { grid-template-columns: 1fr; gap: 16px; }
  .pd-name { font-size: 24px; }
}

@media (max-width: 760px) {
  #scenes .section-desc { margin-bottom: 18px; }
  .scene-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-right: -20px;
    padding-right: 20px;
  }
  .scene-tabs::-webkit-scrollbar { display: none; }
  .scene-tab { flex: 0 0 auto; }
  .scene-card-copy { padding: 22px 20px 20px; }
  .scene-card h3 { font-size: 28px; }
  .scene-cta { padding-top: 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 16px;
  }
  .site-nav.is-open .nav-links { display: flex; }
  .hero-swiper .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .celebrity-banner-inner { flex-direction: column; align-items: flex-start; }
  .topic-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .story-timeline::before { left: 54px; transform: none; top: 12px; bottom: 40px; }
  .tl-item { display: block; padding: 0 0 22px 76px; }
  .tl-year { position: absolute; left: 0; top: 1px; width: 42px; text-align: right; font-size: 14px; }
  .tl-dot { position: absolute; left: 48px; top: 5px; margin: 0; }
  .tl-body, .tl-item:nth-child(even) .tl-body { text-align: left; }
  .tl-item:nth-child(even) .tl-year { position: absolute; left: 0; width: 42px; text-align: right; }
  .tl-item--more { display: flex; flex-direction: column; align-items: center; padding: 0; }
  .tl-item--more .tl-dot { position: static; margin: 0 0 6px; }
  .guide-toc, .shop-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .article-top-nav, .post-nav { grid-template-columns: 1fr; text-align: left; }
  .article-top-nav .next, .post-nav a:last-child { text-align: left; align-items: flex-start; }
  a.celebrity-card--featured h4 { font-size: 26px; }
}
