:root{
  --gold:#b49a63;
  --gold-light:#d8c8a5;
  --dark:#252a2d;
  --cream:#f6f1e7;
  --text:#222;
  --muted:#777;
  --line:#e7e2d8;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:#f3f3f3;
  color:var(--text);
  font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.page{
  width:100%;
  max-width:750px;
  margin:0 auto;
  background:#fff;
  overflow:hidden;
}
img{max-width: 100%;}
.py-0{padding-top: 0 !important;padding-bottom: 0 !important;}
/* Header */
.header{
  background:#b9a982;
  color:#fff;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:10px 18px;
  position:relative;
  z-index:10;
}
.header-left{
  display:flex;
  justify-content:flex-start;
  align-items:center;
}
.header-right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}
.icon-btn{
  background:none;border:0;color:#fff;
  font-size:20px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  padding:4px;
}
.logo{
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:1;
  text-align:center;
}
.logo img{height: 80px;display: block;}

/* Drawer Menu */
.drawer-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.5);
  opacity:0;visibility:hidden;
  transition:opacity .3s ease,visibility .3s ease;
  z-index:100;
}
.drawer-overlay.active{opacity:1;visibility:visible}
.drawer{
  position:fixed;top:0;right:0;bottom:0;
  width:75%;max-width:320px;
  background:#fff;color:#333;
  transform:translateX(100%);
  transition:transform .3s ease;
  z-index:101;overflow-y:auto;
  display:flex;flex-direction:column;
}
.drawer.active{transform:translateX(0)}
.drawer-header{
  padding:18px 20px;
  background:#b9a982;color:#fff;
  display:flex;align-items:center;justify-content:space-between;
}
.drawer-header strong{font-size:15px;letter-spacing:2px}
.drawer-close{
  background:none;border:0;color:#fff;font-size:22px;
  line-height:1;cursor:pointer;padding:0 4px;
}
.drawer-nav{padding:8px 0;flex:1}
.drawer-nav a{
  display:block;padding:14px 20px;
  font-size:13px;color:#333;
  border-bottom:1px solid #f0ebe0;
}
.drawer-nav a:active{background:#faf6ec}

/* Carousel */
.carousel{
  position:relative;
  height:min(112vw,1130px); /* 回退高度：JS 加载海报前 / 无 JS 时使用 */
  min-height:420px;         /* JS 按海报比例自适应时会覆盖 */
  overflow:hidden;
  background:#000;
  color:#fff;
  transition:height .5s ease;
}
.carousel-track{
  position:absolute;top:0;left:0;
  display:flex;
  width:100%;
  height:100%;
  will-change:transform;
  transition:transform .5s cubic-bezier(.25,.1,.25,1);
}
/* 每张 slide 占 track 的 100%（即容器宽），数量任意时均正常轮播 */
.slide{
  position:relative;
  flex:0 0 100%;
  height:100%;
  overflow:hidden;
}
.slide-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
}
.slide:after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.15) 100%);
}
.carousel-dots{
  position:absolute;z-index:5;
  bottom:22px;left:50%;transform:translateX(-50%);
  display:flex;gap:6px;align-items:center;
}
.dot{
  width:6px;height:6px;border-radius:50%;
  background:rgba(255,255,255,.4);
  border:0;padding:0;cursor:pointer;
  transition:all .3s;
}
.dot.active{
  width:22px;border-radius:3px;
  background:#b49a63;
}
.carousel-arrow{
  position:absolute;z-index:5;top:50%;
  transform:translateY(-50%);
  width:32px;height:32px;border-radius:50%;
  background:rgba(0,0,0,.3);color:#fff;
  border:1px solid rgba(255,255,255,.3);
  font-size:14px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.carousel-arrow.prev{left:10px}
.carousel-arrow.next{right:10px}
.progress-bar{
  position:absolute;z-index:5;
  bottom:0;left:0;height:2px;
  background:#b49a63;width:0;
}
.progress-bar.run{animation:progress 5s linear forwards}
@keyframes progress{from{width:0}to{width:100%}}

/* Common */
.section{padding:28px 14px}
.section-title{
  display:flex;align-items:end;justify-content:space-between;
  margin-bottom:16px;
}
.section-title h2{font-size:18px;font-weight:600}
.section-title small{font-size:11px;color:#999}
.gold-line{height:3px;background:var(--gold);width:100%;margin:0 0 18px}
.more-btn{
  display:block;width:100%;height:34px;
  border:0;background:var(--gold);color:#fff;font-size:11px;
  text-align:center;line-height:34px;
}

/* Iconbox Swiper */
.iconbox-section{
  background:#f9f9f9;
  padding:18px 0;
}
.iconbox-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar:none;
}
.iconbox-wrap::-webkit-scrollbar{display:none}
.iconbox-track{
  display:flex;
  gap:12px;
  padding:0 14px;
  width:max-content;
}
.iconbox{
  flex:0 0 calc((100vw - 28px - 36px) / 4);
  background:#fff;
  border-radius:10px;
  padding:16px 6px;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
  text-decoration:none;color:inherit;
  transition:transform .2s ease,box-shadow .2s ease;
}
.iconbox:active{
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(180,154,99,.18);
}
.iconbox .ico{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,#f3e9d4,#e5d4ad);
  color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;margin-bottom:10px;
}
.iconbox b{
  font-size:11px;font-weight:500;color:#333;
  text-align:center;line-height:1.3;
}

/* CTA cards */
.cta-card{
  margin-bottom:10px;
}

.cta-card img{max-width: 100%;}

/* Designer */
/* Designer Studio Cards */
.studio-grid{
  display:flex;flex-direction:column;gap:14px;
}
.studio-card{
  display:grid;grid-template-columns:42% 58%;
  background:#fff;border-radius:8px;overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.studio-photo{
  position:relative;
  background-size:cover;background-position:center;
  min-height:170px;
}
.studio-photo .btn-design{
  position:absolute;left:50%;bottom:12px;
  transform:translateX(-50%);
  padding:7px 14px;font-size:11px;letter-spacing:1px;
  background:rgba(180,154,99,.95);color:#fff;
  border:0;cursor:pointer;
  white-space:nowrap;
}
.studio-info{padding:14px 12px;display:flex;flex-direction:column}
.studio-info h3{font-size:15px;font-weight:600;color:#333;margin-bottom:6px}
.studio-info .meta{
  font-size:10px;color:#999;line-height:1.6;margin-bottom:10px;
}
.studio-cases{display:grid;grid-template-columns:1fr;gap:6px;margin-top:auto}
.studio-cases .c-photo{
  height:62px;border-radius:4px;
  background-size:cover;background-position:center;
}
.studio-more{
  display:block;margin:16px auto 0;
  padding:8px 22px;font-size:11px;
  background:var(--gold);color:#FFF;
  border:1px solid var(--gold);
  border-radius:16px;cursor:pointer;text-align: center;
}

/* Designer popup */
.studio-mask{
  position:fixed;inset:0;background:rgba(0,0,0,.55);
  z-index:200;display:none;
  align-items:center;justify-content:center;
  padding:20px;
}
.studio-mask.active{display:flex}
.studio-modal{
  width:100%;max-width:380px;max-height:88vh;
  background:#fff;border-radius:10px;overflow:hidden;
  display:flex;flex-direction:column;
  animation:modalIn .25s ease;
}
@keyframes modalIn{
  from{transform:scale(.92);opacity:0}
  to{transform:scale(1);opacity:1}
}
.studio-modal-head{
  padding:14px 16px;background:#b9a982;color:#fff;
  display:flex;justify-content:space-between;align-items:center;
}
.studio-modal-head strong{font-size:13px;letter-spacing:1px}
.studio-modal-close{
  background:none;border:0;color:#fff;font-size:20px;
  line-height:1;cursor:pointer;padding:0 2px;
}
.studio-modal-body{padding:16px;overflow-y:auto;flex:1}
.studio-modal .designer-row{
  display:grid;grid-template-columns:90px 1fr;gap:12px;margin-bottom:18px;
}
.studio-modal .d-photo{
  height:108px;border-radius:6px;
  background-size:cover;background-position:center;
}
.studio-modal .d-info h4{font-size:14px;font-weight:600;margin-bottom:6px}
.studio-modal .d-info p{font-size:10px;color:#666;line-height:1.7}
.studio-modal .d-info p b{color:#333;font-weight:500}
.studio-modal form{display:flex;flex-direction:column;gap:8px}
.studio-modal form input{
  width:100%;height:38px;border:1px solid #ddd;
  padding:0 10px;font-size:11px;outline:none;border-radius:4px;
}
.studio-modal form button{
  height:38px;border:0;background:var(--gold);color:#fff;
  font-size:12px;cursor:pointer;border-radius:4px;
}

/* Cases */
.case-grid{display:grid;grid-template-columns:1fr 1fr;gap:5px}
.case-card{background:#fff;border:1px solid #eee}
.case-photo{
  position:relative;height:132px;overflow:hidden;
}
.case-photo img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.case-badge{
  position:absolute;top:0;left:10px;
  padding:8px;
  background:rgba(180,154,99,.92);color:#fff;
  font-size:12px;line-height:1.4;
  border-radius:0 0 12px 12px;
}
.case-badge span span{display: block;}
.case-badge .lbl{display:block}
.case-info{padding:8px}
.case-info b{font-weight:500}
.case-info span{display:block;font-size:12px;color:#999;margin-top:4px}

/* Family Album */
.album-display{margin-bottom:14px;overflow:hidden}
.album-big{
  position:relative;height:200px;overflow:hidden;border-radius:6px;
}
.album-big img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.album-text{padding:14px 2px 0}
.album-text h3{font-size:16px;font-weight:600;margin-bottom:8px}
.album-text p{font-size:11px;color:#666;line-height:1.7}
.album-slide{
  animation:albumSlideIn .45s cubic-bezier(.25,.1,.25,1);
}
@keyframes albumSlideIn{
  from{transform:translateX(100%);opacity:0}
  to{transform:translateX(0);opacity:1}
}
.album-strip{
  display:flex;gap:8px;padding:6px 0 4px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar:none;
  cursor:grab;
}
.album-strip:active{cursor:grabbing}
.album-strip.dragging{cursor:grabbing}
.album-strip::-webkit-scrollbar{display:none}
.album-thumb{
  position:relative;flex:0 0 92px;height:74px;overflow:hidden;
  border-radius:6px;cursor:pointer;
  transition:transform .25s ease,opacity .25s ease;
  opacity:.5;
  user-select:none;
  -webkit-user-drag:none;
}
.album-thumb img{
  width:100%;height:100%;object-fit:cover;display:block;
  pointer-events:none;
}
.album-thumb.active{
  opacity:1;transform:scale(1.08);
}

/* Philosophy */
.philosophy{
  background:#6f6245;
  color:#fff;
  padding:0;
}
.philosophy-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:6px;padding:20px;
}
.ph-title-card{
  min-height:150px;
  background:url("../assets/bg-title-index5.jpg") center/cover no-repeat;
  display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;
  text-align:left;padding:20px 14px;
}
.ph-title-card h2{font-size:24px;font-weight:600;color:#fff;line-height:1.3}
.ph-title-card small{font-size:9px;color:rgba(255,255,255,.7);margin-top:6px;letter-spacing:2px}
.ph-card{
  min-height:150px;padding:20px 12px;
  background:#8d7e5c;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.ph-icon{
  width:60px;height:60px;margin:0 auto 12px;
  display:flex;align-items:center;justify-content:center;border: 2px solid #fff;;border-radius: 100%;padding: 10px;
}
.ph-icon img{width:100%;height:100%;object-fit:contain}
.ph-card h3{font-size:16px;margin-bottom:8px;color:#fff}
.ph-card p{font-size:11px;line-height:1.8;color:rgba(255,255,255,.75)}

/* About */
.about{
  background:url("assets/about.jpg") center/cover no-repeat;
  padding:30px 14px 0;
}
.about-grid{
  display:grid;
  gap:1px;background:rgba(255,255,255,.45);
}
.about-stat{
  min-height:150px;background:rgba(255,255,255,.88);
  padding:25px 15px;
}
.about-stat strong{font-family:Georgia,serif;font-size:32px;color:#6e6048;font-weight:400}
.about-stat em{font-size:11px;color:#8d7b58;font-style:normal}
.about-stat h3{font-size:11px;margin-top:10px}
.about-stat p{font-size:11px;color:#888;line-height:1.7;margin-top:5px}
.vip{
  margin-top:8px;min-height:115px;
  background:url("assets/vip.jpg") right center/55% auto no-repeat,#f9f9f9;
  padding:25px 0px;
}
.vip b{font-size:16px;color:#ad8c49}
.vip p{font-size:11px;margin-top:5px}
.vip .btn{display:inline-block;background:#e23b31;color:#fff;padding:7px 14px;margin-top:10px;font-size:9px}

/* Form */
.form-section{
  padding:0 14px 35px;
}
.form-card{}
.form-card .form-content{
  background: linear-gradient(to bottom, #d1be9d, #e4d4bc);padding: 40px 15px 20px;
}
.form-card h2{text-align: center;
  font-size: 24px;
  font-weight: 600;
  background: url(../assets/form-header-bg.png) no-repeat center;
  color: #FFF;
  background-size: cover;
  height: 75px;
  line-height: 75px;
  display: block;
  width: 90%;
  margin: 0 auto -15px;
  position: relative;
  z-index: 99;
  border-radius: 10px 10px 0 0;}
.form-card input,.form-card textarea{
  width:100%;height:42px;border:1px solid #ddd;
  margin-bottom:9px;padding:0 12px;font-size:11px;outline:none;
}
.form-card textarea{height:72px;padding-top:11px;resize:none}
.submit{
  width:100%;height:43px;border:0;background:#e53935;color:#fff;
  font-size:12px;cursor:pointer;
}

/* Footer */
.footer{
  background:#1f211f;color:#ddd;padding:20px 15px 15px;
  display:flex;justify-content:space-around;text-align:center;
}
.footer a{font-size:9px;color:#ddd}
.footer small{display:block;text-align:center;color:#777;background:#1f211f;padding:0 0 12px;font-size:7px}

/* Floating */
.float-contact{
  position:fixed;right:14px;bottom:24px;z-index:30;
  width:46px;height:46px;border-radius:50%;
  background:var(--gold);color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,.18);
  font-size:18px;
}
@media(min-width:751px){
  body{background:#e9e9e9}
  .page{box-shadow:0 0 40px rgba(0,0,0,.08)}
}

/* ========================================
   设计工作室内页样式 (studios.html)
   ======================================== */

/* 内页 Banner */
.page-banner{
  position:relative;
  height:min(60vw,400px);
  min-height:240px;
  overflow:hidden;
  background:#000;
}
.page-banner .banner-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  filter:brightness(.55);
}
.page-banner .banner-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  color:#fff;text-align:center;
  padding:0 20px;
}
.page-banner h1{
  font-size:26px;font-weight:600;
  letter-spacing:4px;
  margin-bottom:8px;
}
.page-banner .subtitle{
  font-size:10px;letter-spacing:6px;
  color:rgba(255,255,255,.65);
  text-transform:uppercase;
}
.page-banner .breadcrumb{
  margin-top:14px;
  font-size:11px;
  color:rgba(255,255,255,.5);
}
.page-banner .breadcrumb a{color:rgba(255,255,255,.7)}
.page-banner .breadcrumb a:hover{color:var(--gold-light)}
.page-banner .gold-line{
  width:40px;height:2px;
  background:var(--gold);
  margin:10px auto 0;
}

/* 内页简介 */
.studio-intro{
  padding:24px 14px 10px;
  text-align:center;
}
.studio-intro h2{
  font-size:18px;font-weight:600;
  margin-bottom:10px;color:var(--dark);
}
.studio-intro p{
  font-size:12px;color:var(--muted);
  line-height:1.8;max-width:560px;
  margin:0 auto;
}

/* 筛选栏 */
.filter-bar{
  position:sticky;top:0;z-index:15;
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:12px 14px;
  display:flex;
  gap:8px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar:none;
}
.filter-bar::-webkit-scrollbar{display:none}
.filter-tab{
  flex:0 0 auto;
  padding:7px 18px;
  font-size:11px;
  background:#f6f1e7;
  color:var(--dark);
  border:1px solid var(--line);
  border-radius:20px;
  cursor:pointer;
  white-space:nowrap;
  transition:all .2s ease;
}
.filter-tab:hover{
  border-color:var(--gold);
  color:var(--gold);
}
.filter-tab.active{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
  box-shadow:0 2px 8px rgba(180,154,99,.35);
}

/* 工作室列表卡片 */
.studio-list{
  display:flex;flex-direction:column;
  gap:16px;
  padding:20px 14px;
}
/* 窄屏：studio-item 回退为竖向堆叠 */
@media (max-width:420px){
  .studio-item{
    flex-direction:column;
  }
  .studio-item-photo{
    flex:0 0 auto;
    min-height:180px;
  }
}
.studio-item{
  display:flex;
  align-items:stretch;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  transition:transform .2s ease,box-shadow .2s ease;
}
.studio-item:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(180,154,99,.15);
}
.studio-item-photo{
  display:block;
  flex:0 0 38%;
  position:relative;
  min-height:170px;
  background-size:cover;
  background-position:center;
  background-color:#eee;
}
.studio-item-photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.35) 100%);
}
.studio-item-photo .level-tag{
  position:absolute;top:12px;left:12px;z-index:2;
  padding:4px 12px;
  font-size:10px;letter-spacing:1px;
  background:rgba(180,154,99,.92);
  color:#fff;border-radius:12px;
}
.studio-item-photo .btn-design{
  position:absolute;bottom:14px;right:14px;z-index:2;
  padding:8px 18px;
  font-size:11px;letter-spacing:1px;
  background:var(--gold);
  color:#FFF;
  border:0;border-radius:20px;
  cursor:pointer;
  transition:all .2s ease;
}
.studio-item-photo .btn-design:hover{
  background:var(--gold);
  color:#fff;
}
.studio-item-info{
  flex:1;
  min-width:0;
  padding:14px 14px;
}
.studio-item-info h3{
  font-size:16px;font-weight:600;
  color:var(--dark);
  margin-bottom:8px;
}
.studio-item-info .designer-meta{
  display:flex;flex-wrap:wrap;
  gap:6px 14px;
  font-size:11px;color:var(--muted);
  margin-bottom:12px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.studio-item-info .designer-meta span{
  display:inline-flex;align-items:center;gap:4px;
}
.studio-item-info .designer-meta b{
  color:var(--dark);font-weight:500;
}
.studio-tags{
  display:flex;flex-wrap:wrap;gap:6px;
  margin-bottom:12px;
}
.studio-tag{
  padding:3px 10px;
  font-size:12px;
  background:#f6f1e7;
  color:var(--gold);
  border-radius:10px;
  border:1px solid var(--line);
}
.studio-item-cases{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
}
.studio-item-cases .c-photo{
  height:90px;
  border-radius:6px;
  background-size:cover;
  background-position:center;
}

/* 分页 */
.pagination-wrap{
  padding:20px 14px 30px;
  display:flex;
  justify-content:center;
}
.pagination{
  display:flex;
  align-items:center;
  gap:5px;
}
.pg-btn{
  min-width:36px;height:36px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;justify-content:center;
  font-size:12px;
  background:#fff;
  color:var(--dark);
  border:1px solid var(--line);
  border-radius:18px;
  cursor:pointer;
  transition:all .2s ease;
}
.pg-btn:hover:not(:disabled):not(.active){
  border-color:var(--gold);
  color:var(--gold);
  background:#fdfaf3;
}
.pg-btn.active{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
  box-shadow:0 2px 8px rgba(180,154,99,.3);
  font-weight:600;
}
.pg-btn:disabled{
  opacity:.35;
  cursor:not-allowed;
}
.pg-btn.pg-arrow{
  width:36px;
  font-size:14px;
  background:#f6f1e7;
}
.pg-btn.pg-arrow:hover:not(:disabled){
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
}
.pg-ellipsis{
  min-width:28px;
  text-align:center;
  font-size:12px;
  color:var(--muted);
}

/* 无结果提示 */
.no-result{
  padding:40px 20px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

/* ========================================
   设计工作室详情页样式 (studio-detail.html)
   ======================================== */

/* 设计师主图 Banner */
.designer-banner{
  position:relative;
  height:min(75vw,520px);
  min-height:320px;
  overflow:hidden;
  background:#1a1a1a;
}
.designer-banner .banner-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center top;
}
.designer-banner::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.25) 45%,rgba(0,0,0,.7) 100%);
}
.designer-banner .banner-content{
  position:absolute;left:0;right:0;bottom:0;z-index:2;
  padding:24px 18px 22px;
  color:#fff;
}
.designer-banner h1{
  font-size:24px;font-weight:600;
  letter-spacing:2px;
  margin-bottom:6px;
  line-height:1.3;
}
.designer-banner .d-title{
  display:inline-block;
  padding:3px 12px;
  font-size:11px;letter-spacing:1px;
  background:rgba(180,154,99,.92);
  color:#fff;border-radius:12px;
  margin-bottom:10px;
}
.designer-banner .d-sub{
  font-size:10px;letter-spacing:3px;
  color:rgba(255,255,255,.6);
  text-transform:uppercase;
}

/* 返回按钮（悬浮在 banner 左上） */
.banner-back{
  position:absolute;top:14px;left:14px;z-index:5;
  width:34px;height:34px;border-radius:50%;
  background:rgba(0,0,0,.4);
  color:#fff;border:1px solid rgba(255,255,255,.3);
  font-size:18px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.banner-back:hover{background:rgba(0,0,0,.6)}

/* 统计条 */
.stats-bar{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#fff;
  border-bottom:1px solid var(--line);
}
.stats-bar .stat-cell{
  padding:18px 8px;
  text-align:center;
  position:relative;
}
.stats-bar .stat-cell:not(:last-child)::after{
  content:"";position:absolute;
  right:0;top:50%;transform:translateY(-50%);
  width:1px;height:28px;background:var(--line);
}
.stats-bar .stat-num{
  font-family:Georgia,serif;
  font-size:24px;color:var(--gold);
  font-weight:400;line-height:1;
}
.stats-bar .stat-label{
  font-size:10px;color:var(--muted);
  margin-top:6px;letter-spacing:1px;
}

/* 擅长风格标签区 */
.spec-section{
  padding:18px 14px 10px;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.spec-section .spec-label{
  font-size:11px;color:var(--muted);
  margin-bottom:10px;letter-spacing:1px;
}
.spec-tags{
  display:flex;flex-wrap:wrap;gap:8px;
}
.spec-tag{
  padding:5px 14px;
  font-size:11px;
  background:#f6f1e7;
  color:var(--gold);
  border:1px solid var(--line);
  border-radius:14px;
}

/* 设计师简介 */
.bio-section{
  padding:24px 14px;
  background:#fff;
}
.bio-section .section-title{
  margin-bottom:14px;
}
.bio-section .section-title h2{
  font-size:17px;font-weight:600;
  position:relative;padding-left:12px;
}
.bio-section .section-title h2::before{
  content:"";position:absolute;
  left:0;top:50%;transform:translateY(-50%);
  width:3px;height:16px;
  background:var(--gold);
  border-radius:2px;
}
.bio-text{
  font-size:12px;color:#555;
  line-height:1.9;
}
.bio-text p{margin-bottom:10px}
.bio-text p:last-child{margin-bottom:0}

/* 作品列表 */
.works-section{
  padding:24px 14px 30px;
  background:#f9f6ef;
}
.works-section .section-title{
  margin-bottom:16px;
}
.works-section .section-title h2{
  font-size:17px;font-weight:600;
  position:relative;padding-left:12px;
}
.works-section .section-title h2::before{
  content:"";position:absolute;
  left:0;top:50%;transform:translateY(-50%);
  width:3px;height:16px;
  background:var(--gold);
  border-radius:2px;
}
.works-grid{
  display:flex;flex-direction:column;
  gap:16px;
}
.work-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
  transition:transform .2s ease,box-shadow .2s ease;
}
.work-card:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(180,154,99,.18);
}
.work-card .work-photo{
  position:relative;
  height:200px;
  overflow:hidden;
}
.work-card .work-photo img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .4s ease;
}
.work-card:hover .work-photo img{transform:scale(1.05)}
.work-card .work-badge{
  position:absolute;top:0;left:14px;
  padding:6px 12px;
  background:rgba(180,154,99,.92);
  color:#fff;
  font-size:10px;letter-spacing:1px;
  border-radius:0 0 10px 10px;
}
.work-card .work-info{
  padding:14px 12px;
}
.work-card .work-info h3{
  font-size:14px;font-weight:600;
  color:var(--dark);
  margin-bottom:8px;
}
.work-card .work-meta{
  display:flex;flex-wrap:wrap;
  gap:4px 14px;
  font-size:11px;color:var(--muted);
  margin-bottom:8px;
}
.work-card .work-meta span{
  display:inline-flex;align-items:center;gap:3px;
}
.work-card .work-meta b{
  color:var(--dark);font-weight:500;
}
.work-card .work-tags{
  display:flex;flex-wrap:wrap;gap:5px;
}
.work-card .work-tag{
  padding:2px 8px;
  font-size:10px;
  background:#f6f1e7;
  color:var(--gold);
  border-radius:8px;
}

/* 预约设计师 CTA */
.booking-cta{
  margin:0 14px 24px;
  padding:22px 18px;
  background:linear-gradient(135deg,#6f6245,#8d7e5c);
  border-radius:12px;
  text-align:center;
  color:#fff;
  box-shadow:0 6px 20px rgba(111,98,69,.25);
}
.booking-cta h3{
  font-size:16px;font-weight:600;
  margin-bottom:6px;letter-spacing:1px;
}
.booking-cta h3 span{color: #f00;font-weight: 600;}
.booking-cta p{
  font-size:11px;
  color:rgba(255,255,255,.8);
  margin-bottom:14px;
}
.booking-cta .btn-book{
  display:inline-block;
  padding:10px 28px;
  font-size:12px;letter-spacing:1px;
  background:#fff;
  color:var(--gold);
  border:0;border-radius:22px;
  cursor:pointer;
  font-weight:500;
  transition:all .2s ease;
}
.booking-cta .btn-book:hover{
  background:var(--gold);
  color:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,.2);
}

/* ========================================
   业主故事 列表页样式 (stories.html)
   采用杂志式错位排版，区别于参考站常规网格
   ======================================== */

/* 列表页 Banner */
.stories-banner{
  position:relative;
  height:min(50vw,340px);
  min-height:220px;
  overflow:hidden;
  background:#1f211f;
}
.stories-banner .banner-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  filter:brightness(.5);
}
.stories-banner .banner-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  color:#fff;text-align:center;
  padding:0 20px;
}
.stories-banner h1{
  font-size:24px;font-weight:600;
  letter-spacing:4px;margin-bottom:6px;
}
.stories-banner .subtitle{
  font-size:10px;letter-spacing:5px;
  color:rgba(255,255,255,.65);
  text-transform:uppercase;
}
.stories-banner .gold-line{
  width:36px;height:2px;
  background:var(--gold);
  margin:8px auto 0;
}

/* 分类筛选（横向滚动胶囊） */
.stories-filter{
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:14px 14px;
  display:flex;
  gap:8px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar:none;
  position:sticky;top:0;z-index:15;
}
.stories-filter::-webkit-scrollbar{display:none}
.sf-tab{
  flex:0 0 auto;
  padding:6px 16px;
  font-size:11px;letter-spacing:1px;
  background:#f6f1e7;
  color:var(--dark);
  border:1px solid var(--line);
  border-radius:18px;
  cursor:pointer;
  white-space:nowrap;
  transition:all .2s ease;
}
.sf-tab:hover{
  border-color:var(--gold);
  color:var(--gold);
}
.sf-tab.active{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
  box-shadow:0 2px 8px rgba(180,154,99,.3);
}

/* 杂志式列表：每条故事占用一个完整 row，左右图文错位交替 */
.stories-list{
  background:#faf7f0;
  padding:20px 14px 30px;
}
.story-row{
  display:flex;
  flex-direction:column;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.05);
  margin-bottom:20px;
  transition:transform .25s ease,box-shadow .25s ease;
}
.story-row:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(180,154,99,.18);
}

/* 大图 + 编号水印 */
.story-cover{
  position:relative;
  width:100%;
  height:240px;
  overflow:hidden;
}
.story-cover img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .5s ease;
}
.story-row:hover .story-cover img{transform:scale(1.06)}
.story-cover .story-num{
  position:absolute;
  top:14px;left:14px;
  font-family:Georgia,serif;
  font-size:34px;font-weight:300;
  color:rgba(255,255,255,.65);
  letter-spacing:2px;
  line-height:1;
}
.story-cover .story-cat{
  position:absolute;
  top:14px;right:14px;
  padding:4px 12px;
  font-size:10px;letter-spacing:1px;
  background:rgba(180,154,99,.92);
  color:#fff;
  border-radius:12px;
}
.story-cover .play-icon{
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:54px;height:54px;border-radius:50%;
  background:rgba(255,255,255,.85);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
  font-size:20px;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
}
.story-cover .play-icon::before{
  content:"";display:block;
  width:0;height:0;
  border-left:12px solid var(--gold);
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  margin-left:4px;
}

/* 信息区 */
.story-info{
  padding:18px 16px 16px;
}
.story-info .meta-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:10px;color:var(--muted);
  margin-bottom:10px;
  letter-spacing:1px;
}
.story-info .meta-top .date{
  color:var(--gold);
  font-weight:500;
}
.story-info h2{
  font-size:18px;font-weight:600;
  color:var(--dark);
  margin-bottom:10px;
  line-height:1.4;
}
.story-info .desc{
  font-size:12px;color:#666;
  line-height:1.85;
  margin-bottom:14px;
  /* 限制 3 行 */
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.story-info .meta-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:12px;
  border-top:1px solid var(--line);
}
.story-info .stats{
  display:flex;gap:14px;
}
.story-info .stats span{
  display:inline-flex;
  align-items:center;gap:4px;
  font-size:11px;color:var(--muted);
}
.story-info .stats .ico{
  font-size:13px;color:var(--gold);
}
.story-info .read-more{
  font-size:11px;letter-spacing:1px;
  color:var(--gold);
  font-weight:500;
}
.story-info .read-more::after{
  content:" →";
}

/* 加载更多 */
.load-more-wrap{
  text-align:center;
  padding:10px 0 30px;
}
.load-more{
  display:inline-block;
  padding:10px 32px;
  font-size:12px;letter-spacing:1px;
  background:transparent;
  color:var(--gold);
  border:1px solid var(--gold);
  border-radius:22px;
  cursor:pointer;
  transition:all .2s ease;
}
.load-more:hover{
  background:var(--gold);
  color:#fff;
  box-shadow:0 4px 14px rgba(180,154,99,.3);
}
.load-more.loading{
  background:#f6f1e7;
  color:var(--muted);
  border-color:var(--line);
  cursor:default;
}

/* ========================================
   业主故事 详情页样式 (story-detail.html)
   ======================================== */

/* 详情页 hero */
.sd-hero{
  position:relative;
  height:min(75vw,520px);
  min-height:320px;
  overflow:hidden;
  background:#1a1a1a;
}
.sd-hero .hero-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  filter:brightness(.55);
}
.sd-hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.2) 0%,rgba(0,0,0,.3) 40%,rgba(0,0,0,.75) 100%);
}
.sd-hero .hero-content{
  position:absolute;left:0;right:0;bottom:0;z-index:2;
  padding:24px 18px 26px;
  color:#fff;
}
.sd-hero .sd-cat{
  display:inline-block;
  padding:3px 12px;
  font-size:10px;letter-spacing:1px;
  background:rgba(180,154,99,.92);
  color:#fff;border-radius:12px;
  margin-bottom:12px;
}
.sd-hero h1{
  font-size:24px;font-weight:600;
  letter-spacing:2px;
  line-height:1.35;
  margin-bottom:10px;
}
.sd-hero .sd-meta{
  display:flex;flex-wrap:wrap;
  gap:6px 16px;
  font-size:11px;
  color:rgba(255,255,255,.7);
}
.sd-hero .sd-meta span{
  display:inline-flex;align-items:center;gap:4px;
}
.sd-hero .sd-meta b{
  color:#fff;font-weight:500;
}

/* 详情页返回按钮 */
.sd-back{
  position:absolute;top:14px;left:14px;z-index:5;
  width:34px;height:34px;border-radius:50%;
  background:rgba(0,0,0,.4);
  color:#fff;border:1px solid rgba(255,255,255,.3);
  font-size:18px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.sd-back:hover{background:rgba(0,0,0,.6)}

/* 视频播放区（封面 + 播放按钮，可点击模拟播放） */
.sd-player{
  position:relative;
  background:#000;
}
.sd-player .player-wrap{
  position:relative;
  width:100%;
  height:min(60vw,420px);
  min-height:240px;
  background-size:cover;
  background-position:center;
  cursor:pointer;
}
.sd-player .player-wrap::after{
  content:"";position:absolute;inset:0;
  background:rgba(0,0,0,.25);
}
.sd-player .play-btn{
  position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:70px;height:70px;border-radius:50%;
  background:rgba(255,255,255,.92);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 24px rgba(0,0,0,.3);
  transition:transform .2s ease;
  z-index:2;
}
.sd-player .play-btn:hover{transform:translate(-50%,-50%) scale(1.08)}
.sd-player .play-btn::before{
  content:"";display:block;
  width:0;height:0;
  border-left:18px solid var(--gold);
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  margin-left:6px;
}
.sd-player .duration{
  position:absolute;
  bottom:14px;right:14px;
  padding:3px 10px;
  font-size:11px;
  background:rgba(0,0,0,.6);
  color:#fff;border-radius:4px;
  z-index:2;
}

/* 互动工具栏（点赞、收藏、分享、浏览量） */
.sd-toolbar{
  background:#fff;
  padding:14px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--line);
}
.sd-toolbar .left-stats{
  display:flex;gap:18px;
  font-size:11px;color:var(--muted);
}
.sd-toolbar .left-stats span{
  display:inline-flex;align-items:center;gap:5px;
}
.sd-toolbar .left-stats .ico{color:var(--gold);font-size:14px}
.sd-toolbar .right-actions{
  display:flex;gap:8px;
}
.sd-toolbar .act-btn{
  display:inline-flex;
  align-items:center;gap:5px;
  padding:6px 12px;
  font-size:11px;
  background:#f6f1e7;
  color:var(--dark);
  border:1px solid var(--line);
  border-radius:16px;
  cursor:pointer;
  transition:all .2s ease;
}
.sd-toolbar .act-btn:hover{
  border-color:var(--gold);
  color:var(--gold);
  background:#fdfaf3;
}
.sd-toolbar .act-btn .ico{font-size:13px;color:var(--gold)}
.sd-toolbar .act-btn.liked{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
}
.sd-toolbar .act-btn.liked .ico{color:#fff}

/* 故事简介区 */
.sd-intro{
  padding:24px 14px;
  background:#fff;
}
.sd-intro .sd-title{
  font-size:14px;font-weight:600;
  color:var(--dark);
  margin-bottom:14px;
  padding-left:12px;
  position:relative;
}
.sd-intro .sd-title::before{
  content:"";position:absolute;
  left:0;top:50%;transform:translateY(-50%);
  width:3px;height:16px;
  background:var(--gold);border-radius:2px;
}
.sd-intro .intro-text{
  font-size:12px;color:#555;
  line-height:1.95;
}
.sd-intro .intro-text p{margin-bottom:10px}
.sd-intro .intro-text p:last-child{margin-bottom:0}

/* 设计说明区 */
.sd-design{
  padding:24px 14px;
  background:#f9f6ef;
}
.sd-design .sd-title{
  font-size:14px;font-weight:600;
  color:var(--dark);
  margin-bottom:14px;
  padding-left:12px;
  position:relative;
}
.sd-design .sd-title::before{
  content:"";position:absolute;
  left:0;top:50%;transform:translateY(-50%);
  width:3px;height:16px;
  background:var(--gold);border-radius:2px;
}
.sd-design .design-text{
  font-size:12px;color:#555;
  line-height:1.95;
}
.sd-design .design-text p{margin-bottom:10px}
.sd-design .design-text p:last-child{margin-bottom:0}

/* 图集画廊 */
.sd-gallery{
  padding:24px 14px 14px;
  background:#fff;
}
.sd-gallery .sd-title{
  font-size:14px;font-weight:600;
  color:var(--dark);
  margin-bottom:14px;
  padding-left:12px;
  position:relative;
}
.sd-gallery .sd-title::before{
  content:"";position:absolute;
  left:0;top:50%;transform:translateY(-50%);
  width:3px;height:16px;
  background:var(--gold);border-radius:2px;
}
.sd-gallery .gallery-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
}
.sd-gallery .gallery-grid .g-item.full{
  grid-column:1 / -1;
}
.sd-gallery .g-item{
  position:relative;
  height:140px;
  overflow:hidden;
  border-radius:6px;
  cursor:pointer;
}
.sd-gallery .g-item.full{height:200px}
.sd-gallery .g-item img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .4s ease;
}
.sd-gallery .g-item:hover img{transform:scale(1.05)}

/* 大图预览层 */
.gallery-mask{
  position:fixed;inset:0;z-index:300;
  background:rgba(0,0,0,.92);
  display:none;
  align-items:center;justify-content:center;
  padding:30px;
}
.gallery-mask.active{display:flex}
.gallery-mask img{
  max-width:100%;max-height:90vh;
  border-radius:6px;
  box-shadow:0 10px 40px rgba(0,0,0,.5);
}
.gallery-mask .gm-close{
  position:absolute;
  top:18px;right:18px;
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.15);
  color:#fff;border:0;font-size:22px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.gallery-mask .gm-close:hover{background:rgba(255,255,255,.3)}
.gallery-mask .gm-prev,
.gallery-mask .gm-next{
  position:absolute;top:50%;
  transform:translateY(-50%);
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.15);
  color:#fff;border:0;font-size:22px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.gallery-mask .gm-prev{left:14px}
.gallery-mask .gm-next{right:14px}
.gallery-mask .gm-prev:hover,
.gallery-mask .gm-next:hover{background:rgba(255,255,255,.3)}

/* 相关故事 */
.sd-related{
  padding:24px 14px 30px;
  background:#faf7f0;
}
.sd-related .sd-title{
  font-size:14px;font-weight:600;
  color:var(--dark);
  margin-bottom:14px;
  padding-left:12px;
  position:relative;
}
.sd-related .sd-title::before{
  content:"";position:absolute;
  left:0;top:50%;transform:translateY(-50%);
  width:3px;height:16px;
  background:var(--gold);border-radius:2px;
}
.sd-related .related-list{
  display:flex;flex-direction:column;
  gap:12px;
}
.sd-related .related-item{
  display:grid;
  grid-template-columns:36% 64%;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
  transition:transform .2s ease,box-shadow .2s ease;
}
.sd-related .related-item:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(180,154,99,.15);
}
.sd-related .related-item .r-cover{
  height:100px;
  overflow:hidden;
  position:relative;
}
.sd-related .related-item .r-cover img{
  width:100%;height:100%;
  object-fit:cover;display:block;
}
.sd-related .related-item .r-cover .r-cat{
  position:absolute;top:6px;left:6px;
  padding:2px 8px;
  font-size:9px;letter-spacing:1px;
  background:rgba(180,154,99,.92);
  color:#fff;border-radius:8px;
}
.sd-related .related-item .r-info{
  padding:10px 12px;
  display:flex;flex-direction:column;
  justify-content:space-between;
}
.sd-related .related-item .r-info h3{
  font-size:13px;font-weight:600;
  color:var(--dark);
  line-height:1.4;
  margin-bottom:4px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.sd-related .related-item .r-info .r-stats{
  font-size:10px;color:var(--muted);
  display:flex;gap:10px;
}

/* 查看全部案例按钮 */
.sd-more-cases{
  text-align:center;
  margin-top:16px;
}
.sd-more-btn{
  display:inline-block;
  padding:10px 22px;
  border:1px solid var(--gold);
  color:var(--gold);
  font-size:12px;
  border-radius:20px;
  letter-spacing:1px;
  transition:all .2s;
}
.sd-more-btn:active{
  background:var(--gold);
  color:#fff;
}

/* 详情页 CTA */
.sd-cta{
  margin:0 14px 24px;
  padding:24px 18px;
  background:linear-gradient(135deg,#6f6245,#8d7e5c);
  border-radius:12px;
  text-align:center;
  color:#fff;
  box-shadow:0 6px 20px rgba(111,98,69,.25);
}
.sd-cta h3{
  font-size:16px;font-weight:600;
  margin-bottom:6px;letter-spacing:1px;
}
.sd-cta p{
  font-size:11px;
  color:rgba(255,255,255,.8);
  margin-bottom:14px;
}
.sd-cta .btn-book{
  display:inline-block;
  padding:10px 28px;
  font-size:12px;letter-spacing:1px;
  background:#fff;
  color:var(--gold);
  border:0;border-radius:22px;
  cursor:pointer;font-weight:500;
  transition:all .2s ease;
}
.sd-cta .btn-book:hover{
  background:var(--gold);
  color:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,.2);
}

/* ========================================================================
   重点楼盘 列表页 properties.html
   排版：错位瀑布流（双列 CSS columns）
   与已存在的杂志式 stories / 标准网格 studios 区分开
   ======================================================================== */

/* Banner */
.prop-banner{
  position:relative;
  height:min(60vw,420px);
  min-height:260px;
  overflow:hidden;
  color:#fff;
  background:#1a1a1a;
}
.prop-banner .banner-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:brightness(.55);
}
.prop-banner .banner-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;padding:0 18px;
}
.prop-banner h1{
  font-size:30px;font-weight:600;
  letter-spacing:6px;
  text-shadow:0 2px 10px rgba(0,0,0,.4);
}
.prop-banner .subtitle{
  font-size:11px;letter-spacing:4px;
  color:var(--gold-light);
  margin-top:6px;
}
.prop-banner .gold-line{
  width:50px;height:2px;
  background:var(--gold);
  margin:10px 0;
}
.prop-banner .breadcrumb{
  margin-top:8px;
  font-size:11px;
  color:rgba(255,255,255,.7);
}
.prop-banner .breadcrumb a{
  color:rgba(255,255,255,.85);
}

/* 简介区 */
.prop-intro{
  padding:24px 16px 18px;
  background:#faf7f0;
  text-align:center;
}
.prop-intro h2{
  font-size:18px;font-weight:600;
  color:var(--dark);
  margin-bottom:8px;
  letter-spacing:1px;
}
.prop-intro p{
  font-size:12px;line-height:1.7;
  color:var(--muted);
  max-width:560px;margin:0 auto;
}

/* 区域筛选 */
.prop-filter{
  display:flex;gap:8px;
  padding:12px 16px;
  background:#fff;
  border-bottom:1px solid var(--line);
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.prop-filter::-webkit-scrollbar{display:none}
.pf-tab{
  flex-shrink:0;
  padding:7px 16px;
  font-size:12px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  color:#666;
  cursor:pointer;
  transition:all .2s ease;
}
.pf-tab.active,
.pf-tab:active{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
}

/* 列表瀑布流 */
.prop-list{
  column-count:2;
  column-gap:12px;
  padding:14px 12px 20px;
  background:#faf7f0;
}
/* 单列回退（窄屏） */
@media (max-width:360px){
  .prop-list{column-count:1}
}

/* 单个卡片：内联块避免 column 跨列断行 */
.prop-card{
  display:inline-block;
  width:100%;
  margin:0 0 12px;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(0,0,0,.06);
  break-inside:avoid;
  -webkit-column-break-inside:avoid;
  page-break-inside:avoid;
  transition:transform .25s ease,box-shadow .25s ease;
}
.prop-card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(180,154,99,.18);
}

/* 不同尺寸：错落感 */
.prop-card.size-0 .prop-cover img{aspect-ratio:4/5}
.prop-card.size-1 .prop-cover img{aspect-ratio:4/3}
.prop-card.size-2 .prop-cover img{aspect-ratio:1/1}
.prop-card.size-3 .prop-cover img{aspect-ratio:5/6}

/* 卡片封面 */
.prop-cover{
  position:relative;
  display:block;
  background:#eee;
  overflow:hidden;
}
.prop-cover img{
  width:100%;height:auto;
  display:block;
  object-fit:cover;
  transition:transform .5s ease;
}
.prop-card:hover .prop-cover img{transform:scale(1.06)}

/* 案例数量徽章 */
.prop-case-num{
  position:absolute;
  top:10px;right:10px;
  background:rgba(180,154,99,.95);
  color:#fff;
  border-radius:14px;
  padding:5px 10px;
  display:flex;flex-direction:column;
  align-items:center;line-height:1;
  box-shadow:0 2px 8px rgba(0,0,0,.18);
}
.prop-case-num b{
  font-size:16px;font-weight:700;
}
.prop-case-num small{
  font-size:9px;
  margin-top:2px;
  opacity:.85;
}

/* 热门标 */
.prop-hot{
  position:absolute;
  top:10px;left:10px;
  background:rgba(220,80,70,.95);
  color:#fff;
  font-size:10px;
  padding:3px 8px;
  border-radius:10px;
  letter-spacing:1px;
}

/* 卡片信息区 */
.prop-info{
  padding:12px 12px 14px;
}
.prop-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:6px;
  margin-bottom:4px;
}
.prop-head h3{
  font-size:15px;font-weight:600;
  color:var(--dark);
  letter-spacing:1px;
}
.prop-district{
  font-size:10px;
  color:var(--gold);
  background:#f7f0df;
  padding:2px 6px;
  border-radius:8px;
  flex-shrink:0;
}
.prop-addr{
  font-size:11px;
  color:var(--muted);
  line-height:1.5;
  margin-bottom:8px;
}
.prop-meta{
  display:flex;flex-wrap:wrap;
  gap:8px;
  font-size:11px;
  color:#666;
  margin-bottom:8px;
}
.prop-meta b{
  color:var(--dark);
  font-weight:500;
}
.prop-tags{
  display:flex;flex-wrap:wrap;
  gap:5px;
  margin-bottom:10px;
}
.prop-tag{
  font-size:10px;
  color:#999;
  background:#f3f1ec;
  padding:2px 8px;
  border-radius:8px;
}
/* 查看作品按钮 */
.prop-view{
  display:block;
  text-align:center;
  font-size:12px;
  color:var(--gold);
  background:linear-gradient(90deg,#f7f0df,#fff7e6);
  border:1px solid #ecdcb4;
  border-radius:18px;
  padding:8px 12px;
  letter-spacing:1px;
  transition:all .2s ease;
}
.prop-view:hover{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
}

/* 统计条 */
.prop-stats{
  display:flex;
  background:linear-gradient(135deg,#6f6245,#8d7e5c);
  color:#fff;
  margin:0 14px 24px;
  border-radius:14px;
  overflow:hidden;
}
.ps-item{
  flex:1;
  text-align:center;
  padding:18px 6px;
  position:relative;
}
.ps-item + .ps-item::before{
  content:"";
  position:absolute;
  left:0;top:50%;
  transform:translateY(-50%);
  width:1px;height:30px;
  background:rgba(255,255,255,.25);
}
.ps-item b{
  display:block;
  font-size:22px;
  font-weight:700;
  margin-bottom:4px;
}
.ps-item span{
  font-size:11px;
  color:rgba(255,255,255,.85);
  letter-spacing:1px;
}

/* ========================================================================
   重点楼盘 详情页 property-detail.html
   ======================================================================== */

/* Hero */
.pd-hero{
  position:relative;
  height:min(72vw,520px);
  min-height:320px;
  overflow:hidden;
  color:#fff;
  background:#1a1a1a;
}
.pd-hero .hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:brightness(.95);
}
.pd-hero .hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.65) 100%);
}
.pd-hero .hero-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;
  justify-content:flex-end;
  padding:0 18px 24px;
}
.pd-back{
  position:absolute;z-index:3;
  top:14px;left:14px;
  width:36px;height:36px;
  border-radius:50%;
  background:rgba(0,0,0,.4);
  color:#fff;
  border:0;
  font-size:22px;line-height:1;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  backdrop-filter:blur(4px);
}
.pd-district{
  display:inline-block;
  align-self:flex-start;
  background:var(--gold);
  color:#fff;
  font-size:11px;
  padding:3px 10px;
  border-radius:10px;
  letter-spacing:1px;
  margin-bottom:10px;
}
.pd-hero h1{
  font-size:26px;font-weight:600;
  letter-spacing:3px;
  text-shadow:0 2px 8px rgba(0,0,0,.4);
  margin-bottom:6px;
}
.pd-addr{
  font-size:12px;
  color:rgba(255,255,255,.85);
  margin-bottom:10px;
}
.pd-hero-meta{
  font-size:11px;
  color:rgba(255,255,255,.9);
  display:flex;align-items:center;gap:8px;
}
.pd-hero-meta b{
  color:var(--gold-light);
  font-weight:600;
  font-size:13px;
}
.pd-hero-meta .sep{opacity:.5}

/* 通用小标题 */
.pd-title{
  font-size:16px;
  font-weight:600;
  color:var(--dark);
  letter-spacing:1.5px;
  padding-left:10px;
  border-left:3px solid var(--gold);
  margin-bottom:14px;
}

/* 信息卡 */
.pd-info-card{
  background:#fff;
  margin:14px 14px 0;
  padding:18px 14px;
  border-radius:12px;
  box-shadow:0 2px 14px rgba(0,0,0,.04);
}
.pd-info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px 14px;
  margin-bottom:14px;
}
.pd-info-item{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  font-size:12px;
  padding:8px 0;
  border-bottom:1px dashed #ece6d8;
}
.pd-info-item .label{
  color:var(--muted);
}
.pd-info-item .value{
  color:var(--dark);
  font-weight:500;
}
.pd-info-tags{
  display:flex;flex-wrap:wrap;
  gap:6px;
}

/* 楼盘简介 */
.pd-intro{
  margin:14px;
  padding:18px 14px;
  background:#faf7f0;
  border-radius:12px;
}
.pd-intro-text p{
  font-size:12px;
  line-height:1.8;
  color:#555;
  margin-bottom:10px;
}
.pd-intro-text p:last-child{margin-bottom:0}

/* 详情页 CTA */
.pd-cta{
  margin:14px;
  padding:24px 18px;
  background:linear-gradient(135deg,#6f6245,#8d7e5c);
  border-radius:12px;
  text-align:center;
  color:#fff;
  box-shadow:0 6px 20px rgba(111,98,69,.25);
}
.pd-cta h3{
  font-size:16px;font-weight:600;
  margin-bottom:6px;letter-spacing:1px;
}
.pd-cta p{
  font-size:11px;
  color:rgba(255,255,255,.8);
  margin-bottom:14px;
}
.pd-cta .btn-book{
  display:inline-block;
  padding:10px 28px;
  font-size:12px;letter-spacing:1px;
  background:#fff;
  color:var(--gold);
  border:0;border-radius:22px;
  cursor:pointer;font-weight:500;
  transition:all .2s ease;
}
.pd-cta .btn-book:hover{
  background:var(--gold);
  color:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,.2);
}

/* 案例作品列表 */
.pd-cases{
  margin:14px;
  padding:18px 0 8px;
}
.pd-cases-head{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:16px;
}
.pd-cases-filter{
  display:flex;gap:6px;
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.pd-cases-filter::-webkit-scrollbar{display:none}
.cf-tab{
  flex-shrink:0;
  padding:6px 14px;
  font-size:11px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  color:#777;
  cursor:pointer;
  transition:all .2s ease;
}
.cf-tab.active{
  background:var(--dark);
  color:#fff;
  border-color:var(--dark);
}
.pd-case-list{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.pd-case-item{
  display:flex;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
  transition:all .25s ease;
}
.pd-case-item:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(180,154,99,.15);
}
.pdc-cover{
  flex:0 0 38%;
  min-width:120px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.pdc-style{
  position:absolute;
  top:8px;left:8px;
  background:rgba(180,154,99,.95);
  color:#fff;
  font-size:10px;
  padding:3px 8px;
  border-radius:8px;
  letter-spacing:1px;
}
.pdc-info{
  flex:1;
  padding:12px 12px 12px 14px;
  display:flex;flex-direction:column;
  justify-content:space-between;
}
.pdc-info h3{
  font-size:14px;
  font-weight:600;
  color:var(--dark);
  line-height:1.5;
  margin-bottom:6px;
}
.pdc-meta{
  display:flex;flex-direction:column;
  gap:4px;
  font-size:11px;
  color:var(--muted);
  margin-bottom:8px;
}
.pdc-meta b{
  color:var(--dark);
  font-weight:500;
}
.pdc-view{
  font-size:11px;
  color:var(--gold);
  letter-spacing:1px;
}
.pd-case-empty{
  text-align:center;
  padding:30px 0;
  font-size:12px;
  color:var(--muted);
}

/* 相关楼盘 */
.pd-related{
  margin:20px 14px 14px;
}
.pd-related-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.pdr-item{
  display:flex;flex-direction:column;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.pdr-cover{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
}
.pdr-cover img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}
.pdr-item:hover .pdr-cover img{transform:scale(1.06)}
.pdr-num{
  position:absolute;
  bottom:6px;left:6px;
  background:rgba(180,154,99,.95);
  color:#fff;
  font-size:9px;
  padding:2px 6px;
  border-radius:6px;
}
.pdr-info{
  padding:8px 8px 10px;
}
.pdr-info h3{
  font-size:12px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:2px;
}
.pdr-info span{
  font-size:10px;
  color:var(--muted);
}

/* 详情页预约弹窗 内信息区 */
.pd-modal-info{
  padding:0 4px 14px;
  border-bottom:1px solid var(--line);
  margin-bottom:14px;
}
.pd-modal-info h4{
  font-size:15px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:8px;
}
.pd-modal-info p{
  font-size:12px;
  color:var(--muted);
  margin-bottom:4px;
}
.pd-modal-info b{
  color:var(--dark);
  font-weight:500;
}

/* ========================================================================
   免费设计方案 free-design.html
   整页结构：Hero → 服务亮点 → 流程 → 核心表单 → 成功弹窗 → FAQ
   ======================================================================== */

/* Hero */
.fd-hero{
  position:relative;
  height:min(95vw,680px);
  min-height:480px;
  overflow:hidden;
  color:#fff;
  background:#1a1a1a;
}
.fd-hero .hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:brightness(.5);
}
.fd-hero .hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.25) 0%,rgba(0,0,0,.7) 100%);
}
.fd-hero .hero-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;padding:30px 18px;
}
.fd-tag{
  display:inline-block;
  background:var(--gold);
  color:#fff;
  font-size:11px;
  padding:4px 12px;
  border-radius:12px;
  letter-spacing:1px;
  margin-bottom:14px;
}
.fd-hero h1{
  font-size:30px;font-weight:300;
  letter-spacing:5px;
  text-shadow:0 2px 12px rgba(0,0,0,.5);
}
.fd-hero .fd-sub{
  font-size:11px;
  color:var(--gold-light);
  letter-spacing:4px;
  margin-top:6px;
}
.fd-hero .gold-line{
  width:50px;height:2px;
  background:var(--gold);
  margin:14px 0;
}
.fd-desc{
  font-size:12px;
  line-height:1.7;
  color:rgba(255,255,255,.9);
  max-width:380px;
  margin-bottom:24px;
}
.fd-hero-stats{
  display:flex;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
  border-radius:14px;
  padding:14px 6px;
  width:100%;
  max-width:360px;
}
.fd-hero-stats > div{
  flex:1;
  text-align:center;
  position:relative;
}
.fd-hero-stats > div + div::before{
  content:"";
  position:absolute;
  left:0;top:50%;
  transform:translateY(-50%);
  width:1px;height:24px;
  background:rgba(255,255,255,.25);
}
.fd-hero-stats b{
  display:block;
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin-bottom:2px;
}
.fd-hero-stats span{
  font-size:10px;
  color:rgba(255,255,255,.8);
  letter-spacing:1px;
}

/* 通用小标题（与本页风格统一） */
.fd-title{
  font-size:20px;
  font-weight:300;
  color:var(--dark);
  letter-spacing:2px;
  text-align:center;
  margin-bottom:20px;
  position:relative;
}
.fd-title::after{
  content:"";
  display:block;
  width:32px;height:2px;
  background:var(--gold);
  margin:8px auto 0;
}

/* 服务亮点 */
.fd-points{
  padding:30px 16px 24px;
  background:#fff;
}
.fd-points-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.fd-point{
  background:#faf7f0;
  border-radius:12px;
  padding:18px 14px;
  text-align:center;
  border:1px solid #f0e8d4;
  transition:all .25s ease;
}
.fd-point:hover{
  background:#fff;
  border-color:var(--gold);
  box-shadow:0 6px 20px rgba(180,154,99,.15);
  transform:translateY(-2px);
}
.fd-point .ico{
  display:inline-flex;
  align-items:center;justify-content:center;
  width:34px;height:34px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#fff;
  font-size:15px;font-weight:600;
  margin-bottom:10px;
}
.fd-point h3{
  font-size:13px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:6px;
}
.fd-point p{
  font-size:11px;
  line-height:1.6;
  color:var(--muted);
}

/* 流程 */
.fd-process{
  padding:30px 16px 24px;
  background:#faf7f0;
}
.fd-steps{
  list-style:none;
  counter-reset:step;
  padding:0;
}
.fd-steps li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px 0;
  position:relative;
}
.fd-steps li + li::before{
  content:"";
  position:absolute;
  left:15px;top:-6px;
  width:2px;height:18px;
  background:var(--gold-light);
  z-index:0;
}
.fd-steps li + li{margin-top:-6px}
.step-num{
  flex-shrink:0;
  width:32px;height:32px;
  border-radius:50%;
  background:#fff;
  border:2px solid var(--gold);
  color:var(--gold);
  font-size:14px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  position:relative;z-index:1;
}
.fd-steps li h3{
  font-size:14px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:3px;
}
.fd-steps li p{
  font-size:11px;
  color:var(--muted);
  line-height:1.6;
}

/* 核心表单 */
.fd-form{
  padding:30px 14px 30px;
  background:linear-gradient(180deg,#faf7f0 0%,#fff 100%);
}
.fd-form-card{
  background:#fff;
  border-radius:16px;
  padding:24px 18px 22px;
  box-shadow:0 8px 32px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
}
.fd-form-card::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:4px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
}
.fd-form-head{
  text-align:center;
  margin-bottom:22px;
}
.fd-badge{
  display:inline-block;
  background:linear-gradient(90deg,#e53935,#ff6f3f);
  color:#fff;
  font-size:10px;
  padding:3px 10px;
  border-radius:10px;
  letter-spacing:1px;
  margin-bottom:10px;
}
.fd-form-head h2{
  font-size:20px;
  font-weight:300;
  color:var(--dark);
  letter-spacing:2px;
  margin-bottom:6px;
}
.fd-form-head p{
  font-size:11px;
  color:var(--muted);
}
.fd-form-head b{
  color:var(--gold);
  font-weight:700;
  font-size:13px;
}

/* 表单字段 */
.fd-field{
  margin-bottom:18px;
}
.fd-label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:10px;
  letter-spacing:1px;
}
.fd-label em{
  color:#e53935;
  font-style:normal;
  margin-left:2px;
}

/* 面积单选卡片网格 */
.fd-radio-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
.fd-radio{
  display:block;
  cursor:pointer;
  position:relative;
}
.fd-radio input{
  position:absolute;
  opacity:0;
  inset:0;
  cursor:pointer;
}
.fd-radio-box{
  display:flex;
  flex-direction:column;
  align-items:center;justify-content:center;
  padding:10px 4px;
  background:#faf7f0;
  border:1.5px solid #ece4d0;
  border-radius:10px;
  text-align:center;
  transition:all .2s ease;
  min-height:54px;
}
.fd-radio-box b{
  font-size:12px;
  font-weight:600;
  color:var(--dark);
  line-height:1.3;
}
.fd-radio-box small{
  font-size:9px;
  color:var(--muted);
  margin-top:3px;
}
.fd-radio:hover .fd-radio-box{
  border-color:var(--gold-light);
}
.fd-radio.active .fd-radio-box{
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  border-color:var(--gold);
  color:#fff;
  box-shadow:0 4px 14px rgba(180,154,99,.3);
}
.fd-radio.active .fd-radio-box b,
.fd-radio.active .fd-radio-box small{
  color:#fff;
}
.fd-radio.active .fd-radio-box::after{
  content:"✓";
  position:absolute;
  top:4px;right:6px;
  font-size:10px;
  color:#fff;
}

/* 输入框 */
.fd-input-wrap{
  position:relative;
  border:1.5px solid #ece4d0;
  border-radius:10px;
  background:#faf7f0;
  transition:all .2s ease;
}
.fd-input-wrap.focus,
.fd-input-wrap:focus-within{
  border-color:var(--gold);
  background:#fff;
  box-shadow:0 0 0 3px rgba(180,154,99,.12);
}
.fd-input-wrap input{
  width:100%;
  height:48px;
  border:0;
  background:transparent;
  padding:0 14px;
  font-size:13px;
  color:var(--dark);
  outline:none;
}
.fd-input-wrap input::placeholder{
  color:#bbb;
}

/* 错误提示 */
.fd-error{
  font-size:11px;
  color:#e53935;
  margin-top:6px;
  padding-left:4px;
  display:none;
  line-height:1.5;
}
.fd-error.show{display:block}

/* 提交按钮 */
.fd-submit{
  display:block;
  width:100%;
  height:48px;
  border:0;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#fff;
  font-size:14px;
  font-weight:600;
  letter-spacing:2px;
  border-radius:26px;
  cursor:pointer;
  margin-top:6px;
  box-shadow:0 6px 18px rgba(180,154,99,.4);
  transition:all .2s ease;
}
.fd-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(180,154,99,.5);
}
.fd-submit:active{
  transform:translateY(0);
}

/* 协议 */
.fd-agree{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:14px;
  font-size:10px;
  color:var(--muted);
  justify-content:center;
}
.fd-agree input{
  width:14px;height:14px;
  accent-color:var(--gold);
  cursor:pointer;
}
.fd-agree label{
  cursor:pointer;
}

/* 信任标识 */
.fd-trust{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:10px;
  font-size:10px;
  color:var(--gold);
}

/* 成功弹窗 */
.fd-success-mask{
  position:fixed;inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(4px);
  z-index:200;
  display:none;
  align-items:center;justify-content:center;
  padding:20px;
}
.fd-success-mask.active{display:flex}
.fd-success-modal{
  background:#fff;
  border-radius:18px;
  padding:30px 24px 24px;
  width:100%;max-width:320px;
  text-align:center;
  animation:fdModalIn .3s ease;
}
@keyframes fdModalIn{
  from{transform:scale(.8);opacity:0}
  to{transform:scale(1);opacity:1}
}
.fs-icon{
  width:56px;height:56px;
  margin:0 auto 14px;
  border-radius:50%;
  background:linear-gradient(135deg,#4caf50,#6bc46d);
  color:#fff;
  font-size:28px;
  display:flex;align-items:center;justify-content:center;
}
.fd-success-modal h3{
  font-size:18px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:10px;
  letter-spacing:1px;
}
.fd-success-modal p{
  font-size:12px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:20px;
}
.fd-success-modal b{
  color:var(--gold);
  font-weight:600;
}
.fs-btn{
  width:100%;
  height:44px;
  border:0;
  background:var(--gold);
  color:#fff;
  font-size:13px;
  font-weight:500;
  letter-spacing:1px;
  border-radius:22px;
  cursor:pointer;
  transition:background .2s;
}
.fs-btn:hover{background:var(--gold-light)}

/* FAQ */
.fd-faq{
  padding:30px 16px 30px;
  background:#fff;
}
.fd-faq-list{
  display:flex;flex-direction:column;
  gap:10px;
}
.fd-faq-item{
  background:#faf7f0;
  border-radius:12px;
  padding:14px 14px;
  border:1px solid #ece4d0;
  transition:all .2s ease;
}
.fd-faq-item[open]{
  background:#fff;
  border-color:var(--gold-light);
  box-shadow:0 4px 14px rgba(180,154,99,.12);
}
.fd-faq-item summary{
  font-size:13px;
  font-weight:600;
  color:var(--dark);
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  line-height:1.5;
}
.fd-faq-item summary::-webkit-details-marker{display:none}
.fd-faq-item summary .ico{
  flex-shrink:0;
  width:22px;height:22px;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;
  font-weight:400;
  transition:transform .25s ease;
}
.fd-faq-item[open] summary .ico{
  transform:rotate(45deg);
}
.fd-faq-item p{
  font-size:12px;
  color:var(--muted);
  line-height:1.7;
  margin-top:10px;
  padding-top:10px;
  border-top:1px dashed #ece4d0;
}

/* 响应式调整 */
@media (max-width:360px){
  .fd-radio-grid{grid-template-columns:repeat(2,1fr)}
  .fd-points-grid{grid-template-columns:1fr}
  .fd-hero h1{font-size:26px}
}

/* ========================================================================
   获取报价 quote.html - 独有区块：参考报价区间
   复用 free-design 的 .fd-* 样式，新增 .q-* 报价区间专属样式
   ======================================================================== */

/* 参考报价区间区块 */
.q-range{
  padding:30px 16px 24px;
  background:#fff;
}
.q-range-sub{
  font-size:11px;
  color:var(--muted);
  text-align:center;
  margin-top:-12px;
  margin-bottom:18px;
  line-height:1.6;
}

/* 报价区间卡片网格 */
.q-range-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.q-range-card{
  background:linear-gradient(135deg,#faf7f0,#fff);
  border:1px solid #ece4d0;
  border-radius:12px;
  padding:14px 12px;
  position:relative;
  overflow:hidden;
  transition:all .25s ease;
}
.q-range-card:hover{
  border-color:var(--gold);
  box-shadow:0 8px 24px rgba(180,154,99,.18);
  transform:translateY(-2px);
}
.q-range-card::before{
  content:"";
  position:absolute;
  top:0;left:0;
  width:3px;height:100%;
  background:linear-gradient(180deg,var(--gold),var(--gold-light));
  opacity:.7;
}

/* 卡片头部 */
.qrc-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.qrc-head b{
  font-size:13px;
  font-weight:600;
  color:var(--dark);
  letter-spacing:1px;
}
.qrc-tag{
  font-size:9px;
  color:var(--gold);
  background:#f7f0df;
  padding:2px 6px;
  border-radius:6px;
}

/* 报价价格 */
.qrc-price{
  margin-bottom:6px;
}
.qrc-min{
  font-size:18px;
  font-weight:700;
  color:var(--gold);
  letter-spacing:1px;
  line-height:1.2;
  display:block;
}

/* 单价说明 */
.qrc-unit{
  font-size:10px;
  color:var(--muted);
  line-height:1.5;
}

/* 区间说明 */
.q-range-note{
  font-size:10px;
  color:#aaa;
  line-height:1.6;
  margin-top:14px;
  padding:0 4px;
}

/* 响应式 */
@media (max-width:360px){
  .q-range-list{grid-template-columns:1fr}
}

/* ========================================================================
   专享服务 services.html
   复用 free-design 的 .fd-hero/.fd-title/.fd-faq，新增 .sv-* 专属样式
   整页结构：Hero → 服务总览 → 5个服务模块 → 对比表 → 承诺 → CTA → FAQ
   ======================================================================== */

/* 服务总览 */
.sv-overview-sub{
  font-size:11px;
  color:var(--muted);
  text-align:center;
  margin-top:-10px;
  margin-bottom:20px;
}
.sv-icons{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:8px;
  padding:0 8px;
}
.sv-icon{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:14px 4px;
  background:#faf7f0;
  border:1px solid #ece4d0;
  border-radius:10px;
  text-align:center;
  transition:all .25s ease;
}
.sv-icon:hover{
  background:#fff;
  border-color:var(--gold);
  box-shadow:0 6px 18px rgba(180,154,99,.18);
  transform:translateY(-2px);
}
.sv-icon .ico{
  width:38px;height:38px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#fff;
  font-size:18px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:8px;
}
.sv-icon b{
  font-size:11px;
  font-weight:600;
  color:var(--dark);
  letter-spacing:1px;
}

/* 服务模块区块 */
.sv-block{
  padding:30px 16px 26px;
  background:#fff;
  scroll-margin-top:60px;
}
.sv-block.sv-alt{
  background:#faf7f0;
}
.sv-block-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}
.sv-num{
  flex-shrink:0;
  font-size:38px;
  font-weight:800;
  color:var(--gold);
  letter-spacing:-2px;
  line-height:1;
  opacity:.85;
}
.sv-cat{
  display:block;
  font-size:10px;
  color:var(--muted);
  letter-spacing:3px;
  margin-bottom:4px;
}
.sv-block-head h2{
  font-size:20px;
  font-weight:600;
  color:var(--dark);
  letter-spacing:2px;
}
.sv-block-desc{
  font-size:12px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:20px;
  padding-left:52px;
}

/* 服务特色列表 */
.sv-features{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.sv-feat{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px;
  background:#fff;
  border-radius:10px;
  border:1px solid #ece4d0;
  transition:all .2s ease;
}
.sv-block.sv-alt .sv-feat{
  background:#fff;
}
.sv-feat:hover{
  border-color:var(--gold-light);
  box-shadow:0 4px 14px rgba(180,154,99,.12);
}
.sv-feat .ico{
  flex-shrink:0;
  width:22px;height:22px;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  font-size:12px;
  display:flex;align-items:center;justify-content:center;
  margin-top:1px;
}
.sv-feat h4{
  font-size:13px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:3px;
}
.sv-feat p{
  font-size:11px;
  color:var(--muted);
  line-height:1.6;
}

/* 服务流程 */
.sv-block-flow{
  margin-top:18px;
  padding:16px 14px;
  background:rgba(180,154,99,.06);
  border-radius:10px;
}
.sv-block-flow h4{
  font-size:12px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:12px;
  letter-spacing:1px;
}
.sv-block-flow ol{
  list-style:none;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px 6px;
}
.sv-block-flow li{
  position:relative;
  padding:6px 14px 6px 12px;
  font-size:11px;
  color:var(--dark);
  background:#fff;
  border-radius:14px;
  border:1px solid #ece4d0;
  counter-increment:sv-step;
}
.sv-block-flow li::before{
  content:counter(sv-step);
  display:inline-block;
  width:16px;height:16px;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  font-size:9px;
  font-weight:700;
  text-align:center;
  line-height:16px;
  margin-right:6px;
}
.sv-block-flow ol{
  counter-reset:sv-step;
}
.sv-block-flow li:not(:last-child)::after{
  content:"›";
  color:var(--gold);
  margin-left:8px;
  font-weight:600;
}

/* 服务对比表 */
.sv-compare{
  padding:30px 14px 24px;
  background:#fff;
}
.sv-compare-table{
  border:1px solid #ece4d0;
  border-radius:12px;
  overflow:hidden;
  background:#faf7f0;
}
.svct-row{
  display:grid;
  grid-template-columns:1fr 1.2fr 1.2fr;
  border-bottom:1px solid #ece4d0;
}
.svct-row:last-child{border-bottom:0}
.svct-head{
  background:var(--dark);
  color:#fff;
}
.svct-head .svct-col{
  color:#fff;
  font-weight:600;
  border-color:rgba(255,255,255,.15);
}
.svct-col{
  padding:12px 10px;
  font-size:11px;
  color:var(--muted);
  line-height:1.5;
  border-right:1px solid #ece4d0;
}
.svct-col:last-child{border-right:0}
.svct-col.hl{
  color:var(--dark);
  font-weight:600;
  background:rgba(180,154,99,.08);
}

/* 服务承诺 */
.sv-promise{
  padding:30px 16px 24px;
  background:#faf7f0;
}
.sv-promise-list{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.sv-promise-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  background:#fff;
  border-radius:10px;
  border-left:3px solid var(--gold);
  box-shadow:0 2px 10px rgba(0,0,0,.04);
  transition:all .2s ease;
}
.sv-promise-item:hover{
  transform:translateX(2px);
  box-shadow:0 4px 16px rgba(180,154,99,.15);
}
.sv-promise-item .ico{
  flex-shrink:0;
  width:22px;height:22px;
  border-radius:50%;
  background:linear-gradient(135deg,#4caf50,#6bc46d);
  color:#fff;
  font-size:12px;
  display:flex;align-items:center;justify-content:center;
}
.sv-promise-item p{
  font-size:13px;
  font-weight:500;
  color:var(--dark);
  letter-spacing:1px;
}

/* 响应式 */
@media (max-width:360px){
  .sv-icons{grid-template-columns:repeat(3,1fr)}
  .sv-block-desc{padding-left:0}
  .sv-features{grid-template-columns:1fr}
}

/* ========================================================================
   案例欣赏 列表页 cases.html
   排版：纵向卡片 + 双关联徽章（楼盘+工作室）
   ======================================================================== */

/* Banner */
.cs-banner{
  position:relative;
  height:min(58vw,400px);
  min-height:240px;
  overflow:hidden;
  color:#fff;
  background:#1a1a1a;
}
.cs-banner .banner-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:brightness(.55);
}
.cs-banner .banner-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;padding:0 18px;
}
.cs-banner h1{
  font-size:30px;font-weight:300;
  letter-spacing:6px;
  text-shadow:0 2px 10px rgba(0,0,0,.4);
}
.cs-banner .subtitle{
  font-size:11px;letter-spacing:4px;
  color:var(--gold-light);
  margin-top:6px;
}
.cs-banner .gold-line{
  width:50px;height:2px;
  background:var(--gold);
  margin:10px 0;
}
.cs-banner .breadcrumb{
  margin-top:8px;
  font-size:11px;
  color:rgba(255,255,255,.7);
}
.cs-banner .breadcrumb a{
  color:rgba(255,255,255,.85);
}

/* 简介区 */
.cs-intro{
  padding:24px 16px 18px;
  background:#faf7f0;
  text-align:center;
}
.cs-intro h2{
  font-size:17px;font-weight:600;
  color:var(--dark);
  margin-bottom:8px;
  letter-spacing:1px;
}
.cs-intro p{
  font-size:12px;line-height:1.7;
  color:var(--muted);
  max-width:560px;margin:0 auto;
}

/* 综合筛选 */
.cs-filter{
  background:#fff;
  border-bottom:1px solid var(--line);
}
.cs-filter-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-bottom:1px solid #f5f1e6;
}
.cs-filter-row:last-child{border-bottom:0}
.csf-label{
  flex-shrink:0;
  font-size:11px;
  font-weight:600;
  color:var(--dark);
  letter-spacing:1px;
  width:46px;
}
.csf-tabs{
  display:flex;
  gap:6px;
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.csf-tabs::-webkit-scrollbar{display:none}
.csf-tab{
  flex-shrink:0;
  padding:5px 12px;
  font-size:11px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  color:#777;
  cursor:pointer;
  transition:all .2s ease;
}
.csf-tab.active{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
}

/* 列表 */
.cs-list{
  padding:14px 12px 20px;
  background:#faf7f0;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

/* 单个案例卡片 */
.cs-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(0,0,0,.06);
  transition:transform .25s ease,box-shadow .25s ease;
}
.cs-card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(180,154,99,.18);
}
.cs-cover{
  position:relative;
  display:block;
  background:#eee;
  overflow:hidden;
  aspect-ratio:16/10;
}
.cs-cover img{
  width:100%;height:100%;
  display:block;
  object-fit:cover;
  transition:transform .5s ease;
}
.cs-card:hover .cs-cover img{transform:scale(1.06)}

/* 编号水印 */
.cs-num{
  position:absolute;
  top:10px;left:10px;
  font-size:30px;
  font-weight:800;
  color:rgba(255,255,255,.5);
  line-height:1;
  letter-spacing:-1px;
}
/* 风格标 */
.cs-style{
  position:absolute;
  bottom:10px;left:10px;
  background:rgba(180,154,99,.95);
  color:#fff;
  font-size:10px;
  padding:3px 8px;
  border-radius:8px;
  letter-spacing:1px;
}
/* 精选标 */
.cs-hot{
  position:absolute;
  top:10px;right:10px;
  background:rgba(220,80,70,.95);
  color:#fff;
  font-size:10px;
  padding:3px 8px;
  border-radius:10px;
  letter-spacing:1px;
}

/* 卡片正文 */
.cs-body{
  padding:14px 14px 14px;
}
.cs-body h3{
  font-size:15px;
  font-weight:600;
  color:var(--dark);
  line-height:1.5;
  margin-bottom:8px;
  letter-spacing:1px;
}
.cs-meta{
  display:flex;
  justify-content:space-between;
  font-size:11px;
  color:var(--muted);
  margin-bottom:12px;
}
.cs-meta b{
  color:var(--dark);
  font-weight:500;
}

/* 关联信息行：楼盘 + 工作室 */
.cs-link-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-bottom:12px;
}
.cs-link{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px;
  background:#faf7f0;
  border:1px solid #ece4d0;
  border-radius:10px;
  transition:all .2s ease;
}
.cs-link:hover{
  background:#fff;
  border-color:var(--gold);
  box-shadow:0 4px 12px rgba(180,154,99,.15);
}
.cs-link .ico{
  flex-shrink:0;
  width:30px;height:30px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#fff;
  font-size:14px;
  display:flex;align-items:center;justify-content:center;
}
.cs-link div{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.cs-link small{
  font-size:9px;
  color:var(--muted);
  margin-bottom:2px;
  letter-spacing:1px;
}
.cs-link b{
  font-size:12px;
  font-weight:600;
  color:var(--dark);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* 卡片底部统计 */
.cs-card-stats{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:11px;
  color:var(--muted);
}
.cs-card-stats .ico{
  color:var(--gold);
  margin-right:2px;
}
.cs-view{
  margin-left:auto;
  font-size:11px;
  color:var(--gold);
  letter-spacing:1px;
}

/* 空状态 */
.cs-empty{
  display:none;
  flex-direction:column;
  align-items:center;
  padding:50px 20px;
  text-align:center;
}
.cs-empty .ico{
  font-size:42px;
  color:#ddd;
  margin-bottom:14px;
}
.cs-empty p{
  font-size:13px;
  color:var(--muted);
  margin-bottom:18px;
}
.cs-empty-reset{
  padding:8px 20px;
  font-size:12px;
  background:var(--gold);
  color:#fff;
  border:0;
  border-radius:18px;
  cursor:pointer;
}

/* 统计条 */
.cs-stats-bar{
  display:flex;
  background:linear-gradient(135deg,#6f6245,#8d7e5c);
  color:#fff;
  margin:0 14px 24px;
  border-radius:14px;
  overflow:hidden;
  padding:0;
  gap:0;
}
.cs-stat{
  flex:1;
  text-align:center;
  padding:18px 6px;
  position:relative;
}
.cs-stat + .cs-stat::before{
  content:"";
  position:absolute;
  left:0;top:50%;
  transform:translateY(-50%);
  width:1px;height:30px;
  background:rgba(255,255,255,.25);
}
.cs-stat b{
  display:block;
  font-size:20px;
  font-weight:700;
  margin-bottom:4px;
}
.cs-stat span{
  font-size:10px;
  color:rgba(255,255,255,.85);
  letter-spacing:1px;
}

/* ========================================================================
   案例详情页 case-detail.html
   复用 .pd-hero/.pd-title/.pd-cta/.sd-gallery/.gallery-mask/.studio-mask
   新增 .cd-* 案例详情专属样式
   ======================================================================== */

/* Hero */
.cd-hero{
  position:relative;
  height:min(70vw,500px);
  min-height:300px;
  overflow:hidden;
  color:#fff;
  background:#1a1a1a;
}
.cd-hero .hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:brightness(.55);
}
.cd-hero .hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.7) 100%);
}
.cd-hero .hero-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;flex-direction:column;
  justify-content:flex-end;
  padding:0 18px 24px;
}
.cd-style{
  display:inline-block;
  align-self:flex-start;
  background:var(--gold);
  color:#fff;
  font-size:11px;
  padding:3px 10px;
  border-radius:10px;
  letter-spacing:1px;
  margin-bottom:10px;
}
.cd-hero h1{
  font-size:24px;font-weight:600;
  letter-spacing:2px;
  text-shadow:0 2px 8px rgba(0,0,0,.4);
  margin-bottom:10px;
}
.cd-hero-meta{
  font-size:11px;
  color:rgba(255,255,255,.9);
  display:flex;align-items:center;
  flex-wrap:wrap;gap:8px;
}
.cd-hero-meta b{
  color:var(--gold-light);
  font-weight:600;
  font-size:13px;
}
.cd-hero-meta .sep{opacity:.5}

/* 互动工具栏 */
.cd-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;top:0;z-index:10;
}
.cd-toolbar .left-stats{
  display:flex;gap:14px;
  font-size:11px;color:var(--muted);
}
.cd-toolbar .left-stats .ico{
  color:var(--gold);margin-right:2px;
}
.cd-toolbar .left-stats b{
  color:var(--dark);font-weight:600;
}
.cd-toolbar .right-actions{
  display:flex;gap:8px;
}
.cd-toolbar .act-btn{
  display:flex;align-items:center;gap:3px;
  padding:6px 10px;
  font-size:11px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  color:#666;
  cursor:pointer;
  transition:all .2s ease;
}
.cd-toolbar .act-btn .ico{
  color:#999;font-size:12px;
}
.cd-toolbar .act-btn.liked{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
}
.cd-toolbar .act-btn.liked .ico{
  color:#fff;
}

/* 关联信息卡 */
.cd-related-info{
  margin:14px;
}
.cd-rel-card{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  border-radius:12px;
  padding:12px 14px;
  margin-bottom:10px;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
  transition:all .2s ease;
  position:relative;
}
.cd-rel-card:hover{
  box-shadow:0 8px 24px rgba(180,154,99,.15);
  transform:translateY(-2px);
}
.cdrc-cover{
  flex-shrink:0;
  width:60px;height:60px;
  border-radius:10px;
  background-size:cover;
  background-position:center;
  background-color:#eee;
}
.cdrc-avatar{
  border-radius:50%;
}
.cdrc-info{
  flex:1;
  min-width:0;
}
.cdrc-info small{
  display:block;
  font-size:9px;
  color:var(--gold);
  letter-spacing:1px;
  margin-bottom:3px;
}
.cdrc-info h3{
  font-size:14px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:3px;
}
.cdrc-info p{
  font-size:11px;
  color:var(--muted);
  margin-bottom:4px;
}
.cdrc-info b{
  color:var(--dark);
  font-weight:500;
}
.cdrc-meta{
  display:flex;
  gap:8px;
  font-size:10px;
  color:var(--muted);
}
.cdrc-meta span{
  background:#f5f1e6;
  padding:2px 6px;
  border-radius:6px;
}
.cdrc-arrow{
  flex-shrink:0;
  font-size:18px;
  color:var(--gold);
  font-weight:600;
}

/* 案例简介 */
.cd-intro{
  margin:14px;
  padding:18px 14px;
  background:#faf7f0;
  border-radius:12px;
}
.cd-intro-text p{
  font-size:12px;
  line-height:1.8;
  color:#555;
  margin-bottom:10px;
}
.cd-intro-text p:last-child{margin-bottom:0}

/* 设计说明 */
.cd-design{
  margin:14px;
  padding:18px 14px;
  background:#fff;
  border-radius:12px;
  border:1px solid #ece4d0;
}
.cd-design-text p{
  font-size:12px;
  line-height:1.8;
  color:#555;
  margin-bottom:10px;
}
.cd-design-text p:last-child{margin-bottom:0}

/* 图集（复用 sd-gallery 样式） */
.cd-gallery{
  margin:14px;
}

/* 同楼盘/同工作室其他案例 */
.cd-same{
  margin:20px 14px 14px;
}
.cd-same-alt{
  margin-top:14px;
}
.cd-same-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}
.cd-same-head .pd-title{
  margin-bottom:0;
}
.cd-more{
  font-size:11px;
  color:var(--gold);
  letter-spacing:1px;
}
.cd-same-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.cds-item{
  display:flex;flex-direction:column;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  transition:all .25s ease;
}
.cds-item:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(180,154,99,.15);
}
.cds-cover{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
}
.cds-cover img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}
.cds-item:hover .cds-cover img{transform:scale(1.06)}
.cds-style{
  position:absolute;
  bottom:6px;left:6px;
  background:rgba(180,154,99,.95);
  color:#fff;
  font-size:9px;
  padding:2px 6px;
  border-radius:6px;
}
.cds-info{
  padding:8px 8px 10px;
}
.cds-info h3{
  font-size:11px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:4px;
  line-height:1.4;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.cds-meta{
  display:flex;
  justify-content:space-between;
  font-size:9px;
  color:var(--muted);
}
.cd-same-empty{
  text-align:center;
  padding:20px 0;
  font-size:11px;
  color:var(--muted);
}

/* 响应式 */
@media (max-width:360px){
  .cs-link-row{grid-template-columns:1fr}
  .cd-same-list{grid-template-columns:repeat(2,1fr)}
}
/* ========================================================================
   搜索页 search
   结构：Hero（搜索框 + 热门关键词）→ 结果列表 / 空状态
   ======================================================================== */
.search-hero{
  background:linear-gradient(180deg,#efe9dc 0%,#faf7f0 100%);
  padding:34px 16px 26px;
}
.search-box-wrap{max-width:600px;margin:0 auto}
.search-box{
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:24px;
  box-shadow:0 4px 18px rgba(37,42,45,.08);
  padding:0 6px 0 16px;
  height:46px;
  border:1.5px solid transparent;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.search-box:focus-within{
  border-color:var(--gold);
  box-shadow:0 4px 18px rgba(180,154,99,.25);
}
.search-box-ico{
  color:var(--gold);
  font-size:18px;
  margin-right:10px;
  line-height:1;
}
.search-box input[type=search]{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  background:none;
  font-size:14px;
  color:var(--text);
  height:100%;
}
.search-box input[type=search]::placeholder{color:#bbb}
.search-box input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}
.search-box button{
  border:0;
  background:var(--gold);
  color:#fff;
  font-size:13px;
  font-weight:600;
  border-radius:18px;
  padding:7px 18px;
  cursor:pointer;
  margin-left:8px;
  flex:0 0 auto;
}
.search-box button:active{background:#a08753}

/* 热门搜索 */
.search-hot{
  max-width:600px;
  margin:16px auto 0;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

/* ====== 全案服务页（an-fu-wu，基于 html/5y.html） ====== */
/* 提交反馈提示条 */
.p5y-flash{
  position:fixed;top:70px;left:50%;transform:translateX(-50%);
  z-index:300;max-width:86vw;padding:10px 18px;border-radius:4px;
  font-size:12px;color:#fff;box-shadow:0 6px 20px rgba(0,0,0,.25);
  transition:opacity .6s ease;
}
.p5y-flash.ok{background:#3f8f5f}
.p5y-flash.err{background:#c0392b}

/* Hero */
.p5y-hero{position:relative;height:525px;background:#222;overflow:hidden}
.p5y-hero-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center center;filter:saturate(.88)}
.p5y-hero:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.28),transparent 26%,rgba(0,0,0,.08) 70%,rgba(0,0,0,.24));pointer-events:none}
.p5y-hero-copy{position:absolute;z-index:2;left:0;right:0;top:145px;text-align:center;color:#fff}
.p5y-hero-copy h1{margin:0;font-size:30px;line-height:1.35;font-weight:300;letter-spacing:4px;text-shadow:0 2px 12px rgba(0,0,0,.25)}
.p5y-hero-btn{position:absolute;z-index:3;right:17px;bottom:20px;color:#fff;border:1px solid rgba(255,255,255,.75);padding:8px 13px;font-size:10px;background:rgba(0,0,0,.12)}
.p5y-red-edge{height:3px;background:#e52d2e;position:relative}
.p5y-red-edge:after{content:"";position:absolute;right:11%;top:-4px;width:7px;height:7px;border-radius:50%;background:#e52d2e}

/* 区块通用（覆盖默认 .section） */
.page-5y .section{position:relative;padding:38px 16px;background:#fff}
.page-5y .section-title{margin:0;font-size:23px;line-height:1.28;font-weight:400;letter-spacing:1px;color:#222}
.page-5y .section-title strong{font-weight:500;color:#e52d2e;font-style:italic;font-size:25px}
.page-5y .en-title{font-size:7px;letter-spacing:1.2px;color:#a69c89;margin-top:8px;text-transform:uppercase}

/* 4大保障 */
.page-5y .guarantee{padding-top:32px;padding-bottom:44px}
.page-5y .guarantee-head{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:18px}
.page-5y .big-number{color:#e52d2e;font-size:26px;font-weight:500;font-style:italic;white-space:nowrap}
.page-5y .guarantee-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:#fff}
.page-5y .guarantee-card{position:relative;min-height:204px;padding:40px 12px;background:url(bg-5y-4card.jpg) no-repeat center bottom;background-size:cover;display:flex;flex-direction:column;justify-content:space-between;color:#fff}
.page-5y .g-title{font-weight:500;margin-bottom:3px}
.page-5y .g-en{font-size:12px;letter-spacing:.7px;opacity:.8;display:block}
.page-5y .g-text{font-size:12px;line-height:1.65;margin-top:28px;opacity:.92;max-width:125px}
.page-5y .g-icon{position:absolute;right:13px;bottom:13px;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#bfa369;padding:8px}
.page-5y .g-icon img{width:100%;height:100%;object-fit:contain}

/* 5大理由 */
.page-5y .reasons{background:linear-gradient(to bottom,#c1ae84,#fff 15%);padding-top:42px;padding-bottom:47px}
.page-5y .reasons:before{content:"";position:absolute;left:0;right:0;top:0;height:17px;background:#fff}
.page-5y .reasons .section-title{font-size:22px;display:block}
.page-5y .reason-list{margin-top:27px;display:flex;flex-direction:column;gap:17px}
.page-5y .reason{position:relative;display:flex;align-items:flex-end;overflow:visible}
.page-5y .reason:nth-child(even){flex-direction:row-reverse}
.page-5y .reason-img{width:50%;object-fit:cover}
.page-5y .reason-content{width:100%;padding:15px;position:relative;background:#ebebdb url(line-bg.png) no-repeat bottom;background-size:100% auto}
.page-5y .reason-no{position:absolute;right:14px;top:-24px;color:#b7a681;font-size:24px;line-height:1;text-align:right;font-style:italic;font-weight:500}
.page-5y .reason-en{font-size:10px;color:#c3b59a;letter-spacing:.7px;display:block;font-style:normal}
.page-5y .reason-title{font-size:16px;color:#9f895c;margin:5px 0 7px}
.page-5y .reason-text{font-size:12px;line-height:1.65;color:#6c675d;margin:0}
.page-5y .reason-line{position:absolute;bottom:-4px;height:2px;background:#e52d2e;width:64%}
.page-5y .reason:nth-child(odd) .reason-line{right:0}
.page-5y .reason:nth-child(even) .reason-line{left:0}
.page-5y .reason-dot{position:absolute;bottom:-7px;width:7px;height:7px;border-radius:50%;background:#e52d2e}
.page-5y .reason:nth-child(odd) .reason-dot{right:15%}
.page-5y .reason:nth-child(even) .reason-dot{left:15%}

/* 抱一宇宙 美墅天成 */
.page-5y .p5y-service{position:relative;padding:38px 0 28px;background:linear-gradient(to bottom,#c1ae84,#fff 15%);overflow:hidden}
.page-5y .service-head{padding:0 16px;display:grid;grid-template-columns:2fr 1fr;gap:8px;align-items:end}
.page-5y .service-head h2{margin:0;font-size:23px;font-weight:300;line-height:1.3;color:#222}
.page-5y .service-head p{margin:0 0 2px;font-size:14px;line-height:1.55;color:#222}
.page-5y .service-en{font-size:10px;letter-spacing:.6px;margin-top:9px;opacity:.75;line-height:1.5}
.page-5y .service-visual{position:relative;margin-top:22px}
.page-5y .service-visual:before{content:"";position:absolute;left:16px;top:18px;width:31px;height:4px;background:#fff;transform:skew(-38deg);box-shadow:10px 9px 0 rgba(255,255,255,.85),20px 18px 0 rgba(255,255,255,.7)}
.page-5y .service-photo{width:95%;margin:0 auto;display:block;object-fit:cover;object-position:center}
.page-5y .service-photo-frame{position:absolute;left:0;bottom:0;width:58%;height:70px;background:rgba(255,255,255,.45)}
.page-5y .service-line{position:absolute;right:13%;bottom:-4px;width:35%;height:2px;background:#e52d2e}
.page-5y .service-dot{position:absolute;right:12%;bottom:-7px;width:7px;height:7px;background:#e52d2e;border-radius:50%}

/* 预约表单（覆盖默认 .form-section） */
.page-5y .form-section{position:relative;padding:39px 20px 25px;background:linear-gradient(135deg,#c7b58a 0%,#d8c89e 48%,#c4b17e 100%);color:#fff;overflow:hidden}
.page-5y .form-section:before{content:"";position:absolute;inset:0;background:linear-gradient(125deg,transparent 48%,rgba(255,255,255,.08) 48%,rgba(255,255,255,.08) 67%,transparent 67%);pointer-events:none}
.page-5y .form-head{text-align:center;position:relative;z-index:1}
.page-5y .form-head h2{font-size:23px;font-weight:300;line-height:1.35;margin:0}
.page-5y .form-head p{font-size:11px;margin:6px 0 19px;opacity:.85}
.page-5y .form{position:relative;z-index:1}
.page-5y .field{height:42px;background:rgba(255,255,255,.92);margin-bottom:9px;display:flex;align-items:center;color:#8f887b}
.page-5y .field label{width:73px;padding-left:13px;font-size:10px;color:#555047;flex:0 0 auto}
.page-5y .field input{border:0;outline:0;background:transparent;flex:1;height:100%;font-size:10px;color:#5b554b;min-width:0}
.page-5y .gender{font-size:10px;color:#777168;display:flex;gap:14px;align-items:center}
.page-5y .radio{display:inline-flex;align-items:center;gap:4px;cursor:pointer}
.page-5y .radio i{width:10px;height:10px;border:1px solid #a79e91;border-radius:50%;display:inline-block;position:relative}
.page-5y .radio.active i:after{content:"";position:absolute;width:4px;height:4px;left:2px;top:2px;border-radius:50%;background:#777}
.page-5y .submit{width:100%;height:43px;border:0;background:#e52d2e;color:#fff;letter-spacing:.5px;cursor:pointer;margin-top:3px}
.page-5y .form-note{text-align:center;font-size:7px;margin-top:11px;opacity:.75}

/* 全案服务页响应式 */
@media (min-width:600px){
  .p5y-hero{height:520px}
  .p5y-hero-copy h1{font-size:34px}
  .page-5y .section{padding-left:22px;padding-right:22px}
  .page-5y .guarantee-card{min-height:170px}
  .page-5y .form-section{padding-left:30px;padding-right:30px}
}
.search-hot-label{
  font-size:11px;
  color:var(--muted);
  flex:0 0 auto;
}
.search-hot-tags{display:flex;gap:8px;flex-wrap:wrap}
.search-hot-tags.center{justify-content:center;margin-top:12px}
.search-hot-tag{
  font-size:12px;
  color:#6b5d3f;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:5px 14px;
  transition:all .2s ease;
}
.search-hot-tag:active{
  background:var(--gold);
  border-color:var(--gold);
  color:#fff;
}

/* 结果 */
.search-results{padding:20px 14px 30px;background:#faf7f0;min-height:50vh}
.search-result-meta{
  font-size:12px;
  color:var(--muted);
  margin-bottom:14px;
}
.search-result-meta b{color:var(--text)}

.search-list{display:flex;flex-direction:column;gap:12px}
.search-item{
  display:flex;
  gap:12px;
  background:#fff;
  border-radius:12px;
  padding:12px;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
  transition:transform .2s ease,box-shadow .2s ease;
}
.search-item:active{transform:scale(.985)}
.search-item-cover{
  flex:0 0 104px;
  height:82px;
  border-radius:8px;
  background-size:cover;
  background-position:center;
  background-color:#eee;
  display:flex;
  align-items:center;
  justify-content:center;
}
.search-item-cover.empty{color:#d5cdbd;font-size:24px}
.search-item-info{flex:1;min-width:0;display:flex;flex-direction:column}
.search-item-cat{
  align-self:flex-start;
  font-size:10px;
  color:var(--gold);
  border:1px solid var(--gold-light);
  border-radius:9px;
  padding:1px 8px;
  margin-bottom:6px;
}
.search-item-title{
  font-size:15px;
  font-weight:600;
  line-height:1.4;
  color:var(--text);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.search-item-title mark,
.search-item-desc mark{
  background:none;
  color:var(--gold);
  font-weight:700;
}
.search-item-desc{
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
  margin-top:4px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.search-item-meta{
  margin-top:auto;
  padding-top:6px;
  font-size:10px;
  color:#aaa;
  display:flex;
  gap:10px;
}
.search-item-meta i{font-style:normal}

/* 空状态 */
.search-empty{
  text-align:center;
  padding:70px 20px;
}
.search-empty.first{padding:30px 20px 90px}
.search-empty .ico{
  display:block;
  width:64px;
  height:64px;
  line-height:64px;
  margin:0 auto 18px;
  border-radius:50%;
  background:#fff;
  color:var(--gold-light);
  font-size:26px;
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}
.search-empty p{
  font-size:13px;
  color:var(--muted);
  line-height:1.7;
}

@media (max-width:420px){
  .search-item-cover{flex-basis:88px;height:72px}
}

/* ===== 首页 section 入场动画（JS 添加 reveal-sec 后生效，无 JS 时正常显示）===== */
.reveal-sec{
  opacity:0;
  transform:translateY(36px);
  transition:opacity .7s ease,transform .7s ease;
  will-change:opacity,transform;
}
.reveal-sec.in-view{
  opacity:1;
  transform:none;
}
@media (prefers-reduced-motion:reduce){
  .reveal-sec{transition:none;transform:none;opacity:1}
}
