*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
  color:#332d24;
  background:#fffaf3;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  background:rgba(255,250,243,.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid #eadfcd;
}

.site-logo{
  font-size:24px;
  font-weight:900;
  letter-spacing:.02em;
}

.site-header nav{
  display:flex;
  gap:18px;
}

.site-header a{
  color:#332d24;
  text-decoration:none;
  font-weight:800;
}

.hero{
  min-height:620px;
  display:flex;
  align-items:center;
  padding:80px 8%;
  background:
    radial-gradient(circle at 80% 20%, #ffe18a 0, transparent 34%),
    radial-gradient(circle at 15% 80%, #ffd6e6 0, transparent 32%),
    linear-gradient(135deg,#fffaf3,#fff2c7);
}

.hero-text{
  max-width:720px;
}

.tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #eadfcd;
  font-weight:900;
  color:#8a8174;
}

.hero h1{
  font-size:56px;
  line-height:1.08;
  margin:22px 0;
}

.hero p{
  font-size:20px;
  line-height:1.8;
  color:#6f665a;
}

.hero-btn{
  display:inline-block;
  margin-top:18px;
  padding:16px 26px;
  border-radius:999px;
  background:#f2c94c;
  color:#332d24;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 10px 24px rgba(216,169,0,.25);
}

.section{
  width:min(1080px,92%);
  margin:0 auto;
  padding:72px 0;
}

.section h2{
  font-size:38px;
  margin:0 0 18px;
}

.section-lead{
  color:#7c7163;
  font-size:17px;
  line-height:1.7;
}

.feature-grid,
.price-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:26px;
}

.price-grid{
  grid-template-columns:repeat(2,1fr);
}

.feature-card,
.price-card,
.booking-card{
  background:#fff;
  border:1px solid #eadfcd;
  border-radius:28px;
  padding:26px;
  box-shadow:0 14px 34px rgba(80,60,30,.1);
}

.feature-card h3,
.price-card h3{
  margin:0 0 12px;
  font-size:24px;
}

.feature-card p,
.price-card p{
  color:#6f665a;
  line-height:1.7;
}

.accessory-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.accessory-list span{
  padding:12px 18px;
  background:#fff;
  border:1px solid #eadfcd;
  border-radius:999px;
  font-weight:900;
}

.booking-section{
  width:min(760px,92%);
}

.booking-card label{
  display:block;
  margin:16px 0 7px;
  font-weight:900;
}

.booking-card input,
.booking-card textarea{
  width:100%;
  border:1px solid #eadfcd;
  border-radius:16px;
  padding:14px;
  font-size:16px;
  background:#fffaf3;
}

.booking-card textarea{
  min-height:100px;
  resize:vertical;
}

.booking-card button{
  width:100%;
  margin-top:22px;
  padding:16px;
  border:0;
  border-radius:18px;
  background:#f2c94c;
  color:#332d24;
  font-size:18px;
  font-weight:900;
}

footer{
  text-align:center;
  color:#8a8174;
  padding:40px 0;
  border-top:1px solid #eadfcd;
}

@media(max-width:760px){
  .site-header{
    padding:0 16px;
  }

  .site-header nav{
    gap:10px;
    font-size:14px;
  }

  .hero{
    min-height:auto;
    padding:72px 6%;
  }

  .hero h1{
    font-size:38px;
  }

  .hero p{
    font-size:17px;
  }

  .feature-grid,
  .price-grid{
    grid-template-columns:1fr;
  }
}

.lang-switch{
  display:flex;
  gap:6px;
  margin-left:12px;
}

.lang-switch button{
  border:1px solid #eadfcd;
  background:#fff;
  color:#332d24;
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
  font-weight:900;
}

.lang-switch button.active{
  background:#f2c94c;
  border-color:#d8a900;
}

@media(max-width:760px){
  .site-header{
    height:auto;
    flex-wrap:wrap;
    gap:10px;
    padding:12px 16px;
  }

  .lang-switch{
    width:100%;
    justify-content:flex-start;
    margin-left:0;
  }
}

/* 占位版块（活动/照片/玩法） */
.placeholder-box{
  border:2px dashed #d8cfc0;
  border-radius:16px;
  padding:32px 20px;
  text-align:center;
  color:#8a8174;
  font-weight:800;
  background:#faf7f2;
}

/* 照片展示：横向滚动，点击配饰跳转 */
.accessory-list span{
  cursor:pointer;
}
.photo-scroll{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:8px 4px 16px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.photo-group{
  flex:0 0 auto;
  width:min(100%,720px);
  flex-basis:min(100%,720px);
  scroll-snap-align:center;
  border:2px dashed #d8cfc0;
  border-radius:16px;
  padding:16px;
  text-align:center;
  background:#faf7f2;
}
.photo-group h3{
  margin:0 0 10px;
}
.photo-placeholder{
  height:320px;
  border-radius:12px;
  background:#eee;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#8a8174;
  font-weight:800;
}


/* 配饰与照片墙：提示紧贴配饰按钮，照片墙紧贴提示 */
.photo-scroll-hint{
  margin:14px 0 0;
  color:#7c7163;
  font-size:15px;
}
#photos{
  padding-top:8px;
}
.price-note{
  margin-top:16px;
  font-size:14px;
  color:#8a8174;
}

/* 交通：地图 + 导航按钮 + 照片占位 */
.map-box{
  margin-top:20px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
}
.map-box iframe{
  display:block;
  width:100%;
  height:320px;
  border:0;
}
.map-btn{
  display:inline-block;
  padding:14px 24px;
  background:#332d24;
  color:#fff;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
}
.map-btn:hover{
  opacity:.88;
}
.access-photos-placeholder{
  margin-top:20px;
  border:2px dashed #d8cfc0;
  border-radius:16px;
  padding:32px 20px;
  text-align:center;
  color:#8a8174;
  font-weight:800;
  background:#faf7f2;
}

.access-address{
  margin-top:12px;
  font-size:15px;
  line-height:1.8;
  color:#7c7163;
}

/* 我们这里有：特色标签 */
.feature-extra{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:28px;
}
.feature-extra span{
  padding:10px 16px;
  background:#fff;
  border:1px solid #eadfcd;
  border-radius:999px;
  font-weight:900;
  color:#4a4238;
}

/* 烫法：每种烫法一张照片 + 说明 */
.iron-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-top:20px;
}
.iron-card{
  border:2px dashed #d8cfc0;
  border-radius:16px;
  padding:16px;
  text-align:center;
  background:#faf7f2;
}
.iron-card h3{
  margin:12px 0 6px;
}
.iron-card p{
  color:#7c7163;
  font-size:14px;
  margin:0;
}
.iron-photo{
  height:160px;
  border-radius:12px;
  background:#eee;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#8a8174;
  font-weight:800;
}
