@charset "UTF-8";

:root {
    --bg: #08070a;
    --bg-1: #0d0a0e;
    --bg-2: #14101a;
    --panel: rgba(20, 16, 26, 0.72);
    --panel-solid: #15101c;
    --line: rgba(212, 175, 116, 0.16);
    --line-2: rgba(255, 255, 255, 0.08);
    --text: #e8e3dc;
    --text-2: #aea69a;
    --text-3: #7a7368;
    --gold: #d4af74;
    --gold-2: #e8c98a;
    --rose: #d36262;
    --rose-2: #ff8a8a;
    --accent: #c9876a;
    --shadow-1: 0 2px 24px rgba(0, 0, 0, 0.5);
    --shadow-2: 0 10px 60px rgba(0, 0, 0, 0.55);
    --shadow-gold: 0 10px 40px rgba(212, 175, 116, 0.18);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    --font-serif: "Noto Serif SC", "Songti SC", "STSong", serif;
    --max-w: 1200px;
    --pad-x: clamp(16px, 4vw, 40px);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(212, 175, 116, 0.06), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(211, 98, 98, 0.05), transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
    background-attachment: fixed;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

::selection {
    background: var(--gold);
    color: var(--bg);
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-1);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--rose));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-2);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--pad-x);
    background: linear-gradient(180deg, rgba(8, 7, 10, 0.96) 0%, rgba(8, 7, 10, 0.7) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: padding .3s ease, background .3s ease;
}

.navbar.scrolled {
    padding: 10px var(--pad-x);
    background: rgba(8, 7, 10, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, var(--gold-2), var(--rose) 60%, var(--bg) 100%);
    box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--gold), inset 0 0 12px rgba(0, 0, 0, 0.5);
    position: relative;
}

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

.brand-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--text);
}

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

.brand-slogan {
    display: block;
    font-size: 0.65rem;
    letter-spacing: .3em;
    color: var(--text-3);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 22px;
    font-size: 0.85rem;
}

.nav-links a {
    color: var(--text-2);
    padding: 6px 2px;
    position: relative;
    font-weight: 500;
    transition: color .25s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all .3s;
    transform: translateX(-50%);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text);
    font-size: 1.4rem;
}

.hero {
    position: relative;
    min-height: 92vh;
    padding: 140px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(8, 7, 10, 0.65) 0%, rgba(8, 7, 10, 0.85) 60%, var(--bg) 100%),
        url("../image/poster.jpg") center/cover no-repeat;
    background-attachment: scroll;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 116, 0.18), transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(211, 98, 98, 0.16), transparent 55%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: rgba(212, 175, 116, 0.08);
    color: var(--gold-2);
    font-size: 0.78rem;
    letter-spacing: .18em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose-2);
    box-shadow: 0 0 8px var(--rose-2);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    background: linear-gradient(120deg, var(--text) 30%, var(--gold-2) 60%, var(--rose-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 40px rgba(212, 175, 116, 0.2);
}

.hero-sub-en {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-3);
    letter-spacing: .15em;
    margin-bottom: 22px;
    font-size: 0.95rem;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    color: var(--gold-2);
    letter-spacing: 0.05em;
    padding-left: 14px;
    border-left: 3px solid var(--gold);
    margin-bottom: 30px;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    color: var(--text-2);
    line-height: 1.95;
    max-width: 760px;
    margin-bottom: 40px;
}

.hero-desc .hl {
    color: var(--gold-2);
    font-weight: 600;
    background: linear-gradient(180deg, transparent 65%, rgba(212, 175, 116, 0.18) 65%);
    padding: 0 3px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 720px;
}

.stat {
    padding: 16px 14px;
    background: rgba(20, 16, 26, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: transform .35s ease, border-color .35s ease;
}

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

.stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    color: var(--gold-2);
    line-height: 1.1;
    margin-bottom: 4px;
    font-weight: 700;
}

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

.section {
    padding: clamp(60px, 9vw, 110px) 0;
    position: relative;
}

.section.alt {
    background: linear-gradient(180deg, transparent, rgba(20, 16, 26, 0.4), transparent);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: .35em;
    color: var(--gold);
    margin-bottom: 14px;
    padding: 4px 12px;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 4.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-title span {
    background: linear-gradient(120deg, var(--gold-2), var(--rose-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 4px;
}

.section-sub {
    color: var(--text-3);
    font-size: 0.95rem;
    letter-spacing: .08em;
}

.plot {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 50px;
    align-items: start;
}

.plot-poster {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    aspect-ratio: 4/5;
    transform: rotate(-1deg);
    transition: transform .4s ease;
}

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

.plot-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.plot-poster:hover img {
    transform: scale(1.05);
}

.poster-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 22px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: #fff;
}

.poster-meta h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.poster-meta p {
    font-size: 0.82rem;
    color: var(--gold-2);
    letter-spacing: .08em;
}

.plot-text h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    margin-bottom: 18px;
    line-height: 1.3;
}

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

.meta span {
    font-size: 0.78rem;
    padding: 4px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-2);
    background: rgba(20, 16, 26, 0.5);
}

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

.plot-text .hl {
    color: var(--gold-2);
    font-weight: 600;
}

.plot-text .hl-r {
    color: var(--rose-2);
    font-weight: 600;
}

.quote {
    margin: 24px 0 0;
    padding: 22px 26px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 116, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold-2);
    line-height: 1.7;
    font-size: 1.02rem;
}

.couples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.couple-card {
    background: var(--panel);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}

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

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

.cc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

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

.cc-num {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: rgba(8, 7, 10, 0.85);
    border: 1px solid var(--gold);
    color: var(--gold-2);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: .15em;
    font-weight: 600;
}

.cc-body {
    padding: 22px;
}

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

.cc-body h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.cc-tagline {
    font-size: 0.85rem;
    color: var(--text-3);
    margin-bottom: 14px;
    letter-spacing: .05em;
}

.cc-body p {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 16px;
}

.cc-body p .hl {
    color: var(--gold-2);
    font-weight: 600;
}

.cc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cc-chips span {
    font-size: 0.72rem;
    padding: 4px 10px;
    border: 1px solid var(--line-2);
    border-radius: 6px;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.03);
    transition: all .3s;
}

.cc-chips.alt span {
    border-color: rgba(211, 98, 98, 0.3);
    color: var(--rose-2);
    background: rgba(211, 98, 98, 0.06);
}

.couple-card:hover .cc-chips span {
    border-color: var(--gold);
    color: var(--gold-2);
}

.episodes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.ep {
    position: relative;
    padding: 32px 26px 26px;
    background: linear-gradient(160deg, rgba(20, 16, 26, 0.7), rgba(8, 7, 10, 0.4));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .4s;
}

.ep::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s;
}

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

.ep:hover::before {
    transform: scaleX(1);
}

.ep-num {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.78rem;
    color: var(--gold-2);
    letter-spacing: .25em;
    padding: 4px 10px;
    border: 1px solid var(--gold);
    border-radius: 6px;
    margin-bottom: 16px;
}

.ep h4 {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.ep p {
    color: var(--text-2);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.ep p .hl {
    color: var(--gold-2);
    font-weight: 600;
}

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

.ep-key span {
    font-size: 0.72rem;
    padding: 3px 9px;
    border-radius: 4px;
    background: rgba(212, 175, 116, 0.08);
    color: var(--gold-2);
}

.manor {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
}

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

.manor-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 7, 10, 0.4), transparent 50%);
    pointer-events: none;
}

.manor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.manor-text h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    line-height: 1.35;
    margin-bottom: 18px;
}

.manor-text h3 span {
    color: var(--gold-2);
    background: linear-gradient(120deg, var(--gold-2), var(--rose-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manor-text p {
    color: var(--text-2);
    line-height: 1.95;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

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

.manor-rules li {
    position: relative;
    padding: 14px 0 14px 26px;
    border-top: 1px solid var(--line-2);
    color: var(--text-2);
    line-height: 1.8;
    font-size: 0.94rem;
}

.manor-rules li:last-child {
    border-bottom: 1px solid var(--line-2);
}

.manor-rules li strong {
    color: var(--gold-2);
    margin-right: 8px;
    font-weight: 600;
}

.manor-rules li::before {
    content: "▸";
    position: absolute;
    left: 4px;
    top: 14px;
    color: var(--rose-2);
}

.theme {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.theme-card {
    position: relative;
    padding: 30px 26px 26px;
    background: var(--panel);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .4s, border-color .4s;
    overflow: hidden;
}

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

.t-no {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(120deg, var(--gold), var(--rose-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    opacity: 0.7;
}

.theme-card h5 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
}

.g {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-2);
    border: 1px solid var(--line);
}

.g img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease, filter .6s ease;
    filter: saturate(0.85);
}

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

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

.g-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 16px 12px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent);
    color: #fff;
    font-size: 0.86rem;
    transform: translateY(8px);
    opacity: 0.95;
    transition: transform .35s ease;
}

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

.g-num {
    display: inline-block;
    font-family: var(--font-serif);
    color: var(--gold-2);
    margin-right: 8px;
    letter-spacing: .12em;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 2px 8px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}

.review {
    padding: 28px 26px;
    background: linear-gradient(160deg, rgba(20, 16, 26, 0.7), rgba(8, 7, 10, 0.5));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .35s, border-color .35s;
    position: relative;
}

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

.review::before {
    content: """;
    position: absolute;
    top: 6px;
    right: 22px;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

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

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

.rv-score::after {
    content: attr(data-score);
    display: none;
}

.rv-score {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-2);
}

.rv-text {
    color: var(--text-2);
    font-size: 0.96rem;
    line-height: 1.9;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.rv-from {
    font-size: 0.8rem;
    color: var(--text-3);
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    letter-spacing: .08em;
}

.kpi {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding: 36px 28px;
    background: linear-gradient(120deg, rgba(212, 175, 116, 0.08), rgba(211, 98, 98, 0.06));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
}

.kpi-item {
    text-align: center;
    padding: 10px 4px;
    border-right: 1px solid var(--line);
}

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

.kpi-item .n {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(120deg, var(--gold-2), var(--rose-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 6px;
}

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

.news {
    display: grid;
    gap: 16px;
}

.news-item {
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    gap: 22px;
    padding: 20px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    align-items: center;
    transition: all .35s;
}

.news-item:hover {
    border-color: var(--gold);
    background: rgba(20, 16, 26, 0.95);
    transform: translateX(4px);
}

.n-date {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--gold-2);
    text-align: center;
    padding: 10px 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(212, 175, 116, 0.04);
    line-height: 1.3;
    font-weight: 600;
}

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

.n-content a {
    color: var(--text);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    transition: color .3s;
}

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

.n-tag {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    border: 1px solid var(--gold);
    color: var(--gold-2);
    border-radius: 4px;
    margin-right: 8px;
    letter-spacing: .15em;
    vertical-align: 1px;
}

.n-tag.alt {
    border-color: var(--rose);
    color: var(--rose-2);
}

.n-tag.win {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 135, 106, 0.08);
}

.n-thumb {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--line);
}

.n-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

.info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-card {
    text-align: center;
    padding: 30px 22px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .35s, border-color .35s;
}

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

.info-icon {
    font-size: 2.6rem;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 14px rgba(212, 175, 116, 0.3));
}

.info-card h5 {
    font-family: var(--font-serif);
    font-size: 1.12rem;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.faq {
    max-width: 880px;
    margin: 0 auto;
}

.faq details {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .3s;
}

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

.faq details[open] {
    border-color: var(--gold);
    background: rgba(20, 16, 26, 0.92);
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 26px;
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    transition: color .25s;
    user-select: none;
}

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

.faq summary::after {
    content: "+";
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform .3s;
    line-height: 1;
}

.faq details[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

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

.faq-body {
    padding: 0 26px 22px;
    color: var(--text-2);
    font-size: 0.96rem;
    line-height: 1.95;
}

.footer {
    margin-top: 60px;
    padding: 70px 0 30px;
    background: linear-gradient(180deg, transparent, rgba(8, 7, 10, 0.6));
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 14px;
    background: linear-gradient(120deg, var(--gold-2), var(--rose-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.85;
}

.footer-col h6 {
    font-size: 0.88rem;
    color: var(--gold-2);
    margin-bottom: 16px;
    letter-spacing: .15em;
    font-weight: 600;
}

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

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

.footer-col a {
    font-size: 0.86rem;
    color: var(--text-2);
    transition: color .3s, padding-left .3s;
    display: inline-block;
}

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

.footer-col a::before {
    content: "› ";
    color: var(--rose);
    margin-right: 2px;
    opacity: 0;
    transition: opacity .3s;
}

.footer-col a:hover::before {
    opacity: 1;
}

.footer-bottom {
    padding-top: 26px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--text-3);
    font-size: 0.82rem;
}

.footer-bottom p {
    line-height: 1.8;
}

.domain {
    font-family: var(--font-serif);
    color: var(--gold-2);
    font-weight: 700;
    letter-spacing: .04em;
}

.to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(8, 7, 10, 0.9);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .35s;
    z-index: 80;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-gold);
}

.to-top.show {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-4px);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

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

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

    .plot-poster {
        max-width: 360px;
        margin: 0 auto;
    }

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

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

    .g.wide,
    .g.med,
    .g.square {
        grid-column: span 2;
    }

    .g.small {
        grid-column: span 1;
    }

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

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

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

    .news-item {
        grid-template-columns: 90px 1fr;
        gap: 14px;
    }

    .n-thumb {
        display: none;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(8, 7, 10, 0.98);
        padding: 10px 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 14px var(--pad-x);
        border-bottom: 1px solid var(--line-2);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        min-height: 80vh;
        padding: 110px 0 60px;
    }

    .hero-stats {
        gap: 10px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

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

    .g {
        aspect-ratio: 4/3;
    }

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

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

    .news-item {
        grid-template-columns: 1fr;
    }

    .n-date {
        justify-self: start;
        width: max-content;
    }

    .section {
        padding: 60px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
