/* roulang page: index */
:root{
  --primary:#B07848;
  --primary-dark:#8F5F3B;
  --bg:#FAF8F4;
  --card:#FFFFFF;
  --dark:#26241F;
  --olive:#66744A;
  --gold:#C6A15B;
  --text:#3A3833;
  --text-soft:#6E6A63;
  --text-muted:#9A958C;
  --border:#E9E2D8;
  --radius:14px;
  --radius-sm:10px;
  --radius-input:12px;
  --shadow-sm:0 4px 16px rgba(38,36,31,.06);
  --shadow-lg:0 12px 32px rgba(38,36,31,.12);
  --container:1200px;
  --transition:.3s cubic-bezier(.4,0,.2,1);
  --font-sans:'PingFang SC','Microsoft YaHei','Noto Sans SC',sans-serif;
  --font-serif:'Noto Serif SC','Source Han Serif SC',serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button,input{font-family:inherit;font-size:inherit}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
.hidden[hidden]{display:none!important}
.tag{
  display:inline-flex;
  align-items:center;
  padding:2px 10px;
  font-size:12px;
  font-weight:500;
  line-height:1.6;
  color:var(--primary-dark);
  background:rgba(176,120,72,.12);
  border-radius:6px;
}
.eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:500;
  letter-spacing:.08em;
  color:var(--primary);
  text-transform:none;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:var(--radius-sm);
  border:1px solid transparent;
  font-weight:500;
  line-height:1.4;
  cursor:pointer;
  transition:var(--transition);
  white-space:nowrap;
}
.btn-primary{
  background:var(--primary);
  color:#fff;
}
.btn-primary:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}
.btn-primary:focus-visible{
  outline:2px solid rgba(176,120,72,.4);
  outline-offset:2px;
  box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(176,120,72,.4);
}
.btn-outline{
  background:transparent;
  border-color:var(--border);
  color:var(--text);
}
.btn-outline:hover{
  border-color:var(--primary);
  color:var(--primary);
  transform:translateY(-2px);
}
.btn-outline:focus-visible{
  outline:2px solid rgba(176,120,72,.4);
  outline-offset:2px;
}
.btn-block{width:100%}
.btn-sm{padding:10px 20px;font-size:14px}
.btn-lg{padding:16px 36px;font-size:16px}

/* Header */
.site-header{
  position:relative;
  z-index:50;
  background:rgba(250,248,244,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
}
.header-top{
  display:flex;
  align-items:center;
  gap:20px;
  padding:14px 0 10px;
  flex-wrap:wrap;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.brand-mark{
  width:18px;
  height:18px;
  border:2px solid var(--primary);
  transform:rotate(45deg);
  border-radius:4px;
  flex-shrink:0;
  position:relative;
}
.brand-mark::after{
  content:'';
  position:absolute;
  inset:3px;
  border:1px solid var(--gold);
  border-radius:2px;
}
.brand-text{
  font-family:var(--font-serif);
  font-size:22px;
  font-weight:700;
  color:var(--text);
  letter-spacing:.02em;
}
.brand-text span{color:var(--primary)}
.search-box{
  flex:1 1 auto;
  max-width:620px;
  margin:0 auto;
  display:flex;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:0 8px 0 18px;
  height:50px;
  transition:var(--transition);
  box-shadow:var(--shadow-sm);
}
.search-box:focus-within{
  border-color:var(--primary);
  box-shadow:0 0 0 2px rgba(176,120,72,.2),var(--shadow-sm);
}
.search-box svg{
  width:18px;
  height:18px;
  stroke:var(--text-muted);
  flex-shrink:0;
}
.search-box input{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  padding:0 12px;
  font-size:15px;
  color:var(--text);
  min-width:0;
}
.search-box input::placeholder{color:var(--text-muted)}
.search-submit{
  border:none;
  background:var(--primary);
  color:#fff;
  border-radius:999px;
  padding:8px 22px;
  font-size:14px;
  cursor:pointer;
  transition:var(--transition);
  height:36px;
}
.search-submit:hover{background:var(--primary-dark)}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:var(--radius-sm);
  cursor:pointer;
  padding:10px;
}
.menu-toggle span{
  display:block;
  height:2px;
  width:100%;
  background:var(--text);
  border-radius:2px;
  transition:var(--transition);
}
.header-bottom{
  display:flex;
  align-items:center;
  gap:4px;
  padding:0 0 10px;
}
.nav-link{
  position:relative;
  display:inline-block;
  padding:6px 14px;
  font-size:15px;
  color:var(--text-soft);
  border-radius:8px;
  transition:var(--transition);
}
.nav-link:hover{
  color:var(--primary);
  background:rgba(176,120,72,.06);
}
.nav-link.active{
  color:var(--primary);
  font-weight:500;
}
.nav-link.active::after{
  content:'';
  position:absolute;
  left:14px;
  right:14px;
  bottom:0;
  height:2px;
  background:var(--primary);
  border-radius:2px;
}

/* Mobile drawer */
.mobile-drawer{
  position:fixed;
  inset:0;
  background:rgba(38,36,31,.4);
  z-index:100;
  visibility:hidden;
  opacity:0;
  transition:var(--transition);
}
.mobile-drawer.open{visibility:visible;opacity:1}
.mobile-drawer__panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:280px;
  background:var(--bg);
  box-shadow:var(--shadow-lg);
  padding:32px 24px;
  transform:translateX(100%);
  transition:var(--transition);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.mobile-drawer.open .mobile-drawer__panel{transform:translateX(0)}
.drawer-link{
  padding:12px 14px;
  font-size:16px;
  color:var(--text);
  border-radius:var(--radius-sm);
  transition:var(--transition);
}
.drawer-link:hover{background:rgba(176,120,72,.08);color:var(--primary)}
.drawer-link.active{color:var(--primary);font-weight:500;background:rgba(176,120,72,.08)}
.drawer-close{
  align-self:flex-end;
  width:36px;
  height:36px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:8px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:var(--text);
  margin-bottom:16px;
}

/* Search empty */
.search-empty{
  max-width:720px;
  margin:0 auto;
  padding:40px 24px;
  text-align:center;
  color:var(--text-soft);
}
.search-empty p{font-size:18px;font-weight:500;margin-bottom:12px}
.search-empty a{color:var(--primary);font-weight:500}
.search-empty a:hover{text-decoration:underline}

/* Hero */
.hero{
  background:linear-gradient(90deg,rgba(250,248,244,.96) 0%,rgba(250,248,244,.88) 50%,rgba(250,248,244,.72) 100%),url('/assets/images/backpic/back-1.png') center/cover no-repeat;
  padding:88px 0 72px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  width:520px;
  height:520px;
  border:1px solid rgba(176,120,72,.18);
  border-radius:50%;
  top:-180px;
  right:-80px;
  pointer-events:none;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero-copy h1{
  font-family:var(--font-serif);
  font-size:52px;
  font-weight:700;
  line-height:1.15;
  color:var(--text);
  letter-spacing:.01em;
  margin-bottom:24px;
}
.hero-copy h1 .accent{
  color:var(--primary);
  position:relative;
}
.hero-copy h1 .accent::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  height:6px;
  background:rgba(176,120,72,.18);
  z-index:-1;
}
.hero-copy p{
  font-size:17px;
  color:var(--text-soft);
  line-height:1.8;
  max-width:520px;
  margin-bottom:36px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.hero-note{
  margin-top:28px;
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text-muted);
  font-size:13px;
}
.hero-note .dot{
  width:6px;
  height:6px;
  background:var(--olive);
  border-radius:50%;
}
.login-card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  padding:28px;
  border:1px solid var(--border);
}
.login-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px;
}
.login-card__head h3{
  font-family:var(--font-serif);
  font-size:22px;
  font-weight:600;
  color:var(--text);
}
.login-form label{
  display:block;
  font-size:13px;
  color:var(--text-soft);
  margin-bottom:6px;
  font-weight:500;
}
.login-form input{
  width:100%;
  height:46px;
  border:1px solid var(--border);
  border-radius:var(--radius-input);
  padding:0 14px;
  font-size:14px;
  background:#fff;
  transition:var(--transition);
  margin-bottom:16px;
  color:var(--text);
}
.login-form input:focus{
  outline:none;
  border-color:rgba(176,120,72,.4);
  box-shadow:0 0 0 3px rgba(176,120,72,.15);
}
.login-form .btn{margin-top:4px}
.login-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:16px;
  font-size:13px;
}
.login-meta a{
  color:var(--primary);
  font-weight:500;
  transition:var(--transition);
}
.login-meta a:hover{text-decoration:underline}
.form-note{
  margin-top:14px;
  font-size:12px;
  color:var(--text-muted);
  text-align:center;
  opacity:0;
  transition:var(--transition);
}
.form-note.visible{opacity:1}

/* Section common */
.section{padding:96px 0}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:48px;
  flex-wrap:wrap;
}
.section-head h2{
  font-family:var(--font-serif);
  font-size:38px;
  font-weight:600;
  line-height:1.2;
  color:var(--text);
  position:relative;
  padding-left:18px;
}
.section-head h2::before{
  content:'';
  position:absolute;
  left:0;
  top:6px;
  bottom:6px;
  width:4px;
  background:var(--primary);
  border-radius:4px;
}
.section-head .subtitle{
  font-size:15px;
  color:var(--text-soft);
  max-width:520px;
  line-height:1.7;
}

/* Services */
.services-section{
  background:var(--card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.service-list{
  display:flex;
  flex-direction:column;
}
.service-item{
  display:flex;
  align-items:flex-start;
  gap:28px;
  padding:28px 16px;
  border-bottom:1px solid var(--border);
  transition:var(--transition);
  border-radius:8px;
}
.service-item:last-child{border-bottom:none}
.service-item:hover{
  background:rgba(176,120,72,.05);
  padding-left:24px;
}
.service-number{
  font-family:var(--font-serif);
  font-size:20px;
  color:var(--gold);
  font-weight:600;
  min-width:52px;
  line-height:1.4;
}
.service-content{
  flex:1;
}
.service-content h3{
  font-size:20px;
  font-weight:600;
  color:var(--text);
  margin-bottom:8px;
}
.service-content p{
  font-size:15px;
  color:var(--text-soft);
  line-height:1.7;
  max-width:680px;
}
.service-arrow{
  color:var(--primary);
  font-size:24px;
  line-height:1;
  transition:var(--transition);
  align-self:center;
}
.service-item:hover .service-arrow{transform:translateX(6px)}

/* Stats */
.stats-section{
  background:var(--bg);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--card);
  overflow:hidden;
}
.stat-item{
  padding:40px 32px;
  text-align:center;
  border-left:1px solid var(--border);
  transition:var(--transition);
}
.stat-item:first-child{border-left:none}
.stat-item:hover{background:rgba(176,120,72,.03)}
.stat-number{
  font-family:var(--font-serif);
  font-size:56px;
  font-weight:700;
  color:var(--primary);
  line-height:1.1;
  display:block;
  margin-bottom:8px;
}
.stat-label{
  font-size:14px;
  color:var(--text-soft);
  font-weight:500;
}
.stat-note{
  font-size:13px;
  color:var(--text-muted);
  margin-top:4px;
}

/* Updates */
.updates-section{
  background:var(--bg);
}
.updates-grid{
  display:grid;
  grid-template-columns:7fr 5fr;
  gap:24px;
  align-items:start;
}
.update-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:var(--transition);
  display:flex;
  flex-direction:column;
  margin-bottom:24px;
}
.update-card:hover{
  box-shadow:var(--shadow-lg);
  transform:translateY(-4px);
}
.update-card__media{
  position:relative;
  display:block;
  overflow:hidden;
  aspect-ratio:16/9;
  background:var(--border);
}
.update-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:var(--transition);
}
.update-card:hover .update-card__media img{transform:scale(1.03)}
.update-card__media .tag{
  position:absolute;
  left:14px;
  top:14px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(4px);
}
.update-card__body{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.update-card__body h3{
  font-size:20px;
  font-weight:600;
  line-height:1.45;
  margin-bottom:10px;
}
.update-card__body h3 a{
  transition:var(--transition);
}
.update-card__body h3 a:hover{color:var(--primary)}
.update-card__body p{
  font-size:14px;
  color:var(--text-soft);
  line-height:1.7;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin-bottom:16px;
}
.update-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  font-size:13px;
  color:var(--text-muted);
}
.read-more{
  color:var(--primary);
  font-weight:500;
  transition:var(--transition);
}
.read-more:hover{text-decoration:underline}
.update-card--small{
  flex-direction:row;
  align-items:center;
  margin-bottom:20px;
}
.update-card--small .update-card__media{
  width:140px;
  min-width:140px;
  aspect-ratio:16/10;
  height:auto;
}
.update-card--small .update-card__body{
  padding:16px 18px;
}
.update-card--small .update-card__body h3{
  font-size:16px;
  margin-bottom:6px;
}
.update-card--small .update-card__body p{
  -webkit-line-clamp:1;
  margin-bottom:10px;
}
.update-card--small .update-card__meta{
  font-size:12px;
}
.empty-state{
  min-height:200px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:var(--text-muted);
  border:1px dashed var(--border);
  border-radius:var(--radius);
  background:var(--card);
}
.empty-state svg{width:40px;height:40px;stroke:var(--text-muted)}

/* Process */
.process-section{
  background:var(--card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.process-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.process-intro h2{
  font-family:var(--font-serif);
  font-size:38px;
  font-weight:600;
  line-height:1.25;
  margin-bottom:20px;
}
.process-intro h2::before{
  content:attr(data-index);
  display:block;
  font-family:var(--font-sans);
  font-size:14px;
  color:var(--primary);
  letter-spacing:.1em;
  margin-bottom:10px;
}
.process-intro p{
  font-size:16px;
  color:var(--text-soft);
  line-height:1.8;
  margin-bottom:28px;
}
.step-list{
  position:relative;
  padding-left:8px;
}
.step-item{
  position:relative;
  padding:0 0 36px 44px;
}
.step-item:last-child{padding-bottom:0}
.step-item::before{
  content:'';
  position:absolute;
  left:14px;
  top:44px;
  bottom:-6px;
  width:1px;
  background:var(--border);
}
.step-item:last-child::before{display:none}
.step-number{
  position:absolute;
  left:0;
  top:0;
  width:30px;
  height:30px;
  border-radius:50%;
  background:rgba(176,120,72,.12);
  color:var(--primary);
  font-family:var(--font-serif);
  font-weight:600;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(176,120,72,.25);
}
.step-item h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:6px;
}
.step-item p{
  font-size:14px;
  color:var(--text-soft);
  line-height:1.7;
}

/* FAQ */
.faq-section{
  background:var(--bg);
}
.faq-list{
  max-width:860px;
  margin:0 auto;
}
.faq-item{
  border-bottom:1px solid var(--border);
  background:var(--card);
  border-radius:12px;
  margin-bottom:14px;
  overflow:hidden;
  border:1px solid var(--border);
}
.faq-item:first-child .faq-answer{max-height:400px}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:transparent;
  border:none;
  padding:20px 24px;
  font-size:17px;
  font-weight:500;
  color:var(--text);
  text-align:left;
  cursor:pointer;
  transition:var(--transition);
}
.faq-question:hover{color:var(--primary)}
.faq-icon{
  width:22px;
  height:22px;
  border-radius:50%;
  border:1px solid var(--primary);
  color:var(--primary);
  font-size:18px;
  line-height:20px;
  text-align:center;
  flex-shrink:0;
  transition:var(--transition);
}
.faq-item.open .faq-icon{
  transform:rotate(45deg);
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}
.faq-answer p{
  padding:0 24px 22px;
  font-size:15px;
  color:var(--text-soft);
  line-height:1.8;
}

/* CTA */
.cta-section{
  background:linear-gradient(100deg,rgba(38,36,31,.94) 0%,rgba(38,36,31,.82) 60%,rgba(38,36,31,.78) 100%),url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
  padding:96px 0;
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:'';
  position:absolute;
  width:280px;
  height:280px;
  border:1px solid rgba(198,161,91,.25);
  transform:rotate(45deg);
  top:-80px;
  right:60px;
  pointer-events:none;
}
.cta-panel{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  color:#fff;
  position:relative;
  z-index:1;
}
.cta-panel .eyebrow{color:var(--gold)}
.cta-panel h2{
  font-family:var(--font-serif);
  font-size:40px;
  font-weight:600;
  line-height:1.25;
  margin:16px 0 18px;
}
.cta-panel p{
  font-size:16px;
  color:rgba(255,255,255,.78);
  line-height:1.8;
  margin-bottom:32px;
}
.cta-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.cta-contact{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:32px;
  flex-wrap:wrap;
  font-size:14px;
  color:rgba(255,255,255,.66);
}
.cta-contact span{display:inline-flex;align-items:center;gap:8px}

/* Footer */
.site-footer{
  background:var(--dark);
  color:rgba(255,255,255,.75);
  padding:64px 0 0;
  font-size:14px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-text{
  color:#fff;
  font-size:22px;
}
.footer-brand .brand-mark{
  border-color:var(--gold);
}
.footer-brand .brand-mark::after{border-color:rgba(255,255,255,.4)}
.footer-brand p{
  margin-top:16px;
  line-height:1.8;
  color:rgba(255,255,255,.6);
  max-width:300px;
}
.footer-col h4{
  font-size:16px;
  font-weight:600;
  color:#fff;
  margin-bottom:16px;
}
.footer-col ul li{
  margin-bottom:10px;
  line-height:1.6;
}
.footer-col a{
  color:rgba(255,255,255,.68);
  transition:var(--transition);
}
.footer-col a:hover{
  color:var(--gold);
  padding-left:4px;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:24px 0 32px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.45);
  font-size:13px;
}
.footer-bottom a{color:rgba(255,255,255,.55)}
.footer-bottom a:hover{color:var(--gold)}

/* Reveal animation */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease,transform .6s ease;
}
.reveal.visible{
  opacity:1;
  transform:none;
}

/* Responsive */
@media (max-width:1079px){
  .hero-inner{
    grid-template-columns:1fr;
    gap:40px;
  }
  .hero-copy h1{font-size:44px}
  .updates-grid{
    grid-template-columns:1fr;
  }
  .process-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .stat-item{padding:32px 20px}
  .stat-number{font-size:46px}
}
@media (max-width:767px){
  .container{padding:0 16px}
  .section{padding:56px 0}
  .section-head h2{font-size:28px;padding-left:14px}
  .header-top{
    flex-wrap:wrap;
    gap:12px;
  }
  .brand-text{font-size:20px}
  .search-box{
    order:3;
    width:100%;
    max-width:none;
    height:46px;
  }
  .header-actions .btn-outline,.header-actions .btn-primary{display:none}
  .menu-toggle{display:inline-flex}
  .header-bottom{display:none}
  .hero{padding:56px 0 40px}
  .hero-copy h1{font-size:32px}
  .hero-copy p{font-size:15px}
  .hero-actions .btn{width:100%}
  .login-card{padding:20px}
  .stats-grid{grid-template-columns:1fr 1fr}
  .stat-item{border-left:none;border-bottom:1px solid var(--border);padding:28px 16px}
  .stat-item:nth-child(odd){border-right:1px solid var(--border)}
  .stat-item:nth-child(n+3){border-bottom:none}
  .stat-number{font-size:40px}
  .service-item{
    flex-direction:column;
    gap:12px;
    padding:20px 8px;
  }
  .service-item:hover{padding-left:8px}
  .service-number{min-width:0}
  .update-card--small{
    flex-direction:column;
    align-items:stretch;
  }
  .update-card--small .update-card__media{
    width:100%;
    aspect-ratio:16/10;
  }
  .process-intro h2{font-size:28px}
  .cta-section{padding:64px 0}
  .cta-panel h2{font-size:32px}
  .cta-actions .btn{width:100%}
  .cta-contact{
    flex-direction:column;
    gap:12px;
  }
  .footer-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .faq-question{font-size:16px;padding:18px 16px}
  .faq-answer p{padding:0 16px 18px}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    transition-duration:.01ms!important;
  }
  html{scroll-behavior:auto}
  .reveal{
    opacity:1;
    transform:none;
  }
}

/* roulang page: article */
:root {
  --primary: #B07848;
  --primary-dark: #8F5F3B;
  --primary-soft: rgba(176, 120, 72, .12);
  --bg: #FAF8F4;
  --card: #FFFFFF;
  --dark: #26241F;
  --olive: #66744A;
  --gold: #C6A15B;
  --text: #3A3833;
  --text-body: #6E6A63;
  --text-muted: #9A958C;
  --border: #E9E2D8;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --radius-full: 999px;
  --shadow-sm: 0 4px 16px rgba(38, 36, 31, .06);
  --shadow-hover: 0 12px 32px rgba(38, 36, 31, .12);
  --container: 1200px;
  --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  --font-serif: 'Noto Serif SC', 'Source Han Serif SC', serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.8; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input { font-family: inherit; font-size: inherit; border: none; background: none; }
input:focus, button:focus, a:focus { outline: 2px solid rgba(176, 120, 72, .4); outline-offset: 2px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 248, 244, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow .3s ease; }
.site-header.scrolled { box-shadow: 0 8px 32px rgba(38, 36, 31, .08); }
.header-top { display: flex; align-items: center; gap: 24px; padding: 14px 0 10px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--gold)); position: relative; display: inline-flex; align-items: center; justify-content: center; transform: rotate(45deg); }
.brand-mark::after { content: ''; width: 12px; height: 12px; border: 2px solid #fff; border-radius: 2px; transform: rotate(-45deg); }
.brand-text { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: 1px; }
.brand-text em { font-style: normal; color: var(--primary); }
.header-search { flex: 1; max-width: 620px; margin: 0 auto; }
.search-form { display: flex; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-full); height: 46px; padding: 0 18px; transition: border-color .3s, box-shadow .3s; }
.search-form:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(176, 120, 72, .2); }
.search-icon { color: var(--text-muted); margin-right: 10px; display: inline-flex; flex-shrink: 0; }
.search-form input { flex: 1; border: none; background: transparent; color: var(--text); font-size: 14px; line-height: 44px; height: 44px; outline: none; }
.search-form input::placeholder { color: var(--text-muted); }
.header-login { flex-shrink: 0; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--primary); color: #fff; font-size: 15px; font-weight: 600; padding: 12px 28px; border-radius: var(--radius-md); transition: all .3s cubic-bezier(.4,0,.2,1); cursor: pointer; border: 2px solid transparent; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(176, 120, 72, .25); }
.btn-primary:focus { outline: 2px solid rgba(176, 120, 72, .4); outline-offset: 2px; border-color: #fff; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: var(--text); font-size: 15px; font-weight: 500; padding: 12px 26px; border-radius: var(--radius-md); border: 1px solid var(--border); transition: all .3s ease; cursor: pointer; }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.header-bottom { border-top: 1px solid var(--border); padding: 6px 0; }
.header-bottom-inner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav-link { display: inline-block; padding: 8px 18px; font-size: 14px; font-weight: 500; color: var(--text-body); border-radius: var(--radius-full); transition: all .3s ease; position: relative; }
.nav-link:hover { color: var(--primary); background: var(--primary-soft); }
.nav-link.active { color: var(--primary); font-weight: 600; background: var(--primary-soft); }
.nav-link.active::after { content: ''; position: absolute; left: 18px; right: 18px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--primary); }
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; color: var(--text); cursor: pointer; transition: background .3s; margin-left: auto; }
.menu-toggle:hover { background: var(--primary-soft); }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); padding: 24px 0 8px; }
.breadcrumb a { color: var(--text-muted); transition: color .3s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .current { color: var(--text-body); font-weight: 500; }
.breadcrumb .sep { color: var(--border); }

/* Article Main */
.article-main { padding: 8px 0 96px; }
.article-detail { padding-top: 24px; }
.article-header { margin-bottom: 32px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 16px; }
.article-category-tag { display: inline-block; background: var(--primary-soft); color: var(--primary-dark); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: var(--radius-sm); letter-spacing: .5px; }
.article-date { font-size: 13px; color: var(--text-muted); }
.article-author { font-size: 13px; color: var(--text-muted); }
.article-author::before { content: '·'; margin-right: 6px; color: var(--border); }
.article-header h1 { font-family: var(--font-serif); font-size: 42px; line-height: 1.2; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: 1px; }
.article-desc { font-size: 16px; line-height: 1.8; color: var(--text-body); max-width: 760px; }
.article-featured-image { margin: 32px 0 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.article-featured-image img { width: 100%; aspect-ratio: 16/8; object-fit: cover; transition: transform .5s ease; }
.article-featured-image:hover img { transform: scale(1.02); }

/* Article Content */
.article-content { max-width: 760px; }
.article-content h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--text); margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); line-height: 1.3; }
.article-content h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text); margin: 36px 0 14px; line-height: 1.4; }
.article-content h4 { font-size: 18px; font-weight: 600; color: var(--text); margin: 28px 0 12px; }
.article-content p { font-size: 16px; line-height: 2; color: var(--text-body); margin-bottom: 24px; }
.article-content img { border-radius: var(--radius-md); margin: 24px 0; box-shadow: var(--shadow-sm); }
.article-content blockquote { border-left: 4px solid var(--primary); background: var(--primary-soft); padding: 18px 24px; margin: 28px 0; border-radius: 0 var(--radius-md) var(--radius-md) 0; font-size: 15px; line-height: 1.8; color: var(--text-body); }
.article-content ul { list-style: disc; padding-left: 24px; margin: 16px 0 24px; }
.article-content ol { list-style: decimal; padding-left: 24px; margin: 16px 0 24px; }
.article-content li { font-size: 16px; line-height: 1.9; color: var(--text-body); margin-bottom: 8px; }
.article-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; transition: color .3s; }
.article-content a:hover { color: var(--primary-dark); }
.article-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.article-content th { background: var(--primary-soft); color: var(--text); font-weight: 600; padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--primary); }
.article-content td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-body); }

/* Article Footer */
.article-footer { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border); display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Not Found */
.article-not-found { text-align: center; padding: 80px 24px; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin-top: 24px; }
.article-not-found p { font-family: var(--font-serif); font-size: 24px; color: var(--text); margin-bottom: 24px; }

/* Related */
.related-posts { margin-top: 72px; }
.related-posts h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 32px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); display: inline-block; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s cubic-bezier(.4,0,.2,1); border: 1px solid var(--border); display: block; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.related-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.related-card-body { padding: 18px 20px 20px; }
.related-category { display: inline-block; font-size: 11px; font-weight: 600; color: var(--primary-dark); background: var(--primary-soft); padding: 3px 10px; border-radius: var(--radius-sm); margin-bottom: 10px; letter-spacing: .5px; }
.related-card h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--text); line-height: 1.5; margin-bottom: 8px; transition: color .3s; }
.related-card:hover h3 { color: var(--primary); }
.related-date { font-size: 12px; color: var(--text-muted); }

/* CTA */
.cta-banner { margin-top: 72px; background: var(--dark); border-radius: var(--radius-lg); padding: 48px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; border: 2px solid rgba(176, 120, 72, .3); transform: rotate(45deg); border-radius: 20px; }
.cta-banner::after { content: ''; position: absolute; bottom: -40px; left: 40px; width: 80px; height: 80px; border: 2px solid rgba(198, 161, 91, .2); transform: rotate(45deg); border-radius: 12px; }
.cta-content { position: relative; z-index: 1; flex: 1; }
.cta-content h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-content p { font-size: 15px; color: rgba(255, 255, 255, .75); line-height: 1.7; }
.cta-banner .btn-primary { flex-shrink: 0; position: relative; z-index: 1; }

/* Footer */
.site-footer { background: var(--dark); color: rgba(255, 255, 255, .7); padding: 64px 0 0; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-mark { background: linear-gradient(135deg, var(--primary), var(--gold)); }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, .6); margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 20px; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14px; color: rgba(255, 255, 255, .6); transition: color .3s; position: relative; padding-left: 12px; }
.footer-col ul a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; background: var(--primary); border-radius: 50%; transition: background .3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul li { font-size: 14px; color: rgba(255, 255, 255, .6); padding-left: 12px; position: relative; }
.footer-col ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; background: var(--primary); border-radius: 50%; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255, 255, 255, .5); }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1080px) {
  .header-top { gap: 16px; }
  .header-search { max-width: 420px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header-top { flex-wrap: wrap; gap: 12px; padding: 12px 0 8px; }
  .header-search { order: 3; max-width: 100%; flex-basis: 100%; }
  .header-login { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-bottom { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-top: 1px solid var(--border); box-shadow: var(--shadow-hover); }
  .header-bottom.open { display: block; }
  .header-bottom-inner { flex-direction: column; align-items: stretch; padding: 8px 16px; gap: 4px; }
  .nav-link { border-radius: var(--radius-md); padding: 12px 16px; }
  .nav-link.active::after { display: none; }
  .article-header h1 { font-size: 30px; }
  .article-content h2 { font-size: 24px; }
  .article-content h3 { font-size: 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .article-main { padding-bottom: 64px; }
  .site-footer { margin-top: 64px; }
}
@media (max-width: 520px) {
  .brand-text { font-size: 18px; }
  .brand-mark { width: 30px; height: 30px; }
  .search-form { height: 42px; }
  .search-form input { font-size: 13px; }
  .article-header h1 { font-size: 26px; }
  .article-desc { font-size: 15px; }
  .article-content p { font-size: 15px; line-height: 1.9; }
  .footer-grid { grid-template-columns: 1fr; }
  .related-posts h2 { font-size: 22px; }
  .cta-content h2 { font-size: 22px; }
}

/* roulang page: category1 */
:root{
  --color-primary:#B07848;
  --color-primary-dark:#8F5F3B;
  --color-bg:#FAF8F4;
  --color-card:#FFFFFF;
  --color-dark:#26241F;
  --color-olive:#66744A;
  --color-gold:#C6A15B;
  --color-heading:#3A3833;
  --color-text:#6E6A63;
  --color-muted:#9A958C;
  --color-border:#E9E2D8;
  --color-error:#B33A2E;
  --radius-card:14px;
  --radius-btn:10px;
  --radius-input:12px;
  --radius-search:999px;
  --shadow-sm:0 4px 16px rgba(38,36,31,.06);
  --shadow-lg:0 12px 32px rgba(38,36,31,.12);
  --font-serif:'Noto Serif SC','Source Han Serif SC','Songti SC',serif;
  --font-sans:'PingFang SC','Microsoft YaHei','Noto Sans SC',sans-serif;
  --ease:cubic-bezier(.4,0,.2,1);
  --header-h:148px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.8;
  background:var(--color-bg);
  color:var(--color-text);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button,input{font-family:inherit;font-size:inherit;border:none;background:none;outline:none}
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.section{padding:96px 0}
.section-head{margin-bottom:48px;max-width:720px}
.section-tag{
  display:inline-block;
  font-size:13px;
  font-weight:500;
  letter-spacing:.04em;
  color:var(--color-primary);
  background:rgba(176,120,72,.12);
  padding:4px 14px;
  border-radius:6px;
  margin-bottom:16px;
}
.section-head h2,.section-head .h2{
  font-family:var(--font-serif);
  font-size:38px;
  line-height:1.2;
  color:var(--color-heading);
  font-weight:600;
  margin-bottom:16px;
  letter-spacing:.01em;
}
.section-head p{font-size:16px;line-height:1.8;color:var(--color-text)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:var(--radius-btn);
  font-size:15px;
  font-weight:500;
  line-height:1;
  cursor:pointer;
  transition:all .3s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--color-primary);
  color:#fff;
}
.btn-primary:hover{
  background:var(--color-primary-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}
.btn-primary:active{transform:translateY(0)}
.btn-primary:focus-visible{
  outline:2px solid rgba(176,120,72,.4);
  outline-offset:2px;
}
.btn-secondary{
  background:transparent;
  color:var(--color-heading);
  border:1px solid var(--color-border);
}
.btn-secondary:hover{
  border-color:var(--color-primary);
  color:var(--color-primary);
  transform:translateY(-2px);
}
.btn-secondary:focus-visible{
  outline:2px solid rgba(176,120,72,.4);
  outline-offset:2px;
}
.btn-dark{
  background:#fff;
  color:var(--color-dark);
}
.btn-dark:hover{
  background:var(--color-bg);
  transform:translateY(-2px);
}
/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(250,248,244,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--color-border);
  transition:box-shadow .3s var(--ease);
}
.site-header.scrolled{
  box-shadow:var(--shadow-sm);
}
.header-top{
  display:flex;
  align-items:center;
  gap:24px;
  padding:16px 24px;
  min-height:70px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.brand-mark{
  width:34px;
  height:34px;
  border:1.5px solid var(--color-primary);
  transform:rotate(45deg);
  border-radius:4px;
  display:inline-block;
  position:relative;
  flex-shrink:0;
}
.brand-mark::after{
  content:'';
  position:absolute;
  inset:6px;
  background:var(--color-primary);
  border-radius:2px;
}
.brand-text{
  font-family:var(--font-serif);
  font-size:24px;
  font-weight:600;
  color:var(--color-heading);
  letter-spacing:.03em;
}
.header-search{
  flex:1;
  max-width:620px;
  margin:0 auto;
  position:relative;
}
.header-search svg{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  stroke:var(--color-muted);
  pointer-events:none;
}
.header-search input{
  width:100%;
  height:48px;
  border-radius:var(--radius-search);
  border:1px solid var(--color-border);
  background:#fff;
  padding:0 20px 0 48px;
  font-size:14px;
  color:var(--color-heading);
  transition:border-color .3s var(--ease),box-shadow .3s var(--ease);
}
.header-search input::placeholder{color:var(--color-muted)}
.header-search input:focus{
  border-color:var(--color-primary);
  box-shadow:0 0 0 3px rgba(176,120,72,.2);
}
.header-login{
  flex-shrink:0;
}
.header-burger{
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-btn);
  background:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:border-color .3s var(--ease);
}
.header-burger:hover{border-color:var(--color-primary)}
.header-burger svg{width:20px;height:20px;stroke:var(--color-heading)}
.header-bottom{
  display:flex;
  align-items:center;
  gap:32px;
  padding:0 24px 12px;
  max-width:1200px;
  margin:0 auto;
}
.nav-link{
  position:relative;
  font-size:15px;
  font-weight:500;
  color:var(--color-text);
  padding:6px 2px;
  transition:color .3s var(--ease);
}
.nav-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:var(--color-primary);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s var(--ease);
}
.nav-link:hover{color:var(--color-primary)}
.nav-link.active{color:var(--color-primary)}
.nav-link.active::after{transform:scaleX(1)}
/* Hero */
.page-hero{
  position:relative;
  padding:88px 0 96px;
  background-color:var(--color-bg);
  overflow:hidden;
}
.page-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:url('/assets/images/backpic/back-1.png');
  background-size:cover;
  background-position:center;
  opacity:.5;
}
.page-hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(250,248,244,.96) 0%,rgba(250,248,244,.92) 45%,rgba(250,248,244,.72) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:720px;
}
.hero-overline{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:500;
  letter-spacing:.06em;
  color:var(--color-primary);
  margin-bottom:20px;
  text-transform:uppercase;
}
.hero-overline::before{
  content:'';
  width:28px;
  height:1px;
  background:var(--color-primary);
}
.page-hero h1{
  font-family:var(--font-serif);
  font-size:52px;
  line-height:1.15;
  color:var(--color-heading);
  font-weight:600;
  letter-spacing:.01em;
  margin-bottom:20px;
}
.hero-desc{
  font-size:17px;
  line-height:1.8;
  color:var(--color-text);
  max-width:560px;
  margin-bottom:36px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
/* Services */
.services{
  background:var(--color-bg);
}
.service-list{
  display:flex;
  flex-direction:column;
}
.service-row{
  display:flex;
  align-items:center;
  gap:28px;
  padding:28px 24px;
  border-bottom:1px solid var(--color-border);
  border-radius:var(--radius-card);
  transition:background .3s var(--ease),transform .3s var(--ease);
}
.service-row:first-child{border-top:1px solid var(--color-border)}
.service-row:hover{
  background:rgba(176,120,72,.06);
  transform:translateY(-2px);
}
.service-no{
  font-family:Didot,Georgia,var(--font-serif);
  font-size:42px;
  line-height:1;
  color:var(--color-gold);
  font-weight:600;
  min-width:56px;
  flex-shrink:0;
}
.service-body h3{
  font-size:20px;
  font-weight:600;
  color:var(--color-heading);
  margin-bottom:6px;
  font-family:var(--font-serif);
}
.service-body p{
  font-size:15px;
  line-height:1.7;
  color:var(--color-text);
  max-width:640px;
}
.service-arrow{
  margin-left:auto;
  color:var(--color-primary);
  font-size:24px;
  flex-shrink:0;
  transition:transform .3s var(--ease);
}
.service-row:hover .service-arrow{transform:translateX(6px)}
/* Stats */
.stats-section{
  background:var(--color-card);
  border-top:1px solid var(--color-border);
  border-bottom:1px solid var(--color-border);
  padding:64px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat-item{
  text-align:center;
  padding:16px 24px;
  border-left:1px solid var(--color-border);
}
.stat-item:first-child{border-left:none}
.stat-num{
  font-family:Didot,Georgia,var(--font-serif);
  font-size:54px;
  line-height:1.1;
  font-weight:600;
  color:var(--color-primary);
  display:block;
  margin-bottom:8px;
}
.stat-label{
  font-size:14px;
  color:var(--color-text);
  letter-spacing:.02em;
}
/* Process */
.process{
  background:var(--color-bg);
}
.process-grid{
  display:grid;
  grid-template-columns:5fr 7fr;
  gap:72px;
  align-items:start;
}
.process-intro .btn{margin-top:24px}
.process-steps{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:0;
}
.step-item{
  position:relative;
  display:flex;
  gap:24px;
  padding:0 0 36px;
}
.step-item:last-child{padding-bottom:0}
.step-item::before{
  content:'';
  position:absolute;
  left:25px;
  top:52px;
  bottom:0;
  width:1px;
  background:var(--color-border);
}
.step-item:last-child::before{display:none}
.step-num{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--color-border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Didot,Georgia,var(--font-serif);
  font-size:20px;
  font-weight:600;
  color:var(--color-primary);
  flex-shrink:0;
  position:relative;
  z-index:1;
  box-shadow:var(--shadow-sm);
}
.step-item h3{
  font-family:var(--font-serif);
  font-size:20px;
  font-weight:600;
  color:var(--color-heading);
  margin-bottom:4px;
}
.step-item p{
  font-size:15px;
  line-height:1.7;
  color:var(--color-text);
  max-width:420px;
}
/* Highlights */
.highlights{
  background:var(--color-card);
  border-top:1px solid var(--color-border);
  border-bottom:1px solid var(--color-border);
}
.content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.content-card{
  display:flex;
  background:#fff;
  border:1px solid var(--color-border);
  border-radius:var(--radius-card);
  overflow:hidden;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
}
.content-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.content-card img{
  width:220px;
  object-fit:cover;
  flex-shrink:0;
}
.content-body{
  padding:24px 24px 20px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.content-tag{
  display:inline-block;
  font-size:12px;
  font-weight:500;
  color:var(--color-primary);
  background:rgba(176,120,72,.12);
  padding:2px 10px;
  border-radius:6px;
  margin-bottom:12px;
}
.content-body h3{
  font-family:var(--font-serif);
  font-size:18px;
  line-height:1.45;
  color:var(--color-heading);
  font-weight:600;
  margin-bottom:8px;
}
.content-body p{
  font-size:14px;
  line-height:1.7;
  color:var(--color-text);
  margin-bottom:14px;
  flex:1;
}
.content-meta{
  font-size:12px;
  color:var(--color-muted);
  letter-spacing:.02em;
}
.content-more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  color:var(--color-primary);
  margin-top:4px;
  font-weight:500;
}
.content-more:hover{color:var(--color-primary-dark)}
.content-more::after{
  content:'→';
  transition:transform .3s var(--ease);
}
.content-more:hover::after{transform:translateX(4px)}
/* FAQ */
.faq{
  background:var(--color-bg);
}
.faq-list{
  max-width:860px;
}
.faq-item{
  border-bottom:1px solid var(--color-border);
}
.faq-item:first-child{
  border-top:1px solid var(--color-border);
}
.faq-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 4px;
  font-size:17px;
  font-weight:500;
  color:var(--color-heading);
  cursor:pointer;
  text-align:left;
  transition:color .3s var(--ease);
}
.faq-toggle:hover{color:var(--color-primary)}
.faq-icon{
  position:relative;
  width:16px;
  height:16px;
  flex-shrink:0;
}
.faq-icon::before,.faq-icon::after{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:12px;
  height:2px;
  background:var(--color-primary);
  transform:translate(-50%,-50%);
  transition:transform .3s var(--ease);
}
.faq-icon::after{
  transform:translate(-50%,-50%) rotate(90deg);
}
.faq-item.active .faq-icon::after{
  transform:translate(-50%,-50%) rotate(0deg);
}
.faq-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s var(--ease),padding .4s var(--ease);
}
.faq-item.active .faq-content{
  max-height:400px;
  padding-bottom:24px;
}
.faq-content p{
  font-size:15px;
  line-height:1.8;
  color:var(--color-text);
  padding:0 4px;
}
/* CTA */
.cta-section{
  background:var(--color-dark);
  position:relative;
  overflow:hidden;
  padding:96px 0;
}
.cta-section::before{
  content:'';
  position:absolute;
  top:-80px;
  right:-80px;
  width:220px;
  height:220px;
  border:1px solid rgba(198,161,91,.3);
  transform:rotate(45deg);
  border-radius:12px;
}
.cta-section::after{
  content:'';
  position:absolute;
  bottom:-40px;
  left:-40px;
  width:120px;
  height:120px;
  border:1px solid rgba(176,120,72,.35);
  transform:rotate(45deg);
  border-radius:8px;
}
.cta-inner{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:640px;
  margin:0 auto;
  padding:0 24px;
}
.cta-inner .section-tag{
  background:rgba(255,255,255,.1);
  color:var(--color-gold);
}
.cta-inner h2{
  font-family:var(--font-serif);
  font-size:38px;
  line-height:1.25;
  color:#fff;
  font-weight:600;
  margin-bottom:16px;
}
.cta-inner p{
  font-size:16px;
  line-height:1.8;
  color:rgba(255,255,255,.72);
  margin-bottom:32px;
}
.cta-contact{
  display:flex;
  justify-content:center;
  gap:32px;
  flex-wrap:wrap;
  margin-top:36px;
  font-size:14px;
  color:rgba(255,255,255,.6);
}
.cta-contact span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.cta-contact span::before{
  content:'';
  width:4px;
  height:4px;
  background:var(--color-gold);
  border-radius:50%;
  flex-shrink:0;
}
/* Footer */
.site-footer{
  background:var(--color-dark);
  color:rgba(255,255,255,.7);
  padding:80px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:4fr 2fr 2fr 3fr;
  gap:48px;
  padding-bottom:56px;
}
.footer-brand .brand-text{
  color:#fff;
}
.footer-brand .brand-mark{
  border-color:var(--color-gold);
}
.footer-brand .brand-mark::after{
  background:var(--color-gold);
}
.footer-brand p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.6);
  margin-top:20px;
  max-width:300px;
}
.footer-col h4{
  font-family:var(--font-serif);
  font-size:16px;
  color:#fff;
  font-weight:600;
  margin-bottom:20px;
}
.footer-col ul li{
  margin-bottom:12px;
  font-size:14px;
}
.footer-col a{
  color:rgba(255,255,255,.65);
  transition:color .3s var(--ease);
}
.footer-col a:hover{
  color:var(--color-gold);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:24px 0;
  font-size:13px;
  color:rgba(255,255,255,.45);
}
/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s var(--ease),transform .6s var(--ease);
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  *{scroll-behavior:auto!important}
  .btn,.content-card,.service-row{transition:none}
}
/* Responsive */
@media (max-width:1079px){
  .content-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  .content-card img{
    width:260px;
  }
  .process-grid{
    grid-template-columns:1fr;
    gap:48px;
  }
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:24px 0;
  }
  .stat-item:nth-child(3){
    border-left:none;
  }
}
@media (max-width:767px){
  .section{
    padding:64px 0;
  }
  .container{
    padding:0 16px;
  }
  .section-head h2,.cta-inner h2{
    font-size:30px;
  }
  .page-hero{
    padding:64px 0 72px;
  }
  .page-hero h1{
    font-size:36px;
  }
  .hero-desc{
    font-size:15px;
  }
  .hero-actions .btn{
    width:100%;
  }
  /* Header mobile */
  .header-top{
    flex-wrap:wrap;
    padding:12px 16px;
    gap:12px;
  }
  .header-search{
    order:3;
    max-width:100%;
    width:100%;
  }
  .header-login{
    display:none;
  }
  .header-burger{
    display:inline-flex;
    margin-left:auto;
  }
  .header-bottom{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:rgba(250,248,244,.98);
    border-bottom:1px solid var(--color-border);
    padding:12px 16px;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }
  .header-bottom.open{
    display:flex;
  }
  .nav-link{
    display:block;
    width:100%;
    padding:12px 8px;
    border-radius:8px;
  }
  .nav-link.active{
    background:rgba(176,120,72,.1);
  }
  .nav-link::after{
    display:none;
  }
  /* Services */
  .service-row{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:24px 16px;
  }
  .service-arrow{
    display:none;
  }
  /* Stats */
  .stats-grid{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .stat-item{
    border-left:none;
    padding:8px;
  }
  .stat-num{
    font-size:44px;
  }
  /* Process */
  .step-item{
    gap:16px;
    padding-bottom:28px;
  }
  .step-num{
    width:44px;
    height:44px;
    font-size:17px;
  }
  .step-item::before{
    left:21px;
    top:46px;
  }
  /* Content cards */
  .content-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
  .content-card{
    flex-direction:column;
  }
  .content-card img{
    width:100%;
    height:180px;
    object-fit:cover;
  }
  .content-body{
    padding:20px;
  }
  /* CTA */
  .cta-section{
    padding:72px 0;
  }
  .cta-contact{
    flex-direction:column;
    gap:12px;
    text-align:left;
  }
  /* Footer */
  .footer-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}
