:root {
  --bg: #0c0a10;
  --bg-2: #14111a;
  --bg-3: #1a1622;
  --bg-card: rgba(22, 18, 28, 0.72);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(232, 201, 138, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #efe9dc;
  --text-soft: #b8b0a3;
  --text-dim: #7d7468;
  --gold: #e8c98a;
  --gold-2: #c79a4d;
  --rose: #d99b9b;
  --danger: #c47373;
  --win: #8fb78f;
  --max: 1240px;
  --pad: clamp(16px, 4vw, 32px);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-1: 0 18px 40px -22px rgba(0, 0, 0, 0.6);
  --shadow-2: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --t-fast: 0.2s ease;
  --t-mid: 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-slow: 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  --serif: "Noto Serif SC", "Cormorant Garamond", "Songti SC", "STSong", serif;
  --sans: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(900px 600px at 12% -10%, rgba(232, 201, 138, 0.08), transparent 60%),
    radial-gradient(900px 700px at 95% 8%, rgba(217, 155, 155, 0.06), transparent 60%),
    linear-gradient(180deg, #0c0a10 0%, #100d15 50%, #0c0a10 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

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

strong {
  color: var(--text);
  font-weight: 600;
}

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

.hl {
  color: var(--gold);
  background: linear-gradient(180deg, transparent 62%, rgba(232, 201, 138, 0.18) 62%);
  padding: 0 2px;
}

.hl-r {
  color: var(--rose);
  background: linear-gradient(180deg, transparent 62%, rgba(217, 155, 155, 0.16) 62%);
  padding: 0 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 8px 14px;
  background: var(--gold);
  color: #1a1410;
  font-weight: 700;
  border-radius: 6px;
  z-index: 999;
}

.skip-link:focus {
  left: 8px;
}

::selection {
  background: var(--gold);
  color: #1a1410;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-2), #5a4424);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(12, 10, 16, 0.92) 0%, rgba(12, 10, 16, 0.55) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-mid), background var(--t-mid), padding var(--t-mid);
}

.navbar.scrolled {
  border-bottom-color: var(--line);
  background: rgba(12, 10, 16, 0.85);
  padding: 10px clamp(16px, 4vw, 40px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--gold), var(--bg) 70%);
  box-shadow:
    inset 0 0 0 1px rgba(232, 201, 138, 0.4),
    0 0 20px rgba(232, 201, 138, 0.18);
  position: relative;
}

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

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

.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.brand-slogan {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}

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

.nav-links a {
  position: relative;
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--text-soft);
  border-radius: 6px;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--t-mid), left var(--t-mid);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 24px);
  left: 12px;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid), top var(--t-mid);
}

.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }

.nav-toggle.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ========== Container ========== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

main {
  padding-top: 80px;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 110px) 0 clamp(40px, 8vw, 90px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 80% 20%, rgba(232, 201, 138, 0.12), transparent 70%),
    radial-gradient(500px 300px at 10% 80%, rgba(217, 155, 155, 0.08), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--t-mid) both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0 0 18px;
  background: linear-gradient(180deg, #f8efd9 0%, #e8c98a 50%, #a07f3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 0.9s var(--t-mid) 0.1s both;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
  display: inline-block;
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-sub-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--gold-2);
  letter-spacing: 2px;
  margin-bottom: 14px;
  animation: fadeUp 0.9s var(--t-mid) 0.2s both;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-soft);
  font-style: italic;
  margin-bottom: 28px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  animation: fadeUp 0.9s var(--t-mid) 0.3s both;
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  color: var(--text-soft);
  max-width: 880px;
  margin: 0 0 36px;
  animation: fadeUp 0.9s var(--t-mid) 0.4s both;
}

.hero-desc strong {
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 720px;
  animation: fadeUp 0.9s var(--t-mid) 0.5s both;
}

.stat {
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: border-color var(--t-mid), transform var(--t-mid), background var(--t-mid);
}

.stat:hover {
  border-color: var(--line);
  background: var(--surface-2);
  transform: translateY(-2px);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Section base ========== */
.section {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0;
}

.section.alt {
  background:
    linear-gradient(180deg, transparent, rgba(232, 201, 138, 0.025) 50%, transparent),
    linear-gradient(180deg, var(--bg), var(--bg-2) 50%, var(--bg));
}

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  padding: 4px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--text);
}

.section-title span {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.section-sub {
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin: 0;
}

/* ========== Plot ========== */
.plot {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.plot-poster {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  transition: transform var(--t-mid);
}

.plot-poster:hover {
  transform: translateY(-4px);
}

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

.plot-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 10, 16, 0.9) 100%);
  pointer-events: none;
}

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

.poster-meta h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--gold);
}

.poster-meta p {
  font-size: 12px;
  color: var(--text-soft);
  margin: 0;
  letter-spacing: 1.5px;
}

.plot-text h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
  color: var(--text);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.meta span {
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-soft);
}

.plot-text p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-soft);
}

.plot-text p strong {
  color: var(--text);
}

.quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(232, 201, 138, 0.06), transparent 60%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  position: relative;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quote::before {
  content: "\201C";
  position: absolute;
  left: 8px;
  top: -10px;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.4;
  font-family: var(--serif);
}

.quote small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-dim);
  font-style: normal;
  letter-spacing: 1px;
}

/* ========== Couples ========== */
.couples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.couple-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
  display: flex;
  flex-direction: column;
}

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

.cc-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.cc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

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

.cc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 10, 16, 0.8) 100%);
  pointer-events: none;
}

.cc-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 4px 12px;
  background: rgba(12, 10, 16, 0.75);
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  backdrop-filter: blur(4px);
}

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

.cc-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.cc-body h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}

.cc-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.cc-body p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0 0 14px;
  flex: 1;
}

.cc-body p strong {
  color: var(--text);
}

.cc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}

.cc-chips span {
  padding: 3px 10px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-soft);
}

.cc-chips.alt span {
  border-color: var(--line);
  color: var(--gold);
}

/* ========== Episodes ========== */
.episodes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.ep {
  position: relative;
  padding: 28px 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color var(--t-mid), transform var(--t-mid);
  overflow: hidden;
}

.ep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  transition: height var(--t-mid);
}

.ep:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}

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

.ep-num {
  display: inline-block;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.ep h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--text);
}

.ep p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0 0 14px;
}

.ep p strong {
  color: var(--text);
}

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

.ep-key span {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
}

.ep-key span::before {
  content: "·";
  margin-right: 6px;
  color: var(--text-dim);
}

.ep-key span:first-child::before {
  content: "";
  margin-right: 0;
}

/* ========== Manor ========== */
.manor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.manor-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.manor-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform var(--t-slow);
}

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

.manor-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  pointer-events: none;
}

.manor-text h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 18px;
  color: var(--text);
}

.manor-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-soft);
  margin: 0 0 18px;
}

.manor-text p strong {
  color: var(--text);
}

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

.manor-rules li {
  position: relative;
  padding: 14px 16px 14px 50px;
  margin-bottom: 10px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.manor-rules li:hover {
  border-color: var(--line);
  background: var(--surface-2);
}

.manor-rules li strong {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 2px 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1410;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 1px;
}

/* ========== Theme ========== */
.theme {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.theme-card {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color var(--t-mid), transform var(--t-mid);
  overflow: hidden;
}

.theme-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232, 201, 138, 0.08), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-mid);
}

.theme-card:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}

.theme-card:hover::after {
  opacity: 1;
}

.t-no {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 10px;
}

.theme-card h5 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--text);
}

.theme-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0;
}

.theme-card p strong {
  color: var(--text);
}

/* ========== Gallery ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
}

.g {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
}

.g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-mid);
}

.g::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 10, 16, 0.85) 100%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity var(--t-mid);
}

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

.g:hover::after {
  opacity: 0.95;
}

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

.g-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 14px 16px;
  font-size: 12.5px;
  color: var(--text-soft);
  transform: translateY(8px);
  opacity: 0.85;
  transition: transform var(--t-mid), opacity var(--t-mid);
}

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

.g-num {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* ========== Reviews ========== */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.review {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-mid), transform var(--t-mid);
}

.review:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}

.rv-score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.rv-score span:last-child {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
}

.rv-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0 0 16px;
  flex: 1;
  position: relative;
  padding-top: 8px;
}

.rv-text::before {
  content: "\201C";
  position: absolute;
  left: -6px;
  top: -16px;
  font-size: 32px;
  color: var(--gold);
  opacity: 0.5;
  font-family: var(--serif);
}

.rv-from {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-soft);
}

.rv-from::before {
  content: "— ";
  color: var(--text-dim);
}

/* ========== KPI ========== */
.kpi {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(232, 201, 138, 0.05), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.kpi::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--gold), transparent 30%, transparent 70%, var(--gold));
  opacity: 0.15;
  pointer-events: none;
  border-radius: var(--radius);
}

.kpi-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.kpi-item .n {
  display: block;
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.kpi-item .l {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
}

/* ========== News ========== */
.news {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.news-item {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 16px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color var(--t-mid), transform var(--t-mid);
}

.news-item:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.n-date {
  grid-column: 1 / 2;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.n-content {
  grid-column: 1 / 2;
}

.n-tag {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1px;
  vertical-align: middle;
}

.n-tag.alt {
  border-color: rgba(217, 155, 155, 0.4);
  color: var(--rose);
}

.n-tag.win {
  border-color: rgba(143, 183, 143, 0.4);
  color: var(--win);
}

.n-content a {
  display: inline-block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 4px 0 6px;
  transition: color var(--t-fast);
}

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

.n-content {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-soft);
}

.n-thumb {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  align-self: start;
  position: relative;
  width: 110px;
  height: 100px;
}

.n-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.news-item:hover .n-thumb img {
  transform: scale(1.08);
}

/* ========== Watch guide / info ========== */
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.info-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--t-mid), transform var(--t-mid);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(232, 201, 138, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-mid);
}

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

.info-card:hover::before {
  opacity: 1;
}

.info-icon {
  font-size: 30px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 10px rgba(232, 201, 138, 0.3));
}

.info-card h5 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  position: relative;
}

.info-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0;
  position: relative;
}

/* ========== FAQ ========== */
.faq {
  max-width: 920px;
  margin: 0 auto;
}

.faq details {
  margin-bottom: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color var(--t-mid);
}

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

.faq summary {
  position: relative;
  padding: 18px 50px 18px 22px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
  transition: transform var(--t-mid), background var(--t-mid);
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--gold);
  color: #1a1410;
}

.faq summary:hover {
  color: var(--gold);
}

.faq-body {
  padding: 0 22px 22px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-soft);
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  margin-top: 4px;
}

.faq-body strong {
  color: var(--text);
}

/* ========== Footer ========== */
.footer {
  margin-top: 40px;
  padding: 60px 0 24px;
  background: linear-gradient(180deg, transparent, var(--bg-2));
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--gold);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-soft);
  margin: 0;
}

.footer-col h6 {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

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

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-soft);
  transition: color var(--t-fast), padding var(--t-fast);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--max);
  margin: 36px auto 0;
  padding: 18px var(--pad) 0;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.footer-bottom p {
  margin: 4px 0;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.domain {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--serif);
}

.footer-disclaimer {
  font-size: 11px !important;
  opacity: 0.7;
}

/* ========== To Top ========== */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1410;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(232, 201, 138, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--t-mid), transform var(--t-mid), visibility var(--t-mid);
  z-index: 90;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -10px rgba(232, 201, 138, 0.7);
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .plot {
    grid-template-columns: 1fr;
  }
  .plot-poster {
    max-width: 360px;
    margin: 0 auto;
  }
  .manor {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kpi {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(12, 10, 16, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-soft);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t-mid), opacity var(--t-mid), visibility var(--t-mid);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-toggle {
    display: block;
  }
  .brand-slogan {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .g.tall, .g.wide, .g.square, .g.med, .g.small {
    grid-column: span 1;
    grid-row: span 1;
  }
  .g.tall, .g.wide {
    grid-column: span 2;
  }
  .kpi {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .news-item {
    grid-template-columns: 1fr;
  }
  .n-thumb {
    grid-column: 1 / 2;
    grid-row: auto;
    width: 100%;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 48px;
  }
  .section {
    padding: 50px 0;
  }
  .couple-card .cc-body,
  .ep,
  .theme-card,
  .info-card,
  .review {
    padding: 18px;
  }
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .g.tall, .g.wide, .g.square, .g.med, .g.small {
    grid-column: span 1;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .kpi {
    grid-template-columns: 1fr 1fr;
  }
}