:root {
  --bg-0: #faf7f2;
  --bg-1: #ffffff;
  --bg-2: #f4efe7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(20, 16, 12, 0.08);
  --line-strong: rgba(20, 16, 12, 0.16);
  --text-0: #0c0a10;
  --text-1: #1f1a16;
  --text-2: #4a4138;
  --text-3: #7a7064;
  --text-4: #a59c8e;
  --rose: #c8556d;
  --rose-2: #e07a8e;
  --rose-deep: #9b2a47;
  --gold: #c8a862;
  --gold-2: #e8c98a;
  --warm: #e8c98a;
  --accent: #c8556d;
  --accent-soft: rgba(200, 85, 109, 0.12);
  --shadow-sm: 0 2px 8px rgba(20, 16, 12, 0.04), 0 1px 2px rgba(20, 16, 12, 0.03);
  --shadow-md: 0 8px 24px rgba(20, 16, 12, 0.06), 0 2px 8px rgba(20, 16, 12, 0.04);
  --shadow-lg: 0 24px 48px rgba(20, 16, 12, 0.10), 0 4px 12px rgba(20, 16, 12, 0.05);
  --shadow-xl: 0 32px 80px rgba(20, 16, 12, 0.14), 0 8px 24px rgba(20, 16, 12, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", "Source Han Serif SC", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-en: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --container: 1240px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --tx: 0.28s var(--ease);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-0: #0c0a10;
    --bg-1: #14110d;
    --bg-2: #1c1814;
    --surface: rgba(28, 24, 20, 0.62);
    --surface-strong: rgba(28, 24, 20, 0.85);
    --line: rgba(232, 201, 138, 0.10);
    --line-strong: rgba(232, 201, 138, 0.20);
    --text-0: #f4efe7;
    --text-1: #e8e0d2;
    --text-2: #b8ad9e;
    --text-3: #8a8273;
    --text-4: #5e574b;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.6);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-1);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(232, 201, 138, 0.22), transparent 60%),
    radial-gradient(1000px 600px at 100% 30%, rgba(200, 85, 109, 0.10), transparent 65%),
    var(--bg-0);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tx), opacity var(--tx);
}

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

a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.22;
  color: var(--text-0);
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 1.4em;
}

strong, em, b {
  color: var(--text-0);
}

em {
  font-style: normal;
  color: var(--rose);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  background: var(--text-0);
  color: var(--bg-1);
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.3s var(--ease);
}

.skip-link:focus {
  top: 16px;
  color: var(--bg-1);
}

::selection {
  background: var(--rose);
  color: #fff;
}

::placeholder {
  color: var(--text-3);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: var(--surface);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--tx), border-color var(--tx), box-shadow var(--tx);
}

.navbar.scrolled {
  background: var(--surface-strong);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-0);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--text-0);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold) 40%, var(--text-1) 100%);
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15), var(--shadow-sm);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-name em {
  color: var(--rose);
  font-style: normal;
  margin: 0 1px;
}

.brand-slogan {
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0.18em;
  margin-top: 2px;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-pill);
  transition: color var(--tx), background var(--tx);
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--tx);
}

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

.nav-links a:hover::before,
.nav-links a.active::before {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-0);
  border-radius: 2px;
  transition: transform var(--tx), opacity var(--tx);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: calc(var(--nav-h) + 96px) 0 96px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(232, 201, 138, 0.12) 0%, transparent 60%),
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(20, 16, 12, 0.015) 40px 41px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, var(--gold-2) 0%, transparent 70%);
  opacity: 0.18;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 85, 109, 0.18);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  margin: 28px 0 14px;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--text-0) 0%, var(--rose-deep) 50%, var(--text-0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
}

.hero h1 em {
  color: var(--rose);
  font-style: normal;
  -webkit-text-fill-color: var(--rose);
}

.hero-sub-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-2);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
  padding: 0 24px;
}

.hero-tagline::before, .hero-tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--text-4));
}

.hero-tagline::before {
  left: -8px;
}

.hero-tagline::after {
  right: -8px;
  background: linear-gradient(-90deg, transparent, var(--text-4));
}

.hero-desc {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  color: var(--text-2);
  line-height: 1.9;
}

.hero-desc .hl {
  background: linear-gradient(180deg, transparent 60%, rgba(232, 201, 138, 0.4) 60%);
  padding: 0 2px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
  border-right: 1px solid var(--line);
}

.hero-stats .stat:last-child {
  border-right: 0;
}

.hero-stats .stat strong {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--text-0);
  letter-spacing: 0.02em;
}

.hero-stats .stat span {
  font-size: 0.78rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section.alt {
  background:
    linear-gradient(180deg, transparent, rgba(232, 201, 138, 0.04) 50%, transparent),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  color: var(--rose);
  margin-bottom: 18px;
  padding: 4px 0;
  position: relative;
}

.section-eyebrow::before, .section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--rose);
  vertical-align: middle;
  margin: 0 14px;
  opacity: 0.4;
}

.section-title {
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

.section-title span {
  color: var(--rose);
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -8px;
  height: 8px;
  background: var(--accent-soft);
  border-radius: 4px;
  z-index: -1;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin: 0;
}

.plot {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.plot-poster {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-1.5deg);
  transition: transform 0.5s var(--ease-out);
}

.plot-poster:hover {
  transform: rotate(0deg) scale(1.02);
}

.plot-poster img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.plot-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.poster-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
  z-index: 1;
}

.poster-meta h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.poster-meta p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

.plot-text h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--text-0);
}

.plot-text .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.plot-text .meta span {
  font-size: 0.78rem;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--rose-deep);
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

@media (prefers-color-scheme: dark) {
  .plot-text .meta span {
    color: var(--rose-2);
  }
}

.plot-text p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}

.hl {
  background: linear-gradient(180deg, transparent 62%, rgba(200, 85, 109, 0.18) 62%);
  padding: 0 2px;
  font-weight: 600;
  color: var(--text-0);
}

.hl-r {
  color: var(--rose);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 62%, rgba(200, 85, 109, 0.30) 62%);
  padding: 0 2px;
}

.quote {
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--rose);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.85;
}

.quote small {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
}

.couples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.couple-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--tx), box-shadow var(--tx), border-color var(--tx);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.couple-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose);
}

.cc-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-2);
}

.cc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.couple-card:hover .cc-photo img {
  transform: scale(1.06);
}

.cc-num {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(12, 10, 16, 0.78);
  color: var(--gold-2);
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-style: italic;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  letter-spacing: 0.05em;
}

.cc-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cc-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.cc-body h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--text-0);
}

.cc-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-3);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.cc-body p {
  font-size: 0.94rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
}

.cc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.cc-chips span {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: var(--bg-2);
  color: var(--text-2);
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.cc-chips.alt span {
  background: var(--accent-soft);
  color: var(--rose-deep);
}

@media (prefers-color-scheme: dark) {
  .cc-chips.alt span {
    color: var(--rose-2);
  }
}

.episodes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.ep {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--tx), border-color var(--tx), box-shadow var(--tx);
  overflow: hidden;
}

.ep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--rose), var(--gold-2));
  transition: height 0.5s var(--ease-out);
}

.ep:hover {
  transform: translateY(-4px);
  border-color: var(--rose);
  box-shadow: var(--shadow-md);
}

.ep:hover::before {
  height: 100%;
}

.ep-num {
  display: inline-block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--rose);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 600;
}

.ep h4 {
  font-size: 1.18rem;
  margin-bottom: 14px;
  color: var(--text-0);
  line-height: 1.4;
}

.ep p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 16px;
}

.ep-key {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.ep-key span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--bg-2);
  color: var(--text-3);
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.manor {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.manor-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 5/4;
}

.manor-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.4));
  z-index: 1;
  pointer-events: none;
}

.manor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.manor:hover .manor-image img {
  transform: scale(1.04);
}

.manor-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 22px;
  line-height: 1.35;
}

.manor-text h3 span {
  color: var(--rose);
  background: linear-gradient(180deg, transparent 62%, rgba(200, 85, 109, 0.25) 62%);
}

.manor-text p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}

.manor-rules {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.manor-rules li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}

.manor-rules li:last-child {
  border-bottom: 0;
}

.manor-rules li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--rose);
  font-size: 0.78rem;
}

.manor-rules li strong {
  display: inline-block;
  min-width: 80px;
  color: var(--text-0);
  margin-right: 6px;
  font-family: var(--font-serif);
}

.theme {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.theme-card {
  position: relative;
  padding: 32px 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--tx), box-shadow var(--tx), border-color var(--tx);
  overflow: hidden;
}

.theme-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.6s var(--ease-out);
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}

.theme-card:hover::after {
  transform: scale(1.5);
}

.t-no {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--rose);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.theme-card h5 {
  font-size: 1.12rem;
  margin-bottom: 12px;
  color: var(--text-0);
  line-height: 1.4;
}

.theme-card p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.g {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-2);
  margin: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tx), box-shadow var(--tx);
}

.g:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.g:hover img {
  transform: scale(1.08);
}

.g.tall { grid-column: span 2; grid-row: span 2; }
.g.wide { grid-column: span 4; grid-row: span 1; }
.g.square { grid-column: span 2; grid-row: span 1; }
.g.med { grid-column: span 3; grid-row: span 1; }
.g.small { grid-column: span 2; grid-row: span 1; }

.g-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--tx), transform var(--tx);
}

.g:hover .g-caption {
  opacity: 1;
  transform: translateY(0);
}

.g-num {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(232, 201, 138, 0.9);
  color: #1a1410;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  margin-right: 8px;
  font-weight: 600;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.review {
  position: relative;
  padding: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--tx), border-color var(--tx), box-shadow var(--tx);
}

.review::before {
  content: """;
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: var(--font-serif);
  font-size: 3.4rem;
  color: var(--accent-soft);
  line-height: 1;
  font-weight: 900;
}

.review:hover {
  transform: translateY(-4px);
  border-color: var(--rose);
  box-shadow: var(--shadow-md);
}

.rv-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.rv-score span:last-child {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-0);
}

.rv-text {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.78;
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 14px;
}

.rv-from {
  font-size: 0.82rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-align: right;
}

.kpi {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 12px 8px;
  border-right: 1px solid var(--line);
}

.kpi-item:last-child {
  border-right: 0;
}

.kpi-item .n {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--text-0), var(--rose-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.kpi-item .l {
  font-size: 0.82rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.news {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-item {
  display: grid;
  grid-template-columns: 110px 1fr 180px;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--tx), border-color var(--tx), box-shadow var(--tx);
}

.news-item:hover {
  transform: translateX(4px);
  border-color: var(--rose);
  box-shadow: var(--shadow-md);
}

.n-date {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.n-content {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}

.n-content a {
  display: inline-block;
  color: var(--text-0);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1.04rem;
}

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

.n-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 3px 10px;
  margin-right: 8px;
  background: var(--rose);
  color: #fff;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  vertical-align: middle;
  font-weight: 500;
}

.n-tag.alt {
  background: var(--gold);
  color: var(--text-1);
}

.n-tag.win {
  background: var(--rose-deep);
  color: #fff;
}

.n-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.info-card {
  padding: 28px 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--tx), border-color var(--tx);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--rose);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.info-card h5 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text-0);
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.7;
}

.faq {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq details {
  margin-bottom: 12px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--tx);
}

.faq details:hover,
.faq details[open] {
  border-color: var(--rose);
}

.faq summary {
  padding: 18px 24px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-0);
  cursor: pointer;
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background var(--tx);
}

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

.faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  color: var(--rose);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform var(--tx), background var(--tx), color var(--tx);
  flex-shrink: 0;
}

.faq details[open] > summary::after {
  transform: rotate(45deg);
  background: var(--rose);
  color: #fff;
}

.faq summary:hover {
  background: var(--accent-soft);
}

.faq-body {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.85;
}

.faq-body .hl {
  background: linear-gradient(180deg, transparent 62%, rgba(200, 85, 109, 0.18) 62%);
  padding: 0 2px;
  font-weight: 600;
  color: var(--text-0);
}

.footer {
  margin-top: 64px;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto 36px;
  padding: 0 24px;
}

.footer-brand h4 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--text-0);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.78;
}

.footer-col h6 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: var(--text-3);
  transition: color var(--tx);
}

.footer-col ul li a:hover {
  color: var(--rose);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 24px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-3);
}

.footer-bottom .domain {
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.footer-disclaimer {
  margin-top: 8px !important;
  font-size: 0.75rem;
  color: var(--text-4);
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--tx), transform var(--tx), background var(--tx);
  z-index: 999;
  pointer-events: none;
}

.to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .plot, .manor {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .plot-poster {
    max-width: 480px;
    margin: 0 auto;
    transform: rotate(0);
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .n-thumb img {
    height: 200px;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 0 16px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-links.open {
    max-height: 600px;
    padding: 20px;
  }

  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-links a::before {
    display: none;
  }

  .nav-links a.active {
    background: var(--accent-soft);
  }

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

  .hero {
    padding: calc(var(--nav-h) + 56px) 0 64px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
  }

  .hero-stats .stat {
    border-bottom: 1px solid var(--line);
  }

  .hero-stats .stat:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .hero-stats .stat:nth-child(even) {
    border-right: 0;
  }

  .hero-stats .stat:last-child,
  .hero-stats .stat:nth-last-child(2) {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .plot, .couples, .episodes, .manor, .theme, .gallery, .reviews, .news, .info {
    padding: 0 16px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .g.tall { grid-column: span 2; grid-row: span 2; }
  .g.wide { grid-column: span 2; grid-row: span 1; }
  .g.square { grid-column: span 1; grid-row: span 1; }
  .g.med { grid-column: span 2; grid-row: span 1; }
  .g.small { grid-column: span 1; grid-row: span 1; }

  .kpi {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 16px;
  }

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

  .kpi-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .poster-meta {
    padding: 16px;
  }

  .poster-meta h3 {
    font-size: 1.2rem;
  }

  .quote {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .brand-slogan {
    display: none;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  .navbar, .to-top, .nav-toggle, .skip-link {
    display: none !important;
  }

  .hero, .section, .footer {
    padding: 20px 0;
    page-break-inside: avoid;
  }

  body {
    background: #fff;
  }
}
