:root { --ink: #2b1d27; --muted: #796b73; --pink: #e85f8f; --deep: #6b2855; --cream: #fff8f4; --line: #f0e4e7; --shadow: 0 14px 36px rgba(82, 34, 60, .10); }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fffdfc; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; object-fit: cover; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; z-index: 30; top: 0; border-bottom: 1px solid rgba(240, 228, 231, .9); background: rgba(255, 253, 252, .94); backdrop-filter: blur(12px); }
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; font-weight: 800; font-size: 20px; letter-spacing: .02em; }
.brand span span { color: var(--pink); }
.brand-mark { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 12px 12px 12px 4px; color: white; background: linear-gradient(135deg, var(--pink), var(--deep)); box-shadow: 0 7px 15px rgba(232, 95, 143, .24); font-size: 17px; }
.site-nav { display: flex; flex: 1; justify-content: flex-end; gap: 6px; }
.nav-link { padding: 8px 9px; border-radius: 9px; color: #604d58; font-size: 14px; white-space: nowrap; }
.nav-link:hover { color: var(--pink); background: #fff1f5; }
.nav-link span { margin-right: 3px; color: var(--pink); }
.menu-toggle { display: none; margin-left: auto; padding: 8px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px; background: var(--deep); }
.hero { padding: 32px 0 0; }
.hero-frame { position: relative; overflow: hidden; height: 480px; border-radius: 26px; background: var(--deep); box-shadow: var(--shadow); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(43, 20, 41, .75), rgba(43, 20, 41, .12) 70%); }
.hero-slide img { height: 100%; }
.hero-copy { position: absolute; z-index: 1; top: 50%; left: clamp(28px, 6vw, 76px); max-width: 500px; transform: translateY(-50%); color: #fff; }
.hero-copy p, .eyebrow { margin: 0 0 9px; color: var(--pink); font-size: 13px; font-weight: 700; letter-spacing: .11em; }
.hero-copy p { color: #ffc6da; }
.hero-copy h2 { margin: 0 0 25px; font-size: clamp(30px, 4vw, 52px); line-height: 1.2; }
.button { display: inline-flex; align-items: center; gap: 9px; padding: 11px 19px; border: 1px solid var(--pink); border-radius: 999px; color: #fff; background: var(--pink); cursor: pointer; font-weight: 700; box-shadow: 0 8px 19px rgba(232, 95, 143, .24); }
.button-light { color: var(--deep); background: #fff; border-color: #fff; }
.hero-dots { position: absolute; z-index: 2; right: 30px; bottom: 26px; display: flex; gap: 9px; }
.dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .55); cursor: pointer; }
.dot.is-active { width: 26px; border-radius: 10px; background: #fff; }
.quick-links { padding: 24px 0; }
.quick-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.quick-grid a { display: flex; min-height: 78px; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line); border-radius: 16px; background: #fff; font-weight: 700; transition: transform .2s, box-shadow .2s; }
.quick-grid a:hover, .video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quick-icon { color: var(--pink); font-size: 20px; }
.content-section { padding: 46px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 20px; }
h1, h2, h3 { line-height: 1.35; }
.section-heading h2, .about-grid h2, .subscribe-box h2 { margin: 0; font-size: 28px; }
.text-link { color: var(--pink); font-weight: 700; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.card-grid.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.video-card { overflow: hidden; display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .2s, box-shadow .2s; }
.card-cover { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #f8e8ed; }
.card-cover img { height: 100%; transition: transform .35s; }
.video-card:hover .card-cover img { transform: scale(1.04); }
.duration { position: absolute; right: 10px; bottom: 10px; padding: 2px 8px; border-radius: 7px; color: #fff; background: rgba(28, 13, 24, .78); font-size: 12px; }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 16px; }
.card-body .eyebrow { margin-bottom: 6px; }
.card-body h3 { margin: 0 0 7px; font-size: 17px; }
.card-body h3 a:hover { color: var(--pink); }
.card-body p:last-child { margin: 0; color: var(--muted); font-size: 13px; }
.feature-band { padding: 62px 0; color: #fff; background: linear-gradient(120deg, #5c214e, #8b356a); }
.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(30px, 6vw, 82px); }
.feature-grid img { aspect-ratio: 4 / 3; border-radius: 22px; }
.feature-grid h2 { margin: 0 0 15px; font-size: 34px; }
.feature-grid p:not(.eyebrow) { margin: 0 0 22px; color: #f9dce9; }
.schedule-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 18px; }
.schedule-grid div { min-height: 105px; padding: 22px; border-right: 1px solid var(--line); background: #fff; }
.schedule-grid div:last-child { border-right: 0; }
.schedule-grid strong, .schedule-grid span { display: block; }
.schedule-grid strong { color: var(--pink); font-size: 14px; }
.schedule-grid span { margin-top: 7px; font-weight: 700; }
.about-section { padding: 58px 0; background: #fff3f6; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-grid p:last-child { margin: 0; color: #604d58; }
.subscribe-section { padding: 52px 0 62px; }
.subscribe-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(25px, 5vw, 54px); border-radius: 24px; color: #fff; background: linear-gradient(130deg, #ef739d, #7a2f62); }
.subscribe-box .eyebrow { color: #ffe0ec; }
.subscribe-box p:not(.eyebrow) { max-width: 600px; color: #ffe8f0; }
.qr-placeholder { display: grid; flex: 0 0 auto; width: 112px; height: 112px; place-content: center; border: 8px solid #fff; border-radius: 18px; color: var(--deep); background: repeating-conic-gradient(#fff 0 25%, #f3bfd1 0 50%) 50% / 18px 18px; text-align: center; }
.qr-placeholder span { font-size: 28px; font-weight: 900; }
.qr-placeholder small { font-weight: 900; }
.site-footer { padding: 48px 0 18px; color: #e6d6df; background: #291b28; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.footer-brand { color: #fff; }
.footer-grid p { color: #bbaab4; font-size: 14px; }
.footer-grid h3 { margin-top: 0; color: #fff; font-size: 15px; }
.footer-grid a:not(.brand) { display: block; margin: 6px 0; color: #d9bfcc; font-size: 14px; }
.copyright { margin-top: 28px; padding-top: 18px; border-top: 1px solid #543b50; color: #a88f9e; font-size: 12px; }
.page-banner { padding: 52px 0; background: linear-gradient(135deg, #fff0f5, #fcf7ee); }
.breadcrumb { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { margin: 0 8px; color: var(--pink); }
.page-banner h1 { margin: 0 0 9px; font-size: 39px; }
.page-banner p:last-child { max-width: 650px; margin-bottom: 0; color: var(--muted); }
.category-note { padding: 45px 0; background: #fff6f8; }
.category-note h2 { margin-top: 0; }
.category-note p { max-width: 820px; margin-bottom: 0; color: var(--muted); }
.article-page { padding: 43px 0 18px; }
.article-wrap { max-width: 860px; }
.article-header { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.article-header h1 { margin: 0 0 16px; font-size: clamp(30px, 5vw, 46px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--muted); font-size: 13px; }
.article-lead { margin: 30px 0; }
.article-lead img { aspect-ratio: 16 / 8; border-radius: 18px; }
figcaption { margin-top: 7px; color: var(--muted); font-size: 13px; }
.reading-note { margin: 28px 0; padding: 18px 21px; border-left: 4px solid var(--pink); border-radius: 0 12px 12px 0; background: #fff4f7; }
.reading-note p { margin: 5px 0 0; color: #66535e; font-size: 14px; }
.article-content { font-size: 16px; }
.article-content h2 { margin: 37px 0 13px; font-size: 25px; }
.article-content p { color: #4d3c46; }
.article-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 25px 0; }
.article-photo-grid figure { margin: 0; }
.article-photo-grid img { aspect-ratio: 4 / 3; border-radius: 14px; }
.chapter-end { margin: 36px 0 22px; padding: 20px; border: 1px dashed #dfb1c4; border-radius: 14px; color: var(--deep); background: #fffbfc; text-align: center; }
.chapter-end span { margin-right: 6px; color: var(--pink); }
.back-button { margin-bottom: 28px; }
.related-section { padding-top: 26px; }
@media (max-width: 880px) { .site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 12px 20px; flex-direction: column; background: #fffdfc; border-bottom: 1px solid var(--line); } .site-nav.is-open { display: flex; } .menu-toggle { display: block; } .quick-grid { grid-template-columns: repeat(3, 1fr); } .card-grid.four-up { grid-template-columns: repeat(2, minmax(0, 1fr)); } .feature-grid, .about-grid { grid-template-columns: 1fr; gap: 25px; } .feature-grid img { max-height: 300px; } }
@media (max-width: 620px) { .shell { width: min(100% - 28px, 1180px); } .header-inner { min-height: 64px; } .brand { font-size: 18px; } .hero { padding-top: 18px; } .hero-frame { height: 410px; border-radius: 18px; } .hero-copy { left: 25px; right: 25px; } .quick-grid { gap: 8px; } .quick-grid a { min-height: 62px; flex-direction: column; gap: 0; font-size: 12px; } .content-section { padding: 33px 0; } .section-heading h2, .about-grid h2, .subscribe-box h2 { font-size: 23px; } .card-grid, .card-grid.four-up { grid-template-columns: 1fr; gap: 14px; } .video-card { display: grid; grid-template-columns: 43% 57%; } .card-cover { height: 100%; } .card-body { padding: 13px; } .card-body h3 { font-size: 15px; } .feature-band, .about-section { padding: 40px 0; } .feature-grid h2 { font-size: 28px; } .schedule-grid { grid-template-columns: 1fr 1fr; } .schedule-grid div:nth-child(2) { border-right: 0; } .schedule-grid div { min-height: 85px; padding: 15px; border-bottom: 1px solid var(--line); } .schedule-grid div:nth-child(n+3) { border-bottom: 0; } .subscribe-box { align-items: flex-start; } .qr-placeholder { width: 82px; height: 82px; border-width: 5px; } .footer-grid { grid-template-columns: 1fr; gap: 22px; } .article-page { padding-top: 28px; } .article-photo-grid { grid-template-columns: 1fr; } .article-meta { display: grid; gap: 4px; } }