/* roulang page: index */
:root{
      --ink:#2A2320;
      --ink-2:#3A312D;
      --text:#4C4642;
      --muted:#81766F;
      --muted-2:#A79A91;
      --terra:#B66A5D;
      --terra-dark:#9D554C;
      --apricot:#F2C9A7;
      --apricot-soft:#F7E3D1;
      --paper:#FAF6F0;
      --paper-2:#FFFDF9;
      --card:#FFFFFF;
      --line:#E9DED4;
      --green:#6F8B7A;
      --shadow:0 16px 45px rgba(42,35,32,.08);
      --shadow-lg:0 24px 70px rgba(42,35,32,.13);
      --radius-xl:24px;
      --radius-lg:20px;
      --radius-md:16px;
      --radius-sm:12px;
      --ease:all .28s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 6%, rgba(242,201,167,.38), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(182,106,93,.10), transparent 34%),
        var(--paper);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--terra)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(182,106,93,.24);color:var(--ink)}
    .container-xl{max-width:1220px}
    .section{padding:92px 0}
    .section-sm{padding:66px 0}
    .section-title{
      color:var(--ink);
      font-weight:800;
      letter-spacing:-.03em;
      line-height:1.2;
      margin-bottom:14px;
      font-size:clamp(28px,3vw,38px);
    }
    .section-lead{
      color:var(--muted);
      font-size:17px;
      max-width:760px;
      margin:0 auto 38px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      background:var(--apricot-soft);
      color:var(--terra-dark);
      font-weight:700;
      font-size:13px;
      letter-spacing:.02em;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      color:var(--paper-2);
      font-weight:900;
      background:
        linear-gradient(135deg,var(--ink),var(--terra)),
        var(--ink);
      box-shadow:0 10px 24px rgba(42,35,32,.14);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark:before,.brand-mark:after{
      content:"";position:absolute;left:7px;right:7px;height:3px;
      background:rgba(255,255,255,.28);border-radius:99px;
    }
    .brand-mark:before{top:7px}
    .brand-mark:after{bottom:7px}
    .site-header{
      position:sticky;top:0;z-index:1030;
      background:rgba(255,253,249,.96);
      border-bottom:1px solid var(--line);
      box-shadow:0 8px 30px rgba(42,35,32,.05);
      backdrop-filter:saturate(160%) blur(12px);
    }
    .navbar{padding:14px 0}
    .navbar-brand{
      display:flex;align-items:center;gap:11px;
      color:var(--ink)!important;
      font-weight:850;
      letter-spacing:-.02em;
      min-width:max-content;
    }
    .brand-text{line-height:1.1}
    .brand-text small{display:block;color:var(--muted);font-size:12px;font-weight:600;margin-top:3px}
    .navbar-toggler{
      border:1px solid var(--line);
      border-radius:14px;
      padding:9px 11px;
      color:var(--ink);
      box-shadow:none!important;
    }
    .nav-center{gap:6px}
    .nav-link{
      color:var(--ink-2)!important;
      font-size:15px;
      font-weight:700;
      padding:10px 13px!important;
      border-radius:999px;
      position:relative;
    }
    .nav-link:hover,.nav-link.active{
      color:var(--terra-dark)!important;
      background:rgba(242,201,167,.36);
    }
    .nav-link.active:after{
      content:"";position:absolute;left:18px;right:18px;bottom:5px;height:2px;
      background:var(--terra);border-radius:99px;
    }
    .nav-actions{display:flex;align-items:center;gap:12px;margin-left:14px}
    .search-wrap{
      width:246px;height:44px;
      display:flex;align-items:center;gap:8px;
      padding:0 15px;
      border-radius:999px;
      background:#F7F0E8;
      border:1px solid transparent;
      transition:var(--ease);
      color:var(--muted);
    }
    .search-wrap:focus-within{
      background:var(--paper-2);
      border-color:rgba(182,106,93,.42);
      box-shadow:0 0 0 .25rem rgba(182,106,93,.14);
    }
    .search-wrap input{
      border:0;outline:0;background:transparent;width:100%;
      color:var(--ink);font-size:14px;
    }
    .search-wrap input::placeholder{color:var(--muted)}
    .btn-primary-custom,.btn-outline-custom,.btn-soft{
      min-height:44px;
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      border-radius:999px;
      padding:12px 22px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      line-height:1.2;
      text-decoration:none;
      cursor:pointer;
    }
    .btn-primary-custom{
      background:var(--ink);color:#fff!important;
      box-shadow:0 14px 30px rgba(42,35,32,.16);
    }
    .btn-primary-custom:hover{
      background:var(--terra);transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(182,106,93,.22);
      color:#fff!important;
    }
    .btn-outline-custom{
      background:rgba(255,253,249,.78);
      color:var(--ink)!important;
      border-color:rgba(42,35,32,.16);
    }
    .btn-outline-custom:hover{
      background:var(--apricot-soft);
      border-color:rgba(182,106,93,.28);
      color:var(--terra-dark)!important;
      transform:translateY(-2px);
    }
    .btn-soft{
      background:var(--apricot-soft);
      color:var(--terra-dark)!important;
      padding:10px 18px;
    }
    .btn-soft:hover{background:#F1D4BE;color:var(--ink)!important;transform:translateY(-2px)}
    .btn-primary-custom:focus,.btn-outline-custom:focus,.btn-soft:focus,.form-control:focus,.form-select:focus{
      outline:0;
      box-shadow:0 0 0 .25rem rgba(182,106,93,.18)!important;
      border-color:rgba(182,106,93,.55)!important;
    }
    .hero{
      padding:76px 0 54px;
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";position:absolute;right:-80px;top:60px;width:330px;height:330px;
      background:radial-gradient(circle, rgba(242,201,167,.55), transparent 68%);
      border-radius:50%;pointer-events:none;
    }
    .hero:after{
      content:"";position:absolute;left:-70px;bottom:10px;width:260px;height:260px;
      background:radial-gradient(circle, rgba(182,106,93,.12), transparent 70%);
      border-radius:50%;pointer-events:none;
    }
    .hero h1{
      color:var(--ink);
      font-weight:900;
      line-height:1.12;
      letter-spacing:-.055em;
      font-size:clamp(34px,5vw,56px);
      margin:22px 0 20px;
    }
    .hero-sub{
      color:var(--text);
      font-size:18px;
      line-height:1.9;
      max-width:650px;
      margin-bottom:28px;
    }
    .hero-tags{display:flex;flex-wrap:wrap;gap:10px;margin:24px 0 0}
    .tag{
      display:inline-flex;align-items:center;gap:7px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,253,249,.86);
      border:1px solid rgba(42,35,32,.08);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .hero-actions{display:flex;gap:13px;flex-wrap:wrap;margin-bottom:30px}
    .stats-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      max-width:620px;
    }
    .stat-item{
      padding:16px 18px;
      background:rgba(255,253,249,.8);
      border:1px solid rgba(42,35,32,.08);
      border-radius:18px;
      box-shadow:0 12px 28px rgba(42,35,32,.05);
    }
    .stat-item strong{
      display:block;color:var(--ink);font-size:22px;line-height:1.1;font-weight:900;
    }
    .stat-item span{display:block;color:var(--muted);font-size:13px;margin-top:8px;font-weight:650}
    .cover-card{
      position:relative;
      border-radius:28px;
      background:var(--paper-2);
      border:1px solid rgba(42,35,32,.09);
      box-shadow:var(--shadow-lg);
      padding:18px;
      overflow:hidden;
      transform:rotate(1deg);
    }
    .cover-card:before{
      content:"";position:absolute;inset:0;
      background:
        linear-gradient(90deg, rgba(42,35,32,.04) 0 8px, transparent 8px 24px),
        radial-gradient(circle at 78% 12%, rgba(242,201,167,.46), transparent 28%);
      pointer-events:none;
    }
    .cover-inner{position:relative;border-radius:22px;border:1px solid var(--line);background:#fff;overflow:hidden}
    .cover-visual{
      min-height:245px;
      background:
        linear-gradient(135deg, rgba(42,35,32,.88), rgba(182,106,93,.74)),
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,.18) 18px 22px);
      position:relative;
      display:flex;align-items:flex-end;
      padding:24px;
      color:#fff;
    }
    .cover-visual:after{
      content:"影";
      position:absolute;right:28px;top:22px;
      width:96px;height:96px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.2);
      font-size:46px;font-weight:900;
    }
    .cover-visual h2{font-size:28px;line-height:1.2;font-weight:900;margin:0;max-width:300px}
    .cover-list{padding:20px 22px}
    .index-row{
      display:flex;align-items:center;justify-content:space-between;gap:14px;
      padding:13px 0;border-bottom:1px dashed var(--line);
      color:var(--text);font-weight:700;
    }
    .index-row:last-child{border-bottom:0}
    .index-row small{color:var(--muted);font-weight:650}
    .film-edge{
      display:grid;grid-template-columns:repeat(8,1fr);gap:6px;
      margin-top:16px;
    }
    .film-edge span{height:12px;border-radius:4px;background:rgba(42,35,32,.10)}
    .card-custom{
      background:var(--paper-2);
      border:1px solid rgba(42,35,32,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      transition:var(--ease);
      height:100%;
    }
    .card-custom:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:rgba(182,106,93,.18)}
    .icon-box{
      width:48px;height:48px;border-radius:16px;
      display:grid;place-items:center;
      background:var(--apricot-soft);
      color:var(--terra-dark);
      font-size:22px;
      transition:var(--ease);
      flex:0 0 auto;
    }
    .card-custom:hover .icon-box{background:var(--terra);color:#fff}
    .feature-big{
      padding:32px;
      min-height:100%;
      background:
        linear-gradient(135deg, rgba(255,253,249,.96), rgba(247,227,209,.62)),
        var(--paper-2);
      position:relative;
      overflow:hidden;
    }
    .feature-big:after{
      content:"";position:absolute;right:26px;bottom:26px;width:130px;height:130px;
      border:18px solid rgba(182,106,93,.08);border-radius:50%;
    }
    .feature-big h3,.feature-small h3,.mag-card h3,.plan-card h3{color:var(--ink);font-weight:850;letter-spacing:-.02em}
    .feature-big p,.feature-small p,.mag-card p,.plan-card p{color:var(--muted);margin-bottom:0}
    .feature-small{padding:24px}
    .category-entry{
      display:flex;align-items:flex-start;gap:16px;
      padding:24px;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(42,35,32,.08);
      transition:var(--ease);
      height:100%;
    }
    .category-entry:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(182,106,93,.18);color:inherit}
    .category-entry h3{font-size:20px;margin-bottom:8px;color:var(--ink);font-weight:850}
    .category-entry p{margin:0;color:var(--muted);font-size:15px}
    .cover-thumb{
      border-radius:20px;
      min-height:190px;
      background:
        linear-gradient(135deg, rgba(42,35,32,.82), rgba(182,106,93,.52)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.14) 0 6px, transparent 6px 16px);
      position:relative;
      overflow:hidden;
    }
    .cover-thumb.light{
      background:
        radial-gradient(circle at 20% 20%, rgba(242,201,167,.82), transparent 33%),
        linear-gradient(135deg, #FFF7EF, #EED6C3);
    }
    .cover-thumb.green{
      background:
        radial-gradient(circle at 80% 20%, rgba(111,139,122,.5), transparent 28%),
        linear-gradient(135deg, #FBF7EF, #DDE7DD);
    }
    .cover-thumb:before{
      content:"";position:absolute;inset:18px;border:1px solid rgba(255,255,255,.42);border-radius:16px;
    }
    .cover-thumb:after{
      content:"资料封面";
      position:absolute;left:28px;bottom:24px;
      color:rgba(255,255,255,.86);
      font-size:13px;font-weight:800;letter-spacing:.14em;
    }
    .cover-thumb.light:after,.cover-thumb.green:after{color:var(--terra-dark)}
    .mag-card{padding:16px}
    .mag-body{padding:18px 4px 4px}
    .badge-soft{
      display:inline-flex;align-items:center;gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:var(--apricot-soft);
      color:var(--terra-dark);
      font-weight:800;
      font-size:12px;
    }
    .read-link{
      display:inline-flex;align-items:center;gap:7px;
      margin-top:16px;
      color:var(--ink);
      font-weight:850;
    }
    .read-link i{transition:var(--ease)}
    .read-link:hover i{transform:translateX(4px)}
    .plans-wrap{
      background:rgba(255,253,249,.62);
      border:1px solid rgba(42,35,32,.08);
      border-radius:30px;
      padding:18px;
      box-shadow:0 16px 48px rgba(42,35,32,.05);
    }
    .plan-card{
      padding:30px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(42,35,32,.08);
      height:100%;
      transition:var(--ease);
      position:relative;
    }
    .plan-card.recommend{
      background:linear-gradient(180deg,#fff,var(--paper-2));
      border-color:rgba(182,106,93,.32);
      box-shadow:var(--shadow);
      transform:translateY(-10px);
    }
    .plan-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
    .plan-card.recommend:hover{transform:translateY(-14px)}
    .plan-badge{
      position:absolute;right:24px;top:22px;
      background:var(--ink);
      color:#fff;
      border-radius:999px;
      padding:5px 10px;
      font-size:12px;
      font-weight:850;
    }
    .check-list{list-style:none;padding:0;margin:22px 0 26px}
    .check-list li{
      display:flex;gap:10px;align-items:flex-start;
      padding:8px 0;color:var(--text);font-weight:650;
    }
    .check-list i{color:var(--green);margin-top:3px}
    .process{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      position:relative;
    }
    .step-card{
      background:#fff;border:1px solid rgba(42,35,32,.08);
      border-radius:20px;padding:22px;box-shadow:0 12px 30px rgba(42,35,32,.04);
    }
    .step-num{
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      background:var(--ink);color:#fff;
      font-weight:900;margin-bottom:14px;
    }
    .step-card h3{font-size:18px;color:var(--ink);font-weight:850}
    .step-card p{color:var(--muted);font-size:15px;margin:0}
    .faq-wrap .accordion-item{
      border:1px solid rgba(42,35,32,.08)!important;
      border-radius:18px!important;
      overflow:hidden;
      margin-bottom:12px;
      background:#fff;
      box-shadow:0 10px 24px rgba(42,35,32,.04);
    }
    .faq-wrap .accordion-button{
      background:#fff!important;
      color:var(--ink)!important;
      font-weight:850;
      box-shadow:none!important;
      padding:19px 22px;
    }
    .faq-wrap .accordion-button:not(.collapsed){color:var(--terra-dark)!important}
    .faq-wrap .accordion-button::after{
      filter:sepia(1) saturate(.8) hue-rotate(320deg);
    }
    .faq-wrap .accordion-body{
      color:var(--muted);
      padding:0 22px 22px;
      line-height:1.8;
    }
    .cta-section{
      padding:78px 0;
    }
    .cta-panel{
      background:
        radial-gradient(circle at 85% 20%, rgba(242,201,167,.28), transparent 34%),
        linear-gradient(135deg,var(--ink),#40322D);
      border-radius:32px;
      padding:42px;
      color:#fff;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow-lg);
    }
    .cta-panel:before{
      content:"";position:absolute;left:0;top:0;bottom:0;width:70px;
      background:repeating-linear-gradient(180deg, rgba(255,255,255,.18) 0 12px, transparent 12px 26px);
      opacity:.28;
    }
    .cta-panel h2{font-weight:900;letter-spacing:-.035em;font-size:clamp(28px,3.5vw,42px)}
    .cta-panel p{color:rgba(255,255,255,.74);font-size:17px}
    .contact-form{
      background:rgba(255,253,249,.08);
      border:1px solid rgba(255,255,255,.14);
      border-radius:24px;
      padding:22px;
      backdrop-filter:blur(8px);
    }
    .form-label{font-weight:750;color:inherit;font-size:14px;margin-bottom:7px}
    .form-control,.form-select{
      min-height:50px;
      border-radius:14px;
      border:1px solid rgba(42,35,32,.12);
      background:var(--paper-2);
      color:var(--ink);
      padding:12px 15px;
    }
    textarea.form-control{min-height:118px;resize:vertical}
    .site-footer{
      background:var(--ink);
      color:rgba(250,246,240,.78);
      padding:58px 0 26px;
      position:relative;
      overflow:hidden;
    }
    .site-footer:before{
      content:"";position:absolute;left:0;right:0;top:0;height:10px;
      background:repeating-linear-gradient(90deg, rgba(242,201,167,.5) 0 18px, transparent 18px 36px);
      opacity:.55;
    }
    .footer-logo{display:flex;align-items:center;gap:12px;color:#fff;font-weight:900;font-size:20px;margin-bottom:16px}
    .footer-logo .brand-mark{box-shadow:none}
    .footer-title{color:#fff;font-weight:850;margin-bottom:15px}
    .footer-links{list-style:none;padding:0;margin:0}
    .footer-links li{margin:9px 0}
    .footer-links a{color:rgba(250,246,240,.72)}
    .footer-links a:hover{color:var(--apricot)}
    .footer-note{
      border-top:1px solid rgba(255,255,255,.12);
      margin-top:34px;padding-top:20px;
      color:rgba(250,246,240,.55);
      font-size:14px;
      display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
    }
    .safe-tip{
      background:rgba(111,139,122,.12);
      border:1px solid rgba(111,139,122,.22);
      border-radius:20px;
      padding:20px 22px;
      color:#4E6658;
      font-weight:650;
    }
    @media (max-width:1199.98px){
      .search-wrap{width:210px}
      .process{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991.98px){
      .navbar-collapse{
        margin-top:14px;
        padding:16px;
        border:1px solid var(--line);
        border-radius:22px;
        background:var(--paper-2);
        box-shadow:var(--shadow);
      }
      .nav-actions{margin-left:0;margin-top:14px;display:grid;grid-template-columns:1fr;gap:10px}
      .search-wrap{width:100%}
      .hero{padding:54px 0 38px}
      .cover-card{margin-top:30px;transform:none}
      .plan-card.recommend{transform:none}
      .plan-card.recommend:hover{transform:translateY(-5px)}
      .section{padding:68px 0}
    }
    @media (max-width:767.98px){
      .stats-strip{grid-template-columns:1fr}
      .hero-actions .btn-primary-custom,.hero-actions .btn-outline-custom{width:100%}
      .section{padding:56px 0}
      .section-sm{padding:44px 0}
      .cta-panel{padding:32px 22px;border-radius:24px}
      .process{grid-template-columns:1fr}
      .cover-visual{min-height:210px}
      .cover-visual h2{font-size:24px}
      .plans-wrap{padding:10px;border-radius:24px}
      .footer-note{display:block}
    }
    @media (max-width:575.98px){
      .navbar-brand{font-size:15px}
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .hero h1{font-size:34px}
      .hero-sub{font-size:16px}
      .feature-big,.feature-small,.category-entry,.plan-card{padding:22px}
      .card-custom,.cover-card,.cta-panel{border-radius:20px}
      .tag{font-size:12px}
    }

/* roulang page: category1 */
:root{
      --ink:#2A2320;
      --ink-soft:#4C4642;
      --muted:#81766F;
      --clay:#B66A5D;
      --clay-dark:#9D554C;
      --apricot:#F2C9A7;
      --apricot-soft:#F7E3D1;
      --paper:#FAF6F0;
      --card:#FFFDF9;
      --white:#FFFFFF;
      --line:#E9DED4;
      --green:#6F8B7A;
      --shadow:0 16px 45px rgba(42,35,32,.08);
      --shadow-hover:0 24px 60px rgba(42,35,32,.13);
      --radius-xl:24px;
      --radius-lg:20px;
      --radius-md:16px;
      --radius-sm:12px;
      --font:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--ink-soft);
      background:
        radial-gradient(circle at 8% 10%, rgba(242,201,167,.28), transparent 28%),
        radial-gradient(circle at 90% 24%, rgba(182,106,93,.08), transparent 24%),
        var(--paper);
      font-size:16px;
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .25s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(242,201,167,.65);color:var(--ink)}
    .container-xl{max-width:1220px}
    .section{padding:92px 0}
    .section-sm{padding:68px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:var(--apricot-soft);
      color:var(--clay-dark);
      font-weight:700;
      font-size:14px;
      letter-spacing:.02em;
    }
    .section-title{
      color:var(--ink);
      font-size:34px;
      line-height:1.2;
      font-weight:800;
      letter-spacing:-.03em;
      margin:14px 0 14px;
    }
    .section-desc{
      max-width:720px;
      color:var(--muted);
      font-size:16px;
      margin:0;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(255,253,249,.97);
      border-bottom:1px solid rgba(42,35,32,.08);
      box-shadow:0 10px 30px rgba(42,35,32,.04);
      backdrop-filter:blur(10px);
    }
    .site-header .navbar{min-height:78px;padding:10px 0}
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      color:var(--ink);
      font-weight:800;
      padding:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:15px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:
        linear-gradient(135deg, var(--ink), #433630);
      color:#FFF6EC;
      font-weight:800;
      box-shadow:0 12px 24px rgba(42,35,32,.16);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      top:7px;
      bottom:7px;
      width:3px;
      border-radius:4px;
      background:rgba(255,255,255,.18);
    }
    .brand-mark:before{left:7px}
    .brand-mark:after{right:7px}
    .brand-text{
      display:flex;
      flex-direction:column;
      color:var(--ink);
      font-size:18px;
      line-height:1.15;
      letter-spacing:-.02em;
    }
    .brand-text small{
      margin-top:4px;
      color:var(--muted);
      font-size:12px;
      font-weight:600;
      letter-spacing:0;
    }
    .nav-center{gap:6px}
    .nav-center .nav-link{
      position:relative;
      color:var(--ink-soft);
      font-size:15px;
      font-weight:700;
      border-radius:999px;
      padding:10px 14px!important;
    }
    .nav-center .nav-link:hover,
    .nav-center .nav-link:focus{
      color:var(--clay-dark);
      background:rgba(242,201,167,.28);
    }
    .nav-center .nav-link.active{
      color:var(--clay-dark);
      background:var(--apricot-soft);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .search-wrap{
      width:238px;
      height:44px;
      display:flex;
      align-items:center;
      gap:9px;
      padding:0 15px;
      border-radius:999px;
      background:#F7F0E8;
      border:1px solid transparent;
      color:var(--muted);
      transition:all .25s ease;
      cursor:text;
    }
    .search-wrap input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--ink);
      font-size:14px;
    }
    .search-wrap:focus-within{
      background:var(--white);
      border-color:rgba(182,106,93,.45);
      box-shadow:0 0 0 .25rem rgba(182,106,93,.12);
    }
    .navbar-toggler{
      border:0;
      color:var(--ink);
      box-shadow:none!important;
      padding:6px 8px;
      border-radius:12px;
      background:var(--apricot-soft);
    }

    .btn-primary-custom,.btn-outline-custom,.btn-soft{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 22px;
      font-weight:800;
      font-size:15px;
      line-height:1.2;
      border:1px solid transparent;
      transition:all .25s ease;
      white-space:nowrap;
    }
    .btn-primary-custom{
      color:#fff;
      background:var(--ink);
      box-shadow:0 12px 24px rgba(42,35,32,.13);
    }
    .btn-primary-custom:hover{
      color:#fff;
      background:var(--clay);
      transform:translateY(-2px);
      box-shadow:0 18px 35px rgba(182,106,93,.22);
    }
    .btn-outline-custom{
      color:var(--ink);
      background:rgba(255,253,249,.75);
      border-color:rgba(42,35,32,.14);
    }
    .btn-outline-custom:hover{
      color:var(--clay-dark);
      background:var(--apricot-soft);
      border-color:rgba(182,106,93,.28);
      transform:translateY(-2px);
    }
    .btn-soft{
      color:var(--clay-dark);
      background:var(--apricot-soft);
    }
    .btn-soft:hover{
      color:#fff;
      background:var(--clay);
      transform:translateY(-2px);
    }
    .btn-primary-custom:focus,.btn-outline-custom:focus,.btn-soft:focus,
    .form-control:focus,.form-select:focus{
      box-shadow:0 0 0 .25rem rgba(182,106,93,.18)!important;
      border-color:rgba(182,106,93,.55)!important;
      outline:0;
    }

    .page-hero{
      position:relative;
      overflow:hidden;
      padding:76px 0 54px;
      background:
        linear-gradient(135deg, rgba(255,253,249,.92), rgba(250,246,240,.96)),
        radial-gradient(circle at 80% 18%, rgba(242,201,167,.5), transparent 32%);
      border-bottom:1px solid rgba(42,35,32,.08);
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(90deg, rgba(42,35,32,.045) 1px, transparent 1px),
        linear-gradient(rgba(42,35,32,.035) 1px, transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
      pointer-events:none;
    }
    .breadcrumb-custom{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:14px;
      font-weight:650;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .breadcrumb-custom a:hover{color:var(--clay-dark)}
    .page-hero h1{
      position:relative;
      z-index:1;
      color:var(--ink);
      font-size:48px;
      line-height:1.15;
      font-weight:850;
      letter-spacing:-.045em;
      margin:0 0 18px;
      max-width:780px;
    }
    .page-hero .lead{
      position:relative;
      z-index:1;
      color:var(--ink-soft);
      max-width:760px;
      font-size:18px;
      line-height:1.8;
      margin:0 0 24px;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .tag-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 13px;
      border-radius:999px;
      background:rgba(255,253,249,.88);
      border:1px solid rgba(42,35,32,.08);
      color:var(--clay-dark);
      font-size:14px;
      font-weight:750;
      box-shadow:0 8px 20px rgba(42,35,32,.04);
    }
    .hero-index-card{
      position:relative;
      z-index:1;
      background:var(--card);
      border:1px solid rgba(42,35,32,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:24px;
      overflow:hidden;
    }
    .hero-index-card:before{
      content:"";
      position:absolute;
      right:-50px;
      top:-50px;
      width:160px;
      height:160px;
      border-radius:50%;
      background:rgba(242,201,167,.42);
    }
    .mini-kpi{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:18px;
      position:relative;
    }
    .mini-kpi div{
      padding:14px 12px;
      border-radius:16px;
      background:#FAF6F0;
      border:1px solid rgba(42,35,32,.06);
    }
    .mini-kpi strong{
      display:block;
      color:var(--ink);
      font-size:22px;
      line-height:1;
      margin-bottom:6px;
    }
    .mini-kpi span{color:var(--muted);font-size:13px;font-weight:650}

    .content-card{
      background:var(--card);
      border:1px solid rgba(42,35,32,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:28px;
      transition:all .25s ease;
    }
    .content-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
    }
    .card-title-custom{
      color:var(--ink);
      font-weight:800;
      line-height:1.28;
      margin-bottom:12px;
    }
    .icon-chip{
      width:48px;
      height:48px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:var(--clay-dark);
      background:var(--apricot-soft);
      font-size:22px;
      margin-bottom:16px;
      transition:all .25s ease;
    }
    .content-card:hover .icon-chip{
      background:var(--clay);
      color:#fff;
    }
    .profile-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .profile-field{
      padding:16px;
      border-radius:16px;
      background:#FAF6F0;
      border:1px solid rgba(42,35,32,.06);
    }
    .profile-field span{
      display:block;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      margin-bottom:5px;
    }
    .profile-field strong{
      color:var(--ink);
      font-size:16px;
      font-weight:800;
    }

    .timeline{
      position:relative;
      padding-left:28px;
      margin-top:22px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:9px;
      top:7px;
      bottom:10px;
      width:2px;
      background:linear-gradient(var(--apricot), rgba(233,222,212,.9));
    }
    .timeline-item{
      position:relative;
      padding:0 0 28px 0;
    }
    .timeline-item:last-child{padding-bottom:0}
    .timeline-item:before{
      content:"";
      position:absolute;
      left:-27px;
      top:5px;
      width:18px;
      height:18px;
      border-radius:50%;
      background:var(--clay);
      border:4px solid #FFF7ED;
      box-shadow:0 0 0 1px rgba(182,106,93,.25);
    }
    .timeline-year{
      display:inline-flex;
      padding:4px 10px;
      border-radius:999px;
      background:var(--apricot-soft);
      color:var(--clay-dark);
      font-size:13px;
      font-weight:800;
      margin-bottom:8px;
    }
    .timeline-item h3{
      color:var(--ink);
      font-size:20px;
      font-weight:800;
      margin:0 0 8px;
    }
    .timeline-item p{margin:0;color:var(--muted)}

    .feature-list{
      list-style:none;
      padding:0;
      margin:18px 0 0;
      display:grid;
      gap:12px;
    }
    .feature-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 15px;
      border-radius:16px;
      background:rgba(250,246,240,.72);
      border:1px solid rgba(42,35,32,.06);
    }
    .feature-list i{
      color:var(--green);
      font-size:18px;
      margin-top:2px;
      flex:0 0 auto;
    }
    .feature-list strong{
      display:block;
      color:var(--ink);
      margin-bottom:2px;
    }
    .feature-list span{color:var(--muted);font-size:14px}

    .sidebar-sticky{
      position:sticky;
      top:100px;
      display:grid;
      gap:18px;
    }
    .side-card{
      background:var(--card);
      border:1px solid rgba(42,35,32,.08);
      border-radius:var(--radius-lg);
      box-shadow:0 12px 34px rgba(42,35,32,.06);
      padding:22px;
    }
    .side-card h2,.side-card h3{
      color:var(--ink);
      font-size:19px;
      font-weight:850;
      margin:0 0 14px;
    }
    .toc-list,.keyword-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
    }
    .toc-list a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:10px 12px;
      border-radius:13px;
      color:var(--ink-soft);
      background:#FAF6F0;
      font-weight:700;
      font-size:14px;
    }
    .toc-list a:hover{
      color:var(--clay-dark);
      background:var(--apricot-soft);
      transform:translateX(3px);
    }
    .keyword-list{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .keyword-list a{
      padding:7px 11px;
      border-radius:999px;
      background:#FAF6F0;
      border:1px solid rgba(42,35,32,.06);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .keyword-list a:hover{
      color:#fff;
      background:var(--clay);
      border-color:var(--clay);
    }

    .principle-band{
      background:var(--ink);
      color:#F8EFE5;
      border-radius:28px;
      padding:34px;
      position:relative;
      overflow:hidden;
      box-shadow:0 22px 55px rgba(42,35,32,.16);
    }
    .principle-band:after{
      content:"";
      position:absolute;
      right:-70px;
      bottom:-80px;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(242,201,167,.14);
    }
    .principle-band h2{
      color:#fff;
      font-size:30px;
      font-weight:850;
      margin-bottom:12px;
      position:relative;
      z-index:1;
    }
    .principle-band p{
      color:rgba(255,253,249,.78);
      margin:0;
      position:relative;
      z-index:1;
    }
    .principle-items{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:24px;
      position:relative;
      z-index:1;
    }
    .principle-item{
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .principle-item i{color:var(--apricot);font-size:22px}
    .principle-item strong{
      display:block;
      color:#fff;
      margin:8px 0 4px;
    }
    .principle-item span{color:rgba(255,253,249,.68);font-size:14px}

    .accordion{display:grid;gap:12px}
    .accordion-item{
      border:1px solid rgba(42,35,32,.08)!important;
      border-radius:18px!important;
      overflow:hidden;
      background:var(--card);
      box-shadow:0 10px 26px rgba(42,35,32,.045);
    }
    .accordion-button{
      color:var(--ink);
      background:var(--card)!important;
      font-weight:800;
      padding:18px 20px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--clay-dark);
      border-bottom:1px solid rgba(42,35,32,.07);
    }
    .accordion-button:focus{box-shadow:0 0 0 .25rem rgba(182,106,93,.14)!important}
    .accordion-button::after{
      filter:sepia(1) saturate(.7) hue-rotate(315deg);
    }
    .accordion-body{
      color:var(--muted);
      padding:18px 20px 22px;
      line-height:1.8;
    }

    .contact-cta{
      border-radius:30px;
      background:
        linear-gradient(135deg, rgba(42,35,32,.96), rgba(75,58,51,.96)),
        radial-gradient(circle at 85% 25%, rgba(242,201,167,.4), transparent 30%);
      color:#fff;
      padding:42px;
      position:relative;
      overflow:hidden;
      box-shadow:0 22px 60px rgba(42,35,32,.17);
    }
    .contact-cta:before{
      content:"";
      position:absolute;
      inset:auto -40px -80px auto;
      width:250px;
      height:250px;
      border-radius:50%;
      background:rgba(182,106,93,.22);
    }
    .contact-cta h2{
      color:#fff;
      font-size:32px;
      font-weight:850;
      margin:0 0 12px;
      position:relative;
      z-index:1;
    }
    .contact-cta p{
      color:rgba(255,253,249,.76);
      margin:0;
      position:relative;
      z-index:1;
    }
    .contact-form{
      position:relative;
      z-index:1;
      background:rgba(255,253,249,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:22px;
      padding:18px;
    }
    .form-control,.form-select{
      height:50px;
      border-radius:14px;
      border:1px solid rgba(42,35,32,.1);
      background:#FFFDF9;
      color:var(--ink);
      font-size:15px;
    }
    textarea.form-control{height:110px;resize:vertical}
    .form-label{font-weight:750;color:#FFF8F0;font-size:14px;margin-bottom:6px}

    .site-footer{
      background:var(--ink);
      color:rgba(255,253,249,.72);
      padding:64px 0 28px;
      position:relative;
      overflow:hidden;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(242,201,167,.5), transparent);
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-weight:850;
      font-size:20px;
      margin-bottom:16px;
    }
    .footer-title{color:#fff;font-weight:850;margin-bottom:16px}
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a,.footer-links li{color:rgba(255,253,249,.68);font-size:14px}
    .footer-links a:hover{color:var(--apricot);padding-left:3px}
    .footer-note{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      margin-top:44px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.1);
      color:rgba(255,253,249,.56);
      font-size:13px;
    }

    @media (max-width:1199px){
      .search-wrap{width:200px}
      .page-hero h1{font-size:44px}
    }
    @media (max-width:991px){
      .site-header .navbar{min-height:66px}
      .navbar-collapse{
        margin-top:12px;
        padding:16px;
        border-radius:20px;
        background:var(--card);
        border:1px solid rgba(42,35,32,.08);
        box-shadow:var(--shadow);
      }
      .nav-center{gap:4px;margin:8px 0 14px}
      .nav-center .nav-link{padding:11px 12px!important}
      .nav-actions{align-items:stretch;flex-direction:column}
      .search-wrap{width:100%}
      .nav-actions .btn-primary-custom{width:100%}
      .page-hero{padding:58px 0 44px}
      .page-hero h1{font-size:38px}
      .hero-index-card{margin-top:26px}
      .section{padding:68px 0}
      .section-sm{padding:54px 0}
      .sidebar-sticky{position:static;margin-top:22px}
      .principle-items{grid-template-columns:1fr}
      .contact-cta{padding:30px}
    }
    @media (max-width:767px){
      body{font-size:15px}
      .brand-mark{width:40px;height:40px;border-radius:14px}
      .brand-text{font-size:16px}
      .brand-text small{display:none}
      .page-hero h1{font-size:34px}
      .page-hero .lead{font-size:16px}
      .section-title{font-size:28px}
      .content-card{padding:22px;border-radius:20px}
      .profile-grid{grid-template-columns:1fr}
      .mini-kpi{grid-template-columns:1fr}
      .principle-band{padding:26px;border-radius:22px}
      .principle-band h2,.contact-cta h2{font-size:26px}
      .contact-cta{border-radius:22px}
      .footer-note{flex-direction:column}
      .btn-primary-custom,.btn-outline-custom,.btn-soft{width:100%}
      .tag-row{overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}
      .tag-badge{white-space:nowrap}
    }
    @media (max-width:520px){
      .container-xl{padding-left:18px;padding-right:18px}
      .page-hero{padding:46px 0 38px}
      .page-hero h1{font-size:31px}
      .section{padding:56px 0}
      .section-sm{padding:46px 0}
      .content-card,.side-card{border-radius:18px;padding:20px}
      .contact-form{padding:14px}
    }

/* roulang page: category2 */
:root{
      --color-ink:#2A2320;
      --color-ink-soft:#4C4642;
      --color-muted:#81766F;
      --color-clay:#B66A5D;
      --color-clay-dark:#9D554C;
      --color-apricot:#F2C9A7;
      --color-apricot-soft:#F7E3D1;
      --color-bg:#FAF6F0;
      --color-card:#FFFDF9;
      --color-white:#FFFFFF;
      --color-border:#E9DED4;
      --color-green:#6F8B7A;
      --shadow-paper:0 16px 45px rgba(42,35,32,.08);
      --shadow-hover:0 22px 60px rgba(42,35,32,.13);
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:12px;
      --container:1180px;
      --transition:all .28s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--color-ink-soft);
      background:
        radial-gradient(circle at 8% 12%, rgba(242,201,167,.26), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(182,106,93,.10), transparent 28%),
        var(--color-bg);
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:var(--transition);
    }
    a:hover{color:var(--color-clay)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(242,201,167,.75);color:var(--color-ink)}
    .container-xl{max-width:1240px}
    .section-padding{padding:92px 0}
    .section-padding-sm{padding:68px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      background:rgba(247,227,209,.82);
      color:var(--color-clay-dark);
      font-size:14px;
      font-weight:700;
      margin-bottom:16px;
    }
    .section-title{
      color:var(--color-ink);
      font-size:36px;
      line-height:1.25;
      font-weight:800;
      letter-spacing:-.03em;
      margin:0 0 14px;
    }
    .section-desc{
      color:var(--color-muted);
      max-width:720px;
      margin:0;
      font-size:16.5px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1040;
      background:rgba(255,253,249,.96);
      border-bottom:1px solid rgba(233,222,212,.95);
      box-shadow:0 10px 30px rgba(42,35,32,.04);
      backdrop-filter:saturate(130%) blur(10px);
    }
    .site-header .navbar{
      min-height:78px;
      padding:0;
    }
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-right:22px;
      color:var(--color-ink);
      min-width:max-content;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-weight:900;
      background:
        linear-gradient(135deg,var(--color-ink),#55433A 60%,var(--color-clay));
      box-shadow:0 12px 26px rgba(42,35,32,.18);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      width:4px;
      height:4px;
      border-radius:50%;
      background:rgba(255,255,255,.5);
      top:9px;
    }
    .brand-mark:before{left:7px}
    .brand-mark:after{right:7px}
    .brand-text{
      display:flex;
      flex-direction:column;
      font-size:17px;
      font-weight:850;
      line-height:1.15;
      letter-spacing:-.02em;
    }
    .brand-text small{
      margin-top:4px;
      color:var(--color-muted);
      font-size:11.5px;
      font-weight:600;
      letter-spacing:0;
    }
    .nav-center{
      gap:6px;
      align-items:center;
    }
    .navbar-nav .nav-link{
      color:var(--color-ink-soft);
      font-weight:700;
      font-size:15.5px;
      padding:10px 14px!important;
      border-radius:999px;
      position:relative;
    }
    .navbar-nav .nav-link:hover{
      color:var(--color-clay-dark);
      background:rgba(247,227,209,.58);
    }
    .navbar-nav .nav-link.active{
      color:var(--color-clay-dark);
      background:var(--color-apricot-soft);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
      margin-left:18px;
    }
    .search-wrap{
      height:44px;
      min-width:245px;
      border-radius:999px;
      background:#F7F0E8;
      border:1px solid transparent;
      display:flex;
      align-items:center;
      gap:9px;
      padding:0 14px;
      color:var(--color-muted);
      transition:var(--transition);
      cursor:text;
    }
    .search-wrap:focus-within{
      background:#fff;
      border-color:rgba(182,106,93,.55);
      box-shadow:0 0 0 .25rem rgba(182,106,93,.14);
    }
    .search-wrap input{
      width:100%;
      min-width:0;
      border:0;
      outline:0;
      background:transparent;
      color:var(--color-ink);
      font-size:14.5px;
    }
    .search-wrap input::placeholder{color:#9B9089}
    .navbar-toggler{
      border:0;
      color:var(--color-ink);
      padding:8px 10px;
      border-radius:12px;
    }
    .navbar-toggler:focus{
      box-shadow:0 0 0 .25rem rgba(182,106,93,.18);
    }
    .btn-primary-custom,
    .btn-outline-custom,
    .btn-soft{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 22px;
      font-weight:800;
      line-height:1.2;
      border:1px solid transparent;
      transition:var(--transition);
      white-space:nowrap;
      cursor:pointer;
    }
    .btn-primary-custom{
      background:var(--color-ink);
      color:#fff!important;
      box-shadow:0 14px 30px rgba(42,35,32,.16);
    }
    .btn-primary-custom:hover{
      background:var(--color-clay);
      color:#fff!important;
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(182,106,93,.22);
    }
    .btn-outline-custom{
      color:var(--color-ink)!important;
      background:rgba(255,253,249,.75);
      border-color:rgba(42,35,32,.18);
    }
    .btn-outline-custom:hover{
      background:var(--color-apricot-soft);
      border-color:rgba(182,106,93,.28);
      transform:translateY(-2px);
    }
    .btn-soft{
      background:var(--color-apricot-soft);
      color:var(--color-clay-dark)!important;
      padding:10px 18px;
    }
    .btn-soft:hover{
      background:#F1D4BC;
      color:var(--color-ink)!important;
      transform:translateY(-2px);
    }
    .btn-primary-custom:focus,.btn-outline-custom:focus,.btn-soft:focus{
      outline:0;
      box-shadow:0 0 0 .25rem rgba(182,106,93,.18);
    }
    .page-hero{
      position:relative;
      padding:76px 0 58px;
      overflow:hidden;
      border-bottom:1px solid rgba(233,222,212,.72);
    }
    .page-hero:before{
      content:"";
      position:absolute;
      width:420px;
      height:420px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(242,201,167,.55),rgba(242,201,167,0) 68%);
      right:-90px;
      top:-160px;
      pointer-events:none;
    }
    .page-hero:after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:110px;
      opacity:.28;
      background-image:linear-gradient(90deg,rgba(42,35,32,.08) 1px,transparent 1px),linear-gradient(rgba(42,35,32,.06) 1px,transparent 1px);
      background-size:38px 38px;
      pointer-events:none;
    }
    .breadcrumb-custom{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      color:var(--color-muted);
      font-size:14px;
      font-weight:700;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .breadcrumb-custom a{color:var(--color-clay-dark)}
    .page-hero h1{
      position:relative;
      z-index:1;
      max-width:780px;
      color:var(--color-ink);
      font-size:48px;
      line-height:1.14;
      font-weight:850;
      letter-spacing:-.04em;
      margin:0 0 18px;
    }
    .page-hero p{
      position:relative;
      z-index:1;
      max-width:760px;
      color:var(--color-muted);
      font-size:18px;
      margin:0 0 24px;
    }
    .hero-tags{
      position:relative;
      z-index:1;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border-radius:999px;
      background:var(--color-apricot-soft);
      color:var(--color-clay-dark);
      font-size:13.5px;
      font-weight:800;
      border:1px solid rgba(182,106,93,.08);
    }
    .filter-band{
      margin-top:-25px;
      position:relative;
      z-index:3;
    }
    .filter-card{
      background:rgba(255,253,249,.96);
      border:1px solid rgba(233,222,212,.92);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-paper);
      padding:18px;
      display:flex;
      align-items:center;
      gap:12px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .filter-card::-webkit-scrollbar{display:none}
    .filter-label{
      flex:0 0 auto;
      color:var(--color-ink);
      font-weight:850;
      margin-right:4px;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .filter-pill{
      flex:0 0 auto;
      border:1px solid rgba(42,35,32,.10);
      border-radius:999px;
      padding:9px 16px;
      font-weight:750;
      color:var(--color-ink-soft);
      background:#fff;
      transition:var(--transition);
    }
    .filter-pill:hover,.filter-pill.active{
      background:var(--color-ink);
      color:#fff;
      border-color:var(--color-ink);
      transform:translateY(-1px);
    }
    .feature-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      background:var(--color-card);
      border:1px solid rgba(42,35,32,.08);
      box-shadow:var(--shadow-paper);
      transition:var(--transition);
    }
    .feature-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
    }
    .feature-cover{
      min-height:310px;
      height:100%;
      background:
        linear-gradient(135deg,rgba(42,35,32,.92),rgba(99,72,62,.9)),
        radial-gradient(circle at 72% 16%,rgba(242,201,167,.9),transparent 34%);
      color:#fff;
      padding:30px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
    }
    .feature-cover:before{
      content:"";
      position:absolute;
      inset:22px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:20px;
      pointer-events:none;
    }
    .feature-cover:after{
      content:"";
      position:absolute;
      right:28px;
      bottom:28px;
      width:150px;
      height:210px;
      border-radius:22px;
      background:
        linear-gradient(rgba(255,255,255,.08),rgba(255,255,255,.02)),
        repeating-linear-gradient(90deg,rgba(255,255,255,.22) 0 5px,transparent 5px 14px);
      opacity:.68;
      transform:rotate(5deg);
    }
    .feature-index{
      position:relative;
      z-index:1;
      display:flex;
      gap:9px;
      flex-wrap:wrap;
    }
    .feature-index span{
      border-radius:999px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.12);
      padding:6px 11px;
      color:#FFF7EF;
      font-size:13px;
      font-weight:800;
    }
    .feature-no{
      position:relative;
      z-index:1;
      font-size:70px;
      font-weight:900;
      line-height:1;
      color:rgba(255,255,255,.16);
      letter-spacing:-.07em;
    }
    .feature-body{
      padding:34px 34px 30px;
    }
    .feature-body h2{
      color:var(--color-ink);
      font-size:31px;
      line-height:1.24;
      font-weight:850;
      letter-spacing:-.035em;
      margin:0 0 14px;
    }
    .feature-body p{color:var(--color-muted);margin-bottom:22px}
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:20px 0 0;
    }
    .meta-chip{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--color-muted);
      background:#F7F0E8;
      border-radius:14px;
      padding:10px 12px;
      font-size:14px;
      font-weight:700;
    }
    .magazine-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:22px;
    }
    .index-card{
      background:var(--color-card);
      border:1px solid rgba(42,35,32,.08);
      border-radius:22px;
      overflow:hidden;
      box-shadow:0 10px 28px rgba(42,35,32,.055);
      transition:var(--transition);
      height:100%;
    }
    .index-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
    }
    .abstract-cover{
      height:178px;
      padding:18px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      background:
        radial-gradient(circle at 20% 20%,rgba(242,201,167,.9),transparent 34%),
        linear-gradient(135deg,#FFF4E9,#EED8CA);
      position:relative;
      overflow:hidden;
    }
    .abstract-cover.cover-clay{
      background:
        radial-gradient(circle at 82% 20%,rgba(255,255,255,.35),transparent 36%),
        linear-gradient(135deg,#B66A5D,#6E4E43);
    }
    .abstract-cover.cover-green{
      background:
        radial-gradient(circle at 18% 18%,rgba(255,255,255,.42),transparent 35%),
        linear-gradient(135deg,#6F8B7A,#D8E2D8);
    }
    .abstract-cover.cover-ink{
      background:
        radial-gradient(circle at 30% 16%,rgba(242,201,167,.38),transparent 35%),
        linear-gradient(135deg,#2A2320,#67564C);
    }
    .abstract-cover:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(42,35,32,.12);
      border-radius:18px;
    }
    .cover-clay:before,.cover-ink:before{border-color:rgba(255,255,255,.18)}
    .cover-number{
      position:relative;
      z-index:1;
      color:rgba(42,35,32,.22);
      font-size:54px;
      line-height:1;
      font-weight:900;
      letter-spacing:-.06em;
    }
    .cover-clay .cover-number,.cover-ink .cover-number{color:rgba(255,255,255,.24)}
    .cover-lines{
      position:relative;
      z-index:1;
      width:88px;
      display:grid;
      gap:7px;
      margin-top:8px;
    }
    .cover-lines i{
      display:block;
      height:6px;
      border-radius:999px;
      background:rgba(42,35,32,.16);
    }
    .cover-clay .cover-lines i,.cover-ink .cover-lines i{background:rgba(255,255,255,.28)}
    .index-card-body{padding:24px}
    .index-card h3{
      color:var(--color-ink);
      font-size:21px;
      line-height:1.35;
      font-weight:850;
      margin:12px 0 10px;
    }
    .index-card p{
      color:var(--color-muted);
      margin:0 0 17px;
      font-size:15px;
    }
    .read-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--color-clay-dark);
      font-weight:850;
    }
    .read-link i{transition:var(--transition)}
    .read-link:hover i{transform:translateX(4px)}
    .process-wrap{
      position:relative;
      border-radius:var(--radius-lg);
      background:#FFFDF9;
      border:1px solid rgba(42,35,32,.08);
      box-shadow:var(--shadow-paper);
      padding:34px;
      overflow:hidden;
    }
    .process-wrap:before{
      content:"";
      position:absolute;
      left:44px;
      right:44px;
      top:91px;
      height:2px;
      background:linear-gradient(90deg,rgba(182,106,93,.18),rgba(111,139,122,.22));
    }
    .step-card{
      position:relative;
      z-index:1;
      background:#fff;
      border:1px solid rgba(42,35,32,.08);
      border-radius:20px;
      padding:22px;
      height:100%;
      transition:var(--transition);
    }
    .step-card:hover{
      transform:translateY(-4px);
      box-shadow:0 15px 38px rgba(42,35,32,.09);
    }
    .step-no{
      width:48px;
      height:48px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--color-ink);
      color:#fff;
      font-weight:900;
      box-shadow:0 12px 25px rgba(42,35,32,.15);
      margin-bottom:16px;
    }
    .step-card h3{
      color:var(--color-ink);
      font-size:19px;
      font-weight:850;
      margin:0 0 8px;
    }
    .step-card p{color:var(--color-muted);font-size:15px;margin:0}
    .notice-box{
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,rgba(111,139,122,.15),rgba(247,227,209,.42));
      border:1px solid rgba(111,139,122,.22);
      padding:30px;
      display:flex;
      gap:20px;
      align-items:flex-start;
    }
    .notice-icon{
      width:56px;
      height:56px;
      flex:0 0 auto;
      border-radius:18px;
      background:var(--color-green);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:25px;
      box-shadow:0 15px 30px rgba(111,139,122,.20);
    }
    .notice-box h2{
      color:var(--color-ink);
      font-size:27px;
      font-weight:850;
      margin:0 0 8px;
    }
    .notice-box p{margin:0;color:var(--color-ink-soft)}
    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      border:1px solid rgba(42,35,32,.08)!important;
      border-radius:18px!important;
      overflow:hidden;
      background:#FFFDF9;
      box-shadow:0 8px 22px rgba(42,35,32,.045);
    }
    .accordion-button{
      background:#FFFDF9!important;
      color:var(--color-ink)!important;
      font-weight:850;
      padding:18px 20px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--color-clay-dark)!important;
      border-bottom:1px solid rgba(233,222,212,.75);
    }
    .accordion-button:focus{
      box-shadow:0 0 0 .25rem rgba(182,106,93,.14)!important;
      border-color:rgba(182,106,93,.25)!important;
    }
    .accordion-button::after{
      background-image:none;
      content:"\F282";
      font-family:"bootstrap-icons";
      width:auto;
      height:auto;
      color:var(--color-clay);
      font-weight:900;
      transform:none;
    }
    .accordion-button:not(.collapsed)::after{
      content:"\F286";
      transform:none;
    }
    .accordion-body{
      color:var(--color-muted);
      padding:18px 20px 22px;
      font-size:15.5px;
      line-height:1.75;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:30px;
      background:
        radial-gradient(circle at 84% 18%,rgba(242,201,167,.28),transparent 28%),
        linear-gradient(135deg,#2A2320,#4A3932);
      color:#FFF7EF;
      padding:46px;
      box-shadow:0 24px 70px rgba(42,35,32,.18);
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      right:34px;
      top:28px;
      width:180px;
      height:180px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.12);
    }
    .cta-panel h2{
      position:relative;
      color:#fff;
      font-size:34px;
      line-height:1.28;
      font-weight:850;
      letter-spacing:-.03em;
      margin:0 0 12px;
    }
    .cta-panel p{
      position:relative;
      color:#D9CEC6;
      margin:0;
      max-width:680px;
    }
    .cta-actions{
      position:relative;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:24px;
    }
    .cta-panel .btn-primary-custom{
      background:#FFF7EF;
      color:var(--color-ink)!important;
      box-shadow:none;
    }
    .cta-panel .btn-primary-custom:hover{
      background:var(--color-apricot);
      color:var(--color-ink)!important;
    }
    .cta-panel .btn-outline-custom{
      color:#FFF7EF!important;
      border-color:rgba(255,255,255,.26);
      background:rgba(255,255,255,.06);
    }
    .cta-panel .btn-outline-custom:hover{
      background:rgba(255,255,255,.14);
      color:#fff!important;
    }
    .site-footer{
      background:var(--color-ink);
      color:#EDE2D9;
      padding:62px 0 26px;
      position:relative;
      overflow:hidden;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.11;
      background-image:radial-gradient(circle,rgba(255,255,255,.6) 1px,transparent 1.5px);
      background-size:22px 22px;
      pointer-events:none;
    }
    .site-footer .container-xl{position:relative}
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-size:19px;
      font-weight:850;
      margin-bottom:16px;
    }
    .site-footer p{
      color:#CDBFB5;
      max-width:520px;
    }
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:15px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
      color:#CDBFB5;
      font-size:14.5px;
    }
    .footer-links a{color:#CDBFB5}
    .footer-links a:hover{color:var(--color-apricot)}
    .footer-note{
      border-top:1px solid rgba(255,255,255,.12);
      margin-top:38px;
      padding-top:22px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:#BFAFA4;
      font-size:14px;
    }
    @media (max-width:1199.98px){
      .search-wrap{min-width:190px}
      .navbar-nav .nav-link{padding:9px 10px!important}
      .page-hero h1{font-size:43px}
    }
    @media (max-width:991.98px){
      .site-header .navbar{min-height:66px;padding:10px 0}
      .navbar-collapse{
        margin-top:12px;
        padding:16px;
        background:#FFFDF9;
        border:1px solid rgba(233,222,212,.95);
        border-radius:20px;
        box-shadow:var(--shadow-paper);
      }
      .nav-center{align-items:stretch;gap:4px}
      .navbar-nav .nav-link{padding:11px 13px!important}
      .nav-actions{
        margin:14px 0 0;
        flex-direction:column;
        align-items:stretch;
      }
      .search-wrap{width:100%;min-width:0}
      .nav-actions .btn-primary-custom{width:100%}
      .section-padding{padding:72px 0}
      .page-hero{padding:58px 0 52px}
      .magazine-grid{grid-template-columns:1fr}
      .process-wrap:before{display:none}
    }
    @media (max-width:767.98px){
      body{font-size:15.5px}
      .section-padding{padding:58px 0}
      .section-padding-sm{padding:48px 0}
      .section-title{font-size:29px}
      .page-hero h1{font-size:34px}
      .page-hero p{font-size:16px}
      .feature-cover{min-height:220px}
      .feature-body{padding:26px 22px}
      .feature-body h2{font-size:26px}
      .filter-card{border-radius:18px;padding:14px}
      .notice-box{flex-direction:column;padding:24px}
      .cta-panel{padding:32px 24px;border-radius:24px}
      .cta-panel h2{font-size:28px}
      .footer-note{flex-direction:column}
    }
    @media (max-width:575.98px){
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .brand-text{font-size:15.5px}
      .brand-text small{font-size:10.5px}
      .page-hero{padding:46px 0 48px}
      .page-hero h1{font-size:31px}
      .hero-tags{gap:8px}
      .badge-soft{font-size:12.5px;padding:6px 10px}
      .abstract-cover{height:152px}
      .index-card-body{padding:20px}
      .process-wrap{padding:22px}
      .btn-primary-custom,.btn-outline-custom{width:100%;padding:13px 18px}
      .cta-actions{flex-direction:column}
    }

/* roulang page: category3 */
:root{
      --ink:#2A2320;
      --ink-2:#3b312d;
      --text:#4C4642;
      --muted:#81766F;
      --line:#E9DED4;
      --line-soft:rgba(42,35,32,.08);
      --paper:#FAF6F0;
      --card:#FFFDF9;
      --white:#FFFFFF;
      --clay:#B66A5D;
      --clay-dark:#9D554C;
      --apricot:#F2C9A7;
      --apricot-soft:#F7E3D1;
      --green:#6F8B7A;
      --green-soft:#EAF2EC;
      --shadow:0 16px 45px rgba(42,35,32,.08);
      --shadow-hover:0 22px 60px rgba(42,35,32,.13);
      --radius-xl:24px;
      --radius-lg:20px;
      --radius-md:16px;
      --radius-sm:12px;
      --nav-h:78px;
      --font:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(242,201,167,.33), transparent 26%),
        radial-gradient(circle at 90% 22%, rgba(182,106,93,.10), transparent 24%),
        var(--paper);
      font-size:16px;
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    a:hover{color:var(--clay)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font-family:inherit}
    ::selection{background:var(--apricot);color:var(--ink)}
    .container-xl{max-width:1220px}
    .section-pad{padding:92px 0}
    .section-pad-sm{padding:70px 0}
    .section-title{
      color:var(--ink);
      font-weight:800;
      letter-spacing:-.03em;
      line-height:1.18;
      margin-bottom:14px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--clay-dark);
      background:rgba(247,227,209,.76);
      border:1px solid rgba(182,106,93,.14);
      border-radius:999px;
      padding:7px 13px;
      font-size:13px;
      font-weight:800;
      margin-bottom:14px;
    }
    .section-desc{
      color:var(--muted);
      max-width:720px;
      margin:0;
      line-height:1.85;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1020;
      background:rgba(255,253,249,.96);
      border-bottom:1px solid var(--line);
      box-shadow:0 8px 28px rgba(42,35,32,.05);
      backdrop-filter:saturate(130%) blur(10px);
    }
    .site-header .navbar{
      min-height:var(--nav-h);
      padding:0;
    }
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:12px;
      padding:0;
      min-width:245px;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:15px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:
        linear-gradient(145deg,var(--ink),#4b3a34 58%,var(--clay));
      font-weight:900;
      box-shadow:0 12px 30px rgba(42,35,32,.18);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      width:4px;
      height:4px;
      border-radius:50%;
      background:rgba(255,255,255,.55);
      left:7px;
      box-shadow:0 9px 0 rgba(255,255,255,.45),0 18px 0 rgba(255,255,255,.35);
    }
    .brand-mark:after{left:auto;right:7px}
    .brand-text{
      display:flex;
      flex-direction:column;
      color:var(--ink);
      font-size:18px;
      font-weight:900;
      line-height:1.15;
      letter-spacing:-.02em;
    }
    .brand-text small{
      margin-top:3px;
      color:var(--muted);
      font-size:11px;
      font-weight:700;
      letter-spacing:.04em;
    }
    .navbar-toggler{
      border:0;
      color:var(--ink);
      border-radius:12px;
      padding:8px 10px;
    }
    .navbar-toggler:focus{
      box-shadow:0 0 0 .25rem rgba(182,106,93,.18);
    }
    .nav-center{
      gap:6px;
      align-items:center;
    }
    .site-header .nav-link{
      position:relative;
      color:var(--ink);
      font-size:15px;
      font-weight:800;
      padding:10px 14px!important;
      border-radius:999px;
    }
    .site-header .nav-link:hover{
      color:var(--clay-dark);
      background:rgba(247,227,209,.64);
    }
    .site-header .nav-link.active{
      color:var(--clay-dark);
      background:var(--apricot-soft);
    }
    .site-header .nav-link.active:after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:5px;
      height:2px;
      border-radius:999px;
      background:var(--clay);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
      margin-left:18px;
    }
    .search-wrap{
      height:42px;
      min-width:224px;
      display:flex;
      align-items:center;
      gap:8px;
      background:#F7F0E8;
      border:1px solid transparent;
      border-radius:999px;
      padding:0 14px;
      color:var(--muted);
      transition:all .22s ease;
      cursor:text;
    }
    .search-wrap:focus-within{
      background:#fff;
      border-color:rgba(182,106,93,.5);
      box-shadow:0 0 0 .25rem rgba(182,106,93,.12);
    }
    .search-wrap input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--ink);
      font-size:14px;
    }
    .search-wrap input::placeholder{color:#9a9089}

    .btn-primary-custom,.btn-outline-custom,.btn-soft{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      border-radius:999px;
      padding:11px 21px;
      font-weight:800;
      line-height:1;
      border:1px solid transparent;
      transition:all .22s ease;
      white-space:nowrap;
    }
    .btn-primary-custom{
      background:var(--ink);
      color:#fff!important;
      box-shadow:0 14px 32px rgba(42,35,32,.16);
    }
    .btn-primary-custom:hover{
      background:var(--clay);
      color:#fff!important;
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(182,106,93,.26);
    }
    .btn-outline-custom{
      background:rgba(255,253,249,.65);
      color:var(--ink);
      border-color:rgba(42,35,32,.18);
    }
    .btn-outline-custom:hover{
      background:var(--apricot-soft);
      color:var(--clay-dark);
      border-color:rgba(182,106,93,.26);
      transform:translateY(-2px);
    }
    .btn-soft{
      background:var(--apricot-soft);
      color:var(--clay-dark);
      border-color:rgba(182,106,93,.14);
    }
    .btn-soft:hover{
      background:var(--clay);
      color:#fff;
      transform:translateY(-2px);
    }
    .btn-primary-custom:focus,.btn-outline-custom:focus,.btn-soft:focus{
      outline:0;
      box-shadow:0 0 0 .25rem rgba(182,106,93,.18);
    }

    .page-hero{
      position:relative;
      padding:72px 0 46px;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(255,253,249,.82),rgba(250,246,240,.78)),
        radial-gradient(circle at 82% 16%, rgba(242,201,167,.55), transparent 30%);
      border-bottom:1px solid var(--line);
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.42;
      background-image:
        linear-gradient(90deg,rgba(42,35,32,.05) 1px,transparent 1px),
        linear-gradient(rgba(42,35,32,.035) 1px,transparent 1px);
      background-size:38px 38px;
      pointer-events:none;
    }
    .page-hero .container-xl{position:relative;z-index:1}
    .breadcrumb-custom{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      margin-bottom:18px;
    }
    .breadcrumb-custom a{color:var(--clay-dark)}
    .breadcrumb-custom i{font-size:12px;color:#b4a9a0}
    .page-hero h1{
      color:var(--ink);
      font-size:46px;
      line-height:1.14;
      font-weight:900;
      letter-spacing:-.04em;
      margin:0 0 18px;
      max-width:800px;
    }
    .page-hero .lead{
      max-width:760px;
      color:var(--text);
      font-size:18px;
      line-height:1.85;
      margin:0;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:26px;
    }
    .tag-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 13px;
      border-radius:999px;
      background:#fff;
      color:var(--clay-dark);
      border:1px solid rgba(182,106,93,.14);
      font-size:13px;
      font-weight:800;
      box-shadow:0 8px 22px rgba(42,35,32,.04);
    }
    .hero-side-card{
      border-radius:var(--radius-xl);
      background:rgba(255,253,249,.92);
      border:1px solid var(--line-soft);
      box-shadow:var(--shadow);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .hero-side-card:after{
      content:"";
      position:absolute;
      width:120px;height:120px;
      right:-38px;top:-38px;
      border-radius:50%;
      background:rgba(242,201,167,.42);
    }
    .mini-index{
      position:relative;
      z-index:1;
      display:grid;
      gap:12px;
    }
    .mini-index-item{
      display:flex;
      align-items:center;
      gap:12px;
      padding:12px;
      border-radius:16px;
      background:#fff;
      border:1px solid var(--line-soft);
    }
    .mini-index-item span{
      width:36px;height:36px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:12px;
      background:var(--apricot-soft);
      color:var(--clay-dark);
      font-weight:900;
      flex:0 0 auto;
    }
    .mini-index-item strong{display:block;color:var(--ink);line-height:1.25}
    .mini-index-item small{display:block;color:var(--muted);font-weight:700;margin-top:2px}

    .mag-card,.article-card,.info-card,.quote-card,.cooperation-card,.step-card{
      background:var(--card);
      border:1px solid var(--line-soft);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      transition:all .25s ease;
    }
    .article-card:hover,.mag-card:hover,.step-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(182,106,93,.2);
    }
    .cover-visual{
      position:relative;
      min-height:230px;
      border-radius:20px;
      overflow:hidden;
      background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.7), transparent 18%),
        linear-gradient(135deg,#3a302c,#8d554e 58%,#f2c9a7);
      border:1px solid rgba(42,35,32,.08);
    }
    .cover-visual:before{
      content:"";
      position:absolute;
      inset:16px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.28);
    }
    .cover-visual:after{
      content:"";
      position:absolute;
      left:22px;
      top:22px;
      width:8px;
      height:calc(100% - 44px);
      border-radius:999px;
      background:
        repeating-linear-gradient(to bottom,rgba(255,255,255,.7) 0 7px,transparent 7px 15px);
      opacity:.72;
    }
    .cover-label{
      position:absolute;
      right:18px;
      top:18px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,253,249,.88);
      color:var(--clay-dark);
      font-size:12px;
      font-weight:900;
    }
    .cover-title{
      position:absolute;
      left:36px;
      right:26px;
      bottom:26px;
      color:#fff;
      font-size:28px;
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.04em;
      text-shadow:0 6px 20px rgba(42,35,32,.25);
    }
    .article-main{
      padding:24px;
    }
    .article-main h2,.article-main h3{
      color:var(--ink);
      font-weight:900;
      letter-spacing:-.03em;
      line-height:1.25;
      margin-bottom:12px;
    }
    .article-main p{color:var(--muted);margin-bottom:16px}
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      margin-top:18px;
    }
    .meta-row span{display:inline-flex;align-items:center;gap:6px}
    .read-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--clay-dark);
      font-weight:900;
      margin-top:4px;
    }
    .read-link i{transition:transform .22s ease}
    .read-link:hover i{transform:translateX(4px)}

    .article-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
      align-items:start;
    }
    .article-card{
      overflow:hidden;
    }
    .article-card.tall{margin-top:34px}
    .article-card.compact{margin-top:10px}
    .thumb{
      height:172px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(42,35,32,.92),rgba(182,106,93,.74)),
        radial-gradient(circle at 82% 18%,rgba(242,201,167,.62),transparent 22%);
    }
    .thumb:before{
      content:"";
      position:absolute;
      inset:14px;
      border:1px solid rgba(255,255,255,.24);
      border-radius:16px;
    }
    .thumb:after{
      content:"";
      position:absolute;
      right:20px;
      bottom:20px;
      width:64px;height:64px;
      border-radius:18px;
      background:
        repeating-linear-gradient(90deg,rgba(255,255,255,.7) 0 5px,transparent 5px 11px);
      opacity:.45;
      transform:rotate(-7deg);
    }
    .article-card:nth-child(2) .thumb{height:210px;background:linear-gradient(135deg,#fff3e5,#B66A5D)}
    .article-card:nth-child(3) .thumb{height:154px;background:linear-gradient(135deg,#2A2320,#6F8B7A)}
    .article-card:nth-child(4) .thumb{height:228px;background:linear-gradient(135deg,#F2C9A7,#4b3a34)}
    .article-card:nth-child(5) .thumb{height:180px;background:linear-gradient(135deg,#6F8B7A,#f7e3d1)}
    .article-body{padding:20px}
    .article-body h3{
      color:var(--ink);
      font-size:20px;
      font-weight:900;
      line-height:1.32;
      letter-spacing:-.02em;
      margin:10px 0 10px;
    }
    .article-body p{
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
      margin:0 0 14px;
    }

    .quote-card{
      position:relative;
      padding:34px;
      background:
        linear-gradient(135deg,rgba(247,227,209,.88),rgba(255,253,249,.92));
      border-left:6px solid var(--clay);
      overflow:hidden;
    }
    .quote-card:after{
      content:"”";
      position:absolute;
      right:28px;
      top:-34px;
      color:rgba(182,106,93,.13);
      font-size:150px;
      font-weight:900;
      line-height:1;
    }
    .quote-card p{
      position:relative;
      z-index:1;
      color:var(--ink);
      font-size:22px;
      font-weight:800;
      line-height:1.65;
      letter-spacing:-.02em;
      margin:0;
    }
    .quote-card small{
      position:relative;
      z-index:1;
      display:block;
      margin-top:16px;
      color:var(--clay-dark);
      font-weight:900;
    }

    .principle-list{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      margin-top:30px;
    }
    .step-card{
      padding:24px;
      min-height:210px;
      position:relative;
      overflow:hidden;
    }
    .step-card .num{
      width:42px;height:42px;
      border-radius:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--ink);
      color:#fff;
      font-weight:900;
      margin-bottom:18px;
    }
    .step-card h3{
      color:var(--ink);
      font-size:19px;
      font-weight:900;
      margin-bottom:10px;
    }
    .step-card p{
      color:var(--muted);
      font-size:15px;
      margin:0;
    }

    .cooperation-card{
      padding:30px;
      background:
        linear-gradient(145deg,rgba(42,35,32,.96),rgba(64,50,44,.96)),
        var(--ink);
      color:#fff;
      overflow:hidden;
      position:relative;
    }
    .cooperation-card:before{
      content:"";
      position:absolute;
      width:180px;height:180px;
      right:-70px;top:-70px;
      border-radius:50%;
      background:rgba(242,201,167,.18);
    }
    .cooperation-card h2,.cooperation-card h3{color:#fff;font-weight:900}
    .cooperation-card p{color:rgba(250,246,240,.74)}
    .coop-list{
      list-style:none;
      padding:0;
      margin:20px 0 24px;
      display:grid;
      gap:12px;
    }
    .coop-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(250,246,240,.86);
      font-weight:700;
    }
    .coop-list i{color:var(--apricot);margin-top:3px}
    .form-card{
      background:#fff;
      border:1px solid var(--line-soft);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:28px;
    }
    .form-card label{
      color:var(--ink);
      font-weight:800;
      font-size:14px;
      margin-bottom:7px;
    }
    .form-control,.form-select{
      min-height:50px;
      border-radius:14px;
      border:1px solid var(--line);
      background:#FFFDF9;
      color:var(--ink);
      box-shadow:none!important;
    }
    textarea.form-control{min-height:122px;resize:vertical}
    .form-control:focus,.form-select:focus{
      border-color:rgba(182,106,93,.7);
      box-shadow:0 0 0 .25rem rgba(182,106,93,.14)!important;
      background:#fff;
    }

    .faq-wrap .accordion{
      display:grid;
      gap:14px;
    }
    .faq-wrap .accordion-item{
      background:transparent;
      border:0;
    }
    .faq-wrap .accordion-button{
      color:var(--ink);
      background:#fff;
      border:1px solid var(--line-soft);
      border-radius:18px!important;
      box-shadow:var(--shadow);
      font-weight:900;
      padding:18px 20px;
      line-height:1.45;
    }
    .faq-wrap .accordion-button:not(.collapsed){
      color:var(--clay-dark);
      background:#FFFDF9;
      border-color:rgba(182,106,93,.2);
      box-shadow:var(--shadow);
    }
    .faq-wrap .accordion-button:focus{
      box-shadow:0 0 0 .25rem rgba(182,106,93,.15);
    }
    .faq-wrap .accordion-button::after{
      filter:sepia(1) saturate(.7) hue-rotate(320deg);
    }
    .faq-wrap .accordion-body{
      margin-top:8px;
      background:rgba(255,253,249,.8);
      border:1px solid var(--line-soft);
      border-radius:16px;
      color:var(--muted);
      line-height:1.8;
      padding:18px 20px;
    }

    .cta-band{
      position:relative;
      overflow:hidden;
      padding:48px;
      border-radius:30px;
      background:
        radial-gradient(circle at 14% 18%, rgba(242,201,167,.28), transparent 28%),
        linear-gradient(135deg,#2A2320,#4a3933);
      color:#fff;
      box-shadow:0 24px 60px rgba(42,35,32,.18);
    }
    .cta-band:after{
      content:"";
      position:absolute;
      inset:auto -40px -75px auto;
      width:240px;height:240px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.04);
    }
    .cta-band h2{
      color:#fff;
      font-size:34px;
      font-weight:900;
      line-height:1.2;
      letter-spacing:-.03em;
      margin-bottom:12px;
    }
    .cta-band p{
      color:rgba(250,246,240,.78);
      margin:0;
      max-width:680px;
    }
    .cta-band .btn-primary-custom{
      background:#fff;
      color:var(--ink)!important;
      box-shadow:none;
    }
    .cta-band .btn-primary-custom:hover{
      background:var(--apricot);
      color:var(--ink)!important;
    }
    .cta-band .btn-outline-custom{
      color:#fff;
      border-color:rgba(255,255,255,.28);
      background:rgba(255,255,255,.06);
    }
    .cta-band .btn-outline-custom:hover{
      color:var(--ink);
      background:#fff;
    }

    .site-footer{
      background:var(--ink);
      color:rgba(250,246,240,.76);
      padding:64px 0 26px;
      position:relative;
      overflow:hidden;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      top:0;left:0;right:0;height:5px;
      background:linear-gradient(90deg,var(--clay),var(--apricot),var(--green));
      opacity:.85;
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-size:20px;
      font-weight:900;
      margin-bottom:16px;
    }
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:16px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a,.footer-links li{
      color:rgba(250,246,240,.72);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--apricot);padding-left:3px}
    .footer-note{
      margin-top:42px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:rgba(250,246,240,.55);
      font-size:13px;
    }

    @media (max-width:1199.98px){
      .navbar-brand{min-width:auto}
      .search-wrap{min-width:185px}
      .article-grid{grid-template-columns:repeat(2,1fr)}
      .principle-list{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991.98px){
      :root{--nav-h:66px}
      .site-header .navbar{padding:10px 0}
      .navbar-collapse{
        margin-top:14px;
        padding:16px;
        background:#FFFDF9;
        border:1px solid var(--line);
        border-radius:22px;
        box-shadow:var(--shadow);
      }
      .nav-center{align-items:stretch;gap:4px}
      .site-header .nav-link{padding:12px 14px!important}
      .nav-actions{
        margin-left:0;
        margin-top:14px;
        display:grid;
        grid-template-columns:1fr;
      }
      .search-wrap{width:100%;min-width:0}
      .page-hero{padding:54px 0 38px}
      .page-hero h1{font-size:38px}
      .page-hero .lead{font-size:17px}
      .section-pad{padding:70px 0}
      .section-pad-sm{padding:56px 0}
      .cover-title{font-size:24px}
      .cta-band{padding:36px}
    }
    @media (max-width:767.98px){
      .brand-mark{width:40px;height:40px;border-radius:13px}
      .brand-text{font-size:16px}
      .brand-text small{font-size:10px}
      .page-hero h1{font-size:33px}
      .hero-tags{flex-wrap:nowrap;overflow-x:auto;padding-bottom:4px}
      .tag-pill{white-space:nowrap}
      .article-grid{grid-template-columns:1fr}
      .article-card.tall,.article-card.compact{margin-top:0}
      .principle-list{grid-template-columns:1fr}
      .quote-card{padding:26px}
      .quote-card p{font-size:19px}
      .cta-band{padding:28px;border-radius:24px}
      .cta-band h2{font-size:28px}
      .footer-note{display:grid}
    }
    @media (max-width:575.98px){
      body{font-size:15px}
      .section-pad{padding:56px 0}
      .section-pad-sm{padding:48px 0}
      .page-hero{padding:42px 0 30px}
      .page-hero h1{font-size:31px}
      .mag-card,.article-card,.info-card,.quote-card,.cooperation-card,.step-card,.form-card{border-radius:18px}
      .article-main,.form-card{padding:20px}
      .cover-visual{min-height:205px;border-radius:16px}
      .cover-title{left:30px;right:20px;bottom:22px;font-size:22px}
      .btn-primary-custom,.btn-outline-custom,.btn-soft{width:100%}
      .cta-band .d-flex{width:100%}
    }
