/* roulang page: index */
:root{
      --color-primary:#3A2338;
      --color-primary-2:#4A2E46;
      --color-secondary:#A67872;
      --color-accent:#D8B08C;
      --color-bg:#F8F4EF;
      --color-surface:#FFFFFF;
      --color-surface-soft:#FBF8F4;
      --color-text:#211F22;
      --color-muted:#6F666A;
      --color-line:#E7DED8;
      --color-success:#75816B;
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --shadow-soft:0 14px 40px rgba(58, 35, 56, .08);
      --shadow-lift:0 20px 55px rgba(58, 35, 56, .12);
      --container:1240px;
    }
    html{scroll-behavior:smooth}
    *{box-sizing:border-box}
    body{
      margin:0;
      color:var(--color-text);
      background:
        radial-gradient(circle at 15% 10%, rgba(214,176,140,.18), transparent 22%),
        radial-gradient(circle at 85% 0%, rgba(166,120,114,.14), transparent 18%),
        linear-gradient(180deg, #fcfaf7 0%, var(--color-bg) 100%);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.8;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    ::selection{background:rgba(58,35,56,.18);color:var(--color-primary)}
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    .site-container{max-width:var(--container);margin:0 auto;padding:0 20px}
    .section-space{padding:88px 0}
    .section-space-tight{padding:72px 0}
    .panel{
      background:rgba(255,255,255,.88);
      border:1px solid var(--color-line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);
    }
    .panel-strong{
      background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(251,248,244,.98));
      border:1px solid var(--color-line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);
    }
    .panel-dark{
      background:linear-gradient(135deg, #3A2338 0%, #2D1A2B 100%);
      color:#FAF7F2;
      border:1px solid rgba(255,255,255,.08);
      box-shadow:0 20px 55px rgba(58,35,56,.18);
    }
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 14px;border-radius:999px;
      background:rgba(58,35,56,.06);
      color:var(--color-primary);
      border:1px solid rgba(58,35,56,.08);
      font-size:13px;font-weight:600;letter-spacing:.02em;
    }
    .eyebrow-dot{
      width:7px;height:7px;border-radius:999px;background:var(--color-accent);
      box-shadow:0 0 0 4px rgba(216,176,140,.18);
    }
    .section-title{
      font-size:clamp(28px,3.2vw,44px);
      line-height:1.12;
      letter-spacing:-.03em;
      color:var(--color-primary);
      font-weight:800;
      margin:14px 0 12px;
    }
    .section-subtitle{
      font-size:16px;
      color:var(--color-muted);
      max-width:720px;
    }
    .hero-title{
      font-size:clamp(40px,5vw,72px);
      line-height:1.06;
      letter-spacing:-.04em;
      font-weight:800;
      color:var(--color-primary);
    }
    .grad-text{
      background:linear-gradient(90deg, var(--color-primary) 0%, #6b465f 55%, var(--color-secondary) 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .btn-primary,.btn-secondary,.btn-ghost{
      display:inline-flex;align-items:center;justify-content:center;gap:10px;
      min-height:48px;padding:0 20px;border-radius:999px;
      transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
      will-change:transform;
      white-space:nowrap;
      cursor:pointer;
      font-weight:700;
    }
    .btn-primary{
      background:var(--color-primary);
      color:#fff;
      box-shadow:0 10px 24px rgba(58,35,56,.16);
      border:1px solid rgba(58,35,56,.04);
    }
    .btn-primary:hover{transform:translateY(-2px);background:var(--color-primary-2);box-shadow:0 14px 30px rgba(58,35,56,.2)}
    .btn-secondary{
      background:#fff;
      color:var(--color-primary);
      border:1px solid var(--color-line);
      box-shadow:0 10px 22px rgba(58,35,56,.05);
    }
    .btn-secondary:hover{transform:translateY(-2px);border-color:rgba(58,35,56,.28);background:#fcf7f1}
    .btn-ghost{
      background:transparent;
      color:var(--color-primary);
      border:1px solid rgba(58,35,56,.12);
    }
    .btn-ghost:hover{transform:translateY(-2px);background:rgba(58,35,56,.04)}
    .pill{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid var(--color-line);
      background:#fff;
      color:var(--color-muted);
      font-size:13px;
    }
    .pill-accent{
      border-color:rgba(216,176,140,.45);
      background:rgba(216,176,140,.12);
      color:#8a5b37;
    }
    .nav-shell{
      background:rgba(255,252,248,.96);
      border-bottom:1px solid rgba(231,222,216,.9);
    }
    .brand-mark{
      display:flex;flex-direction:column;gap:2px;
      min-width:0;
    }
    .brand-name{
      font-size:18px;
      line-height:1.1;
      font-weight:800;
      color:var(--color-primary);
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .brand-sub{
      font-size:12px;
      color:var(--color-muted);
      white-space:nowrap;
    }
    .search-box{
      display:flex;align-items:center;gap:10px;
      min-width:260px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid var(--color-line);
      background:#fff;
      box-shadow:0 8px 20px rgba(58,35,56,.04);
    }
    .search-box input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--color-text);
      font-size:14px;
    }
    .search-box input::placeholder{color:#a2969a}
    .tab-scroll{
      overflow-x:auto;
      scrollbar-width:none;
      -ms-overflow-style:none;
    }
    .tab-scroll::-webkit-scrollbar{display:none}
    .nav-pills{
      display:flex;gap:10px;align-items:center;
      white-space:nowrap;
      padding-bottom:2px;
    }
    .nav-pill{
      display:inline-flex;align-items:center;
      height:38px;padding:0 14px;
      border-radius:999px;
      border:1px solid transparent;
      color:var(--color-muted);
      transition:all .22s ease;
      font-size:14px;
      font-weight:600;
    }
    .nav-pill:hover{
      background:rgba(58,35,56,.05);
      color:var(--color-primary);
      border-color:rgba(58,35,56,.08);
    }
    .nav-pill.active{
      background:var(--color-primary);
      color:#fff;
      border-color:var(--color-primary);
      box-shadow:0 8px 22px rgba(58,35,56,.14);
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 20% 20%, rgba(216,176,140,.16), transparent 26%),
        radial-gradient(circle at 80% 10%, rgba(166,120,114,.14), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(251,248,244,.98));
    }
    .hero-visual{
      position:relative;
      min-height:540px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(58,35,56,.98), rgba(74,46,70,.98));
      color:#fff;
      overflow:hidden;
      box-shadow:var(--shadow-lift);
      border:1px solid rgba(255,255,255,.08);
    }
    .hero-visual:before,
    .hero-visual:after{
      content:"";
      position:absolute;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      filter:none;
    }
    .hero-visual:before{width:280px;height:280px;right:-90px;top:-60px}
    .hero-visual:after{width:190px;height:190px;left:-70px;bottom:-60px}
    .hero-card{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:24px;
      backdrop-filter:none;
    }
    .metric-band{
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg, #3A2338 0%, #442941 56%, #2F1D2D 100%);
      color:#fff;
      box-shadow:0 18px 50px rgba(58,35,56,.18);
    }
    .metric-card{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.11);
      border-radius:22px;
      padding:18px;
      min-height:118px;
      transition:transform .22s ease, background-color .22s ease;
    }
    .metric-card:hover{transform:translateY(-2px);background:rgba(255,255,255,.1)}
    .metric-num{
      font-size:clamp(26px,2.8vw,38px);
      line-height:1;
      font-weight:800;
      color:var(--color-accent);
      letter-spacing:-.03em;
    }
    .metric-label{font-size:14px;color:rgba(255,255,255,.9);margin-top:10px}
    .metric-desc{font-size:13px;color:rgba(255,255,255,.72);margin-top:6px;line-height:1.7}
    .feature-card,.scene-card,.step-card,.faq-item,.contact-card,.content-item{
      background:var(--color-surface);
      border:1px solid var(--color-line);
      border-radius:var(--radius-lg);
      box-shadow:0 10px 26px rgba(58,35,56,.05);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .feature-card:hover,.scene-card:hover,.step-card:hover,.faq-item:hover,.contact-card:hover,.content-item:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-lift);
      border-color:rgba(58,35,56,.18);
    }
    .feature-icon{
      width:46px;height:46px;border-radius:16px;
      display:grid;place-items:center;
      background:linear-gradient(135deg, rgba(58,35,56,.12), rgba(216,176,140,.18));
      color:var(--color-primary);
      font-weight:800;
    }
    .feature-num{
      font-size:13px;font-weight:700;color:var(--color-secondary);
      letter-spacing:.08em;
    }
    .latest-list{
      display:grid;
      gap:14px;
    }
    .content-item{
      display:grid;
      grid-template-columns:84px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px;
    }
    .date-block{
      border-radius:18px;
      background:linear-gradient(180deg, rgba(58,35,56,.08), rgba(216,176,140,.12));
      color:var(--color-primary);
      padding:14px 12px;
      text-align:center;
      border:1px solid rgba(58,35,56,.06);
      min-height:84px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .date-day{font-size:28px;font-weight:800;line-height:1}
    .date-month{font-size:12px;color:var(--color-muted);margin-top:4px}
    .content-title{
      font-size:18px;font-weight:800;color:var(--color-primary);line-height:1.35;
    }
    .content-summary{font-size:15px;color:var(--color-muted);margin-top:8px;line-height:1.7}
    .content-meta{
      display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin-top:12px
    }
    .content-action{
      display:inline-flex;align-items:center;gap:8px;
      color:var(--color-primary);
      font-weight:700;
      font-size:14px;
      padding-left:6px;
      white-space:nowrap;
    }
    .content-action span{transition:transform .2s ease}
    .content-item:hover .content-action span{transform:translateX(3px)}
    .side-note{
      border-left:3px solid rgba(58,35,56,.2);
      padding-left:16px;
      color:var(--color-muted);
      font-size:15px;
      line-height:1.8;
    }
    .scene-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
    }
    .scene-large{grid-column:span 7}
    .scene-small{grid-column:span 5}
    .scene-mini{grid-column:span 4}
    .scene-card{
      padding:24px;
      min-height:220px;
      position:relative;
      overflow:hidden;
    }
    .scene-card:after{
      content:"";
      position:absolute;
      right:-40px;
      top:-40px;
      width:140px;height:140px;
      border-radius:999px;
      background:radial-gradient(circle, rgba(216,176,140,.22), transparent 65%);
      pointer-events:none;
    }
    .scene-tag,.step-tag{
      display:inline-flex;align-items:center;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(58,35,56,.05);
      color:var(--color-primary);
      font-size:12px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .scene-title{
      font-size:23px;font-weight:800;color:var(--color-primary);line-height:1.2;margin:14px 0 12px;
    }
    .scene-text{font-size:15px;color:var(--color-muted);line-height:1.8}
    .step-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .step-card{
      padding:24px;
      min-height:240px;
    }
    .step-index{
      font-size:44px;
      line-height:1;
      font-weight:800;
      color:rgba(58,35,56,.14);
      letter-spacing:-.04em;
    }
    .step-name{
      font-size:20px;font-weight:800;color:var(--color-primary);margin:14px 0 10px;
    }
    .step-desc{font-size:15px;color:var(--color-muted);line-height:1.8}
    .faq-list{display:grid;gap:14px}
    .faq-button{
      width:100%;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:20px;
      background:transparent;
      border:0;
      padding:22px 24px;
      color:var(--color-primary);
      font-weight:800;
      text-align:left;
      cursor:pointer;
    }
    .faq-q{
      font-size:18px;
      line-height:1.5;
    }
    .faq-icon{
      flex:0 0 auto;
      width:34px;height:34px;border-radius:999px;
      background:rgba(58,35,56,.05);
      border:1px solid var(--color-line);
      display:grid;place-items:center;
      color:var(--color-primary);
      transition:transform .22s ease, background-color .22s ease;
      margin-top:1px;
    }
    .faq-item.open .faq-icon{transform:rotate(45deg);background:rgba(216,176,140,.16)}
    .faq-panel{
      max-height:0;
      overflow:hidden;
      transition:max-height .3s ease, opacity .3s ease;
      opacity:0;
      padding:0 24px;
    }
    .faq-item.open .faq-panel{
      max-height:240px;
      opacity:1;
      padding-bottom:22px;
    }
    .faq-answer{
      font-size:15px;color:var(--color-muted);line-height:1.85;
      padding-top:0;
      border-top:1px dashed rgba(231,222,216,.9);
    }
    .contact-wrap{
      background:
        radial-gradient(circle at 0% 0%, rgba(216,176,140,.18), transparent 28%),
        linear-gradient(180deg, #fffdfb, #fbf7f2);
      border:1px solid var(--color-line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);
    }
    .form-field{
      width:100%;
      min-height:52px;
      border-radius:16px;
      border:1px solid var(--color-line);
      background:#fff;
      padding:0 16px;
      color:var(--color-text);
      outline:none;
      transition:border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
    }
    .form-field:focus{
      border-color:rgba(58,35,56,.5);
      box-shadow:0 0 0 4px rgba(58,35,56,.08);
      background:#fffefc;
    }
    textarea.form-field{
      min-height:140px;
      padding:14px 16px;
      resize:vertical;
    }
    .footer{
      background:linear-gradient(180deg, #2a1828 0%, #241523 100%);
      color:#f7f2ec;
    }
    .footer a{color:#f7f2ec}
    .footer-link{
      color:rgba(247,242,236,.8);
      transition:color .2s ease, transform .2s ease;
    }
    .footer-link:hover{color:#fff;transform:translateX(2px)}
    .footer-line{border-top:1px solid rgba(255,255,255,.08)}
    .muted-line{border-color:var(--color-line)}
    .article-style a{
      color:var(--color-primary);
      text-decoration:underline;
      text-decoration-color:rgba(58,35,56,.25);
      text-underline-offset:3px;
    }
    .article-style h2,.article-style h3{
      color:var(--color-primary);
      font-weight:800;
      line-height:1.25;
      margin:2em 0 .8em;
    }
    .article-style h2{
      font-size:1.55rem;
      border-left:4px solid rgba(58,35,56,.2);
      padding-left:14px;
    }
    .article-style h3{font-size:1.2rem}
    .article-style p,.article-style li{font-size:1.05rem;line-height:1.9;color:var(--color-text)}
    .article-style p{margin:1em 0}
    .article-style ul,.article-style ol{padding-left:1.4em;margin:1em 0}
    .article-style blockquote{
      margin:1.3em 0;
      padding:18px 20px;
      background:rgba(216,176,140,.12);
      border-left:4px solid var(--color-primary);
      border-radius:16px;
      color:var(--color-primary);
    }
    .article-style img{
      border-radius:20px;
      border:1px solid var(--color-line);
      box-shadow:0 12px 28px rgba(58,35,56,.08);
    }
    .article-style table{
      width:100%;
      border-collapse:collapse;
      border-radius:18px;
      overflow:hidden;
      display:block;
      max-width:100%;
    }
    .article-style thead{background:rgba(216,176,140,.16)}
    .article-style th,.article-style td{
      padding:12px 14px;
      border:1px solid var(--color-line);
      text-align:left;
      white-space:nowrap;
    }
    .article-style code{
      background:rgba(58,35,56,.06);
      padding:.18rem .38rem;
      border-radius:8px;
    }
    @media (max-width: 1024px){
      .scene-large,.scene-small,.scene-mini{grid-column:span 12}
      .step-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .content-item{grid-template-columns:76px 1fr}
      .content-action{grid-column:2}
      .hero-visual{min-height:460px}
    }
    @media (max-width: 768px){
      .section-space{padding:64px 0}
      .section-space-tight{padding:56px 0}
      .brand-name{font-size:16px}
      .search-box{min-width:0;width:100%}
      .hero-title{font-size:clamp(36px,9vw,48px)}
      .step-grid{grid-template-columns:1fr}
      .content-item{grid-template-columns:1fr;align-items:flex-start}
      .date-block{width:100%;min-height:auto;flex-direction:row;justify-content:space-between;align-items:center}
      .faq-q{font-size:16px}
      .faq-button{padding:18px 18px}
      .faq-panel{padding:0 18px}
    }
    @media (max-width: 520px){
      .site-container{padding:0 16px}
      .nav-pill{height:36px;padding:0 12px}
      .btn-primary,.btn-secondary,.btn-ghost{width:100%}
    }

/* roulang page: article */
:root{
      --primary:#3A2338;
      --primary-strong:#2b1929;
      --secondary:#A67872;
      --accent:#D8B08C;
      --bg:#F8F4EF;
      --card:#FFFFFF;
      --card-soft:#FBF8F4;
      --text:#211F22;
      --muted:#6F666A;
      --line:#E7DED8;
      --success:#75816B;
      --radius-lg:32px;
      --radius-md:24px;
      --radius-sm:16px;
      --shadow-soft:0 18px 55px rgba(58,35,56,.10);
      --shadow-card:0 16px 44px rgba(58,35,56,.08);
      --container:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(216,176,140,.20), transparent 30%),
        radial-gradient(circle at 88% 0%, rgba(166,120,114,.18), transparent 32%),
        linear-gradient(180deg,#F8F4EF 0%,#FBF8F4 48%,#F8F4EF 100%);
      line-height:1.75;
      overflow-x:hidden;
    }

    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.38;
      background-image:
        linear-gradient(rgba(58,35,56,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58,35,56,.035) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(180deg,rgba(0,0,0,.7),transparent 70%);
      z-index:-1;
    }

    a{color:inherit;text-decoration:none}
    img{display:block;max-width:100%;height:auto}
    button,input,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(216,176,140,.45);color:var(--primary)}
    :focus-visible{outline:3px solid rgba(216,176,140,.72);outline-offset:3px;border-radius:12px}

    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }

    .nav-shell{
      background:rgba(248,244,239,.94);
      border-bottom:1px solid rgba(231,222,216,.9);
      backdrop-filter:saturate(150%) blur(16px);
      box-shadow:0 8px 30px rgba(58,35,56,.045);
    }

    .brand-mark{min-width:0}
    .brand-name{
      color:var(--primary);
      font-weight:900;
      letter-spacing:-.02em;
      line-height:1.15;
      font-size:clamp(17px,2vw,21px);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:52vw;
    }
    .brand-sub{
      margin-top:2px;
      color:var(--muted);
      font-size:12px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:58vw;
    }

    .search-box{
      min-height:46px;
      width:min(410px,100%);
      display:flex;
      align-items:center;
      gap:10px;
      padding:0 16px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.78);
      transition:.25s ease;
    }
    .search-box:hover{
      border-color:rgba(58,35,56,.25);
      box-shadow:0 10px 28px rgba(58,35,56,.06);
    }
    .search-box:focus-within{
      border-color:rgba(58,35,56,.55);
      background:#fff;
      box-shadow:0 0 0 4px rgba(216,176,140,.18);
    }
    .search-box input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--text);
      font-size:14px;
    }
    .search-box input::placeholder{color:#a2969a}

    .btn-primary,
    .btn-secondary{
      min-height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      font-weight:800;
      transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:var(--primary);
      box-shadow:0 12px 30px rgba(58,35,56,.18);
    }
    .btn-primary:hover{
      background:var(--primary-strong);
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(58,35,56,.24);
    }
    .btn-primary:active,
    .btn-secondary:active{transform:translateY(0)}
    .btn-secondary{
      color:var(--primary);
      background:rgba(255,255,255,.78);
      border:1px solid var(--line);
    }
    .btn-secondary:hover{
      background:#FFF7F0;
      border-color:rgba(58,35,56,.35);
      transform:translateY(-2px);
      box-shadow:0 14px 34px rgba(58,35,56,.08);
    }

    .tab-scroll{
      overflow-x:auto;
      scrollbar-width:none;
      -webkit-overflow-scrolling:touch;
    }
    .tab-scroll::-webkit-scrollbar{display:none}
    .nav-pills{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      padding:2px;
    }
    .nav-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:0 16px;
      border-radius:999px;
      color:var(--text);
      font-size:14px;
      font-weight:750;
      transition:.22s ease;
    }
    .nav-pill:hover{
      color:var(--primary);
      background:rgba(58,35,56,.07);
    }
    .nav-pill.active{
      color:#fff;
      background:var(--primary);
      box-shadow:0 10px 24px rgba(58,35,56,.18);
    }

    .section{
      padding-block:80px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:34px;
      padding:0 13px;
      border-radius:999px;
      color:var(--primary);
      background:rgba(216,176,140,.18);
      border:1px solid rgba(216,176,140,.42);
      font-size:13px;
      font-weight:850;
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:var(--secondary);
      box-shadow:0 0 0 4px rgba(166,120,114,.14);
    }

    .article-hero{
      padding:54px 0 64px;
      border-bottom:1px solid rgba(231,222,216,.75);
      position:relative;
      overflow:hidden;
    }
    .article-hero::after{
      content:"";
      position:absolute;
      right:-160px;
      top:20px;
      width:360px;
      height:360px;
      border-radius:999px;
      background:radial-gradient(circle,rgba(216,176,140,.24),transparent 68%);
      pointer-events:none;
    }

    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:var(--muted);
      font-size:14px;
      margin-bottom:26px;
    }
    .breadcrumb a{
      color:var(--primary);
      font-weight:750;
    }
    .breadcrumb span{color:#9a8e92}
    .breadcrumb .current{
      max-width:620px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      color:var(--muted);
    }

    .article-title{
      margin:22px 0 0;
      max-width:950px;
      font-size:clamp(36px,5.2vw,58px);
      line-height:1.12;
      letter-spacing:-.045em;
      font-weight:950;
      color:var(--primary);
    }
    .article-lead{
      margin-top:24px;
      max-width:820px;
      color:var(--muted);
      font-size:18px;
      line-height:1.9;
      background:rgba(255,255,255,.64);
      border:1px solid rgba(231,222,216,.9);
      border-radius:24px;
      padding:22px 24px;
      box-shadow:0 10px 32px rgba(58,35,56,.045);
    }

    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
      color:var(--muted);
      font-size:14px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:0 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--primary);
      font-weight:800;
    }
    .badge.warm{
      background:rgba(216,176,140,.18);
      border-color:rgba(216,176,140,.42);
      color:#6f4841;
    }

    .reading-layout{
      display:grid;
      grid-template-columns:minmax(0, 1fr) 300px;
      gap:34px;
      align-items:start;
      padding-block:72px;
    }

    .article-card,
    .side-card,
    .related-card,
    .cta-card,
    .faq-item{
      background:rgba(255,255,255,.82);
      border:1px solid var(--line);
      border-radius:var(--radius-md);
      box-shadow:var(--shadow-card);
    }

    .article-card{
      padding:clamp(24px,4vw,44px);
      min-width:0;
    }

    .prose-content{
      max-width:820px;
      color:#2a2629;
      font-size:17.5px;
      line-height:1.88;
      overflow-wrap:anywhere;
    }
    .prose-content > *:first-child{margin-top:0}
    .prose-content p{margin:1.08em 0}
    .prose-content h2{
      margin:2.15em 0 .85em;
      padding-left:16px;
      border-left:5px solid var(--primary);
      color:var(--primary);
      font-size:clamp(25px,3vw,34px);
      line-height:1.22;
      font-weight:920;
      letter-spacing:-.02em;
    }
    .prose-content h3{
      margin:1.7em 0 .65em;
      color:#3c3039;
      font-size:clamp(21px,2.3vw,26px);
      line-height:1.3;
      font-weight:900;
    }
    .prose-content h4{
      margin:1.4em 0 .5em;
      color:var(--primary);
      font-size:19px;
      font-weight:850;
    }
    .prose-content a{
      color:var(--primary);
      font-weight:800;
      text-decoration:underline;
      text-decoration-color:rgba(166,120,114,.38);
      text-underline-offset:4px;
      transition:.2s ease;
    }
    .prose-content a:hover{
      color:#6d3a63;
      text-decoration-color:var(--primary);
    }
    .prose-content ul,
    .prose-content ol{
      margin:1.1em 0 1.2em;
      padding-left:1.35em;
    }
    .prose-content li{margin:.45em 0}
    .prose-content blockquote{
      margin:1.6em 0;
      padding:20px 24px;
      border-left:5px solid var(--primary);
      border-radius:18px;
      background:#FFF7F0;
      color:#4d4448;
      box-shadow:inset 0 0 0 1px rgba(231,222,216,.76);
    }
    .prose-content img{
      margin:2em auto;
      border-radius:20px;
      border:1px solid var(--line);
      box-shadow:0 18px 46px rgba(58,35,56,.10);
    }
    .prose-content table{
      width:100%;
      border-collapse:collapse;
      margin:1.7em 0;
      overflow:hidden;
      border-radius:16px;
      box-shadow:0 0 0 1px var(--line);
      display:block;
      overflow-x:auto;
      white-space:nowrap;
    }
    .prose-content th,
    .prose-content td{
      padding:13px 15px;
      border:1px solid var(--line);
      text-align:left;
    }
    .prose-content th{
      background:#F6EEE7;
      color:var(--primary);
      font-weight:850;
    }
    .prose-content code{
      padding:.15em .45em;
      border-radius:8px;
      background:#F6EEE7;
      color:#6f4841;
      font-size:.92em;
    }
    .prose-content pre{
      overflow:auto;
      padding:18px;
      border-radius:18px;
      background:#2b2329;
      color:#fff;
    }

    .empty-state{
      display:grid;
      place-items:center;
      text-align:center;
      min-height:320px;
      padding:40px 18px;
      border-radius:24px;
      background:linear-gradient(145deg,rgba(216,176,140,.14),rgba(255,255,255,.82));
      border:1px dashed rgba(166,120,114,.45);
    }
    .empty-icon{
      width:70px;
      height:70px;
      border-radius:24px;
      display:grid;
      place-items:center;
      color:var(--primary);
      background:rgba(216,176,140,.22);
      font-size:28px;
      font-weight:900;
      margin-inline:auto;
    }

    .article-aside{
      position:sticky;
      top:150px;
      display:grid;
      gap:16px;
    }
    .side-card{
      padding:22px;
    }
    .side-title{
      color:var(--primary);
      font-size:18px;
      font-weight:900;
      margin-bottom:14px;
    }
    .info-list{
      display:grid;
      gap:12px;
      color:var(--muted);
      font-size:14px;
    }
    .info-list div{
      display:flex;
      gap:10px;
      justify-content:space-between;
      padding-bottom:12px;
      border-bottom:1px solid rgba(231,222,216,.82);
    }
    .info-list div:last-child{
      padding-bottom:0;
      border-bottom:0;
    }
    .info-list strong{
      color:var(--text);
      font-weight:850;
      text-align:right;
      max-width:170px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .quick-links{
      display:grid;
      gap:10px;
      margin-top:14px;
    }
    .quick-links a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      min-height:42px;
      padding:0 13px;
      border-radius:14px;
      background:#FBF8F4;
      border:1px solid var(--line);
      color:var(--primary);
      font-size:14px;
      font-weight:850;
      transition:.22s ease;
    }
    .quick-links a:hover{
      transform:translateY(-2px);
      border-color:rgba(58,35,56,.32);
      background:#FFF7F0;
    }

    .related-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:20px;
      margin-top:30px;
    }
    .related-card{
      padding:24px;
      transition:.25s ease;
    }
    .related-card:hover{
      transform:translateY(-3px);
      border-color:rgba(58,35,56,.28);
      box-shadow:0 20px 54px rgba(58,35,56,.10);
    }
    .related-card .date{
      color:var(--secondary);
      font-size:13px;
      font-weight:850;
    }
    .related-card h3{
      margin:10px 0;
      color:var(--primary);
      font-size:21px;
      line-height:1.36;
      font-weight:920;
    }
    .related-card p{
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      margin:0 0 14px;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--primary);
      font-size:14px;
      font-weight:900;
      transition:.22s ease;
    }
    .text-link:hover{
      gap:10px;
      color:#6d3a63;
    }

    .faq-wrap{
      display:grid;
      gap:14px;
      margin-top:30px;
    }
    .faq-item{
      overflow:hidden;
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:19px 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      color:var(--primary);
      font-weight:900;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary::after{
      content:"+";
      width:28px;
      height:28px;
      flex:0 0 auto;
      display:grid;
      place-items:center;
      border-radius:999px;
      background:rgba(216,176,140,.18);
      color:var(--primary);
      transition:.25s ease;
    }
    .faq-item[open]{
      background:#FFF7F0;
    }
    .faq-item[open] summary::after{
      content:"−";
      background:var(--primary);
      color:#fff;
    }
    .faq-item p{
      margin:0;
      padding:0 22px 22px;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }

    .cta-section{
      padding:16px 0 86px;
    }
    .cta-card{
      padding:clamp(28px,5vw,48px);
      background:
        radial-gradient(circle at 92% 20%, rgba(216,176,140,.22), transparent 28%),
        linear-gradient(135deg,#3A2338,#4b3048 62%,#6f514b);
      color:#fff;
      overflow:hidden;
      position:relative;
    }
    .cta-card::after{
      content:"";
      position:absolute;
      inset:auto -70px -120px auto;
      width:300px;
      height:300px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
    }
    .cta-card h2{
      max-width:720px;
      font-size:clamp(30px,4vw,46px);
      line-height:1.18;
      letter-spacing:-.035em;
      font-weight:950;
      margin:0;
    }
    .cta-card p{
      max-width:700px;
      margin:18px 0 0;
      color:rgba(255,255,255,.75);
      font-size:16px;
      line-height:1.9;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
      position:relative;
      z-index:1;
    }
    .btn-light{
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 22px;
      border-radius:999px;
      background:#fff;
      color:var(--primary);
      font-weight:900;
      transition:.25s ease;
    }
    .btn-light:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(0,0,0,.16);
    }
    .btn-ghost{
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 22px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.28);
      color:#fff;
      font-weight:900;
      transition:.25s ease;
    }
    .btn-ghost:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.10);
    }

    .footer{
      color:#fff;
      background:
        radial-gradient(circle at 12% 0%, rgba(216,176,140,.18), transparent 34%),
        linear-gradient(180deg,#2b1929 0%,#211821 100%);
    }
    .footer-link{
      color:rgba(255,255,255,.74);
      font-size:15px;
      transition:.22s ease;
    }
    .footer-link:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .footer-line{
      border-top:1px solid rgba(255,255,255,.12);
    }

    @media (max-width:1024px){
      .site-container{width:min(100% - 32px, var(--container))}
      .reading-layout{
        grid-template-columns:1fr;
        padding-block:56px;
      }
      .article-aside{
        position:static;
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .related-grid{grid-template-columns:1fr}
    }

    @media (max-width:768px){
      .section{padding-block:62px}
      .article-hero{padding:38px 0 48px}
      .article-lead{
        font-size:16px;
        padding:18px;
      }
      .article-card{padding:22px}
      .prose-content{
        font-size:16.5px;
        line-height:1.86;
      }
      .article-aside{grid-template-columns:1fr}
      .search-box{width:100%}
      .btn-primary.text-sm{width:100%}
      .brand-name{max-width:70vw}
      .brand-sub{max-width:74vw}
      .breadcrumb .current{max-width:82vw}
    }

    @media (max-width:520px){
      .site-container{width:min(100% - 24px, var(--container))}
      .brand-name{font-size:16px;max-width:64vw}
      .brand-sub{font-size:11px;max-width:66vw}
      .nav-pill{padding:0 13px}
      .article-title{font-size:34px}
      .meta-row{gap:8px}
      .related-card{padding:20px}
      .cta-actions a{width:100%}
      .footer .grid{gap:28px}
    }
