/* roulang page: index */
:root {
            --berry: #65224f;
            --berry-deep: #3d1734;
            --berry-soft: #f3e8f0;
            --coral: #e87552;
            --coral-soft: #fff0e9;
            --cream: #fffaf5;
            --paper: #ffffff;
            --mist: #f4f1f5;
            --ink: #271f28;
            --muted: #766c78;
            --line: #e6dce4;
            --success: #247a66;
            --warning: #a55c28;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-sm: 0 8px 24px rgba(68, 33, 59, .07);
            --shadow-md: 0 18px 44px rgba(68, 33, 59, .12);
            --container: 1200px;
            --section: 92px;
        }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            color: var(--ink);
            background: var(--cream);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            font-size: 16px;
            line-height: 1.8;
            overflow-x: hidden;
        }
        img { max-width: 100%; display: block; object-fit: cover; }
        a { color: inherit; text-decoration: none; }
        button, input, select, textarea { font: inherit; }
        button { cursor: pointer; }
        :focus-visible {
            outline: 3px solid rgba(232, 117, 82, .5);
            outline-offset: 3px;
        }
        .container { max-width: var(--container); padding-left: 20px; padding-right: 20px; }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 250, 245, .97);
            border-bottom: 1px solid var(--line);
            box-shadow: 0 3px 18px rgba(66, 37, 57, .05);
        }
        .topbar { min-height: 76px; display: flex; align-items: center; gap: 28px; }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            min-width: 265px;
            color: var(--berry-deep);
            font-weight: 800;
            letter-spacing: -.04em;
        }
        .brand-mark {
            width: 39px;
            height: 39px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            color: #fff;
            background: var(--berry);
            box-shadow: 5px 5px 0 var(--coral);
            font-size: 18px;
        }
        .brand-name { font-size: 18px; line-height: 1.2; }
        .brand-sub {
            display: block;
            margin-top: 3px;
            color: var(--muted);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .08em;
        }
        .main-nav { display: flex; align-items: center; gap: 7px; flex: 1; }
        .nav-link-custom {
            position: relative;
            min-height: 44px;
            padding: 8px 14px;
            display: inline-flex;
            align-items: center;
            color: var(--muted);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
            transition: .22s ease;
        }
        .nav-link-custom:hover, .nav-link-custom.active {
            color: var(--berry);
            background: var(--berry-soft);
        }
        .nav-link-custom.active::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 2px;
            height: 3px;
            border-radius: 3px;
            background: var(--coral);
        }
        .header-tools { display: flex; align-items: center; gap: 10px; }
        .trend-tag, .age-tag, .pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            min-height: 30px;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }
        .trend-tag { color: #9b4d2e; background: var(--coral-soft); }
        .age-tag { color: var(--berry); background: var(--berry-soft); }
        .search-toggle {
            width: 42px;
            height: 42px;
            border: 1px solid var(--line);
            border-radius: 11px;
            color: var(--berry);
            background: #fff;
            transition: .2s ease;
        }
        .search-toggle:hover { border-color: var(--berry); background: var(--berry-soft); }
        .search-panel {
            display: none;
            padding: 14px 0 17px;
            border-top: 1px solid var(--line);
        }
        .search-panel.show { display: block; }
        .search-form { display: flex; gap: 10px; max-width: 700px; margin-left: auto; }
        .field {
            width: 100%;
            min-height: 46px;
            padding: 9px 14px;
            border: 1px solid var(--line);
            border-radius: 11px;
            color: var(--ink);
            background: #fff;
        }
        .field:focus { border-color: var(--berry); box-shadow: 0 0 0 4px rgba(101,34,79,.1); outline: none; }
        .btn-main, .btn-light-custom, .btn-outline-custom {
            min-height: 46px;
            padding: 10px 19px;
            border-radius: 11px;
            border: 1px solid transparent;
            font-weight: 800;
            transition: .22s ease;
            white-space: nowrap;
        }
        .btn-main { color: #fff; background: var(--berry); box-shadow: 0 7px 16px rgba(101,34,79,.18); }
        .btn-main:hover { color: #fff; background: var(--berry-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
        .btn-main:active, .btn-light-custom:active { transform: translateY(0); }
        .btn-light-custom { color: var(--berry); background: #fff; border-color: var(--line); }
        .btn-light-custom:hover { color: var(--berry-deep); border-color: var(--berry); background: var(--berry-soft); transform: translateY(-2px); }
        .btn-outline-custom { color: var(--berry); background: transparent; border-color: var(--berry); }
        .btn-outline-custom:hover { color: #fff; background: var(--berry); transform: translateY(-2px); }

        .hero {
            padding: 68px 0 76px;
            background:
                radial-gradient(circle at 86% 12%, rgba(232,117,82,.15), transparent 28%),
                linear-gradient(135deg, #fffaf5 0%, #f7edf3 100%);
        }
        .hero-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 54px; align-items: center; }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--berry);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .08em;
        }
        .eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 3px; background: var(--coral); }
        h1, h2, h3, p { margin-top: 0; }
        h1 {
            max-width: 620px;
            margin: 16px 0 21px;
            color: var(--berry-deep);
            font-size: clamp(38px, 5vw, 68px);
            line-height: 1.15;
            letter-spacing: -.065em;
            font-weight: 900;
        }
        .hero-copy { max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.9; }
        .hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin: 28px 0 24px; }
        .hero-notice {
            display: flex;
            gap: 9px;
            align-items: flex-start;
            max-width: 500px;
            padding: 12px 14px;
            color: #6e5968;
            background: rgba(255,255,255,.7);
            border-left: 3px solid var(--coral);
            border-radius: 0 10px 10px 0;
            font-size: 13px;
            line-height: 1.65;
        }
        .hero-preview {
            position: relative;
            min-height: 475px;
            padding: 20px;
            transform: rotate(1.5deg);
            border: 1px solid rgba(101,34,79,.14);
            border-radius: 28px;
            background: var(--berry-deep);
            box-shadow: 18px 22px 0 rgba(232,117,82,.18), var(--shadow-md);
        }
        .preview-cover {
            height: 285px;
            overflow: hidden;
            position: relative;
            border-radius: 19px;
            background:
                linear-gradient(145deg, rgba(61,23,52,.05), rgba(61,23,52,.82)),
                linear-gradient(125deg, #d9a08c 0%, #8d5474 44%, #402346 100%);
        }
        .preview-cover::before, .preview-cover::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            filter: blur(1px);
        }
        .preview-cover::before { width: 230px; height: 230px; right: -38px; top: 20px; background: rgba(255,199,155,.45); }
        .preview-cover::after { width: 160px; height: 160px; left: 48px; bottom: -55px; background: rgba(53,19,52,.7); }
        .preview-label { position: absolute; left: 18px; top: 16px; color: #fff; font-size: 12px; font-weight: 800; }
        .preview-caption { position: absolute; left: 18px; right: 18px; bottom: 18px; color: #fff; }
        .preview-caption strong { display: block; font-size: 24px; line-height: 1.3; }
        .preview-caption span { color: #eadce5; font-size: 12px; }
        .preview-bottom { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; margin-top: 14px; }
        .preview-item { padding: 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.08); color: #fff; }
        .preview-item small { display: block; color: #ccbaca; font-size: 11px; }
        .preview-item b { display: block; margin-top: 4px; font-size: 17px; }
        .floating-note {
            position: absolute;
            right: -22px;
            top: 62px;
            width: 150px;
            padding: 13px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            box-shadow: var(--shadow-md);
            transform: rotate(5deg);
        }
        .floating-note b { display: block; color: var(--berry); font-size: 20px; }
        .floating-note span { color: var(--muted); font-size: 11px; }

        .section { padding: var(--section) 0; }
        .section-soft { background: var(--mist); }
        .section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; }
        .section-kicker { margin-bottom: 7px; color: var(--coral); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
        h2 { margin-bottom: 10px; color: var(--berry-deep); font-size: clamp(28px, 3vw, 42px); line-height: 1.25; letter-spacing: -.045em; font-weight: 900; }
        .section-intro { max-width: 620px; margin-bottom: 0; color: var(--muted); line-height: 1.85; }

        .metrics { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.15fr; gap: 14px; }
        .metric {
            min-height: 148px;
            padding: 23px;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background: #fff;
            box-shadow: var(--shadow-sm);
        }
        .metric.highlight { color: #fff; background: var(--berry); border-color: var(--berry); }
        .metric-number { margin: 4px 0 4px; color: var(--berry); font-size: 39px; font-weight: 900; line-height: 1; letter-spacing: -.05em; }
        .highlight .metric-number { color: #ffd0bc; }
        .metric-label { color: var(--ink); font-weight: 800; }
        .highlight .metric-label { color: #fff; }
        .metric small { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.5; }
        .highlight small { color: #e4cbdc; }

        .matrix { display: grid; grid-template-columns: 1.35fr .85fr .85fr; grid-template-rows: auto auto; gap: 16px; }
        .topic-card {
            position: relative;
            min-height: 190px;
            overflow: hidden;
            padding: 24px;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: #fff;
            transition: .25s ease;
        }
        .topic-card:hover { transform: translateY(-5px); border-color: var(--coral); box-shadow: var(--shadow-md); }
        .topic-card.primary { grid-row: span 2; min-height: 396px; color: #fff; background: var(--berry-deep); border-color: var(--berry-deep); }
        .topic-card.primary::after {
            content: "KR";
            position: absolute;
            right: 15px;
            bottom: -33px;
            color: rgba(255,255,255,.07);
            font-size: 170px;
            font-weight: 900;
            line-height: 1;
        }
        .topic-card:nth-child(2) { background: #fff3ed; }
        .topic-card:nth-child(3) { background: #f2eaf2; }
        .topic-card:nth-child(4) { grid-column: 2 / span 2; min-height: 170px; }
        .topic-card h3 { margin: 17px 0 8px; font-size: 23px; line-height: 1.35; font-weight: 900; }
        .topic-card p { max-width: 390px; margin-bottom: 17px; color: var(--muted); font-size: 14px; line-height: 1.7; }
        .primary p { color: #d9c5d4; }
        .topic-meta { display: flex; flex-wrap: wrap; gap: 7px; }
        .topic-link { position: absolute; right: 22px; bottom: 22px; color: var(--berry); font-size: 13px; font-weight: 800; }
        .primary .topic-link { color: #ffd0bc; }
        .mini-index { position: absolute; top: 23px; right: 23px; color: var(--coral); font-weight: 900; }

        .value-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: start; }
        .value-list { border-top: 1px solid var(--line); }
        .value-row { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
        .value-icon { width: 45px; height: 45px; display: grid; place-items: center; color: var(--berry); border-radius: 13px; background: var(--berry-soft); font-weight: 900; }
        .value-row h3 { margin: 0 0 4px; font-size: 18px; }
        .value-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
        .side-panel { padding: 30px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
        .side-panel h3 { margin-bottom: 17px; color: var(--berry-deep); font-size: 24px; }
        .filter-line { display: flex; flex-wrap: wrap; gap: 9px; margin: 19px 0; }
        .pill { color: var(--muted); background: var(--mist); border: 1px solid transparent; }
        .pill.active { color: var(--berry); background: var(--berry-soft); border-color: #dec4d8; }
        .side-note { padding: 14px; color: var(--muted); border-left: 3px solid var(--coral); background: var(--coral-soft); font-size: 13px; line-height: 1.7; }

        .compare { display: grid; grid-template-columns: 1fr 70px 1fr; align-items: stretch; gap: 17px; }
        .compare-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
        .compare-card.accent { background: var(--berry-soft); border-color: #dec4d8; }
        .compare-card h3 { margin-bottom: 9px; font-size: 22px; }
        .compare-card p { min-height: 53px; color: var(--muted); font-size: 14px; line-height: 1.7; }
        .compare-card ul { padding: 0; margin: 20px 0 0; list-style: none; }
        .compare-card li { padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--ink); font-size: 14px; }
        .compare-card li::before { content: "✓"; margin-right: 8px; color: var(--success); font-weight: 900; }
        .compare-arrow { align-self: center; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--coral); font-size: 22px; font-weight: 900; }

        .news-layout { display: grid; grid-template-columns: 1.4fr .6fr; gap: 28px; }
        .news-list { border-top: 1px solid var(--line); }
        .news-item { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
        .news-item h3 { margin: 0 0 4px; font-size: 17px; line-height: 1.5; }
        .news-item h3 a:hover { color: var(--berry); }
        .news-item p { margin: 0; color: var(--muted); font-size: 13px; }
        .news-date { flex: 0 0 auto; color: var(--muted); font-size: 12px; }
        .news-side { padding: 25px; border-radius: var(--radius-lg); color: #fff; background: var(--berry); }
        .news-side h3 { margin-bottom: 16px; font-size: 22px; }
        .news-side a { display: block; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: #fcecf4; font-size: 14px; }
        .news-side a:hover { color: #ffd0bc; }

        .faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; }
        .faq-note { color: var(--muted); font-size: 14px; }
        .accordion-item { margin-bottom: 10px; overflow: hidden; border: 1px solid var(--line) !important; border-radius: 13px !important; background: #fff; }
        .accordion-button { padding: 19px 21px; color: var(--ink); background: #fff; box-shadow: none !important; font-weight: 800; }
        .accordion-button:not(.collapsed) { color: var(--berry); background: var(--berry-soft); }
        .accordion-button::after { filter: hue-rotate(270deg) saturate(1.3); }
        .accordion-body { padding: 0 21px 20px; color: var(--muted); font-size: 14px; line-height: 1.8; background: var(--berry-soft); }

        .lead-section { padding: 74px 0; background: #f2e8ef; }
        .lead-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 45px; padding: 38px; border-radius: 26px; background: #fff; box-shadow: var(--shadow-md); }
        .lead-copy h2 { margin-top: 12px; }
        .lead-copy p { color: var(--muted); font-size: 15px; }
        .assist-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
        .assist-links a { color: var(--berry); font-size: 13px; font-weight: 800; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .form-group.full { grid-column: 1 / -1; }
        .form-label { display: block; margin-bottom: 6px; color: var(--ink); font-size: 13px; font-weight: 800; }
        textarea.field { min-height: 110px; resize: vertical; }
        .consent { display: flex; gap: 8px; align-items: flex-start; margin: 13px 0 18px; color: var(--muted); font-size: 12px; line-height: 1.6; }
        .consent input { margin-top: 5px; accent-color: var(--berry); }
        .form-message { display: none; margin-top: 12px; padding: 10px 12px; border-radius: 9px; color: var(--success); background: #e7f6f0; font-size: 13px; }

        .site-footer { padding: 56px 0 23px; color: #ddcbd8; background: var(--berry-deep); }
        .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .9fr; gap: 35px; padding-bottom: 39px; }
        .footer-brand { color: #fff; }
        .footer-brand .brand-mark { color: var(--berry-deep); background: #ffd0bc; box-shadow: 5px 5px 0 #a55c82; }
        .footer-copy { max-width: 310px; margin-top: 15px; color: #bfa9bb; font-size: 13px; line-height: 1.8; }
        .footer-title { margin: 4px 0 14px; color: #fff; font-size: 14px; font-weight: 800; }
        .footer-links a { display: block; margin: 7px 0; color: #cbb6c6; font-size: 13px; }
        .footer-links a:hover { color: #ffd0bc; }
        .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: #aa91a5; font-size: 12px; }
        .footer-bottom a { color: #d9bdcf; }
        .footer-bottom a:hover { color: #fff; }
        .to-top { position: fixed; right: 22px; bottom: 22px; width: 43px; height: 43px; display: grid; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--coral); box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: .2s; }
        .to-top.show { opacity: 1; pointer-events: auto; }

        @media (max-width: 992px) {
            .brand { min-width: auto; }
            .main-nav { gap: 0; }
            .nav-link-custom { padding: 8px 9px; font-size: 13px; }
            .header-tools .trend-tag { display: none; }
            .hero-grid, .value-layout, .lead-box { gap: 30px; }
            .metrics { grid-template-columns: 1fr 1fr; }
            .matrix { grid-template-columns: 1fr 1fr; }
            .topic-card.primary { grid-row: span 1; min-height: 250px; }
            .topic-card:nth-child(4) { grid-column: auto; }
            .news-layout { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
        }
        @media (max-width: 768px) {
            :root { --section: 68px; }
            .topbar { min-height: 68px; gap: 10px; }
            .brand-name { font-size: 15px; }
            .brand-sub { display: none; }
            .brand-mark { width: 34px; height: 34px; border-radius: 10px; }
            .main-nav {
                display: none;
                position: absolute;
                left: 0;
                right: 0;
                top: 68px;
                padding: 12px 20px 16px;
                flex-direction: column;
                align-items: stretch;
                background: var(--cream);
                border-bottom: 1px solid var(--line);
                box-shadow: var(--shadow-md);
            }
            .main-nav.open { display: flex; }
            .nav-link-custom { justify-content: space-between; }
            .mobile-menu { display: inline-grid !important; }
            .hero { padding: 47px 0 56px; }
            .hero-grid, .value-layout, .faq-layout, .lead-box { grid-template-columns: 1fr; }
            h1 { font-size: clamp(36px, 11vw, 56px); }
            .hero-preview { min-height: 390px; margin: 12px 10px 0 0; }
            .preview-cover { height: 225px; }
            .floating-note { right: -8px; top: 36px; }
            .section-head { display: block; }
            .section-head .btn-light-custom { margin-top: 17px; }
            .compare { grid-template-columns: 1fr; }
            .compare-arrow { margin: -2px auto; transform: rotate(90deg); }
            .lead-box { padding: 25px 20px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-bottom { display: block; }
            .footer-bottom span { display: block; margin-top: 8px; }
        }
        @media (max-width: 520px) {
            .container { padding-left: 17px; padding-right: 17px; }
            .header-tools .age-tag { display: none; }
            .search-form { flex-wrap: wrap; }
            .search-form .field { flex-basis: 100%; }
            .hero-actions .btn-main, .hero-actions .btn-light-custom { width: 100%; text-align: center; }
            .hero-preview { padding: 13px; min-height: 340px; }
            .preview-cover { height: 190px; }
            .preview-caption strong { font-size: 19px; }
            .metrics { gap: 10px; }
            .metric { min-height: 125px; padding: 16px; }
            .metric-number { font-size: 30px; }
            .matrix { grid-template-columns: 1fr; }
            .topic-card.primary { min-height: 260px; }
            .topic-card { min-height: 175px; }
            .form-grid { grid-template-columns: 1fr; }
            .form-group.full { grid-column: auto; }
            .footer-grid { grid-template-columns: 1fr; gap: 23px; }
            .footer-copy { max-width: none; }
        }
        .mobile-menu { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; color: var(--berry); background: #fff; }

/* roulang page: category1 */
:root {
            --berry:#65224f;
            --berry-deep:#3d1734;
            --berry-soft:#f3e8f0;
            --coral:#e87552;
            --coral-soft:#fff0e9;
            --cream:#fffaf5;
            --paper:#ffffff;
            --mist:#f4f1f5;
            --ink:#271f28;
            --muted:#766c78;
            --line:#e6dce4;
            --success:#247a66;
            --warning:#a55c28;
            --radius-sm:10px;
            --radius-md:16px;
            --radius-lg:24px;
            --shadow-sm:0 8px 24px rgba(68,33,59,.07);
            --shadow-md:0 18px 44px rgba(68,33,59,.12);
            --container:1200px;
            --section:76px;
        }
        html{scroll-behavior:smooth}
        *,*::before,*::after{box-sizing:border-box}
        body{
            margin:0;
            color:var(--ink);
            background:var(--cream);
            font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
            font-size:16px;
            line-height:1.8;
            overflow-x:hidden;
        }
        a{color:inherit;text-decoration:none}
        img{max-width:100%;display:block;object-fit:cover}
        button,input,select,textarea{font:inherit}
        button{cursor:pointer}
        :focus-visible{outline:3px solid rgba(232,117,82,.55);outline-offset:3px}
        .container{max-width:var(--container);padding-left:20px;padding-right:20px}
        .site-header{
            position:sticky;top:0;z-index:1000;
            background:rgba(255,250,245,.97);
            border-bottom:1px solid var(--line);
            box-shadow:0 3px 18px rgba(66,37,57,.05);
        }
        .topbar{min-height:76px;display:flex;align-items:center;gap:28px}
        .brand{display:inline-flex;align-items:center;gap:11px;min-width:265px;color:var(--berry-deep);font-weight:800;letter-spacing:-.04em}
        .brand-mark{
            width:39px;height:39px;display:grid;place-items:center;border-radius:13px;color:#fff;
            background:var(--berry);box-shadow:5px 5px 0 var(--coral);font-size:18px;
        }
        .brand-name{font-size:18px;line-height:1.2}
        .brand-sub{display:block;margin-top:3px;color:var(--muted);font-size:11px;font-weight:600;letter-spacing:.08em}
        .main-nav{display:flex;align-items:center;gap:7px;flex:1}
        .nav-link-custom{
            position:relative;min-height:44px;padding:8px 14px;display:inline-flex;align-items:center;
            color:var(--muted);border-radius:10px;font-size:14px;font-weight:700;transition:.22s ease;
        }
        .nav-link-custom:hover,.nav-link-custom.active{color:var(--berry);background:var(--berry-soft)}
        .nav-link-custom.active::after{content:"";position:absolute;left:14px;right:14px;bottom:2px;height:3px;border-radius:3px;background:var(--coral)}
        .header-tools{display:flex;align-items:center;gap:10px}
        .trend-tag,.age-tag,.pill{
            display:inline-flex;align-items:center;gap:5px;min-height:30px;padding:4px 10px;
            border-radius:999px;font-size:12px;font-weight:700;white-space:nowrap
        }
        .trend-tag{color:#9b4d2e;background:var(--coral-soft)}
        .age-tag{color:var(--berry);background:var(--berry-soft)}
        .search-toggle{
            width:42px;height:42px;border:1px solid var(--line);border-radius:11px;color:var(--berry);
            background:#fff;transition:.2s ease
        }
        .search-toggle:hover{border-color:var(--berry);background:var(--berry-soft)}
        .mobile-menu{display:none;border:1px solid var(--line);background:#fff;color:var(--berry);border-radius:11px;width:42px;height:42px}
        .search-panel{display:none;padding:14px 0 17px;border-top:1px solid var(--line)}
        .search-panel.show{display:block}
        .search-form{display:flex;gap:10px;max-width:700px;margin-left:auto}
        .form-control,.form-select{
            min-height:46px;border:1px solid var(--line);border-radius:11px;background:#fff;color:var(--ink);
        }
        .form-control:focus,.form-select:focus{border-color:var(--berry);box-shadow:0 0 0 4px rgba(101,34,79,.1)}
        .btn-main,.btn-light-custom,.btn-outline-custom{
            min-height:46px;padding:10px 19px;border-radius:11px;border:1px solid transparent;
            font-weight:800;transition:.22s ease;white-space:nowrap
        }
        .btn-main{color:#fff;background:var(--berry);box-shadow:0 7px 16px rgba(101,34,79,.18)}
        .btn-main:hover{color:#fff;background:var(--berry-deep);transform:translateY(-2px);box-shadow:var(--shadow-md)}
        .btn-light-custom{color:var(--berry);background:#fff;border-color:var(--line)}
        .btn-light-custom:hover{color:var(--berry-deep);border-color:var(--berry);background:var(--berry-soft);transform:translateY(-2px)}
        .btn-outline-custom{color:var(--berry);background:transparent;border-color:var(--berry)}
        .btn-outline-custom:hover{color:#fff;background:var(--berry);transform:translateY(-2px)}
        .page-hero{
            padding:58px 0 48px;
            background:linear-gradient(135deg,#fffaf5 0%,#f7edf3 100%);
            border-bottom:1px solid var(--line)
        }
        .breadcrumb-custom{display:flex;flex-wrap:wrap;gap:8px;align-items:center;color:var(--muted);font-size:13px;margin-bottom:23px}
        .breadcrumb-custom a{color:var(--berry);font-weight:700}
        .eyebrow{display:inline-flex;align-items:center;gap:8px;color:var(--berry);font-size:13px;font-weight:800;letter-spacing:.08em}
        .eyebrow::before{content:"";width:24px;height:3px;border-radius:3px;background:var(--coral)}
        h1,h2,h3{color:var(--berry-deep);font-weight:850;letter-spacing:-.045em}
        h1{font-size:clamp(32px,5vw,58px);line-height:1.15;margin:12px 0 16px}
        h2{font-size:clamp(25px,3vw,38px);line-height:1.25;margin:0 0 10px}
        h3{font-size:20px;line-height:1.4;margin:0 0 8px}
        .hero-summary{max-width:720px;color:var(--muted);font-size:17px;margin:0}
        .hero-meta{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px}
        .pill{color:var(--berry);background:#fff;border:1px solid var(--line)}
        .pill.coral{color:#9b4d2e;background:var(--coral-soft);border-color:#f2c7b8}
        .section{padding:var(--section) 0}
        .section-heading{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:28px}
        .section-heading p{max-width:520px;margin:0;color:var(--muted)}
        .filter-shell{
            margin-top:28px;padding:18px;border:1px solid var(--line);border-radius:var(--radius-md);
            background:#fff;box-shadow:var(--shadow-sm)
        }
        .filter-row{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr auto;gap:10px;align-items:center}
        .filter-label{font-size:12px;color:var(--muted);font-weight:800;display:block;margin:0 0 5px 2px}
        .filter-actions{display:flex;gap:8px;align-items:end;height:100%}
        .topic-strip{display:flex;gap:9px;overflow:auto;padding:2px 0 5px;margin-top:14px;scrollbar-width:thin}
        .topic-chip{flex:0 0 auto;padding:7px 13px;border-radius:999px;background:var(--mist);color:var(--muted);font-size:13px;font-weight:750;border:1px solid transparent;transition:.2s ease}
        .topic-chip:hover,.topic-chip.active{color:var(--berry);background:var(--berry-soft);border-color:#d9bfd1}
        .content-layout{display:grid;grid-template-columns:minmax(0,1fr) 290px;gap:28px;align-items:start}
        .feature-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:18px;margin-bottom:18px}
        .content-card{
            overflow:hidden;border:1px solid var(--line);border-radius:var(--radius-md);background:#fff;
            box-shadow:var(--shadow-sm);transition:.25s ease
        }
        .content-card:hover{transform:translateY(-4px);border-color:#cfaec4;box-shadow:var(--shadow-md)}
        .media-placeholder{
            position:relative;aspect-ratio:16/9;overflow:hidden;
            background:linear-gradient(135deg,var(--berry-deep),#8d456f 55%,var(--coral));
        }
        .media-placeholder::before,.media-placeholder::after{content:"";position:absolute;border:1px solid rgba(255,255,255,.2);border-radius:50%}
        .media-placeholder::before{width:180px;height:180px;right:-35px;top:-65px}
        .media-placeholder::after{width:115px;height:115px;left:18%;bottom:-62px}
        .media-label{position:absolute;left:14px;top:13px;z-index:1;padding:4px 9px;border-radius:7px;background:rgba(255,255,255,.9);color:var(--berry);font-size:11px;font-weight:850}
        .media-code{position:absolute;right:17px;bottom:11px;color:rgba(255,255,255,.72);font-size:25px;font-weight:900;letter-spacing:.1em}
        .card-body-custom{padding:18px}
        .card-topline{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:8px;color:var(--muted);font-size:12px}
        .card-tag{color:var(--berry);font-weight:800}
        .card-title{font-size:19px;margin-bottom:9px}
        .card-desc{color:var(--muted);font-size:14px;line-height:1.7;margin:0 0 15px}
        .card-footer-line{display:flex;align-items:center;justify-content:space-between;gap:12px;color:var(--muted);font-size:12px}
        .arrow-link{color:var(--berry);font-weight:850;white-space:nowrap}
        .arrow-link span{display:inline-block;transition:.2s ease}
        .content-card:hover .arrow-link span{transform:translateX(4px)}
        .small-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
        .small-grid .media-placeholder{aspect-ratio:1.48/1}
        .small-grid .card-body-custom{padding:15px}
        .small-grid .card-title{font-size:16px}
        .tag-panel{padding:22px;border-radius:var(--radius-md);background:var(--berry-deep);color:#fff;box-shadow:var(--shadow-md);position:sticky;top:104px}
        .tag-panel h3{color:#fff;font-size:21px}
        .tag-panel p{color:#d8c7d3;font-size:14px;line-height:1.7}
        .tag-cloud{display:flex;flex-wrap:wrap;gap:8px;margin:19px 0 23px}
        .tag-cloud a{padding:6px 9px;border:1px solid rgba(255,255,255,.2);border-radius:8px;color:#f7eaf2;font-size:12px;transition:.2s ease}
        .tag-cloud a:hover{background:var(--coral);border-color:var(--coral);color:#fff}
        .panel-note{padding-top:16px;border-top:1px solid rgba(255,255,255,.18);color:#d8c7d3;font-size:12px}
        .pagination-custom{display:flex;justify-content:center;gap:8px;margin-top:35px}
        .page-number{min-width:42px;height:42px;display:grid;place-items:center;border:1px solid var(--line);border-radius:10px;background:#fff;color:var(--muted);font-weight:800;transition:.2s ease}
        .page-number:hover,.page-number.active{background:var(--berry);border-color:var(--berry);color:#fff}
        .related-section{background:var(--mist);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
        .related-row{display:grid;grid-template-columns:1.3fr .85fr .85fr;gap:16px}
        .related-card{padding:23px;border:1px solid var(--line);border-radius:var(--radius-md);background:#fff;transition:.22s ease}
        .related-card:first-child{background:var(--coral-soft);border-color:#f1c7b8}
        .related-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm)}
        .related-card p{margin:0 0 13px;color:var(--muted);font-size:14px}
        .compliance{padding:22px;border-radius:var(--radius-md);background:#fff;border:1px solid var(--line)}
        .compliance-grid{display:grid;grid-template-columns:1fr 1fr;gap:25px;align-items:center}
        .compliance p{margin:0;color:var(--muted);font-size:14px}
        .notice-list{display:flex;flex-wrap:wrap;gap:9px;margin-top:15px}
        .notice-item{padding:7px 10px;border-radius:8px;background:var(--berry-soft);color:var(--berry);font-size:12px;font-weight:750}
        .site-footer{padding:58px 0 22px;background:var(--berry-deep);color:#f9eef5}
        .footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:34px}
        .footer-brand{color:#fff;min-width:0}
        .footer-copy{max-width:350px;color:#cdbaca;font-size:13px;line-height:1.8;margin:20px 0 0}
        .footer-links{display:flex;flex-direction:column;align-items:flex-start;gap:7px;color:#cdbaca;font-size:13px}
        .footer-links a:hover{color:#fff}
        .footer-title{color:#fff;font-weight:850;margin-bottom:7px}
        .footer-bottom{display:flex;justify-content:space-between;gap:20px;margin-top:42px;padding-top:18px;border-top:1px solid rgba(255,255,255,.15);color:#bfa9bb;font-size:12px}
        .footer-bottom a{color:#f6d9ca}
        .modal-content{border:0;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md)}
        .modal-header{background:var(--berry-deep);color:#fff;border:0;padding:22px 25px}
        .modal-title{color:#fff;font-size:22px}
        .modal-body{padding:25px;background:var(--cream);color:var(--muted)}
        .modal-footer{border:0;background:var(--cream);padding:0 25px 25px}
        @media(max-width:1100px){
            .topbar{gap:15px}.brand{min-width:230px}.header-tools .trend-tag{display:none}
            .filter-row{grid-template-columns:1.5fr 1fr 1fr;}.filter-actions{align-items:center}
        }
        @media(max-width:992px){
            :root{--section:60px}
            .content-layout{grid-template-columns:1fr}
            .tag-panel{position:static}
            .tag-cloud{margin-bottom:0}
            .footer-grid{grid-template-columns:1.3fr 1fr 1fr}
            .footer-grid>div:last-child{grid-column:2}
        }
        @media(max-width:768px){
            .topbar{min-height:68px}.brand{min-width:0;flex:1}.brand-name{font-size:15px}.brand-sub{font-size:10px}
            .main-nav{display:none;position:absolute;left:0;right:0;top:68px;padding:10px 20px 16px;background:var(--cream);border-bottom:1px solid var(--line);box-shadow:var(--shadow-sm);flex-direction:column;align-items:stretch}
            .main-nav.open{display:flex}.nav-link-custom{justify-content:flex-start}
            .header-tools{gap:7px}.age-tag{display:none}.mobile-menu{display:block}
            .page-hero{padding:42px 0 35px}.hero-summary{font-size:16px}
            .filter-row{grid-template-columns:1fr 1fr}.filter-row>div:first-child{grid-column:1/-1}.filter-actions{grid-column:1/-1}
            .filter-actions .btn{flex:1}
            .feature-grid,.related-row,.compliance-grid{grid-template-columns:1fr}
            .small-grid{grid-template-columns:repeat(2,1fr)}
            .footer-grid{grid-template-columns:1fr 1fr}.footer-grid>div:last-child{grid-column:auto}
            .footer-bottom{flex-direction:column;gap:8px;margin-top:28px}
        }
        @media(max-width:520px){
            .container{padding-left:16px;padding-right:16px}
            h1{font-size:34px}.section-heading{display:block}.section-heading p{margin-top:10px}
            .search-form{display:grid;grid-template-columns:1fr auto}.search-form .form-control{grid-column:1/-1}
            .filter-row{grid-template-columns:1fr}.filter-row>div{grid-column:auto!important}
            .small-grid{grid-template-columns:1fr}
            .pagination-custom{margin-top:25px}
            .footer-grid{grid-template-columns:1fr}.footer-grid>div:last-child{grid-column:auto}
            .brand-mark{width:35px;height:35px;font-size:15px}
        }
