/* roulang page: index */
:root{
      --ink:#14342f;
      --ink-2:#1f4841;
      --olive:#315b50;
      --bronze:#a77a48;
      --bronze-dark:#86613b;
      --graphite:#2f3735;
      --muted:#68736f;
      --soft:#f5f1e9;
      --soft-2:#ebe5da;
      --paper:#fffdf8;
      --white:#ffffff;
      --line:rgba(20,52,47,.14);
      --shadow:0 18px 48px rgba(24,42,38,.10);
      --shadow-soft:0 10px 30px rgba(24,42,38,.08);
      --radius:22px;
      --radius-sm:14px;
      --container:1180px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--graphite);
      background:linear-gradient(180deg,var(--paper),var(--soft) 46%,#f8f5ee);
      line-height:1.72;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{border:0;cursor:pointer;background:none}
    :focus-visible{outline:3px solid rgba(167,122,72,.34);outline-offset:4px}
    .container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,253,248,.96);
      border-bottom:1px solid var(--line);
      backdrop-filter:saturate(1.1) blur(8px);
    }
    .nav-wrap{
      height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      font-weight:800;
      color:var(--ink);
      letter-spacing:.02em;
    }
    .logo-mark{
      width:42px;
      height:42px;
      border-radius:13px;
      background:linear-gradient(135deg,var(--ink),var(--olive));
      display:grid;
      place-items:center;
      color:#f4dfbd;
      box-shadow:0 10px 24px rgba(20,52,47,.16);
      position:relative;
      overflow:hidden;
    }
    .logo-mark:after{
      content:"";
      position:absolute;
      width:26px;height:26px;
      border:1px solid rgba(244,223,189,.45);
      border-radius:50%;
      right:-8px;bottom:-7px;
    }
    .logo-text strong{display:block;font-size:18px;line-height:1.1}
    .logo-text span{display:block;font-size:12px;color:var(--muted);font-weight:600;margin-top:3px}
    .main-nav{display:flex;align-items:center;gap:8px}
    .main-nav a{
      padding:10px 14px;
      border-radius:999px;
      color:#40504c;
      font-weight:650;
      font-size:14px;
      transition:var(--ease);
    }
    .main-nav a:hover,.main-nav a.active{
      color:var(--ink);
      background:#efe8db;
    }
    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:11px 18px;
      border-radius:999px;
      color:#fff;
      background:var(--ink);
      font-weight:750;
      box-shadow:0 12px 28px rgba(20,52,47,.18);
      transition:var(--ease);
      white-space:nowrap;
    }
    .nav-cta:hover{background:var(--ink-2);transform:translateY(-1px)}
    .menu-toggle{
      display:none;
      width:44px;height:44px;
      border-radius:12px;
      border:1px solid var(--line);
      background:#fffaf0;
      color:var(--ink);
    }
    .menu-toggle span{
      display:block;
      width:20px;height:2px;
      background:var(--ink);
      margin:5px auto;
      transition:var(--ease);
    }
    .hero{
      position:relative;
      padding:72px 0 56px;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,253,248,.98) 0%,rgba(255,253,248,.9) 42%,rgba(255,253,248,.62) 100%),
        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
      z-index:-2;
    }
    .hero:after{
      content:"";
      position:absolute;
      width:560px;height:560px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(167,122,72,.18),transparent 66%);
      right:-180px;top:-120px;
      z-index:-1;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:54px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(167,122,72,.28);
      color:var(--bronze-dark);
      background:rgba(255,253,248,.75);
      font-size:13px;
      font-weight:750;
      margin-bottom:18px;
    }
    .eyebrow:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--bronze);
      box-shadow:0 0 0 4px rgba(167,122,72,.14);
    }
    h1{
      color:var(--ink);
      font-size:clamp(36px,5vw,64px);
      line-height:1.08;
      letter-spacing:-.04em;
      margin-bottom:22px;
      max-width:780px;
    }
    .hero-sub{
      max-width:650px;
      color:#52605c;
      font-size:18px;
      line-height:1.9;
      margin-bottom:30px;
    }
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:28px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:48px;
      padding:13px 22px;
      border-radius:999px;
      font-weight:780;
      transition:var(--ease);
      gap:8px;
      border:1px solid transparent;
    }
    .btn-primary{
      background:var(--bronze);
      color:#fff;
      box-shadow:0 14px 30px rgba(167,122,72,.22);
    }
    .btn-primary:hover{background:var(--bronze-dark);transform:translateY(-2px)}
    .btn-secondary{
      background:rgba(255,253,248,.78);
      border-color:rgba(20,52,47,.22);
      color:var(--ink);
    }
    .btn-secondary:hover{background:#fff;border-color:var(--bronze);transform:translateY(-2px)}
    .hero-notes{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .note{
      padding:8px 12px;
      border-radius:999px;
      background:rgba(20,52,47,.07);
      color:#3c504b;
      font-size:13px;
      font-weight:700;
    }
    .visual-panel{
      border-radius:30px;
      background:rgba(255,253,248,.78);
      border:1px solid rgba(255,255,255,.7);
      box-shadow:var(--shadow);
      padding:16px;
      position:relative;
    }
    .visual-panel img{
      width:100%;
      height:360px;
      object-fit:cover;
      border-radius:22px;
      filter:saturate(.96) contrast(.98);
    }
    .visual-card{
      position:absolute;
      left:-18px;
      bottom:28px;
      width:min(310px,80%);
      padding:18px;
      border-radius:18px;
      background:#fffdf8;
      border:1px solid var(--line);
      box-shadow:0 18px 44px rgba(20,52,47,.16);
    }
    .visual-card b{display:block;color:var(--ink);font-size:18px;margin-bottom:6px}
    .visual-card p{font-size:14px;color:var(--muted);line-height:1.65}
    main{position:relative}
    .section{padding:78px 0}
    .section-tight{padding:56px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:30px;
      margin-bottom:34px;
    }
    .section-title{
      color:var(--ink);
      font-size:clamp(28px,3vw,42px);
      line-height:1.18;
      letter-spacing:-.03em;
    }
    .section-desc{
      color:var(--muted);
      max-width:580px;
      margin-top:12px;
      font-size:16px;
    }
    .link-more{
      color:var(--bronze-dark);
      font-weight:800;
      white-space:nowrap;
      transition:var(--ease);
    }
    .link-more:hover{color:var(--ink);transform:translateX(2px)}
    .info-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .info-card{
      padding:24px;
      border-radius:var(--radius);
      background:#fffdf8;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .info-card:hover{transform:translateY(-4px);border-color:rgba(167,122,72,.36)}
    .info-card .num{color:var(--bronze);font-size:28px;font-weight:900;margin-bottom:8px}
    .info-card h3{color:var(--ink);font-size:20px;margin-bottom:8px}
    .info-card p{color:var(--muted);font-size:15px}
    .dark-band{
      background:var(--ink);
      color:#eef4ef;
      position:relative;
      overflow:hidden;
    }
    .dark-band:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(167,122,72,.18),transparent 46%),url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      opacity:.16;
    }
    .dark-band .container{position:relative}
    .dark-band .section-title{color:#fff}
    .dark-band .section-desc{color:#d2ddd8}
    .columns-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:stretch;
    }
    .feature-large{
      min-height:390px;
      border-radius:28px;
      overflow:hidden;
      position:relative;
      border:1px solid rgba(255,255,255,.12);
      background:#203f38;
    }
    .feature-large img{width:100%;height:100%;object-fit:cover;opacity:.68;transition:var(--ease)}
    .feature-large:hover img{transform:scale(1.035)}
    .feature-overlay{
      position:absolute;
      inset:auto 0 0 0;
      padding:34px;
      background:linear-gradient(180deg,transparent,rgba(10,30,27,.92));
    }
    .feature-overlay h3{font-size:28px;line-height:1.25;margin-bottom:10px;color:#fff}
    .feature-overlay p{color:#d7e0dc;max-width:560px}
    .module-list{
      display:grid;
      gap:14px;
    }
    .module-item{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      align-items:start;
      padding:20px;
      border-radius:20px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      transition:var(--ease);
    }
    .module-item:hover{background:rgba(255,255,255,.12);transform:translateX(3px)}
    .icon-box{
      width:54px;height:54px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:rgba(167,122,72,.22);
      color:#f4d8ad;
      font-weight:900;
      font-size:20px;
    }
    .module-item h3{font-size:19px;color:#fff;margin-bottom:4px}
    .module-item p{font-size:14px;color:#d0dbd6}
    .cards-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .entry-card{
      background:#fffdf8;
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
      display:flex;
      flex-direction:column;
    }
    .entry-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:rgba(167,122,72,.34)}
    .entry-cover{height:156px;overflow:hidden;background:#e7e0d5}
    .entry-cover img{width:100%;height:100%;object-fit:cover;transition:var(--ease)}
    .entry-card:hover .entry-cover img{transform:scale(1.045)}
    .entry-body{padding:20px;display:flex;flex-direction:column;gap:10px;flex:1}
    .tag{
      align-self:flex-start;
      display:inline-flex;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(167,122,72,.12);
      color:var(--bronze-dark);
      font-size:12px;
      font-weight:800;
    }
    .entry-body h3{color:var(--ink);font-size:20px;line-height:1.35}
    .entry-body p{color:var(--muted);font-size:14px;line-height:1.7}
    .entry-link{
      margin-top:auto;
      color:var(--ink);
      font-weight:800;
      font-size:14px;
    }
    .split{
      display:grid;
      grid-template-columns:.88fr 1.12fr;
      gap:34px;
      align-items:center;
    }
    .portrait-card{
      border-radius:30px;
      overflow:hidden;
      position:relative;
      min-height:420px;
      box-shadow:var(--shadow);
      border:1px solid var(--line);
    }
    .portrait-card img{width:100%;height:100%;min-height:420px;object-fit:cover}
    .portrait-badge{
      position:absolute;
      left:22px;bottom:22px;right:22px;
      background:rgba(255,253,248,.94);
      border-radius:18px;
      padding:18px;
      border:1px solid rgba(255,255,255,.75);
    }
    .portrait-badge strong{color:var(--ink);font-size:18px}
    .portrait-badge span{display:block;color:var(--muted);font-size:14px;margin-top:3px}
    .check-list{display:grid;gap:14px;margin-top:24px}
    .check-item{
      display:flex;
      gap:12px;
      padding:16px;
      border-radius:18px;
      background:rgba(255,253,248,.76);
      border:1px solid var(--line);
    }
    .check-item:before{
      content:"✓";
      flex:0 0 28px;
      width:28px;height:28px;border-radius:50%;
      display:grid;place-items:center;
      background:var(--ink);
      color:#f5d9ad;
      font-weight:900;
      margin-top:2px;
    }
    .check-item b{display:block;color:var(--ink);margin-bottom:3px}
    .check-item p{color:var(--muted);font-size:14px}
    .content-area{
      display:grid;
      grid-template-columns:1.45fr .55fr;
      gap:24px;
    }
    .news-list{display:grid;gap:16px}
    .news-item{
      display:grid;
      grid-template-columns:170px 1fr;
      gap:18px;
      padding:16px;
      background:#fffdf8;
      border:1px solid var(--line);
      border-radius:22px;
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .news-item:hover{transform:translateY(-3px);border-color:rgba(167,122,72,.35)}
    .news-item img{width:170px;height:126px;object-fit:cover;border-radius:16px}
    .news-meta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:7px}
    .pill{
      font-size:12px;
      color:var(--muted);
      background:#f0eadf;
      padding:4px 9px;
      border-radius:999px;
      font-weight:700;
    }
    .news-item h3{font-size:21px;color:var(--ink);line-height:1.35;margin-bottom:8px}
    .news-item p{color:var(--muted);font-size:14px}
    .side-card{
      background:var(--ink);
      border-radius:26px;
      padding:26px;
      color:#edf3ef;
      min-height:100%;
      position:relative;
      overflow:hidden;
    }
    .side-card:after{
      content:"";
      position:absolute;
      width:180px;height:180px;
      border-radius:50%;
      border:1px solid rgba(244,223,189,.2);
      right:-70px;top:-50px;
    }
    .side-card h3{font-size:24px;margin-bottom:10px;color:#fff}
    .side-card p{color:#d4dfda;font-size:14px;margin-bottom:18px}
    .side-links{display:grid;gap:10px;position:relative}
    .side-links a{
      padding:12px 14px;
      border-radius:14px;
      background:rgba(255,255,255,.08);
      color:#fff;
      font-weight:750;
      transition:var(--ease);
    }
    .side-links a:hover{background:rgba(167,122,72,.28);transform:translateX(2px)}
    .trust-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .trust-item{
      padding:22px;
      border-radius:20px;
      background:#fffdf8;
      border:1px solid var(--line);
      text-align:center;
    }
    .trust-item strong{display:block;color:var(--ink);font-size:30px;line-height:1.1;margin-bottom:8px}
    .trust-item span{color:var(--muted);font-size:14px}
    .faq-wrap{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:34px;
      align-items:start;
    }
    .faq-list{display:grid;gap:14px}
    .faq-item{
      border:1px solid var(--line);
      border-radius:18px;
      background:#fffdf8;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }
    .faq-q{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 20px;
      color:var(--ink);
      font-weight:850;
      text-align:left;
    }
    .faq-q:after{
      content:"+";
      width:28px;height:28px;
      border-radius:50%;
      display:grid;place-items:center;
      background:#efe8db;
      color:var(--bronze-dark);
      font-size:20px;
      flex:0 0 auto;
      transition:var(--ease);
    }
    .faq-item.active .faq-q:after{content:"−";background:var(--ink);color:#f1d7ad}
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
    }
    .faq-a p{
      padding:0 20px 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
    }
    .cta{
      padding:0 0 78px;
    }
    .cta-box{
      border-radius:32px;
      padding:42px;
      background:
        linear-gradient(135deg,rgba(20,52,47,.95),rgba(31,72,65,.92)),
        url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
      color:#fff;
      display:grid;
      grid-template-columns:1fr auto;
      gap:28px;
      align-items:center;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .cta-box:after{
      content:"";
      position:absolute;
      width:240px;height:240px;border-radius:50%;
      border:1px solid rgba(244,223,189,.18);
      right:-80px;bottom:-100px;
    }
    .cta-box h2{font-size:clamp(28px,3vw,42px);line-height:1.2;margin-bottom:10px;position:relative}
    .cta-box p{color:#dce7e2;max-width:680px;position:relative}
    .cta-box .btn{position:relative}
    .site-footer{
      background:#111f1c;
      color:#d8e1dd;
      padding:54px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .8fr .8fr;
      gap:36px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.1);
    }
    .footer-brand h2{color:#fff;font-size:24px;margin-bottom:10px}
    .footer-brand p{color:#aebcb7;max-width:520px;font-size:14px}
    .footer-col h3{color:#fff;font-size:16px;margin-bottom:14px}
    .footer-links{display:grid;gap:9px}
    .footer-links a{
      color:#b9c6c1;
      font-size:14px;
      transition:var(--ease);
    }
    .footer-links a:hover{color:#f0cf9e}
    .copyright{
      padding-top:22px;
      color:#96a6a0;
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    @media (max-width:1024px){
      .hero-grid,.columns-grid,.split,.content-area,.faq-wrap{grid-template-columns:1fr}
      .cards-grid{grid-template-columns:repeat(2,1fr)}
      .trust-row,.info-strip{grid-template-columns:repeat(2,1fr)}
      .visual-card{left:18px}
      .cta-box{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,var(--container))}
      .nav-wrap{height:68px}
      .menu-toggle{display:block}
      .main-nav{
        position:absolute;
        left:14px;right:14px;top:76px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        border-radius:20px;
        background:#fffdf8;
        border:1px solid var(--line);
        box-shadow:var(--shadow);
      }
      .main-nav.open{display:flex}
      .main-nav a{border-radius:12px}
      .nav-cta{display:none}
      .hero{padding:46px 0 44px}
      .hero-sub{font-size:16px}
      .visual-panel img{height:280px}
      .section{padding:58px 0}
      .section-head{display:block}
      .link-more{display:inline-block;margin-top:14px}
      .news-item{grid-template-columns:1fr}
      .news-item img{width:100%;height:210px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:block}
      .copyright span{display:block;margin-top:8px}
    }
    @media (max-width:520px){
      h1{font-size:34px}
      .logo-text span{display:none}
      .hero-actions .btn{width:100%}
      .cards-grid,.trust-row,.info-strip{grid-template-columns:1fr}
      .visual-card{position:static;width:100%;margin-top:14px}
      .visual-panel{padding:12px}
      .portrait-card,.portrait-card img{min-height:320px}
      .cta-box{padding:28px}
      .section-title{font-size:28px}
    }

/* roulang page: category1 */
:root{
      --bg:#f4efe6;
      --bg-soft:#fbf8f2;
      --surface:#fffaf3;
      --surface-2:#f3ebdf;
      --brand:#173128;
      --brand-2:#24463b;
      --accent:#a67c45;
      --accent-2:#d2b07b;
      --text:#1f2520;
      --muted:#667069;
      --line:#ddd2c2;
      --shadow:0 18px 40px rgba(18, 32, 25, .09);
      --shadow-soft:0 10px 24px rgba(18, 32, 25, .06);
      --radius:22px;
      --radius-sm:14px;
      --container:1180px;
      --space:clamp(18px, 2.2vw, 28px);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 500px at 15% 0%, rgba(166,124,69,.08), transparent 60%),
        radial-gradient(900px 380px at 90% 12%, rgba(23,49,40,.06), transparent 55%),
        linear-gradient(180deg, #fbf8f2 0%, #f4efe6 100%);
      line-height:1.75;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    img{
      max-width:100%;
      display:block;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    button,
    input{
      font:inherit;
    }
    button{
      cursor:pointer;
    }
    ::selection{
      background:rgba(166,124,69,.18);
      color:var(--text);
    }
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(252,248,241,.94);
      border-bottom:1px solid rgba(221,210,194,.88);
      backdrop-filter:saturate(160%);
    }
    .site-header.is-scrolled{
      box-shadow:0 8px 24px rgba(18,32,25,.06);
    }
    .header-inner{
      min-height:80px;
      display:flex;
      align-items:center;
      gap:18px;
    }
    .brand{
      display:flex;
      flex-direction:column;
      gap:2px;
      min-width:220px;
    }
    .brand-mark{
      font-weight:800;
      letter-spacing:.5px;
      color:var(--brand);
      font-size:1.04rem;
      line-height:1.2;
    }
    .brand-sub{
      color:var(--muted);
      font-size:.82rem;
      letter-spacing:.2px;
    }
    .menu-toggle{
      display:none;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border:1px solid var(--line);
      background:var(--surface);
      color:var(--brand);
      border-radius:14px;
      box-shadow:var(--shadow-soft);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .menu-toggle:hover,
    .menu-toggle:focus-visible{
      transform:translateY(-1px);
      border-color:rgba(166,124,69,.55);
      box-shadow:0 12px 24px rgba(18,32,25,.08);
      outline:none;
    }
    .menu-icon{
      width:18px;
      height:12px;
      position:relative;
      display:inline-block;
    }
    .menu-icon::before,
    .menu-icon::after,
    .menu-icon span{
      content:"";
      position:absolute;
      left:0;
      width:100%;
      height:2px;
      background:var(--brand);
      border-radius:10px;
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .menu-icon::before{top:0}
    .menu-icon span{top:5px}
    .menu-icon::after{top:10px}
    .main-nav{
      display:flex;
      align-items:center;
      gap:6px;
      margin-left:auto;
      flex-wrap:wrap;
    }
    .main-nav a{
      position:relative;
      padding:11px 15px;
      border-radius:999px;
      color:var(--brand-2);
      font-weight:600;
      font-size:.96rem;
      border:1px solid transparent;
    }
    .main-nav a:hover,
    .main-nav a:focus-visible{
      color:var(--brand);
      background:rgba(23,49,40,.05);
      border-color:rgba(23,49,40,.08);
      outline:none;
    }
    .main-nav a.active{
      color:var(--brand);
      background:rgba(23,49,40,.08);
      border-color:rgba(23,49,40,.12);
      box-shadow:inset 0 0 0 1px rgba(23,49,40,.02);
    }
    .header-cta{
      margin-left:12px;
      flex-shrink:0;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 18px;
      min-height:46px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:700;
      letter-spacing:.2px;
      line-height:1;
      white-space:nowrap;
      box-shadow:0 12px 22px rgba(18,32,25,.08);
      transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
    }
    .btn:hover,
    .btn:focus-visible{
      transform:translateY(-1px);
      box-shadow:0 16px 28px rgba(18,32,25,.12);
      outline:none;
    }
    .btn-primary{
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
      color:#fff;
    }
    .btn-primary:hover,
    .btn-primary:focus-visible{
      background:linear-gradient(135deg, #1b3a2f 0%, #2c5245 100%);
    }
    .btn-outline{
      background:rgba(255,255,255,.56);
      color:var(--brand);
      border-color:rgba(23,49,40,.18);
      box-shadow:none;
    }
    .btn-outline:hover,
    .btn-outline:focus-visible{
      background:#fff;
      border-color:rgba(166,124,69,.55);
    }
    .btn-accent{
      background:linear-gradient(135deg, var(--accent) 0%, #c79a63 100%);
      color:#fff;
    }
    .badge,
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:600;
      line-height:1;
    }
    .badge{
      padding:7px 12px;
      background:rgba(23,49,40,.08);
      color:var(--brand);
      font-size:.82rem;
    }
    .chip{
      padding:9px 14px;
      background:var(--surface);
      color:var(--brand-2);
      border-color:var(--line);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.38);
      font-size:.9rem;
    }
    .chip.active,
    .chip:hover,
    .chip:focus-visible{
      color:var(--brand);
      border-color:rgba(166,124,69,.5);
      background:rgba(166,124,69,.08);
      outline:none;
    }
    .category-hero{
      padding:34px 0 18px;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(221,210,194,.9);
      background:
        linear-gradient(180deg, rgba(255,250,243,.96) 0%, rgba(245,239,230,.98) 100%);
      border-radius:34px;
      box-shadow:var(--shadow);
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(900px 300px at 18% 10%, rgba(166,124,69,.12), transparent 60%),
        radial-gradient(800px 280px at 88% 18%, rgba(23,49,40,.08), transparent 60%);
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1.25fr .9fr;
      gap:30px;
      align-items:stretch;
      padding:30px;
    }
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:.92rem;
      margin-bottom:14px;
    }
    .breadcrumb a{
      color:var(--muted);
    }
    .breadcrumb a:hover{
      color:var(--brand);
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:18px;
      min-width:0;
    }
    .section-kicker{
      display:inline-flex;
      width:fit-content;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(23,49,40,.08);
      color:var(--brand);
      font-size:.82rem;
      font-weight:700;
      letter-spacing:.08em;
    }
    .hero-copy h1{
      margin:0;
      color:var(--brand);
      font-size:clamp(2rem, 3.7vw, 4rem);
      line-height:1.12;
      letter-spacing:-.03em;
    }
    .hero-copy .lead{
      margin:0;
      max-width:44rem;
      color:var(--text);
      font-size:1.05rem;
      line-height:1.95;
    }
    .filter-row{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px;
      margin-top:4px;
    }
    .filter-label{
      font-size:.9rem;
      color:var(--muted);
      font-weight:600;
      margin-right:2px;
    }
    .search-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:4px;
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:10px;
      flex:1 1 320px;
      min-width:240px;
      padding:10px 14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.74);
      border-radius:999px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
    }
    .search-box svg{
      width:18px;
      height:18px;
      flex:none;
      color:var(--muted);
    }
    .search-box input{
      border:none;
      outline:none;
      background:transparent;
      width:100%;
      color:var(--text);
    }
    .search-box input::placeholder{
      color:#8b938c;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      padding-top:4px;
    }
    .hero-visual{
      position:relative;
      min-height:420px;
      border-radius:28px;
      overflow:hidden;
      border:1px solid rgba(221,210,194,.85);
      background:linear-gradient(180deg, rgba(23,49,40,.96), rgba(23,49,40,.84));
      box-shadow:var(--shadow);
    }
    .hero-visual img{
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.72;
      filter:saturate(.84) contrast(.98);
      transform:scale(1.02);
    }
    .hero-visual::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(15,29,24,.12) 0%, rgba(15,29,24,.3) 45%, rgba(15,29,24,.58) 100%);
    }
    .visual-note{
      position:absolute;
      left:18px;
      right:18px;
      bottom:18px;
      z-index:1;
      padding:18px;
      border-radius:22px;
      background:rgba(255,250,243,.92);
      border:1px solid rgba(255,255,255,.5);
      box-shadow:var(--shadow-soft);
      color:var(--text);
    }
    .visual-note strong{
      display:block;
      color:var(--brand);
      font-size:1.02rem;
      margin-bottom:6px;
    }
    .visual-note p{
      margin:0;
      color:var(--muted);
      line-height:1.75;
      font-size:.95rem;
    }
    .summary-section{
      padding:18px 0 12px;
    }
    .summary-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:16px;
    }
    .info-card{
      padding:22px;
      border-radius:24px;
      border:1px solid rgba(221,210,194,.96);
      background:linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(250,245,237,.98) 100%);
      box-shadow:var(--shadow-soft);
      min-height:100%;
    }
    .info-card .icon{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:16px;
      background:rgba(23,49,40,.08);
      color:var(--brand);
      margin-bottom:14px;
    }
    .info-card h3{
      margin:0 0 8px;
      color:var(--brand);
      font-size:1.08rem;
      line-height:1.35;
    }
    .info-card p{
      margin:0;
      color:var(--muted);
      line-height:1.8;
      font-size:.95rem;
    }
    .content-section{
      padding:28px 0 24px;
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .section-head .title-wrap{
      max-width:760px;
    }
    .section-head .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:.82rem;
      font-weight:700;
      letter-spacing:.1em;
      color:var(--accent);
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .section-head h2{
      margin:0;
      color:var(--brand);
      font-size:clamp(1.45rem, 2vw, 2.1rem);
      line-height:1.25;
    }
    .section-head p{
      margin:10px 0 0;
      color:var(--muted);
      line-height:1.9;
      font-size:.98rem;
    }
    .content-grid{
      display:grid;
      grid-template-columns:minmax(0, 1.5fr) 360px;
      gap:22px;
      align-items:start;
    }
    .entry-list{
      display:grid;
      gap:16px;
    }
    .entry-card{
      display:grid;
      grid-template-columns: 220px 1fr;
      gap:18px;
      padding:16px;
      border-radius:24px;
      border:1px solid rgba(221,210,194,.96);
      background:rgba(255,255,255,.9);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:rgba(166,124,69,.48);
      box-shadow:0 18px 34px rgba(18,32,25,.1);
    }
    .entry-media{
      position:relative;
      display:block;
      overflow:hidden;
      border-radius:18px;
      min-height:170px;
      background:var(--surface-2);
    }
    .entry-media img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .35s ease;
    }
    .entry-card:hover .entry-media img{
      transform:scale(1.03);
    }
    .entry-media::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, transparent 0%, rgba(23,49,40,.05) 100%);
      pointer-events:none;
    }
    .entry-body{
      display:flex;
      flex-direction:column;
      gap:12px;
      min-width:0;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:.88rem;
    }
    .entry-meta .dot{
      width:4px;
      height:4px;
      border-radius:50%;
      background:rgba(102,112,105,.7);
    }
    .entry-body h3{
      margin:0;
      font-size:1.2rem;
      line-height:1.35;
      color:var(--brand);
    }
    .entry-body p{
      margin:0;
      color:var(--muted);
      line-height:1.85;
      font-size:.96rem;
    }
    .entry-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .entry-tags .badge{
      background:rgba(166,124,69,.1);
      color:#835e32;
    }
    .entry-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-top:auto;
      padding-top:4px;
      font-size:.92rem;
      color:var(--muted);
    }
    .entry-foot a{
      color:var(--brand);
      font-weight:700;
    }
    .entry-foot a:hover,
    .entry-foot a:focus-visible{
      color:var(--accent);
      outline:none;
    }
    .sidebar{
      position:sticky;
      top:102px;
      display:grid;
      gap:16px;
    }
    .side-card{
      padding:20px;
      border-radius:24px;
      border:1px solid rgba(221,210,194,.96);
      background:linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(250,245,237,.98) 100%);
      box-shadow:var(--shadow-soft);
    }
    .side-card h3{
      margin:0 0 14px;
      color:var(--brand);
      font-size:1.03rem;
      line-height:1.35;
    }
    .side-list{
      display:grid;
      gap:10px;
    }
    .side-list a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(23,49,40,.04);
      border:1px solid rgba(23,49,40,.06);
      color:var(--brand-2);
      font-weight:600;
    }
    .side-list a:hover,
    .side-list a:focus-visible{
      background:rgba(166,124,69,.08);
      border-color:rgba(166,124,69,.35);
      color:var(--brand);
      outline:none;
    }
    .mini-entry{
      display:grid;
      grid-template-columns:74px 1fr;
      gap:12px;
      padding:10px 0;
      border-top:1px solid rgba(221,210,194,.7);
    }
    .mini-entry:first-of-type{
      border-top:none;
      padding-top:0;
    }
    .mini-thumb{
      width:74px;
      height:74px;
      border-radius:16px;
      overflow:hidden;
      flex:none;
      border:1px solid rgba(221,210,194,.85);
      box-shadow:0 8px 16px rgba(18,32,25,.06);
    }
    .mini-thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .mini-entry h4{
      margin:0 0 6px;
      color:var(--brand);
      font-size:.98rem;
      line-height:1.35;
    }
    .mini-entry p{
      margin:0;
      color:var(--muted);
      font-size:.9rem;
      line-height:1.7;
    }
    .brand-box{
      background:
        linear-gradient(180deg, rgba(23,49,40,.97) 0%, rgba(35,67,55,.98) 100%);
      color:#f5efe4;
    }
    .brand-box h3,
    .brand-box p,
    .brand-box a{
      color:inherit;
    }
    .brand-box p{
      color:rgba(245,239,228,.84);
    }
    .brand-box .btn{
      width:100%;
      box-shadow:none;
      margin-top:12px;
    }
    .brand-box .btn-outline{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.24);
      color:#fff;
    }
    .brand-box .btn-outline:hover,
    .brand-box .btn-outline:focus-visible{
      background:rgba(255,255,255,.14);
    }
    .pager{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:center;
      gap:10px;
      margin-top:18px;
    }
    .page-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:42px;
      height:42px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.82);
      color:var(--brand-2);
      font-weight:700;
      box-shadow:var(--shadow-soft);
    }
    .page-pill.current{
      background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
      border-color:transparent;
      color:#fff;
    }
    .page-pill:hover,
    .page-pill:focus-visible{
      border-color:rgba(166,124,69,.45);
      color:var(--brand);
      outline:none;
      transform:translateY(-1px);
    }
    .faq-section{
      padding:14px 0 20px;
    }
    .faq-grid{
      display:grid;
      gap:14px;
      max-width:960px;
    }
    details.faq-item{
      border-radius:22px;
      border:1px solid rgba(221,210,194,.96);
      background:rgba(255,255,255,.88);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    details.faq-item[open]{
      border-color:rgba(166,124,69,.42);
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:18px 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      font-weight:700;
      color:var(--brand);
      outline:none;
    }
    .faq-item summary::-webkit-details-marker{
      display:none;
    }
    .faq-item summary .q{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .faq-item summary .mark{
      width:28px;
      height:28px;
      flex:none;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:rgba(23,49,40,.08);
      color:var(--brand);
      font-size:.86rem;
      font-weight:800;
    }
    .faq-item summary .arrow{
      width:12px;
      height:12px;
      border-right:2px solid var(--muted);
      border-bottom:2px solid var(--muted);
      transform:rotate(45deg);
      margin-top:-4px;
      transition:transform .2s ease, border-color .2s ease;
      flex:none;
    }
    details[open] .faq-item summary .arrow{
      transform:rotate(225deg);
      border-color:var(--accent);
      margin-top:2px;
    }
    .faq-body{
      padding:0 20px 20px 20px;
      color:var(--muted);
      line-height:1.9;
      font-size:.96rem;
    }
    .cta-section{
      padding:26px 0 60px;
    }
    .cta-box{
      position:relative;
      overflow:hidden;
      padding:30px;
      border-radius:32px;
      border:1px solid rgba(34,61,51,.12);
      background:
        linear-gradient(135deg, rgba(23,49,40,.97) 0%, rgba(36,70,59,.98) 100%);
      color:#f7f1e7;
      box-shadow:var(--shadow);
    }
    .cta-box::before{
      content:"";
      position:absolute;
      inset:-40px;
      background:
        radial-gradient(380px 150px at 18% 16%, rgba(210,176,123,.16), transparent 65%),
        radial-gradient(320px 140px at 84% 24%, rgba(255,255,255,.1), transparent 62%);
      pointer-events:none;
    }
    .cta-inner{
      position:relative;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .cta-inner h2{
      margin:0 0 10px;
      font-size:clamp(1.5rem, 2.1vw, 2.2rem);
      line-height:1.25;
    }
    .cta-inner p{
      margin:0;
      max-width:760px;
      color:rgba(247,241,231,.84);
      line-height:1.9;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-left:auto;
    }
    .cta-actions .btn-outline{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.22);
      color:#fff;
      box-shadow:none;
    }
    .cta-actions .btn-outline:hover,
    .cta-actions .btn-outline:focus-visible{
      background:rgba(255,255,255,.14);
      border-color:rgba(255,255,255,.28);
    }
    .site-footer{
      margin-top:18px;
      padding:38px 0 22px;
      background:linear-gradient(180deg, rgba(23,49,40,.98) 0%, rgba(15,29,24,.98) 100%);
      color:#f5efe4;
      border-top:1px solid rgba(255,255,255,.06);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:22px;
      padding-bottom:20px;
    }
    .footer-brand h2{
      margin:0 0 12px;
      font-size:1.22rem;
      line-height:1.4;
    }
    .footer-brand p{
      margin:0;
      max-width:520px;
      color:rgba(245,239,228,.8);
      line-height:1.9;
    }
    .footer-col h3{
      margin:0 0 14px;
      font-size:1.02rem;
      color:#fff;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      width:fit-content;
      color:rgba(245,239,228,.84);
    }
    .footer-links a:hover,
    .footer-links a:focus-visible{
      color:#fff;
      text-decoration:underline;
      text-underline-offset:3px;
      outline:none;
    }
    .copyright{
      display:flex;
      flex-wrap:wrap;
      gap:10px 18px;
      justify-content:space-between;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      color:rgba(245,239,228,.72);
      font-size:.9rem;
      line-height:1.7;
    }

    @media (max-width: 1180px){
      .hero-grid{
        grid-template-columns:1.1fr .9fr;
      }
      .content-grid{
        grid-template-columns:1fr 320px;
      }
    }
    @media (max-width: 1024px){
      .header-inner{
        gap:12px;
      }
      .brand{
        min-width:200px;
      }
      .hero-grid{
        grid-template-columns:1fr;
      }
      .hero-visual{
        min-height:320px;
      }
      .summary-grid{
        grid-template-columns:1fr;
      }
      .content-grid{
        grid-template-columns:1fr;
      }
      .sidebar{
        position:static;
      }
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
      .footer-brand{
        grid-column:1 / -1;
      }
    }
    @media (max-width: 860px){
      .header-inner{
        min-height:72px;
        flex-wrap:wrap;
        padding:10px 0;
      }
      .menu-toggle{
        display:inline-flex;
        margin-left:auto;
      }
      .header-cta{
        display:none;
      }
      .main-nav{
        order:4;
        width:100%;
        max-height:0;
        overflow:hidden;
        opacity:0;
        margin-left:0;
        padding:0 0;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        transition:max-height .28s ease, opacity .2s ease, padding .2s ease;
      }
      .site-header.nav-open .main-nav{
        max-height:360px;
        opacity:1;
        padding:8px 0 14px;
      }
      .main-nav a{
        width:100%;
        border-radius:16px;
        justify-content:flex-start;
      }
      .entry-card{
        grid-template-columns:1fr;
      }
      .entry-media{
        min-height:210px;
      }
      .faq-item summary{
        padding:16px 16px;
      }
      .faq-body{
        padding:0 16px 16px 16px;
      }
      .cta-box,
      .hero-panel{
        border-radius:28px;
      }
    }
    @media (max-width: 520px){
      .container{
        width:min(var(--container), calc(100% - 24px));
      }
      .brand{
        min-width:0;
      }
      .brand-mark{
        font-size:.98rem;
      }
      .brand-sub{
        font-size:.78rem;
      }
      .hero-grid{
        padding:22px 18px;
        gap:18px;
      }
      .hero-copy .lead{
        font-size:.98rem;
      }
      .hero-actions,
      .cta-actions{
        flex-direction:column;
        align-items:stretch;
      }
      .btn{
        width:100%;
      }
      .search-row{
        gap:8px;
      }
      .search-box{
        flex-basis:100%;
      }
      .summary-section,
      .content-section,
      .faq-section,
      .cta-section{
        padding-left:0;
        padding-right:0;
      }
      .info-card,
      .side-card,
      .cta-box{
        padding:18px;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .pager{
        gap:8px;
      }
      .footer-grid{
        grid-template-columns:1fr;
      }
      .copyright{
        flex-direction:column;
      }
      .hero-visual{
        min-height:280px;
      }
      .visual-note{
        left:12px;
        right:12px;
        bottom:12px;
        padding:14px;
      }
      .page-pill{
        min-width:38px;
        height:38px;
      }
    }
    @media (max-width: 375px){
      .hero-grid{
        padding:18px 14px;
      }
      .hero-copy h1{
        font-size:1.7rem;
      }
      .section-kicker,
      .badge,
      .chip{
        font-size:.78rem;
      }
      .search-box{
        padding:9px 12px;
      }
      .info-card,
      .side-card,
      .entry-card{
        border-radius:20px;
      }
    }
