/* roulang page: index */
:root{
      --color-ink:#241C1A;
      --color-muted:#7B6E68;
      --color-bg:#F8F2EA;
      --color-card:#FFFDF9;
      --color-primary:#A86A56;
      --color-primary-dark:#7C4638;
      --color-accent:#D8B98C;
      --color-soft:#EFE2D4;
      --border:rgba(124,70,56,.16);
      --shadow:0 18px 50px rgba(80,45,35,.08);
      --shadow-hover:0 24px 65px rgba(80,45,35,.13);
      --radius:24px;
      --radius-lg:32px;
      --container:1280px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:PingFang SC,Microsoft YaHei,Noto Sans SC,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;
      color:var(--color-ink);
      background:
        radial-gradient(circle at 8% 8%, rgba(216,185,140,.22), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(168,106,86,.12), transparent 30%),
        linear-gradient(180deg,#FBF6EF 0%,var(--color-bg) 48%,#F6EDE3 100%);
      line-height:1.75;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.32;
      background-image:
        linear-gradient(rgba(124,70,56,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,70,56,.035) 1px, transparent 1px);
      background-size:24px 24px;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img,svg{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    .site-container{width:min(100% - 32px,var(--container));margin-inline:auto}
    .top-strip{
      min-height:40px;
      background:rgba(255,253,249,.78);
      border-bottom:1px solid var(--border);
      color:var(--color-muted);
      font-size:13px;
      letter-spacing:.01em;
    }
    .nav-shell{
      position:sticky;
      top:0;
      z-index:40;
      background:rgba(248,242,234,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(124,70,56,.12);
      transition:box-shadow .25s ease, background .25s ease;
    }
    .nav-shell.is-scrolled{box-shadow:0 12px 32px rgba(80,45,35,.08);background:rgba(248,242,234,.94)}
    .brand-mark{
      width:42px;height:42px;border-radius:16px;
      display:grid;place-items:center;
      border:1px solid rgba(168,106,86,.28);
      background:linear-gradient(145deg,#FFFDF9,#EFE2D4);
      color:var(--color-primary-dark);
      box-shadow:inset 0 0 0 6px rgba(216,185,140,.18);
      font-weight:800;
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:0 16px;
      border-radius:999px;
      color:var(--color-muted);
      font-weight:650;
      transition:background .22s ease,color .22s ease, transform .22s ease;
    }
    .nav-link:hover{background:rgba(239,226,212,.72);color:var(--color-primary-dark);transform:translateY(-1px)}
    .nav-link.active{background:rgba(168,106,86,.12);color:var(--color-primary-dark)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      font-weight:750;
      border:1px solid transparent;
      transition:transform .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
      white-space:nowrap;
    }
    .btn-primary{background:var(--color-primary);color:#fff;box-shadow:0 14px 30px rgba(168,106,86,.22)}
    .btn-primary:hover{background:var(--color-primary-dark);transform:translateY(-2px);box-shadow:0 18px 40px rgba(124,70,56,.26)}
    .btn-secondary{background:rgba(255,253,249,.72);color:var(--color-primary-dark);border-color:rgba(124,70,56,.18)}
    .btn-secondary:hover{background:#FFFDF9;border-color:rgba(168,106,86,.34);transform:translateY(-2px)}
    .btn:focus-visible,.nav-link:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,.faq-button:focus-visible{
      outline:3px solid rgba(168,106,86,.28);
      outline-offset:3px;
    }
    .mobile-panel{
      display:none;
      border:1px solid var(--border);
      background:rgba(255,253,249,.96);
      box-shadow:var(--shadow);
      border-radius:22px;
      padding:10px;
      margin-top:12px;
    }
    .mobile-panel.open{display:block}
    main section{position:relative}
    .section-pad{padding:96px 0}
    .section-pad-sm{padding:72px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:7px 12px;border-radius:999px;
      background:rgba(216,185,140,.18);
      border:1px solid rgba(216,185,140,.42);
      color:var(--color-primary-dark);
      font-size:13px;font-weight:760;
      letter-spacing:.08em;
    }
    .note-card{
      background:rgba(255,253,249,.9);
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .note-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover);border-color:rgba(168,106,86,.28)}
    .hero-stage{
      border:1px solid rgba(124,70,56,.15);
      border-radius:34px;
      background:
        linear-gradient(135deg,rgba(255,253,249,.96),rgba(239,226,212,.62)),
        radial-gradient(circle at 20% 30%,rgba(216,185,140,.22),transparent 30%);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .stage-tile{
      min-height:132px;
      border:1px solid rgba(124,70,56,.14);
      border-radius:24px;
      background:rgba(255,253,249,.72);
      padding:20px;
      transition:transform .25s ease, background .25s ease, border-color .25s ease;
    }
    .stage-tile:hover{transform:translateY(-3px);background:#FFFDF9;border-color:rgba(168,106,86,.28)}
    .count-box{
      min-width:74px;
      border-radius:18px;
      background:#FFFDF9;
      border:1px solid rgba(216,185,140,.5);
      padding:11px 10px;
      text-align:center;
      box-shadow:inset 0 -8px 18px rgba(239,226,212,.55);
      animation:pulseSoft 2.4s ease-in-out infinite;
    }
    @keyframes pulseSoft{
      0%,100%{transform:translateY(0);box-shadow:inset 0 -8px 18px rgba(239,226,212,.55)}
      50%{transform:translateY(-1px);box-shadow:0 8px 22px rgba(168,106,86,.12), inset 0 -8px 18px rgba(239,226,212,.55)}
    }
    .bento-card{
      position:relative;
      overflow:hidden;
      min-height:220px;
      padding:24px;
      border-radius:28px;
      border:1px solid rgba(124,70,56,.15);
      background:linear-gradient(145deg,rgba(255,253,249,.94),rgba(239,226,212,.55));
      box-shadow:var(--shadow);
      transition:transform .25s ease, box-shadow .25s ease;
    }
    .bento-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover)}
    .bento-card:after{
      content:"";
      position:absolute;
      width:190px;height:190px;
      right:-70px;bottom:-80px;
      border-radius:50%;
      background:rgba(216,185,140,.24);
    }
    .badge{
      display:inline-flex;align-items:center;
      border-radius:999px;
      padding:6px 10px;
      background:rgba(168,106,86,.1);
      color:var(--color-primary-dark);
      border:1px solid rgba(168,106,86,.18);
      font-size:12px;
      font-weight:760;
    }
    .tag{
      display:inline-flex;align-items:center;
      min-height:34px;
      padding:0 13px;
      border-radius:999px;
      background:rgba(255,253,249,.75);
      border:1px solid rgba(124,70,56,.14);
      color:var(--color-muted);
      font-size:14px;
      transition:background .2s ease,color .2s ease,transform .2s ease;
    }
    .tag:hover,.tag.active{background:var(--color-primary);color:#fff;transform:translateY(-1px)}
    .compare-row{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .compare-cell{
      border:1px solid rgba(124,70,56,.13);
      border-radius:22px;
      background:rgba(255,253,249,.72);
      padding:18px;
    }
    .news-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:16px 0;
      border-bottom:1px dashed rgba(124,70,56,.2);
    }
    .news-item:last-child{border-bottom:0}
    .faq-item{
      border:1px solid rgba(124,70,56,.14);
      background:rgba(255,253,249,.82);
      border-radius:22px;
      overflow:hidden;
      box-shadow:0 12px 32px rgba(80,45,35,.05);
    }
    .faq-button{
      width:100%;
      min-height:58px;
      padding:18px 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      text-align:left;
      font-weight:780;
      color:var(--color-ink);
      background:transparent;
      border:0;
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      opacity:0;
      transition:max-height .28s ease, opacity .28s ease;
    }
    .faq-item.open .faq-answer{max-height:220px;opacity:1}
    .faq-item.open .faq-icon{transform:rotate(45deg)}
    .faq-icon{transition:transform .22s ease;color:var(--color-primary-dark);font-size:24px;line-height:1}
    .form-input{
      width:100%;
      min-height:48px;
      border:1px solid rgba(124,70,56,.16);
      border-radius:16px;
      background:#FFFDF9;
      padding:0 14px;
      color:var(--color-ink);
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    textarea.form-input{padding:12px 14px;min-height:96px;resize:vertical}
    .form-input:focus{border-color:var(--color-primary);box-shadow:0 0 0 4px rgba(168,106,86,.12);outline:none}
    .footer{
      background:linear-gradient(135deg,#2B201D,#4B3028);
      color:rgba(255,253,249,.86);
      border-top:1px solid rgba(255,253,249,.12);
    }
    .footer a{color:rgba(255,253,249,.78);transition:color .2s ease}
    .footer a:hover{color:#fff}
    .reveal{animation:riseIn .7s ease both}
    @keyframes riseIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
    @media (max-width:1024px){
      .section-pad{padding:78px 0}
      .compare-row{grid-template-columns:1fr}
      .desktop-nav{display:none}
    }
    @media (min-width:1025px){
      .mobile-only{display:none!important}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 24px,var(--container))}
      .section-pad{padding:64px 0}
      .section-pad-sm{padding:54px 0}
      .top-strip .hide-sm{display:none}
      .count-box{min-width:calc(50% - 8px)}
      .news-item{grid-template-columns:1fr;gap:6px}
      .hero-stage{border-radius:26px}
      .bento-card{min-height:190px}
    }
    @media (max-width:520px){
      .btn{width:100%;min-height:48px}
      .top-strip{font-size:12px}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .stage-tile{min-height:auto}
    }

/* roulang page: category1 */
:root{
      --color-ink:#241C1A;
      --color-muted:#7B6E68;
      --color-bg:#F8F2EA;
      --color-card:#FFFDF9;
      --color-primary:#A86A56;
      --color-primary-dark:#7C4638;
      --color-accent:#D8B98C;
      --color-soft:#EFE2D4;
      --border:rgba(124,70,56,.16);
      --border-strong:rgba(124,70,56,.28);
      --shadow:0 18px 50px rgba(80,45,35,.08);
      --shadow-hover:0 24px 70px rgba(80,45,35,.13);
      --radius:24px;
      --radius-lg:34px;
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--color-ink);
      background:
        radial-gradient(circle at 8% 6%,rgba(216,185,140,.23),transparent 28%),
        radial-gradient(circle at 90% 15%,rgba(168,106,86,.12),transparent 26%),
        linear-gradient(180deg,#FBF6EF 0%,var(--color-bg) 54%,#F6ECE1 100%);
      font-family:PingFang SC,Microsoft YaHei,Noto Sans SC,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;
      line-height:1.75;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      z-index:-1;
      pointer-events:none;
      opacity:.34;
      background-image:
        linear-gradient(rgba(124,70,56,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(124,70,56,.045) 1px,transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),rgba(0,0,0,.15));
    }
    a{color:inherit;text-decoration:none}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    img,svg{max-width:100%;display:block}
    ::selection{background:rgba(168,106,86,.22)}
    .site-container{
      width:min(var(--container),calc(100% - 40px));
      margin-inline:auto;
    }
    .text-muted{color:var(--color-muted)}
    .text-primary{color:var(--color-primary)}
    .text-primaryDark{color:var(--color-primary-dark)}
    .top-strip{
      min-height:40px;
      color:var(--color-muted);
      font-size:13px;
      background:rgba(248,242,234,.88);
      border-bottom:1px solid var(--border);
    }
    .nav-shell{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,253,249,.78);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(124,70,56,.13);
      transition:box-shadow .25s ease,background .25s ease;
    }
    .nav-shell.is-scrolled{
      box-shadow:0 12px 34px rgba(80,45,35,.08);
      background:rgba(255,253,249,.92);
    }
    .brand-mark{
      width:44px;
      height:44px;
      flex:0 0 44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:16px;
      color:var(--color-primary-dark);
      font-weight:900;
      background:linear-gradient(145deg,#FFFDF9,#EFE2D4);
      border:1px solid var(--border-strong);
      box-shadow:inset 0 0 0 5px rgba(255,255,255,.35),0 10px 24px rgba(80,45,35,.08);
    }
    .desktop-nav{display:flex}
    .mobile-only{display:none}
    .nav-link{
      min-height:42px;
      display:inline-flex;
      align-items:center;
      padding:0 16px;
      border-radius:999px;
      color:var(--color-muted);
      font-size:15px;
      font-weight:800;
      transition:background .22s ease,color .22s ease,transform .22s ease;
    }
    .nav-link:hover,.nav-link:focus-visible{
      color:var(--color-primary-dark);
      background:rgba(216,185,140,.22);
      outline:none;
    }
    .nav-link.active{
      color:var(--color-primary-dark);
      background:rgba(168,106,86,.12);
      box-shadow:inset 0 0 0 1px rgba(168,106,86,.18);
    }
    .btn{
      min-height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:max-content;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-size:15px;
      font-weight:900;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,color .22s ease,border-color .22s ease;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:focus-visible{outline:3px solid rgba(168,106,86,.26);outline-offset:3px}
    .btn-primary{
      color:#fff;
      background:var(--color-primary);
      box-shadow:0 12px 28px rgba(168,106,86,.24);
    }
    .btn-primary:hover{background:var(--color-primary-dark);box-shadow:0 16px 34px rgba(124,70,56,.28)}
    .btn-secondary{
      color:var(--color-primary-dark);
      background:rgba(255,253,249,.56);
      border-color:var(--border-strong);
    }
    .btn-secondary:hover{background:var(--color-soft)}
    .mobile-panel{
      display:none;
      margin-top:14px;
      padding:12px;
      border-radius:22px;
      background:rgba(255,253,249,.92);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .mobile-panel.open{display:block}
    main{overflow:hidden}
    .section{padding:92px 0}
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:max-content;
      max-width:100%;
      padding:7px 12px;
      border-radius:999px;
      color:var(--color-primary-dark);
      background:rgba(216,185,140,.24);
      border:1px solid rgba(168,106,86,.16);
      font-size:13px;
      font-weight:900;
      letter-spacing:.04em;
    }
    .eyebrow:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:var(--color-primary);
      box-shadow:0 0 0 5px rgba(168,106,86,.12);
    }
    h1,h2,h3{letter-spacing:-.035em;line-height:1.12}
    h1{font-size:clamp(2.25rem,5vw,4rem);font-weight:900}
    h2{font-size:clamp(1.8rem,3vw,2.65rem);font-weight:900}
    h3{font-size:clamp(1.15rem,2vw,1.45rem);font-weight:900}
    .lead{font-size:17px;color:var(--color-muted);line-height:1.9}
    .soft-card{
      background:rgba(255,253,249,.78);
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;
    }
    .soft-card:hover{
      transform:translateY(-3px);
      border-color:rgba(168,106,86,.32);
      box-shadow:var(--shadow-hover);
    }
    .hero-panel{
      position:relative;
      padding:34px;
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(255,253,249,.93),rgba(239,226,212,.72)),
        radial-gradient(circle at 85% 10%,rgba(216,185,140,.28),transparent 30%);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .hero-panel:after{
      content:"精品";
      position:absolute;
      right:28px;
      top:24px;
      transform:rotate(7deg);
      padding:6px 13px;
      border-radius:999px;
      color:rgba(124,70,56,.72);
      background:rgba(216,185,140,.24);
      border:1px dashed rgba(124,70,56,.28);
      font-size:13px;
      font-weight:900;
    }
    .coupon-wall{
      display:grid;
      grid-template-columns:1.35fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .coupon-main{
      position:relative;
      min-height:330px;
      padding:30px;
      border-radius:30px;
      overflow:hidden;
      color:#fff;
      background:
        radial-gradient(circle at 14% 12%,rgba(255,255,255,.26),transparent 24%),
        linear-gradient(135deg,#A86A56 0%,#7C4638 68%,#5E3028 100%);
      box-shadow:0 24px 70px rgba(124,70,56,.24);
    }
    .coupon-main:before,.coupon-main:after{
      content:"";
      position:absolute;
      top:50%;
      width:34px;
      height:34px;
      border-radius:999px;
      background:var(--color-bg);
      transform:translateY(-50%);
    }
    .coupon-main:before{left:-17px}
    .coupon-main:after{right:-17px}
    .coupon-dash{
      border-top:1px dashed rgba(255,255,255,.42);
      margin:24px 0;
    }
    .coupon-small{
      min-height:156px;
      padding:22px;
      border-radius:26px;
      border:1px solid rgba(124,70,56,.18);
      background:rgba(255,253,249,.84);
      transition:transform .24s ease,background .24s ease,border-color .24s ease;
    }
    .coupon-small:hover{
      transform:translateY(-3px) rotate(-.4deg);
      background:#FFFDF9;
      border-color:rgba(168,106,86,.34);
    }
    .pills{display:flex;flex-wrap:wrap;gap:10px}
    .pill{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 15px;
      border-radius:999px;
      color:var(--color-muted);
      background:rgba(255,253,249,.64);
      border:1px solid var(--border);
      font-size:14px;
      font-weight:850;
      transition:background .22s ease,color .22s ease,border-color .22s ease,transform .22s ease;
    }
    .pill:hover,.pill.is-active{
      color:#fff;
      background:var(--color-primary);
      border-color:var(--color-primary);
      transform:translateY(-1px);
    }
    .index-grid{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:24px;
      align-items:start;
    }
    .note-list{display:grid;gap:14px}
    .note-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:18px;
      border-radius:22px;
      background:rgba(255,253,249,.76);
      border:1px solid var(--border);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .note-item:hover{transform:translateX(3px);border-color:rgba(168,106,86,.34);box-shadow:var(--shadow)}
    .num{
      width:36px;
      height:36px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:13px;
      color:var(--color-primary-dark);
      background:rgba(216,185,140,.24);
      border:1px solid rgba(168,106,86,.18);
      font-weight:900;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:5px 10px;
      border-radius:999px;
      color:var(--color-primary-dark);
      background:rgba(216,185,140,.22);
      border:1px solid rgba(168,106,86,.14);
      font-size:12px;
      font-weight:900;
    }
    .feature-layout{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:24px;
      align-items:stretch;
    }
    .feature-main{
      min-height:420px;
      padding:32px;
      border-radius:32px;
      background:
        linear-gradient(145deg,rgba(255,253,249,.94),rgba(239,226,212,.66)),
        radial-gradient(circle at 80% 15%,rgba(168,106,86,.12),transparent 30%);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .mini-stack{display:grid;gap:16px}
    .mixed-card{
      padding:24px;
      border-radius:26px;
      background:rgba(255,253,249,.78);
      border:1px solid var(--border);
      transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;
    }
    .mixed-card:hover{transform:translateY(-3px);border-color:rgba(168,106,86,.34);box-shadow:var(--shadow)}
    .progress-line{
      height:10px;
      overflow:hidden;
      border-radius:999px;
      background:rgba(124,70,56,.1);
    }
    .progress-line span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--color-accent),var(--color-primary));
    }
    .list-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .topic-card{
      position:relative;
      padding:24px;
      min-height:210px;
      border-radius:26px;
      background:rgba(255,253,249,.8);
      border:1px solid var(--border);
      box-shadow:0 12px 34px rgba(80,45,35,.045);
      transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;
    }
    .topic-card:hover{transform:translateY(-4px);border-color:rgba(168,106,86,.36);box-shadow:var(--shadow-hover)}
    .topic-card.featured{
      grid-row:span 2;
      min-height:438px;
      background:
        linear-gradient(145deg,rgba(124,70,56,.94),rgba(168,106,86,.88)),
        radial-gradient(circle at 90% 15%,rgba(255,255,255,.2),transparent 25%);
      color:#fff;
    }
    .topic-card.featured .tag{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.22);color:#fff}
    .topic-card.featured p{color:rgba(255,255,255,.76)}
    .card-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-top:18px;
      color:var(--color-primary-dark);
      font-weight:900;
      transition:gap .22s ease,color .22s ease;
    }
    .topic-card.featured .card-link{color:#fff}
    .card-link:hover{gap:12px;color:var(--color-primary)}
    .cta-box{
      border-radius:34px;
      overflow:hidden;
      background:
        radial-gradient(circle at 12% 18%,rgba(255,253,249,.2),transparent 24%),
        linear-gradient(135deg,#7C4638,#A86A56);
      color:#fff;
      box-shadow:0 24px 80px rgba(124,70,56,.24);
    }
    .step{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:14px;
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.16);
    }
    .step .num{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.18)}
    .form-card{
      background:rgba(255,253,249,.92);
      color:var(--color-ink);
      border-radius:28px;
      padding:24px;
      border:1px solid rgba(255,255,255,.4);
    }
    .field{
      width:100%;
      min-height:48px;
      border:1px solid rgba(124,70,56,.2);
      border-radius:16px;
      padding:0 15px;
      color:var(--color-ink);
      background:#FFFDF9;
      transition:border-color .2s ease,box-shadow .2s ease;
    }
    textarea.field{min-height:94px;padding-top:12px;resize:vertical}
    .field:focus{outline:none;border-color:var(--color-primary);box-shadow:0 0 0 4px rgba(168,106,86,.13)}
    .faq-list{display:grid;gap:14px}
    .faq-item{
      border-radius:24px;
      background:rgba(255,253,249,.78);
      border:1px solid var(--border);
      overflow:hidden;
      box-shadow:0 10px 28px rgba(80,45,35,.04);
    }
    .faq-question{
      width:100%;
      min-height:62px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:18px 22px;
      color:var(--color-ink);
      text-align:left;
      font-weight:900;
    }
    .faq-question:hover{background:rgba(216,185,140,.16)}
    .faq-question:focus-visible{outline:3px solid rgba(168,106,86,.2);outline-offset:-3px}
    .faq-icon{
      width:30px;
      height:30px;
      flex:0 0 30px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:var(--color-primary-dark);
      background:rgba(216,185,140,.23);
      font-weight:900;
      transition:transform .22s ease;
    }
    .faq-answer{
      max-height:0;
      opacity:0;
      overflow:hidden;
      transition:max-height .28s ease,opacity .22s ease;
    }
    .faq-answer p{
      margin:0;
      padding:0 22px 20px 22px;
      color:var(--color-muted);
      font-size:15px;
    }
    .faq-item.open .faq-answer{max-height:220px;opacity:1}
    .faq-item.open .faq-icon{transform:rotate(45deg)}
    .footer{
      color:rgba(255,255,255,.68);
      background:
        radial-gradient(circle at 10% 0%,rgba(216,185,140,.18),transparent 25%),
        linear-gradient(135deg,#241C1A,#3C2923 58%,#241C1A);
    }
    .footer a{color:rgba(255,255,255,.66);transition:color .2s ease,transform .2s ease}
    .footer a:hover{color:#fff;transform:translateX(2px)}
    .fade-up{animation:fadeUp .7s ease both}
    .delay-1{animation-delay:.08s}.delay-2{animation-delay:.16s}.delay-3{animation-delay:.24s}
    @keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}
    @media (max-width:1024px){
      .section{padding:76px 0}
      .coupon-wall,.index-grid,.feature-layout{grid-template-columns:1fr}
      .topic-card.featured{grid-row:auto;min-height:330px}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 28px,var(--container))}
      .desktop-nav,.hide-sm{display:none!important}
      .mobile-only{display:flex}
      .mobile-panel.mobile-only{display:none}
      .mobile-panel.mobile-only.open{display:block}
      .top-strip{font-size:12px}
      .section{padding:64px 0}
      .section-tight{padding:48px 0}
      .hero-panel,.feature-main{padding:24px;border-radius:28px}
      .coupon-wall,.list-grid{grid-template-columns:1fr}
      .coupon-main{min-height:300px;padding:24px}
      .note-item{grid-template-columns:auto 1fr}
      .note-item .tag{grid-column:2}
      .cta-box{border-radius:28px}
    }
    @media (max-width:520px){
      h1{font-size:2.18rem}
      .lead{font-size:16px}
      .brand-mark{width:40px;height:40px;flex-basis:40px;border-radius:14px}
      .btn{width:100%;padding:0 16px}
      .hero-panel:after{right:18px;top:18px}
      .coupon-main{border-radius:24px}
      .coupon-small,.topic-card,.mixed-card{border-radius:22px}
      .footer .grid{gap:28px}
    }
