/* roulang page: index */
:root{
  --ink:#161912;
  --paper:#F3F1E9;
  --pure:#FDFCF8;
  --sage:#456F5F;
  --grey:#70746C;
  --line:#E2DED2;
  --accent:#D7EB50;
  --serif:"Noto Serif SC","Source Han Serif SC","Songti SC","STSong",serif;
  --sans:-apple-system,BlinkMacSystemFont,"PingFang SC","HarmonyOS Sans SC","Noto Sans CJK SC","Microsoft YaHei",sans-serif;
  --mono:"Inter","Avenir Next",ui-monospace,SFMono-Regular,Menlo,monospace;
  --radius:4px;
  --shadow:0 1px 2px rgba(15,20,15,.04);
  --shadow-lift:0 12px 32px rgba(15,20,15,.10);
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
a:hover{color:inherit}
img{display:block;max-width:100%}
ul{list-style:none;margin:0;padding:0}
button{font-family:inherit;font-size:inherit;cursor:pointer;border:0;background:none;padding:0;color:inherit}
input{font-family:inherit}
h1,h2,h3,h4,p,figure{margin:0}
:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
}

.app-shell{
  display:flex;
  min-height:100vh;
}
.app-sidebar{
  position:fixed;
  top:0;
  left:0;
  width:264px;
  height:100vh;
  background:var(--pure);
  border-right:1px solid var(--line);
  z-index:300;
  transition:transform .22s ease-out;
}
.sidebar-inner{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:26px 16px 18px;
  overflow-y:auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  padding:0 10px 24px;
  border-bottom:1px solid var(--line);
  margin-bottom:20px;
}
.brand-mark{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:var(--radius);
  background:var(--ink);
  display:grid;
  place-items:center;
  color:var(--accent);
  font-family:var(--serif);
  font-size:22px;
  font-weight:800;
  letter-spacing:-1px;
}
.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}
.brand-copy strong{
  font-family:var(--serif);
  font-size:21px;
  letter-spacing:.2px;
  color:var(--ink);
}
.brand-copy small{
  margin-top:4px;
  font-size:11px;
  color:var(--grey);
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.side-nav{
  display:flex;
  flex-direction:column;
  gap:2px;
  flex:1;
}
.side-link{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  height:46px;
  padding:0 14px;
  border-radius:var(--radius);
  font-size:15px;
  font-weight:500;
  transition:.2s ease-out;
}
.side-link .nav-dot{
  width:6px;
  height:6px;
  border-radius:99px;
  background:var(--line);
  transition:.2s;
}
.side-link:hover{
  background:rgba(215,235,80,.15);
}
.side-link.active{
  background:rgba(69,111,95,.08);
  color:var(--sage);
}
.side-link.active::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  bottom:11px;
  width:2px;
  border-radius:2px;
  background:var(--accent);
}
.side-link.active .nav-dot{
  background:var(--sage);
}
.side-status{
  margin-top:22px;
  padding:16px 14px 20px;
  border-top:1px solid var(--line);
  font-size:13px;
  color:var(--grey);
  line-height:1.7;
}
.side-status i{
  color:var(--sage);
  margin-right:6px;
}

.mobile-topbar{
  display:none;
  height:58px;
  align-items:center;
  padding:0 18px;
  background:var(--pure);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:350;
}
.topmenu-btn{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:var(--radius);
  font-size:20px;
  color:var(--ink);
  border:1px solid var(--line);
}
.mobile-brand{
  font-family:var(--serif);
  font-weight:700;
  margin-left:14px;
  font-size:20px;
}
.sidebar-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(22,25,18,.45);
  z-index:290;
  backdrop-filter:blur(1px);
}

.countdown-strip{
  background:var(--ink);
  color:#f7f4ea;
  font-size:14px;
}
.countdown-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  height:58px;
}
.count-label{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.count-label i{
  width:8px;
  height:8px;
  border-radius:99px;
  background:var(--accent);
  display:block;
  animation:pulse 1.4s infinite;
}
@keyframes pulse{
  0%,70%,100%{opacity:1;transform:scale(1)}
  35%{opacity:.45;transform:scale(.72)}
}
.count-timer{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--mono);
  font-variant-numeric:tabular-nums;
  font-size:15px;
  color:#f7f4ea;
}
.time-box{
  background:rgba(255,255,255,.08);
  border-radius:4px;
  padding:4px 7px;
  font-size:17px;
  font-weight:600;
  font-family:var(--mono);
  min-width:32px;
  text-align:center;
}
.count-sep{
  color:rgba(255,255,255,.55);
}
.count-strip-btn{
  color:#161912;
  background:var(--accent);
  border-radius:var(--radius);
  font-size:14px;
  font-weight:700;
  padding:10px 16px;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:.2s ease-out;
}
.count-strip-btn:hover{
  background:#fff;
  transform:translateY(-1px);
}

.app-main{
  width:calc(100% - 264px);
  margin-left:264px;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.main-surface{
  flex:1;
}
.page-wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 30px;
}

.hero-section{
  padding:74px 0 34px;
  position:relative;
  overflow:hidden;
}
.grid-x{
  display:flex;
  flex-flow:row wrap;
}
.grid-margin-x{
  margin-left:-14px;
  margin-right:-14px;
}
.grid-margin-x > .cell{
  padding-left:14px;
  padding-right:14px;
}
.cell.large-7{width:calc(7/12*100%)}
.cell.large-5{width:calc(5/12*100%)}
.hero-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.eyebrow-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--line);
  background:var(--pure);
  padding:6px 13px;
  border-radius:99px;
  font-size:12px;
  color:var(--sage);
  letter-spacing:.6px;
  margin-bottom:24px;
}
.eyebrow-chip::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:99px;
  background:var(--accent);
}
.hero-title{
  font-family:var(--serif);
  font-size:clamp(38px,5vw,62px);
  line-height:1.12;
  font-weight:800;
  letter-spacing:-.01em;
  color:var(--ink);
  max-width:640px;
}
.hero-title sup{
  color:var(--sage);
}
.hero-lead{
  max-width:560px;
  margin-top:22px;
  font-size:17px;
  line-height:1.85;
  color:var(--grey);
}
.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  margin-top:34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:48px;
  border-radius:var(--radius);
  font-weight:700;
  font-size:15px;
  padding:0 24px;
  transition:.2s ease-out;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--ink);
  color:#FDFCF8;
}
.btn-primary:hover{
  background:#262B21;
  transform:translateY(-2px);
  box-shadow:var(--shadow-lift);
  color:#FDFCF8;
}
.btn-accent{
  background:var(--accent);
  color:var(--ink);
}
.btn-accent:hover{
  background:#e3f273;
  transform:translateY(-2px);
  box-shadow:var(--shadow-lift);
  color:var(--ink);
}
.btn-ghost{
  border-color:var(--line);
  background:transparent;
  color:var(--ink);
}
.btn-ghost:hover{
  border-color:var(--sage);
  color:var(--sage);
  background:rgba(69,111,95,.05);
}
.hero-note{
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid var(--line);
  font-size:13px;
  color:var(--grey);
  width:100%;
  max-width:620px;
}
.hero-note li{
  display:flex;
  align-items:center;
  gap:6px;
}
.hero-note i{
  color:var(--sage);
}
.hero-visual-wrap{
  position:relative;
  min-height:370px;
  border-radius:10px;
  background:var(--pure);
  border:1px solid var(--line);
  overflow:hidden;
}
.hero-visual-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(140deg,rgba(22,25,18,.5),rgba(22,25,18,.04)),
    url("/assets/images/backpic/back-1.webp") center/cover;
  transition:transform .3s ease-out;
}
.hero-visual-wrap:hover .hero-visual-bg{
  transform:scale(1.02);
}
.hero-visual-tag{
  position:absolute;
  left:18px;
  bottom:18px;
  background:rgba(253,252,248,.9);
  border-radius:var(--radius);
  padding:10px 14px;
  max-width:80%;
  font-size:13px;
  color:var(--ink);
  box-shadow:var(--shadow);
}
.hero-visual-tag strong{
  font-family:var(--serif);
  display:block;
  font-size:17px;
  margin-bottom:2px;
}

.section-feature{
  padding:92px 0 74px;
}
.section-heading{
  margin-bottom:40px;
}
.section-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:1px;
  color:var(--sage);
  margin-bottom:10px;
}
.section-heading h2{
  font-family:var(--serif);
  font-size:clamp(27px,3vw,40px);
  line-height:1.25;
  font-weight:700;
  max-width:760px;
}
.section-heading p{
  margin-top:12px;
  color:var(--grey);
  font-size:15px;
  max-width:680px;
}
.feature-rows{
  border-bottom:1px solid var(--line);
}
.feature-row{
  display:grid;
  grid-template-columns:140px 1.1fr .9fr;
  gap:28px;
  align-items:start;
  border-top:1px solid var(--line);
  padding:30px 2px;
  transition:.2s;
}
.feature-row:hover{
  background:rgba(253,252,248,.55);
}
.feature-num{
  display:block;
  font-family:var(--serif);
  font-size:clamp(48px,6vw,76px);
  line-height:.9;
  color:rgba(22,25,18,.17);
  font-weight:600;
}
.feature-main h3{
  font-size:21px;
  line-height:1.5;
  color:var(--ink);
  font-weight:600;
  margin-bottom:8px;
  font-family:var(--sans);
}
.feature-main p{
  color:var(--grey);
  font-size:15px;
  max-width:440px;
  line-height:1.75;
}
.feature-side{
  font-size:14px;
  color:var(--sage);
  display:flex;
  align-items:flex-start;
  gap:8px;
  padding-top:4px;
}
.feature-side i{
  color:var(--accent);
  background:var(--ink);
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  border-radius:99px;
  font-size:10px;
  flex:0 0 20px;
  margin-top:2px;
}

.section-gallery{
  background:var(--pure);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:92px 0 84px;
}
.gallery-grid{
  margin-top:38px;
}
.gallery-slot{
  position:relative;
  display:block;
  border-radius:8px;
  overflow:hidden;
  background:#10130d;
  aspect-ratio:4/3;
}
.gallery-slot img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .24s ease-out;
  opacity:.88;
}
.gallery-slot:hover img{
  transform:scale(1.03);
  opacity:.95;
}
.gallery-slot::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 28%,rgba(0,0,0,.66) 100%);
}
.gallery-slot .gallery-num{
  position:absolute;
  top:0;
  left:16px;
  z-index:2;
  font-family:var(--serif);
  color:rgba(253,252,248,.92);
  font-size:44px;
  line-height:1;
  font-weight:500;
  text-shadow:0 1px 10px rgba(0,0,0,.3);
}
.gallery-slot .gallery-caption{
  position:absolute;
  left:18px;
  right:18px;
  bottom:16px;
  z-index:2;
  color:#fff;
}
.gallery-caption small{
  display:block;
  font-size:12px;
  opacity:.75;
  margin-bottom:4px;
  letter-spacing:.3px;
}
.gallery-caption strong{
  font-family:var(--serif);
  font-size:20px;
  line-height:1.3;
}
.gallery-main{
  aspect-ratio:auto;
  min-height:420px;
}
.gallery-side{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.gallery-side .gallery-slot{
  aspect-ratio:16/8;
}

.cta-deep{
  position:relative;
  background:
    linear-gradient(rgba(22,25,18,.82),rgba(22,25,18,.86)),
    url("/assets/images/backpic/back-2.webp");
  background-position:center;
  background-size:cover;
  color:var(--pure);
  padding:96px 0 90px;
  overflow:hidden;
}
.cta-inner{
  position:relative;
  z-index:2;
  max-width:720px;
  margin:0 auto;
  text-align:center;
}
.cta-deep::before{
  content:"hth网址";
  position:absolute;
  left:50%;
  top:-28px;
  transform:translateX(-50%);
  font-family:var(--serif);
  font-size:clamp(90px,17vw,210px);
  color:rgba(243,241,233,.08);
  white-space:nowrap;
  font-weight:800;
  pointer-events:none;
  z-index:0;
}
.cta-inner h2{
  font-family:var(--serif);
  font-size:clamp(30px,4vw,46px);
  line-height:1.25;
  font-weight:700;
}
.cta-inner p{
  font-size:16px;
  line-height:1.8;
  color:rgba(243,241,233,.76);
  margin:22px auto 0;
  max-width:560px;
}
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:36px;
}
.btn-outline-light{
  border:1px solid rgba(243,241,233,.6);
  color:var(--pure);
}
.btn-outline-light:hover{
  background:rgba(255,255,255,.1);
  border-color:#fff;
  color:#fff;
  transform:translateY(-2px);
}
.cta-note{
  display:block;
  font-size:13px;
  color:rgba(243,241,233,.62);
  margin-top:28px;
}

.section-news{
  padding:88px 0 70px;
}
.news-headline{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
}
.news-headline .section-tag{
  margin-bottom:6px;
}
.news-headline h2{
  font-family:var(--serif);
  font-size:clamp(27px,3vw,40px);
  line-height:1.3;
  font-weight:700;
}
.news-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:var(--sage);
  border-bottom:1px solid transparent;
  padding-bottom:2px;
  white-space:nowrap;
}
.news-more:hover{
  border-color:var(--sage);
}
.news-list{
  background:var(--pure);
  border-top:1px solid var(--line);
}
.news-item{
  display:grid;
  grid-template-columns:150px 1fr 46px;
  gap:22px;
  align-items:start;
  padding:26px 6px;
  border-bottom:1px solid var(--line);
  transition:.2s;
}
.news-item:hover{
  padding-left:12px;
  background:rgba(215,235,80,.06);
}
.news-date{
  font-size:14px;
  color:var(--grey);
  font-family:var(--mono);
  padding-top:6px;
  font-variant-numeric:tabular-nums;
}
.news-content .news-tag{
  display:inline-flex;
  align-items:center;
  background:rgba(69,111,95,.1);
  border-radius:99px;
  color:var(--sage);
  font-size:12px;
  padding:3px 10px;
  margin-bottom:6px;
}
.news-content h3{
  font-size:20px;
  line-height:1.5;
  color:var(--ink);
  font-weight:600;
}
.news-content h3 a{
  transition:color .2s;
}
.news-content h3 a:hover{
  color:var(--sage);
}
.news-text{
  font-size:14px;
  color:var(--grey);
  line-height:1.7;
  max-width:720px;
  margin-top:6px;
}
.news-arrow{
  width:38px;
  height:38px;
  border:1px solid var(--line);
  border-radius:99px;
  display:grid;
  place-items:center;
  color:var(--ink);
  font-size:15px;
  transition:.2s;
  justify-self:end;
  margin-top:6px;
}
.news-item:hover .news-arrow{
  background:var(--ink);
  border-color:var(--ink);
  color:var(--accent);
}
.news-empty{
  background:transparent;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:42px 20px;
  text-align:center;
  color:var(--grey);
  font-size:15px;
}

.section-faq{
  padding:92px 0 80px;
}
.faq-grid{
  display:grid;
  grid-template-columns:.75fr 1.4fr;
  gap:54px;
}
.faq-intro .section-tag{
  margin-bottom:10px;
}
.faq-intro h2{
  font-family:var(--serif);
  font-size:clamp(27px,3vw,40px);
  line-height:1.28;
  font-weight:700;
}
.faq-intro p{
  margin-top:16px;
  font-size:15px;
  color:var(--grey);
  line-height:1.8;
}
.faq-list{
  padding-top:2px;
}
.faq-item{
  border-bottom:1px solid var(--line);
  padding:6px 0;
  transition:background .2s;
}
.faq-item + .faq-item{
  border-top:0;
}
.faq-item summary{
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  font-family:var(--serif);
  font-size:20px;
  font-weight:600;
  line-height:1.55;
  cursor:pointer;
  padding:19px 0;
  color:var(--ink);
  transition:color .2s;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  display:block;
  width:30px;
  height:30px;
  flex:0 0 30px;
  font-family:var(--mono);
  font-size:23px;
  font-weight:400;
  text-align:center;
  line-height:28px;
  border:1px solid var(--line);
  border-radius:99px;
  color:var(--sage);
  transition:.2s ease-out;
}
.faq-item[open] summary::after{
  content:"×";
  background:var(--ink);
  border-color:var(--ink);
  color:var(--accent);
}
.faq-item[open] summary{
  color:var(--ink);
}
.faq-body{
  padding:0 26px 22px;
  font-size:15px;
  color:var(--grey);
  line-height:1.8;
}
.faq-body p + p{
  margin-top:12px;
}

.site-footer{
  background:var(--pure);
  border-top:1px solid var(--line);
  padding:54px 0 26px;
  font-size:13px;
  color:var(--grey);
}
.footer-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 30px;
}
.footer-brand-name{
  font-family:var(--serif);
  font-size:30px;
  font-weight:700;
  color:var(--ink);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.footer-brand-desc{
  margin-top:14px;
  font-size:14px;
  max-width:360px;
  line-height:1.8;
}
.footer-column h3{
  font-size:16px;
  color:var(--ink);
  margin-bottom:20px;
  font-weight:600;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-links a{
  color:var(--grey);
  font-size:13px;
  transition:.2s;
}
.footer-links a:hover{
  color:var(--sage);
}
.footer-meta p{
  margin-bottom:12px;
  line-height:1.8;
}
.footer-meta a{
  color:var(--sage);
}
.footer-meta code{
  background:rgba(69,111,95,.06);
  padding:2px 6px;
  border-radius:4px;
  color:var(--sage);
}
.site-footer .footer-bottom{
  margin-top:44px;
  padding-top:20px;
  border-top:1px solid var(--line);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  font-size:12px;
  color:#9b9f96;
}

.offcanvas-close{
  display:none;
}

@media (max-width:1024px){
  .app-sidebar{
    transform:translateX(-100%);
    box-shadow:0 0 50px rgba(0,0,0,.16);
  }
  .app-sidebar.is-open{
    transform:translateX(0);
  }
  .sidebar-overlay.is-open{
    display:block;
  }
  .offcanvas-close{
    display:inline-flex;
    width:34px;
    height:34px;
    align-items:center;
    justify-content:center;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:var(--paper);
    color:var(--ink);
    font-size:16px;
    position:absolute;
    top:16px;
    right:14px;
  }
  .mobile-topbar{
    display:flex;
  }
  .app-main{
    width:100%;
    margin-left:0;
  }
  .countdown-strip{
    position:sticky;
    top:58px;
    z-index:40;
  }
  .countdown-inner{
    padding:0 16px;
  }
  .count-label .count-label-text{
    display:none;
  }
  .feature-row{
    grid-template-columns:90px 1fr;
  }
  .feature-side{
    grid-column:2;
    padding-top:0;
    padding-bottom:4px;
  }
  .faq-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
}

@media (max-width:900px){
  .hero-section{
    padding-top:48px;
  }
  .cell.large-7,.cell.large-5{
    width:100%;
    flex:0 0 100%;
    max-width:100%;
  }
  .hero-visual-wrap{
    min-height:290px;
    margin-top:38px;
  }
  .gallery-main,.gallery-side .gallery-slot{
    aspect-ratio:16/10;
    min-height:0;
  }
  .gallery-side{
    flex-direction:row;
    align-items:stretch;
    margin-top:24px;
  }
  .gallery-side .gallery-slot{
    flex:1;
  }
  .news-item{
    grid-template-columns:1fr 40px;
  }
  .news-date{
    grid-column:1 / -1;
    grid-row:auto;
    padding-top:0;
  }
  .news-date{
  }
}

@media (max-width:640px){
  .countdown-timer .time-box{
    min-width:26px;
    padding:4px 4px;
    font-size:13px;
  }
  .count-strip-btn{
    padding:8px 10px;
    font-size:13px;
  }
  .count-btn-text{
    display:none;
  }
  .count-sep{
    font-size:12px;
  }
  .page-wrap,.footer-inner{
    padding-left:18px;
    padding-right:18px;
  }
  .countdown-inner{
    padding-left:12px;
    padding-right:12px;
  }
  .hero-buttons{
    flex-direction:column;
    align-items:stretch;
  }
  .hero-buttons .btn{
    width:100%;
  }
  .feature-section,.section-gallery,.section-news,.section-faq{
    padding-top:60px;
    padding-bottom:50px;
  }
  .gallery-side{
    flex-direction:column;
    margin-top:16px;
  }
  .gallery-side .gallery-slot{
    width:100%;
  }
  .section-heading{
    margin-bottom:24px;
  }
  .feature-row{
    grid-template-columns:1fr;
    gap:14px;
    padding:24px 0;
  }
  .feature-side{
    grid-column:1;
  }
  .feature-num{
    font-size:50px;
  }
  .cta-deep{
    padding:70px 18px;
  }
  .cta-inner h2{
    font-size:32px;
  }
  .cta-buttons .btn{
    width:100%;
  }
  .news-headline{
    flex-direction:column;
    align-items:flex-start;
  }
  .site-footer{
    padding-top:46px;
  }
  .site-footer .cell{
    margin-bottom:28px;
  }
}

@media (prefers-reduced-motion:reduce){
  *{
    animation:none!important;
    transition:none!important;
  }
  html{
    scroll-behavior:auto;
  }
}

/* roulang page: category1 */
:root {
            --ink: #161912;
            --paper: #F3F1E9;
            --card: #FDFCF8;
            --sage: #456F5F;
            --gray: #70746C;
            --line: #E2DED2;
            --lime: #D7EB50;
            --max-width: 1200px;
            --sidebar-width: 264px;
            --radius: 4px;
            --shadow-sm: 0 1px 2px rgba(15, 20, 15, 0.04);
            --shadow-lg: 0 12px 32px rgba(15, 20, 15, 0.10);
            --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", serif;
            --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            background: var(--paper);
            color: var(--ink);
            font-size: 17px;
            line-height: 1.85;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out, box-shadow .2s ease-out, opacity .2s ease-out;
        }
        button,
        input {
            font-family: inherit;
        }
        :focus-visible {
            outline: 2px solid var(--lime);
            outline-offset: 3px;
        }
        .app-shell {
            display: flex;
            min-height: 100vh;
            align-items: stretch;
        }
        .sidebar {
            width: var(--sidebar-width);
            flex: 0 0 var(--sidebar-width);
            background: var(--paper);
            border-right: 1px solid var(--line);
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            z-index: 60;
            display: flex;
            flex-direction: column;
            padding: 0 20px;
            overflow-y: auto;
        }
        .brand-area {
            display: flex;
            align-items: center;
            gap: 10px;
            height: 88px;
            border-bottom: 1px solid var(--line);
            margin-bottom: 24px;
            flex: 0 0 88px;
        }
        .brand-mark {
            width: 36px;
            height: 36px;
            border: 2px solid var(--ink);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-family: var(--font-serif);
            font-size: 20px;
            line-height: 1;
            flex: 0 0 36px;
            color: var(--ink);
            background: transparent;
        }
        .brand-copy {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }
        .brand-name {
            font-family: var(--font-serif);
            font-size: 19px;
            font-weight: 700;
            letter-spacing: 0.01em;
            color: var(--ink);
            white-space: nowrap;
            display: block;
        }
        .brand-sub {
            font-size: 12px;
            color: var(--gray);
            line-height: 1.2;
            margin-top: 2px;
            letter-spacing: .08em;
            display: block;
        }
        .side-nav {
            display: flex;
            flex-direction: column;
            margin: 0 0 28px 0;
            list-style: none;
        }
        .side-link {
            display: flex;
            align-items: center;
            gap: 10px;
            height: 44px;
            padding: 0 12px;
            font-size: 15px;
            color: var(--ink);
            border-radius: var(--radius);
            position: relative;
            transition: background-color .2s ease-out, color .2s ease-out;
            font-weight: 400;
            letter-spacing: 0.02em;
            outline-offset: -2px;
        }
        .side-link:hover {
            background: rgba(69, 111, 95, 0.06);
            color: var(--sage);
        }
        .side-link .nav-dot {
            width: 4px;
            height: 4px;
            border-radius: 999px;
            background: var(--line);
            flex: 0 0 4px;
            transition: background-color .2s ease-out, box-shadow .2s ease-out;
        }
        .side-link.active {
            background: transparent;
            color: var(--ink);
            font-weight: 600;
        }
        .side-link.active .nav-dot {
            background: var(--sage);
            box-shadow: 0 0 0 3px rgba(69, 111, 95, 0.15);
        }
        .side-link.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: var(--sage);
            border-radius: 2px;
        }
        .side-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: transparent;
            transition: background-color .2s ease-out;
        }
        .side-extra {
            margin-top: auto;
            padding: 20px 0 24px 0;
            border-top: 1px solid var(--line);
            background: transparent;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .side-extra-item {
            font-size: 13px;
            color: var(--gray);
            padding: 4px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.4;
        }
        .main-area {
            margin-left: var(--sidebar-width);
            flex: 1;
            min-width: 0;
            background: var(--paper);
        }
        .page-content {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 48px 48px 0 48px;
            width: 100%;
            background: transparent;
        }
        .content-footer-wrap {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 48px;
            width: 100%;
        }
        .top-mobile-bar {
            display: none;
            height: 56px;
            background: var(--ink);
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0 16px;
            align-items: center;
            justify-content: space-between;
        }
        .mob-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 700;
        }
        .mob-burger {
            background: transparent;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color .2s;
        }
        .mob-burger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .drawer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(22, 25, 18, 0.5);
            z-index: 90;
        }
        .drawer-overlay.show {
            display: block;
        }
        .mobile-drawer {
            display: none;
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            width: 320px;
            background: var(--paper);
            z-index: 95;
            padding: 16px;
            clip-path: inset(0 0 0 -20px);
            transition: transform .25s ease-out;
            transform: translateX(-100%);
        }
        .mobile-drawer.show {
            transform: translateX(0);
            display: block;
            overflow-y: auto;
        }
        .drawer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 8px 24px 8px;
            border-bottom: 1px solid var(--line);
            margin-bottom: 20px;
        }
        .drawer-brand-name {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 0px;
        }
        .drawer-link {
            display: flex;
            align-items: center;
            gap: 10px;
            height: 48px;
            padding: 0 14px;
            font-size: 16px;
            color: var(--ink);
            border-radius: var(--radius);
            border-bottom: 1px solid rgba(226, 222, 210, 0.5);
        }
        .drawer-link:hover {
            background: rgba(69, 111, 95, 0.06);
        }
        .drawer-link .nav-dot {
            width: 4px;
            height: 4px;
            border-radius: 999px;
            background: var(--line);
            flex: 0 0 4px;
        }
        .drawer-link.active {
            font-weight: 600;
        }
        .drawer-link.active .nav-dot {
            background: var(--sage);
        }
        .drawer-close {
            margin-left: auto;
            background: transparent;
            border: none;
            width: 32px;
            height: 32px;
            font-size: 20px;
            color: var(--gray);
            cursor: pointer;
            border-radius: 4px;
            transition: color .2s;
        }
        .drawer-close:hover {
            color: var(--ink);
        }
        .drawer-meta {
            margin-top: 40px;
            padding: 16px 8px;
            font-size: 13px;
            color: var(--gray);
            border-top: 1px solid var(--line);
            line-height: 1.6;
        }
        .countdown-strip {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--ink);
            color: #fff;
            border-radius: 2px;
            min-height: 56px;
            padding: 10px 20px;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin-bottom: 48px;
            width: 100%;
        }
        .countdown-left {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--lime);
            box-shadow: 0 0 0 0 rgba(215, 235, 80, 0.5);
            animation: breathe 2s ease-in-out infinite;
            flex: 0 0 8px;
        }
        @keyframes breathe {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(215, 235, 80, 0.4);
            }
            50% {
                opacity: 0.7;
                box-shadow: 0 0 0 4px rgba(215, 235, 80, 0);
            }
        }
        .countdown-clock {
            font-family: "Inter", "Avenir Next", system-ui, sans-serif;
            font-size: 22px;
            font-weight: 600;
            letter-spacing: .03em;
        }
        .countdown-clock .unit {
            font-size: 13px;
            font-weight: 400;
            margin: 0 2px;
            color: rgba(255, 255, 255, 0.6);
        }
        .countdown-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--lime);
            color: var(--ink);
            padding: 8px 18px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            transition: all .2s ease-out;
            white-space: nowrap;
            cursor: pointer;
            border: none;
        }
        .countdown-cta:hover {
            filter: brightness(0.92);
            transform: translateY(-1px);
        }
        body.nav-lock {
            overflow: hidden;
        }
        .hero-mini {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .hero-cat-tag {
            display: inline-flex;
            align-items: center;
            background: rgba(69, 111, 95, 0.10);
            color: var(--sage);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .04em;
            padding: 6px 14px;
            border-radius: 999px;
            line-height: 1.2;
        }
        .hero-cat-tag.lime-hash {
            background: var(--lime);
            color: var(--ink);
        }
        .page-h1 {
            font-family: var(--font-serif);
            font-size: clamp(36px, 5vw, 64px);
            line-height: 1.12;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: var(--ink);
            margin: 0 0 18px 0;
            word-break: break-word;
        }
        .hero-intro {
            font-size: 17px;
            color: var(--gray);
            max-width: 640px;
            line-height: 1.9;
            margin-bottom: 24px;
        }
        .page-header {
            position: relative;
            padding: 32px 0 48px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            width: 100%;
            border-bottom: 1px solid var(--line);
            margin-bottom: 64px;
        }
        .page-header-main {
            flex: 1 1 70%;
            z-index: 2;
        }
        .page-header-visual {
            flex: 0 0 30%;
            min-width: 260px;
            z-index: 0;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        .page-header-visual img {
            border-radius: 6px;
            width: 100%;
            max-width: 320px;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            border: 1px solid var(--line);
            background: var(--card);
        }
        .guide-article {
            display: flex;
            gap: 56px;
            align-items: stretch;
            width: 100%;
            margin-bottom: 64px;
        }
        .guide-article-header {
            flex: 0 0 40%;
            max-width: 46%;
            border-top: 2px solid var(--ink);
            padding-top: 18px;
        }
        .guide-article-body {
            flex: 1 1 auto;
            min-width: 0;
            border-top: 1px solid var(--line);
            padding-top: 20px;
            padding-bottom: 48px;
            display: flex;
            flex-direction: column;
        }
        .guide-kicker {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--sage);
            letter-spacing: .08em;
            margin-bottom: 14px;
            line-height: 1.6;
        }
        .guide-kicker .num {
            font-family: "Inter", monospace;
            font-size: 18px;
            color: var(--ink);
        }
        .guide-h2 {
            font-family: var(--font-serif);
            font-size: clamp(24px, 2.6vw, 32px);
            line-height: 1.35;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--ink);
            word-break: break-word;
        }
        .guide-header-text {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 14px;
        }
        .guide-body-text {
            font-size: 16px;
            line-height: 1.95;
            color: #2b2f28;
            margin-top: 4px;
        }
        .guide-body-text p {
            margin-bottom: 18px;
        }
        .guide-tag-group {
            margin-top: auto;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-chip {
            display: inline-block;
            padding: 6px 16px;
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: 999px;
            font-size: 13px;
            color: var(--gray);
            line-height: 1.4;
            transition: border-color .2s, color .2s;
        }
        .tag-chip:hover {
            border-color: var(--sage);
            color: var(--sage);
        }
        .feature-band {
            background: var(--ink);
            color: #fff;
            padding: 56px 40px;
            border-radius: 8px;
            width: 100%;
            margin-bottom: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            position: relative;
            overflow: hidden;
            flex-wrap: wrap;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }
        .feature-band .promo-bgword {
            position: absolute;
            right: 10px;
            bottom: 10px;
            font-size: 120px;
            font-weight: 900;
            letter-spacing: .06em;
            line-height: 1;
            color: rgba(255, 255, 255, 0.04);
            font-family: var(--font-serif);
            pointer-events: none;
            user-select: none;
            white-space: nowrap;
        }
        .feature-band-copy {
            position: relative;
            z-index: 1;
        }
        .feature-band-copy h2 {
            font-family: var(--font-serif);
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 10px;
        }
        .feature-band-copy p {
            color: rgba(243, 241, 233, 0.7);
            max-width: 520px;
            font-size: 16px;
            line-height: 1.8;
        }
        .feature-band-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--lime);
            color: var(--ink);
            border-radius: var(--radius);
            padding: 14px 34px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: filter .2s ease-out, transform .2s ease-out, box-shadow .2s ease-out;
            min-height: 48px;
            line-height: 1;
            gap: 8px;
        }
        .btn-primary:hover {
            filter: brightness(1.08);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(215, 235, 80, 0.18);
        }
        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #FDFCF8;
            border: 1px solid rgba(253, 252, 248, 0.5);
            border-radius: var(--radius);
            padding: 14px 26px;
            font-size: 15px;
            cursor: pointer;
            transition: border-color .2s ease-out, color .2s ease-out, background-color .2s ease-out;
            min-height: 48px;
            line-height: 1;
        }
        .btn-outline-light:hover {
            border-color: #FDFCF8;
            color: var(--lime);
            background: rgba(255, 255, 255, 0.04);
        }
        .step-section {
            width: 100%;
            margin-bottom: 80px;
        }
        .section-head {
            margin-bottom: 36px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            border-bottom: 1px solid var(--line);
            padding-bottom: 20px;
        }
        .section-head .pre-title {
            font-size: 14px;
            letter-spacing: .2em;
            font-weight: 600;
            color: var(--sage);
            margin-bottom: 4px;
        }
        .section-head h2 {
            font-family: var(--font-serif);
            font-size: clamp(28px, 3vw, 40px);
            line-height: 1.25;
            font-weight: 600;
            margin: 0;
        }
        .section-head p {
            color: var(--gray);
            font-size: 15px;
            max-width: 400px;
            line-height: 1.7;
        }
        .flow-grid {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        .flow-row {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            padding: 28px 0;
            border-bottom: 1px solid var(--line);
            flex-wrap: wrap;
        }
        .flow-row:last-child {
            border-bottom: none;
        }
        .flow-index {
            font-family: var(--font-serif);
            font-size: clamp(56px, 6vw, 96px);
            line-height: 0.9;
            font-weight: 300;
            color: transparent;
            -webkit-text-stroke: 1px var(--sage);
            flex: 0 0 110px;
            user-select: none;
            letter-spacing: -0.05em;
        }
        .flow-info {
            flex: 1 1 30%;
            min-width: 260px;
        }
        .flow-info h3 {
            font-family: var(--font-serif);
            font-size: clamp(20px, 2vw, 26px);
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--ink);
            line-height: 1.4;
        }
        .flow-info p {
            color: var(--gray);
            font-size: 15px;
            max-width: 540px;
            line-height: 1.8;
            margin: 0;
        }
        .stats-grid {
            display: flex;
            gap: 24px;
            margin-top: 28px;
            width: 100%;
            flex-wrap: wrap;
        }
        .stat-item {
            flex: 1 1;
            min-width: 160px;
            border-left: 2px solid var(--line);
            padding-left: 20px;
        }
        .stat-num {
            font-family: "Inter", var(--font-sans);
            font-size: 40px;
            font-weight: 600;
            line-height: 1.1;
            color: var(--ink);
            display: block;
            letter-spacing: -0.02em;
        }
        .stat-label {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.4;
            margin-top: 6px;
            display: block;
        }
        .content-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            width: 100%;
            margin: 40px 0;
        }
        .mini-card {
            flex: 1 1 280px;
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 24px 24px 20px 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .2s ease-out, transform .2s ease-out, border-color .2s ease-out;
            display: flex;
            flex-direction: column;
        }
        .mini-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--sage);
        }
        .mini-card .card-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(69, 111, 95, 0.08);
            color: var(--sage);
            border-radius: 8px;
            margin-bottom: 18px;
            font-size: 18px;
        }
        .mini-card h3 {
            font-family: var(--font-serif);
            font-size: 20px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        .mini-card p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.75;
            margin: 0;
        }
        .large-text-block {
            display: grid;
            grid-template-columns: 46% 1fr;
            gap: 56px;
            margin: 40px 0 80px 0;
            background: var(--card);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            padding: 0;
            min-height: 440px;
            overflow: hidden;
        }
        .large-text-media {
            position: relative;
            min-height: 100%;
            overflow: hidden;
            background: #eee;
            aspect-ratio: auto;
            min-height: 440px;
        }
        .large-text-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }
        .large-text-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(22, 25, 18, 0.15));
        }
        .large-text-body {
            padding: 44px 48px 44px 0;
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            justify-content: center;
        }
        .large-text-body .subtitle {
            font-size: 14px;
            font-weight: 600;
            color: var(--sage);
            letter-spacing: 0.05em;
            margin-bottom: 12px;
            display: block;
        }
        .large-text-body h2 {
            font-family: var(--font-serif);
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 18px;
        }
        .large-text-body p {
            font-size: 16px;
            color: var(--gray);
            line-height: 2;
            margin-bottom: 20px;
        }
        .comparison-table {
            border: 1px solid var(--line);
            border-radius: 4px;
            overflow: hidden;
            margin: 40px 0 64px 0;
            background: var(--card);
        }
        .comparison-table table {
            margin-bottom: 0;
            width: 100%;
            border-collapse: collapse;
            background: transparent;
        }
        .comparison-table th,
        .comparison-table td {
            text-align: left;
            font-size: 15px;
            line-height: 1.8;
            border-bottom: 1px solid var(--line);
            padding: 16px 20px;
        }
        .comparison-table th {
            background: var(--ink);
            color: #f9f8f2;
            font-family: var(--font-serif);
            font-size: 15px;
            font-weight: 600;
            letter-spacing: .02em;
        }
        .comparison-table td {
            background: var(--card);
            color: var(--gray);
        }
        .faq-section {
            width: 100%;
            padding: 72px 0;
            margin-top: 16px;
        }
        .faq-inner {
            display: flex;
            gap: 52px;
            width: 100%;
        }
        .faq-title-side {
            flex: 0 0 38%;
            max-width: 420px;
        }
        .faq-title-side h2 {
            font-family: var(--font-serif);
            font-size: clamp(28px, 4vw, 40px);
            line-height: 1.25;
            font-weight: 600;
            border-left: 4px solid var(--sage);
            padding-left: 20px;
        }
        .faq-accordion-side {
            flex: 1 1 60%;
            min-width: 0;
        }
        .accordion-item {
            border-bottom: 1px solid var(--line);
            position: relative;
        }
        .accordion-item:first-child {
            border-top: 1px solid var(--line);
        }
        .accordion-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            cursor: pointer;
            font-size: 17px;
            font-weight: 500;
            gap: 20px;
            line-height: 1.6;
            background: transparent;
            transition: color .2s ease-out;
        }
        .accordion-title:hover {
            color: var(--sage);
        }
        .accordion-icon {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex: 0 0 28px;
            transition: background-color .2s, border-color .2s, color .2s;
            color: var(--ink);
            line-height: 1;
            font-weight: 300;
        }
        .accordion-item.is-active .accordion-icon {
            background: var(--ink);
            color: var(--lime);
            border-color: var(--ink);
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            padding: 0;
            transition: max-height .25s ease-out;
        }
        .accordion-item.is-active .accordion-content {
            max-height: 500px;
            padding-bottom: 22px;
        }
        .accordion-content-inner {
            font-size: 15px;
            line-height: 1.9;
            color: var(--gray);
            padding-right: 20px;
        }
        .cta-section {
            background: var(--ink);
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 64px 48px;
            border-radius: 8px;
            margin: 72px 0;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            mix-blend-mode: screen;
        }
        .cta-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .cta-content h2 {
            font-family: var(--font-serif);
            color: #fff;
            font-size: clamp(24px, 4vw, 40px);
            font-weight: 600;
            line-height: 1.4;
            max-width: 640px;
        }
        .cta-content .cta-desc {
            color: rgba(255, 255, 255, 0.65);
            max-width: 500px;
            margin-top: 12px;
            line-height: 1.8;
            font-size: 15px;
        }
        .cta-actions {
            margin-top: 28px;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-actions .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.35);
        }
        .cta-note {
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            margin-top: 20px;
        }
        .site-footer {
            border-top: 1px solid var(--line);
            background: var(--paper);
            padding: 56px 0 32px 0;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 48px;
            width: 100%;
        }
        .footer-inner .grid-x {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -12px;
        }
        .footer-inner .cell {
            padding: 0 12px;
            margin-bottom: 20px;
        }
        .footer-brand-name {
            display: block;
            font-family: var(--font-serif);
            font-size: 24px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .footer-brand-desc {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.8;
            max-width: 360px;
            margin: 0;
        }
        .footer-inner h3 {
            font-family: var(--font-serif);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--ink);
            border-bottom: 1px solid var(--line);
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 14px;
        }
        .footer-links a {
            color: var(--gray);
            line-height: 1.6;
            display: inline-block;
            position: relative;
            width: fit-content;
        }
        .footer-links a:hover {
            color: var(--sage);
        }
        .footer-links a::after {
            content: '';
            display: block;
            width: 0;
            height: 1px;
            background: var(--sage);
            transition: width .2s ease-out;
        }
        .footer-links a:hover::after {
            width: 100%;
        }
        .footer-meta {
            font-size: 13px;
            line-height: 1.7;
            color: var(--gray);
        }
        .footer-meta .grid-x {
            margin-bottom: 20px;
        }
        .footer-meta p {
            font-size: 13px;
        }
        .footer-meta code {
            background: rgba(69, 111, 95, 0.06);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 13px;
            color: var(--sage);
        }
        .footer-bottom {
            border-top: 1px solid var(--line);
            padding-top: 24px;
            margin-top: 28px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--gray);
            gap: 8px;
        }
        @media screen and (max-width: 1024px) {
            .sidebar {
                display: none;
            }
            .top-mobile-bar {
                display: flex;
            }
            .main-area {
                margin-left: 0;
            }
            .page-content,
            .content-footer-wrap {
                padding-left: 24px;
                padding-right: 24px;
            }
            .page-header {
                flex-direction: column;
                gap: 28px;
                align-items: flex-start;
            }
            .page-header-visual {
                width: 100%;
                justify-content: flex-start;
            }
            .page-header-visual img {
                max-width: 100%;
            }
            .large-text-block {
                display: block;
            }
            .large-text-media {
                height: 300px;
                position: relative;
            }
            .large-text-media img {
                position: absolute;
                height: 100%;
            }
            .large-text-body {
                padding: 36px 28px;
            }
            .faq-inner {
                display: block;
            }
            .faq-title-side {
                margin-bottom: 28px;
                max-width: 100%;
            }
            .guide-article {
                display: block;
                gap: 0;
            }
            .guide-article-header {
                max-width: 100%;
                margin-bottom: 20px;
            }
            .content-footer-wrap {
                padding: 0 24px;
            }
        }
        @media screen and (max-width: 767px) {
            .page-content {
                padding: 32px 16px 0 16px;
            }
            .content-footer-wrap {
                padding: 0 16px;
            }
            .countdown-strip {
                padding: 10px 14px;
                flex-direction: column;
                align-items: flex-start;
            }
            .hero-cat-tag {
                font-size: 12px;
                padding: 4px 12px;
            }
            .page-h1 {
                font-size: clamp(30px, 12vw, 42px);
                margin-bottom: 12px;
            }
            .hero-mini {
                margin-bottom: 14px;
            }
            .hero-intro {
                font-size: 16px;
                margin-bottom: 18px;
            }
            .page-header {
                padding: 28px 0 36px 0;
                margin-bottom: 44px;
            }
            .guide-article {
                margin-bottom: 36px;
                display: block;
            }
            .guide-article-header {
                max-width: 100%;
                padding-top: 14px;
                border-top: 2px solid var(--ink);
                margin-bottom: 18px;
            }
            .guide-article-body {
                padding-top: 8px;
                padding-bottom: 24px;
            }
            .guide-body-text p {
                margin-bottom: 14px;
                font-size: 15px;
            }
            .flow-row {
                gap: 14px;
                padding: 20px 0;
            }
            .flow-index {
                font-size: 52px;
                flex: 0 0 64px;
            }
            .flow-info {
                flex: 1 1 100%;
                min-width: 0;
            }
            .stats-grid {
                flex-direction: column;
                gap: 12px;
            }
            .stat-item {
                min-width: 100%;
                border-left: 2px solid var(--line);
                padding-left: 16px;
            }
            .hidden-mobile {
                display: none;
            }
            .cta-section {
                padding: 48px 24px;
                margin-bottom: 52px;
            }
            .feature-band {
                padding: 32px 20px;
                gap: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .feature-band-copy h2 {
                font-size: 22px;
            }
            .faq-section {
                padding: 48px 0;
            }
            .accordion-content-inner {
                font-size: 15px;
            }
            .site-footer {
                padding-top: 40px;
            }
            .footer-inner {
                padding: 0 16px;
            }
            .footer-inner .cell {
                flex: 0 0 100%;
            }
            .footer-bottom {
                padding-top: 16px;
                margin-top: 16px;
                justify-content: flex-start;
            }
            .top-mobile-bar {
                padding: 0 12px;
                height: 56px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }
        .mobile-drawer.show+.drawer-overlay,
        .drawer-overlay.show {
            display: block;
        }

/* roulang page: article */
:root{
      --ink:#161912;
      --paper:#F3F1E9;
      --surface:#FDFCF8;
      --sage:#456F5F;
      --gray:#70746C;
      --line:#E2DED2;
      --lime:#D7EB50;
      --sidebar-w:264px;
      --radius:6px;
      --radius-md:14px;
      --shadow-sm:0 1px 2px rgba(15,20,15,.04);
      --shadow-md:0 16px 40px rgba(15,20,15,.08);
      --font-display:Georgia,"Noto Serif SC","Source Han Serif SC","Songti SC","STSong",serif;
      --font-body:-apple-system,BlinkMacSystemFont,"PingFang SC","HarmonyOS Sans SC","Noto Sans CJK SC","Microsoft YaHei",sans-serif;
      --font-num:"Inter","Avenir Next",system-ui,sans-serif;
      --ease:cubic-bezier(.19,1,.22,1);
    }

    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
    body{font-family:var(--font-body);background:var(--paper);color:var(--ink);line-height:1.7;min-height:100vh;font-size:16px}
    body.lock{overflow:hidden}
    a{color:inherit;text-decoration:none;transition:color .2s ease,border-color .2s ease,background .2s ease}
    img{max-width:100%;height:auto;display:block}
    ul,ol{list-style:none}
    button,input,textarea{font-family:inherit;border:none;background:none;cursor:pointer}
    :focus-visible{outline:2px solid var(--lime);outline-offset:3px}
    ::selection{background:var(--lime);color:var(--ink)}

    h1,h2,h3,h4{font-family:var(--font-display);font-weight:700;line-height:1.25}

    .app-sidebar{
      position:fixed;inset:0 auto 0 0;width:var(--sidebar-w);background:var(--surface);
      border-right:1px solid var(--line);display:flex;flex-direction:column;z-index:120;
      padding:0 22px;overflow-y:auto;
    }
    .sidebar-top{
      display:flex;align-items:center;justify-content:space-between;height:86px;
      border-bottom:1px solid var(--line);flex-shrink:0;
    }
    .brand-logo{display:flex;align-items:center;gap:10px}
    .brand-mark{
      width:38px;height:38px;border-radius:10px;background:var(--ink);color:var(--lime);
      display:flex;align-items:center;justify-content:center;font-family:var(--font-display);
      font-size:20px;font-weight:900;letter-spacing:-1px;flex-shrink:0;
    }
    .brand-name{font-family:var(--font-display);font-size:23px;font-weight:700;letter-spacing:.5px;color:var(--ink);white-space:nowrap}
    .brand-name sup{font-size:11px;font-family:var(--font-body);color:var(--sage);font-weight:600;margin-left:3px}
    .sidebar-close{display:none;width:38px;height:38px;border-radius:50%;background:var(--paper);color:var(--ink);align-items:center;justify-content:center}

    .side-nav{display:flex;flex-direction:column;gap:6px;margin:30px 0 18px}
    .side-nav-title{font-size:12px;letter-spacing:2px;color:var(--gray);text-transform:uppercase;padding:0 12px;margin-bottom:8px;font-weight:600}
    .side-link{
      display:flex;align-items:center;gap:10px;padding:11px 14px;border-radius:8px;font-size:15px;
      color:var(--ink);position:relative;transition:background .2s var(--ease),color .2s var(--ease);
    }
    .side-link:hover{background:#EEEAE0;color:var(--ink)}
    .side-link.active{background:#ECF3DB;color:var(--ink);font-weight:600}
    .side-link.active .nav-dot{background:var(--lime);box-shadow:0 0 0 3px rgba(215,235,80,.35)}
    .nav-dot{width:6px;height:6px;border-radius:999px;background:#D8D3C7;flex-shrink:0;transition:all .2s}
    .side-link .link-arrow{margin-left:auto;font-size:12px;color:var(--gray);opacity:0;transition:opacity .2s}
    .side-link:hover .link-arrow,.side-link.active .link-arrow{opacity:1}

    .sidebar-status{
      margin-top:auto;background:var(--paper);border:1px solid var(--line);border-radius:12px;
      padding:16px 14px;margin-bottom:22px;
    }
    .status-row{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--ink)}
    .status-dot{width:8px;height:8px;border-radius:50%;background:var(--lime);box-shadow:0 0 0 3px rgba(215,235,80,.25);animation:pulse 2s infinite}
    @keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
    .status-desc{font-size:12px;color:var(--gray);margin:8px 0 0 16px;line-height:1.5}

    .main-stage{min-height:100vh;margin-left:var(--sidebar-w);display:flex;flex-direction:column;background:var(--paper)}

    .mobile-header{display:none;align-items:center;gap:14px;height:58px;padding:0 18px;background:var(--ink);color:#fff;position:sticky;top:0;z-index:110}
    .mobile-menu-btn{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:18px}
    .mobile-brand{font-family:var(--font-display);font-size:18px;font-weight:700;color:var(--lime)}

    .drawer-overlay{position:fixed;inset:0;background:rgba(15,20,15,.42);backdrop-filter:blur(2px);z-index:115;opacity:0;pointer-events:none;transition:opacity .3s}
    .drawer-overlay.active{opacity:1;pointer-events:auto}

    .page-shell{max-width:1040px;width:100%;margin:0 auto;padding:0 32px}

    .breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:8px;font-size:13px;color:var(--gray);padding:34px 0 16px}
    .breadcrumb a{color:var(--sage)}
    .breadcrumb a:hover{color:var(--ink)}
    .bc-sep{color:#C7C1B5}
    .bc-title{color:var(--ink);max-width:400px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

    .article-card{
      background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-md);
      padding:54px 68px 68px;box-shadow:var(--shadow-sm);margin-top:8px;
    }
    .article-eyebrow{display:flex;gap:8px;align-items:center}
    .eyebrow-tag{
      background:var(--sage);color:#fff;font-size:12px;padding:4px 12px;border-radius:999px;letter-spacing:1px;
    }
    .eyebrow-line{flex:1;height:1px;background:var(--line)}
    .article-title{font-size:clamp(30px,4vw,46px);line-height:1.18;margin:22px 0 20px;letter-spacing:.5px}
    .article-meta{display:flex;flex-wrap:wrap;gap:8px 22px;margin-bottom:36px;padding-bottom:24px;border-bottom:1px solid var(--line)}
    .meta-item{display:inline-flex;align-items:center;gap:7px;font-size:13px;color:var(--gray)}
    .meta-item i{font-size:14px;color:var(--sage)}
    .meta-item a{color:var(--sage)}
    .meta-item a:hover{color:var(--ink)}

    .article-body{max-width:760px}
    .article-body p{margin-bottom:24px;font-size:17px;line-height:1.9;color:#25281F}
    .article-body h2,.article-body h3{font-family:var(--font-display);margin-bottom:16px;line-height:1.35}
    .article-body h2{font-size:32px;margin-top:42px;padding-left:14px;border-left:4px solid var(--sage)}
    .article-body h3{font-size:23px;margin-top:30px}
    .article-body a{color:var(--sage);text-decoration:underline;text-underline-offset:4px}
    .article-body a:hover{color:var(--ink)}
    .article-body img{border-radius:10px;margin:26px 0;width:auto;max-width:100%}
    .article-body ul,.article-body ol{list-style:disc;margin:0 0 24px 1.5em;font-size:16px;line-height:1.85}
    .article-body ol{list-style:decimal}
    .article-body li{margin-bottom:6px}
    .article-body blockquote{
      margin:24px 0;background:var(--paper);border-left:4px solid var(--lime);padding:20px 24px;
      font-size:17px;color:#3C4036;border-radius:0 8px 8px 0;
    }
    .article-body table{width:100%;border-collapse:collapse;margin:24px 0;font-size:15px}
    .article-body table th,.article-body table td{border:1px solid var(--line);padding:10px 12px}
    .article-body table th{background:var(--paper);text-align:left}
    .article-body hr{border:0;height:1px;background:var(--line);margin:34px 0}

    .article-tag-group{display:flex;flex-wrap:wrap;gap:10px;padding-top:14px}
    .article-tag{
      font-size:13px;padding:6px 14px;border-radius:999px;background:var(--paper);border:1px solid var(--line);color:var(--sage);
    }
    .article-nav-bottom{
      display:flex;flex-wrap:wrap;gap:12px;margin-top:40px;padding-top:24px;border-top:1px solid var(--line);
    }

    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;font-size:14px;font-weight:600;
      padding:11px 22px;border-radius:var(--radius);transition:transform .2s var(--ease),background .2s var(--ease),box-shadow .2s var(--ease);line-height:1.2;
      text-decoration:none;cursor:pointer;border:1px solid transparent;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn-lime{background:var(--lime);color:var(--ink)}
    .btn-lime:hover{background:#E1F568;box-shadow:0 8px 20px rgba(215,235,80,.3)}
    .btn-dark{background:var(--ink);color:var(--paper)}
    .btn-dark:hover{background:var(--sage)}
    .btn-ghost{border-color:var(--line);color:var(--ink);background:transparent}
    .btn-ghost:hover{border-color:var(--sage);color:var(--sage)}
    .btn-white{background:#fff;color:var(--ink)}
    .btn-white:hover{background:var(--lime)}

    .section{padding:84px 32px}
    .section-head{max-width:1040px;margin:0 auto 40px;display:flex;justify-content:space-between;align-items:end;gap:24px;flex-wrap:wrap}
    .section-kicker{font-size:13px;color:var(--sage);font-weight:600;letter-spacing:2px;margin-bottom:10px;display:block}
    .section-title{font-size:clamp(28px,3.4vw,40px)}
    .section-desc{font-size:15px;color:var(--gray);margin-top:8px;max-width:620px;line-height:1.7}
    .section-link{font-size:14px;color:var(--sage);display:inline-flex;align-items:center;gap:8px;border-bottom:1px solid transparent}
    .section-link:hover{border-bottom-color:var(--sage)}

    .related-wrap{max-width:1040px;margin:0 auto}
    .related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
    .related-card{
      background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-md);overflow:hidden;
      display:flex;flex-direction:column;transition:box-shadow .25s var(--ease),transform .25s var(--ease);
    }
    .related-card:hover{box-shadow:var(--shadow-md);transform:translateY(-4px)}
    .related-cover{overflow:hidden;aspect-ratio:16/9;background:var(--paper)}
    .related-cover img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
    .related-card:hover .related-cover img{transform:scale(1.03)}
    .related-body{padding:22px;display:flex;flex-direction:column;gap:10px;flex:1}
    .related-card-label{font-size:12px;color:var(--sage);font-weight:600;letter-spacing:1px}
    .related-card-title{font-size:19px;line-height:1.4;font-family:var(--font-display)}
    .related-card-desc{font-size:14px;color:var(--gray);line-height:1.7;flex:1}
    .related-card-more{font-size:13px;color:var(--ink);display:inline-flex;align-items:center;gap:6px}
    .related-card:hover .related-card-more{color:var(--sage)}

    .cta-area{background:var(--ink);padding:30px;border-radius:0;position:relative;overflow:hidden}
    .cta-inner{max-width:1040px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:32px;position:relative;z-index:2;flex-wrap:wrap}
    .cta-bg-text{position:absolute;right:-10px;bottom:-60px;font-family:var(--font-display);font-size:200px;font-weight:900;color:rgba(215,235,80,.05);pointer-events:none;user-select:none;line-height:1}
    .cta-left{max-width:600px}
    .cta-eyebrow{color:var(--lime);font-size:13px;font-weight:600;letter-spacing:2px;margin-bottom:12px;display:block}
    .cta-title{color:var(--surface);font-size:clamp(27px,3vw,36px);line-height:1.2;margin-bottom:14px}
    .cta-desc{color:#C9CDC1;font-size:15px;line-height:1.8;margin-bottom:22px}
    .cta-actions{display:flex;flex-wrap:wrap;gap:12px}

    .faq-area{background:var(--paper);padding:80px 32px}
    .faq-inner{max-width:1040px;margin:0 auto}
    .faq-asset{display:flex;flex-direction:column}
    .faq-title{font-size:clamp(28px,3vw,38px);margin-bottom:44px}
    .faq-list{border-top:1px solid var(--line)}
    .faq-item{border-bottom:1px solid var(--line)}
    .faq-item-title{
      width:100%;display:flex;justify-content:space-between;align-items:center;gap:20px;
      padding:22px 4px;font-size:17px;font-family:var(--font-body);font-weight:600;color:var(--ink);text-align:left;
    }
    .faq-icon{width:28px;height:28px;border-radius:50%;border:1px solid var(--line);display:inline-flex;align-items:center;justify-content:center;font-size:15px;color:var(--sage);flex-shrink:0;transition:all .25s ease;font-style:normal}
    .faq-item.is-open .faq-icon{background:var(--lime);color:var(--ink);border-color:var(--lime);transform:rotate(45deg)}
    .faq-item-content{display:none;padding:0 4px 24px;color:var(--gray);max-width:860px;font-size:15px;line-height:1.85}
    .faq-item.is-open .faq-item-content{display:block}

    .footer-copy{text-align:center;padding:24px 16px;color:var(--gray);font-size:13px}
    .footer-copy span.sep{padding:0 8px}

    .notfound-card{
      background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-md);
      padding:70px 40px;text-align:center;max-width:680px;margin:80px auto;box-shadow:var(--shadow-sm);
    }
    .nf-icon{width:76px;height:76px;border-radius:50%;background:var(--paper);display:inline-flex;align-items:center;justify-content:center;font-size:30px;color:var(--sage);margin-bottom:24px}
    .nf-title{font-size:30px;margin-bottom:12px}
    .nf-desc{color:var(--gray);margin-bottom:30px;font-size:15px}

    @media (max-width:1023px){
      .app-sidebar{transform:translateX(-100%);transition:transform .25s var(--ease);width:320px;box-shadow:6px 0 40px rgba(0,0,0,.08);padding-top:0}
      .app-sidebar.open{transform:translateX(0)}
      .sidebar-close{display:inline-flex}
      .main-stage{margin-left:0}
      .mobile-header{display:flex}
      .related-grid{grid-template-columns:repeat(2,1fr)}
      .article-card{padding:38px 28px}
    }
    @media (max-width:767px){
      .side-nav{flex-direction:column}
      .section{padding:56px 18px}
      .related-grid{grid-template-columns:1fr}
      .cta-inner{flex-direction:column}
      .article-card{padding:30px 18px;border-radius:10px}
      .article-title{font-size:28px}
      .article-body p{font-size:16px}
      .breadcrumb{padding:20px 4px 10px}
      .cta-area{padding:28px 20px}
      .faq-area{padding:54px 18px}
      .faq-item-title{font-size:16px}
    }
    @media (prefers-reduced-motion:reduce){
      *{animation:none!important;transition:none!important}
    }

/* roulang page: category2 */
:root {
    --bg-1: #F3F1E9;
    --bg-2: #FDFCF8;
    --ink: #161912;
    --sage: #456F5F;
    --acid: #D7EB50;
    --mid: #70746C;
    --line: #E2DED2;
    --shadow-sm: 0 1px 2px rgba(15,20,15,.05);
    --shadow-lg: 0 12px 32px rgba(15,20,15,.10);
    --radius: 6px;
    --radius-lg: 10px;
    --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", serif;
    --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
    --mono: "Inter", "Avenir Next", "SFMono-Regular", Consolas, monospace;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: var(--sans);
    background: var(--bg-1);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  ul,
  ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  h1,
  h2,
  h3,
  h4,
  p {
    margin: 0;
  }

  button {
    font-family: inherit;
    cursor: pointer;
  }

  :focus-visible {
    outline: 2px solid var(--acid);
    outline-offset: 3px;
    border-radius: 4px;
  }

  ::selection {
    background: rgba(215, 235, 80, .75);
    color: var(--ink);
  }

  .skip-link {
    position: fixed;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 12px 22px;
    z-index: 200;
    border-radius: 0 0 6px 0;
  }

  .skip-link:focus {
    left: 0;
  }

  .app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .page-main {
    margin-left: 264px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .side-shell {
    position: fixed;
    inset: 0 auto 0 0;
    width: 264px;
    background: var(--bg-2);
    border-right: 1px solid var(--line);
    z-index: 80;
    display: flex;
    flex-direction: column;
    transition: transform .26s ease-out;
  }

  .side-inner {
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
  }

  .brand-lockup {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
  }

  .brand-line {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--acid);
    flex: 0 0 auto;
  }

  .brand-symbol::before {
    content: "";
    width: 14px;
    height: 14px;
    border-left: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    transform: translateY(-1px);
  }

  .brand-name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: .02em;
    line-height: 1;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }

  .brand-official {
    font-size: 12px;
    font-weight: 400;
    color: var(--sage);
    letter-spacing: .14em;
    background: rgba(69, 111, 95, .1);
    padding: 3px 10px;
    border-radius: 999px;
    display: inline-block;
  }

  .side-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
  }

  .side-nav .side-link {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 46px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 15px;
    color: var(--ink);
    position: relative;
    transition: background .2s ease-out, color .2s ease-out;
  }

  .side-nav .side-link:hover {
    background: rgba(227, 224, 210, .45);
  }

  .nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--middle);
    flex: 0 0 auto;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
  }

  .side-nav .side-link.active {
    background: var(--ink);
    color: var(--acid);
    box-shadow: var(--shadow-sm);
  }

  .side-nav .side-link.active .nav-dot {
    background: var(--acid);
    border-color: var(--acid);
    box-shadow: 0 0 0 2px rgba(215,235,80,.45);
  }

  .side-nav .side-link.active::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: var(--acid);
    border-radius: 0 3px 3px 0;
  }

  .side-brief {
    margin-top: auto;
    padding: 18px 12px 4px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--mid);
    line-height: 1.7;
  }

  .side-brief strong {
    display: block;
    color: var(--sage);
    margin-bottom: 2px;
    font-weight: 600;
  }

  .mobile-topbar {
    display: none;
  }

  .drawer-overlay {
    display: none;
  }

  .main-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .page-main main {
    flex: 1 0 auto;
  }

  .hero-section {
    padding: 72px 0 58px;
    background:
      radial-gradient(circle at 92% 18%, rgba(215,235,80,.12), transparent 28%),
      var(--bg-1);
    border-bottom: 1px solid var(--line);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 72px;
    align-items: center;
  }

  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: var(--acid);
    font-size: 13px;
    padding: 7px 15px;
    border-radius: 999px;
    letter-spacing: .04em;
    margin-bottom: 22px;
    font-weight: 500;
  }

  .live-dot {
    width: 7px;
    height: 7px;
    background: var(--acid);
    border-radius: 50%;
    animation: breathe 1.8s ease-in-out infinite;
  }

  @keyframes breathe {
    0%, 100% {
      opacity: 1;
      box-shadow: 0 0 0 0 rgba(215,235,80,.8);
    }
    55% {
      opacity: .65;
      box-shadow: 0 0 0 6px rgba(215,235,80,0);
    }
  }

  .hero-main-title {
    font-family: var(--serif);
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--ink);
    padding-bottom: 18px;
    border-bottom: 2px solid var(--ink);
    display: inline-block;
    margin-bottom: 24px;
  }

  .hero-title-note {
    display: block;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--sage);
    letter-spacing: .22em;
    margin-top: 12px;
  }

  .hero-lead {
    max-width: 30ch;
    font-size: 17px;
    line-height: 1.9;
    color: #2d312a;
    margin-bottom: 28px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    padding: 0 20px;
    height: 46px;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .btn-primary {
    background: var(--acid);
    color: var(--ink);
    border-color: var(--acid);
  }

  .btn-primary:hover {
    background: #e5f66a;
    border-color: #e5f66a;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }

  .btn-line {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
  }

  .btn-line:hover {
    background: rgba(22,25,18,.06);
    transform: translateY(-1px);
  }

  .hero-meta {
    font-size: 13px;
    color: var(--mid);
    margin-top: 4px;
  }

  .hero-art {
    position: relative;
  }

  .hero-art-card {
    background: var(--bg-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transform: rotate(1deg);
  }

  .hero-art-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 3px);
  }

  .hero-art-stamp {
    position: absolute;
    right: -12px;
    bottom: 26px;
    background: var(--acid);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-sm);
    letter-spacing: .08em;
  }

  .status-strip {
    background: var(--ink);
    color: #f4f1e8;
    padding: 24px 0;
  }

  .status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .status-cell {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-left: 1px solid rgba(255,255,255,.13);
    padding-left: 22px;
  }

  .status-cell:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .status-index {
    font-family: var(--mono);
    font-size: 15px;
    line-height: 1.2;
    color: var(--acid);
    background: rgba(215,235,80,.1);
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
  }

  .status-cell h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .status-cell p {
    font-size: 13px;
    color: rgba(243,241,233,.74);
    line-height: 1.7;
  }

  .gallery-section {
    padding: 96px 0 32px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .15em;
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(69,111,95,.1);
    color: var(--sage);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .section-heading h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 3.2vw, 40px);
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 14px;
  }

  .section-heading .section-desc {
    font-size: 15px;
    color: var(--mid);
    max-width: 64ch;
    line-height: 1.8;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
    grid-auto-flow: dense;
  }

  .gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-2);
    border: 1px solid var(--line);
    min-height: 220px;
    display: block;
    transition: box-shadow .24s ease, transform .24s ease;
  }

  .gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
  }

  .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.02);
  }

  .gallery-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22,25,18,0.08) 0%, rgba(22,25,18,0.05) 35%, rgba(22,25,18,0.78) 100%);
  }

  .g-item-main {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    min-height: 500px;
  }

  .g-item-right {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
    min-height: 240px;
  }

  .g-item-right-second {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
    min-height: 240px;
  }

  .g-item-wide {
    grid-column: 1 / 13;
    min-height: 170px;
    margin: 18px 0 6px;
    border: 0;
  }

  .g-item-wide .wide-inner {
    position: relative;
    height: 100%;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--ink);
    color: var(--bg-2);
    padding: 0 34px;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .wide-inner::after {
    content: "hth网址";
    position: absolute;
    right: -10px;
    bottom: -22px;
    font-family: var(--serif);
    font-size: 110px;
    color: rgba(215,235,80,.07);
    font-weight: 700;
    pointer-events: none;
    line-height: 1;
  }

  .wide-inner .wide-icon {
    position: relative;
    z-index: 1;
    font-family: var(--mono);
    background: var(--acid);
    color: var(--ink);
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
  }

  .wide-inner p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    line-height: 1.8;
    max-width: 67ch;
  }

  .gallery-tag {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 3;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink);
    background: var(--acid);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
  }

  .gallery-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    z-index: 4;
    color: #fff;
  }

  .gallery-content h3 {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .gallery-content p {
    font-size: 13px;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    max-width: 48ch;
  }

  .guide-block-section {
    padding: 84px 0 96px;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .guide-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 54px 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-block:first-of-type {
    padding-top: 0;
  }

  .guide-block:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .guide-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .guide-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }

  .guide-media.two {
    margin-left: 0;
  }

  .guide-block:nth-child(odd) .guide-media {
    order: 2;
  }

  .guide-copy .guide-num {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--sage);
    letter-spacing: .12em;
  }

  .guide-copy h3 {
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.3;
    margin: 8px 0 14px;
  }

  .guide-copy p {
    color: #2b2f28;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
  }

  .guide-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0 8px;
  }

  .guide-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #3d4239;
    line-height: 1.65;
  }

  .guide-points li::before {
    content: "";
    background: var(--acid);
    border: 1px solid var(--ink);
    width: 19px;
    height: 19px;
    border-radius: 50%;
    flex: 0 0 auto;
    transform: translateY(3px);
  }

  .guide-block-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sage);
    border-bottom: 1px solid rgba(69,111,95,.5);
    padding-bottom: 2px;
  }

  .guide-block-link:hover {
    color: var(--ink);
    border-color: var(--ink);
  }

  .faq-section {
    padding: 96px 0 88px;
    background: var(--bg-1);
  }

  .faq-wrap {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
  }

  .faq-intro {
    position: sticky;
    top: 24px;
    align-self: start;
  }

  .faq-intro h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.25;
    margin: 8px 0 16px;
  }

  .faq-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid);
  }

  .faq-list {
    border-top: 1px solid var(--line);
  }

  .faq-item {
    border-bottom: 1px solid var(--line);
    background: transparent;
  }

  .faq-q {
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    padding: 21px 42px 21px 0;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--sans);
    color: var(--ink);
    position: relative;
    transition: color .2s ease;
  }

  .faq-q:hover {
    color: var(--sage);
  }

  .faq-q::before,
  .faq-q::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    background: var(--ink);
    transition: transform .3s ease;
  }

  .faq-q::before {
    width: 15px;
    height: 2px;
  }

  .faq-q::after {
    width: 2px;
    height: 15px;
    background: var(--acid);
    border: 1px solid var(--ink);
  }

  .faq-item.open .faq-q::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .faq-item.open .faq-q {
    color: var(--sage);
  }

  .faq-a {
    display: none;
    padding: 0 40px 20px 0;
    font-size: 15px;
    line-height: 1.85;
    color: #3d4239;
  }

  .faq-item.open .faq-a {
    display: block;
  }

  .cta-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  .cta-panel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 92px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }

  .cta-panel::before {
    content: "";
    background: var(--sage);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    position: absolute;
    left: -160px;
    top: -120px;
    opacity: .18;
  }

  .cta-panel::after {
    content: attr(data-brand);
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-family: var(--serif);
    color: rgba(215,235,80,.06);
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: .02em;
  }

  .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--acid);
    font-size: 13px;
    letter-spacing: .16em;
    margin-bottom: 16px;
  }

  .cta-panel h2 {
    font-family: var(--serif);
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.28;
    margin-bottom: 16px;
    max-width: 18em;
    position: relative;
    z-index: 1;
  }

  .cta-panel p {
    color: rgba(255,255,255,.66);
    line-height: 1.8;
    max-width: 50ch;
    margin-bottom: 30px;
    font-size: 15px;
    position: relative;
    z-index: 1;
  }

  .cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .cta-actions .btn-acid {
    background: var(--acid);
    color: var(--ink);
    border: 1px solid var(--acid);
  }

  .cta-actions .btn-acid:hover {
    background: #e8f46e;
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(215,235,80,.14);
  }

  .cta-actions .btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.55);
  }

  .cta-actions .btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: #fff;
  }

  .cta-note {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: rgba(255,255,255,.45);
    font-size: 12px;
  }

  .site-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 44px 0 28px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .footer-inner .grid-x {
    align-items: stretch;
  }

  .footer-inner .cell {
    padding-bottom: 26px;
  }

  .footer-inner h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: .06em;
  }

  .footer-brand-name {
    display: block;
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
  }

  .footer-brand-desc {
    font-size: 13px;
    color: var(--mid);
    max-width: 34ch;
    line-height: 1.8;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
  }

  .footer-links a {
    color: var(--mid);
    transition: color .2s ease, padding .2s ease;
  }

  .footer-links a:hover {
    color: var(--ink);
    padding-left: 4px;
  }

  .footer-meta p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 4px;
  }

  .footer-meta code {
    font-family: var(--mono);
    color: var(--sage);
    background: rgba(69,111,95,.08);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 12px;
  }

  .footer-bottom {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #878a82;
    font-size: 12px;
  }

  @media (max-width: 1120px) {
    .main-inner,
    .footer-inner,
    .cta-panel {
      padding-left: 32px;
      padding-right: 32px;
    }

    .hero-grid {
      gap: 44px;
    }

    .hero-main-title {
      font-size: clamp(36px, 5vw, 50px);
    }
  }

  @media (max-width: 1024px) {
    .mobile-topbar {
      position: sticky;
      top: 0;
      z-index: 70;
      height: 58px;
      background: var(--bg-2);
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 14px;
    }

    .menu-toggle {
      width: 42px;
      height: 42px;
      border: 0;
      background: transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      flex-direction: column;
      border-radius: 6px;
    }

    .menu-toggle span {
      width: 22px;
      height: 2px;
      background: var(--ink);
      display: block;
      transition: width .2s ease;
    }

    .menu-toggle:hover span {
      width: 14px;
    }

    .topbar-brand {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: .02em;
    }

    .topbar-indicator {
      margin-left: auto;
      font-size: 12px;
      color: var(--sage);
      background: rgba(69,111,95,.08);
      padding: 5px 12px;
      border-radius: 999px;
      letter-spacing: .05em;
      white-space: nowrap;
    }

    .side-shell {
      transform: translateX(-102%);
      box-shadow: 12px 0 36px rgba(15,20,15,.12);
      border-right: 0;
      width: 320px;
    }

    body.drawer-open .side-shell {
      transform: translateX(0);
    }

    body.drawer-open .drawer-overlay {
      display: block;
      position: fixed;
      inset: 0;
      background: rgba(22,25,18,.55);
      z-index: 65;
      opacity: 1;
    }

    .drawer-overlay {
      opacity: 0;
      transition: opacity .2s ease;
    }

    .pagel-main,
    .page-main {
      margin-left: 0;
    }

    .status-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .status-cell {
      border-left: 0;
      border-left: 0;
      padding-left: 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
      padding-bottom: 14px;
    }

    .status-cell:last-child {
      border-bottom: 0;
    }
  }

  @media (max-width: 767px) {
    .hero-section {
      padding: 52px 0 48px;
    }

    .main-inner,
    .footer-inner,
    .cta-panel {
      padding-left: 20px;
      padding-right: 20px;
    }

    .hero-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .hero-main-title {
      font-size: clamp(32px, 9vw, 42px);
    }

    .hero-lead {
      max-width: 100%;
    }

    .hero-art-card img {
      height: 280px;
    }

    .hero-art-stamp {
      right: 6px;
      bottom: 12px;
    }

    .gallery-section {
      padding: 68px 0 24px;
    }

    .gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .gallery-item,
    .g-item-main,
    .g-item-right,
    .g-item-right-second {
      min-height: 240px;
      width: 100%;
      flex: 0 0 auto;
    }

    .g-item-main img {
      height: 240px;
      position: relative;
      min-height: 240px;
      width: 100%;
    }

    .gallery-shade,
    .gallery-content,
    .gallery-tag {
      position: absolute;
    }

    .g-item-main {
      min-height: 260px;
    }

    .g-item-wide {
      width: 100%;
      margin: 0;
    }

    .wide-inner {
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 24px 26px !important;
    }

    .wide-inner p {
      font-size: 14px;
    }

    .guide-block-section {
      padding: 60px 0;
    }

    .guide-block {
      grid-template-columns: 1fr;
      gap: 26px;
      padding: 34px 0;
    }

    .guide-block:nth-child(odd) .guide-media {
      order: 0;
    }

    .guide-media img {
      height: 220px;
    }

    .faq-section {
      padding: 64px 0 60px;
    }

    .faq-wrap {
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .faq-intro {
      position: static;
    }

    .cta-panel {
      padding-top: 68px;
      padding-bottom: 68px;
    }

    .cta-panel h2 {
      font-size: 24px;
    }

    .cta-actions {
      flex-direction: column;
      width: 100%;
    }

    .cta-actions .btn {
      width: 100%;
      justify-content: center;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
      transform: none !important;
    }
  }
