/* roulang page: index */
:root{
  --bg:#0B0806;
  --bg-2:#0E0A07;
  --surface:#17110C;
  --surface-2:#201812;
  --gold:#C89B5E;
  --gold-light:#E0B87C;
  --amber:#8A5A2B;
  --tea-green:#2E3B2F;
  --text:#F0E6D8;
  --text-dim:#9B8B78;
  --line:rgba(200,155,94,0.22);
  --line-strong:rgba(200,155,94,0.45);
  --radius-lg:24px;
  --radius-md:16px;
  --radius-sm:12px;
  --shadow-lg:0 24px 60px rgba(0,0,0,0.55);
  --shadow-gold:0 8px 30px rgba(200,155,94,0.25);
  --grad-brand:linear-gradient(135deg,#8A5A2B 0%,#C89B5E 35%,#E0B87C 50%,#C89B5E 65%,#8A5A2B 100%);
  --grad-scene:linear-gradient(160deg,rgba(11,8,6,0.85) 0%,rgba(23,17,12,0.72) 45%,rgba(46,59,47,0.38) 100%);
  --font-serif:'Noto Serif SC',Georgia,'Songti SC','SimSun',serif;
  --font-sans:'Noto Sans SC','PingFang SC','Microsoft YaHei',system-ui,sans-serif;
  --space-lg:120px;
  --space-md:80px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-sans);
  background:var(--bg);
  color:var(--text);
  font-size:16px;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;object-fit:cover;}
a{color:var(--gold);text-decoration:none;transition:color .25s ease;}
a:hover{color:var(--gold-light);text-decoration:underline;}
ul,ol{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit;}
.container{max-width:1200px;margin:0 auto;padding:0 24px;}
.section{padding:var(--space-lg) 0;position:relative;}
.section-head{margin-bottom:48px;max-width:780px;}
.section-head h2{
  font-family:var(--font-serif);
  font-size:clamp(1.75rem,3.5vw,2.5rem);
  font-weight:700;
  line-height:1.25;
  margin-bottom:16px;
  letter-spacing:.02em;
}
.section-head p{
  color:var(--text-dim);
  font-size:15px;
  line-height:1.8;
}
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--gold);
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.section-tag::before{
  content:'';
  width:28px;height:1px;
  background:var(--grad-brand);
}
.num-mark{
  font-family:Georgia,'Times New Roman',serif;
  font-size:13px;
  font-style:italic;
  color:var(--gold);
  margin-right:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 34px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  letter-spacing:.04em;
  transition:all .3s ease;
  border:1px solid transparent;
  text-decoration:none;
  min-height:44px;
}
.btn:focus-visible{
  outline:2px solid var(--gold-light);
  outline-offset:3px;
}
.btn-primary{
  background:var(--grad-brand);
  color:#1A120B;
  box-shadow:var(--shadow-gold);
  font-weight:700;
}
.btn-primary:hover{
  box-shadow:0 10px 40px rgba(200,155,94,0.4);
  transform:translateY(-2px);
  color:#1A120B;
  text-decoration:none;
}
.btn-primary:active{
  transform:scale(.98);
}
.btn-outline{
  background:rgba(11,8,6,0.5);
  border-color:var(--line-strong);
  color:var(--gold-light);
}
.btn-outline:hover{
  border-color:var(--gold-light);
  box-shadow:var(--shadow-gold);
  color:var(--gold-light);
  text-decoration:none;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:500;
  border:1px solid var(--line);
  color:var(--text-dim);
  background:transparent;
  transition:all .3s ease;
  white-space:nowrap;
}
.chip i{font-size:11px;}
.chip-live{
  background:var(--grad-brand);
  color:#1A120B;
  border-color:transparent;
  box-shadow:0 0 18px rgba(200,155,94,0.35);
  font-weight:700;
}
.chip-prev{
  background:rgba(46,59,47,0.35);
  color:rgba(240,230,216,0.75);
  border-color:rgba(200,155,94,0.16);
}
.chip-replay{
  background:rgba(240,230,216,0.08);
  color:#B8A48D;
  border-color:rgba(200,155,94,0.3);
}
.badge{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:var(--surface-2);
  border:1px solid var(--line-strong);
  border-radius:var(--radius-md);
  padding:10px 14px;
  min-width:74px;
  box-shadow:0 4px 18px rgba(0,0,0,0.3);
}
.badge-num{
  font-family:Georgia,'Times New Roman',serif;
  font-size:1.65rem;
  font-weight:700;
  color:var(--gold-light);
  line-height:1.1;
  background:var(--grad-brand);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.badge-label{
  font-size:12px;
  color:var(--text-dim);
  margin-top:2px;
}
.card-surface{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
}

/* ===== Header ===== */
.header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(11,8,6,0.72);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:background .35s ease,border-color .35s ease,box-shadow .35s ease;
}
.header.scrolled{
  background:rgba(11,8,6,0.94);
  border-bottom-color:var(--line);
  box-shadow:0 8px 30px rgba(0,0,0,0.5);
}
.header-top{
  display:flex;
  align-items:center;
  gap:20px;
  padding:14px 0;
}
.brand-logo{
  font-family:var(--font-serif);
  font-size:1.32rem;
  font-weight:900;
  letter-spacing:.04em;
  background:var(--grad-brand);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  white-space:nowrap;
  text-decoration:none;
}
.brand-logo:hover{text-decoration:none;filter:brightness(1.2);}
.brand-logo small{
  font-size:.62rem;
  font-weight:400;
  letter-spacing:.16em;
  margin-left:6px;
  -webkit-text-fill-color:var(--text-dim);
  color:var(--text-dim);
}
.main-menu{
  display:flex;
  align-items:center;
  gap:6px;
  margin-left:auto;
}
.main-menu a{
  color:var(--text-dim);
  font-size:14px;
  padding:8px 14px;
  border-radius:999px;
  transition:all .28s ease;
  white-space:nowrap;
}
.main-menu a:hover{
  color:var(--gold-light);
  background:rgba(200,155,94,0.08);
  text-decoration:none;
}
.main-menu a.active{
  color:var(--gold-light);
  font-weight:600;
  background:rgba(200,155,94,0.12);
}
.header-cta{
  margin-left:10px;
}
.nav-timeline{
  display:flex;
  align-items:center;
  gap:0;
  border-top:1px solid var(--line);
  padding:8px 0;
}
.nav-timeline-inner{
  display:flex;
  align-items:center;
  gap:0;
}
.tl-node{
  display:flex;
  align-items:center;
  gap:8px;
  padding:4px 14px;
  border-radius:999px;
  font-size:13px;
  color:var(--text-dim);
  transition:all .3s ease;
  text-decoration:none;
  position:relative;
}
.tl-node .dot{
  width:10px;height:10px;
  border-radius:50%;
  border:1px solid var(--line-strong);
  background:transparent;
  transition:all .3s ease;
}
.tl-node.active{
  color:var(--gold-light);
  background:var(--grad-brand);
  color:#1A120B;
  font-weight:600;
}
.tl-node.active .dot{
  background:#1A120B;
  border-color:#1A120B;
  box-shadow:0 0 12px rgba(255,255,255,0.6);
}
.tl-node:hover{
  color:var(--gold-light);
  text-decoration:none;
}
.tl-line{
  flex:1;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--line-strong),var(--line-strong),transparent);
  min-width:20px;
}
.hamburger{
  display:none;
  width:44px;height:44px;
  border-radius:10px;
  border:1px solid var(--line);
  color:var(--gold);
  font-size:20px;
  align-items:center;
  justify-content:center;
  transition:all .3s ease;
}
.hamburger:hover{background:rgba(200,155,94,0.12);}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:100vh;
  min-height:92svh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:150px 0 100px;
  background:
    linear-gradient(180deg,rgba(11,8,6,0.92) 0%,rgba(11,8,6,0.55) 30%,rgba(23,17,12,0.45) 60%,rgba(11,8,6,0.92) 100%),
    var(--grad-scene),
    url('/assets/images/backpic/back-1.jpg') no-repeat center center / cover;
}
.hero::before{
  content:'';
  position:absolute;
  inset:16px;
  border:1px solid rgba(200,155,94,0.32);
  border-radius:16px;
  pointer-events:none;
  z-index:1;
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}
.hero-chip-row{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:28px;
}
.hero h1{
  font-family:var(--font-serif);
  font-size:clamp(2.75rem,6vw,4.5rem);
  font-weight:900;
  line-height:1.18;
  letter-spacing:.02em;
  color:var(--text);
  margin-bottom:20px;
  text-shadow:0 4px 40px rgba(0,0,0,0.6);
}
.hero h1 .h1-sub{
  display:block;
  font-size:clamp(.85rem,1.8vw,1.35rem);
  font-weight:600;
  letter-spacing:.12em;
  color:var(--gold-light);
  margin-top:14px;
  font-family:var(--font-sans);
}
.hero-desc{
  max-width:720px;
  margin:0 auto 30px;
  color:rgba(240,230,216,0.86);
  font-size:15px;
  line-height:1.85;
}
.hero-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.hero-stats{
  display:flex;
  justify-content:center;
  gap:24px;
  margin-bottom:56px;
  flex-wrap:wrap;
}
.hero-stats .badge{min-width:110px;}
.hero-plans{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:900px;
  margin:0 auto;
  text-align:left;
}
.plan-card{
  position:relative;
  background:linear-gradient(160deg,rgba(23,17,12,0.92),rgba(32,24,18,0.96));
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px 26px;
  transition:all .35s ease;
  box-shadow:0 10px 40px rgba(0,0,0,0.4);
}
.plan-card:hover{
  transform:translateY(-6px);
  border-color:var(--line-strong);
  box-shadow:var(--shadow-gold);
}
.plan-card.recommend{
  background:linear-gradient(160deg,rgba(32,24,18,0.94),rgba(46,59,47,0.5));
  border:2px solid var(--gold);
  box-shadow:0 14px 50px rgba(200,155,94,0.28);
  transform:scale(1.03);
}
.plan-card.recommend:hover{transform:scale(1.03) translateY(-6px);}
.plan-tag{
  position:absolute;
  top:-12px;left:24px;
  background:var(--grad-brand);
  color:#1A120B;
  font-size:12px;
  font-weight:700;
  padding:4px 14px;
  border-radius:999px;
  letter-spacing:.06em;
  box-shadow:var(--shadow-gold);
}
.plan-name{
  font-size:14px;
  font-weight:600;
  color:var(--gold-light);
  letter-spacing:.1em;
  margin-bottom:6px;
}
.plan-price{
  font-family:Georgia,serif;
  font-size:2.2rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}
.plan-price small{font-size:14px;color:var(--text-dim);font-weight:400;}
.plan-features{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
}
.plan-features li{
  display:flex;
  gap:8px;
  font-size:14px;
  color:var(--text-dim);
  margin-bottom:8px;
}
.plan-features li i{color:var(--gold);font-size:12px;margin-top:5px;}
.plan-btn{
  margin-top:18px;
  width:100%;
}
.hero-scroll{
  position:absolute;
  bottom:28px;
  left:50%;
  transform:translateX(-50%);
  color:var(--text-dim);
  font-size:12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  z-index:2;
}
.hero-scroll span{
  width:1px;height:32px;
  background:linear-gradient(180deg,var(--gold),transparent);
  display:block;
}

/* ===== Benefits ===== */
.benefits{background:var(--bg-2);}
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.benefit-card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:all .35s ease;
}
.benefit-card:hover{
  transform:translateY(-6px);
  border-color:var(--line-strong);
  box-shadow:var(--shadow-gold);
}
.benefit-card .img-wrap{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
}
.benefit-card .img-wrap img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.benefit-card:hover .img-wrap img{transform:scale(1.05);}
.benefit-card .img-wrap::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(11,8,6,0.75) 100%);
}
.flag-badge{
  position:absolute;
  top:16px;right:16px;
  z-index:2;
}
.benefit-body{
  padding:26px;
}
.benefit-icon{
  width:48px;height:48px;
  border-radius:14px;
  background:rgba(200,155,94,0.12);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:var(--gold);
  margin-bottom:18px;
}
.benefit-body h3{
  font-family:var(--font-serif);
  font-size:1.3rem;
  font-weight:700;
  margin-bottom:10px;
}
.benefit-body p{
  font-size:14px;
  color:var(--text-dim);
  line-height:1.75;
}

/* ===== Story / Process ===== */
.process{background:var(--bg);}
.process-item{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:80px;
}
.process-item:last-child{margin-bottom:0;}
.process-item.reverse .process-media{order:2;}
.process-item.reverse .process-text{order:1;}
.process-media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/3;
}
.process-media img{
  width:100%;height:100%;
  object-fit:cover;
}
.process-media::after{
  content:'';
  position:absolute;inset:0;
  border:1px solid rgba(200,155,94,0.16);
  border-radius:var(--radius-lg);
  pointer-events:none;
}
.process-num{
  position:absolute;
  top:18px;left:18px;
  background:rgba(11,8,6,0.75);
  border:1px solid var(--line-strong);
  border-radius:12px;
  padding:6px 14px;
  font-family:Georgia,serif;
  font-size:14px;
  color:var(--gold-light);
  font-weight:700;
  backdrop-filter:blur(6px);
  z-index:2;
}
.process-text .step-label{
  font-size:13px;
  letter-spacing:.14em;
  color:var(--gold);
  margin-bottom:10px;
  display:block;
}
.process-text h3{
  font-family:var(--font-serif);
  font-size:1.5rem;
  font-weight:700;
  margin-bottom:14px;
}
.process-text p{
  font-size:15px;
  color:var(--text-dim);
  line-height:1.8;
  margin-bottom:18px;
}
.link-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:var(--gold);
}
.link-more i{transition:transform .3s ease;}
.link-more:hover i{transform:translateX(4px);}

/* ===== Timeline Section ===== */
.timeline-sec{
  background:var(--bg-2);
  overflow:hidden;
}
.timeline-wrap{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:48px;
  position:relative;
}
.timeline-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  position:relative;
}
.timeline-col{
  position:relative;
  padding-top:34px;
  text-align:center;
}
.timeline-col::before{
  content:'';
  position:absolute;
  top:0;left:50%;
  transform:translateX(-50%);
  width:14px;height:14px;
  border-radius:50%;
  border:2px solid var(--gold);
  background:var(--surface);
  z-index:2;
  box-shadow:0 0 0 5px rgba(200,155,94,0.12);
}
.timeline-col.warm::before{background:var(--tea-green);border-color:var(--tea-green);}
.timeline-col.live::before{
  background:var(--grad-brand);
  border-color:var(--gold-light);
  box-shadow:0 0 0 5px rgba(200,155,94,0.2),0 0 24px rgba(200,155,94,0.4);
}
.timeline-col.replay::before{background:#B8A48D;border-color:#B8A48D;}
.timeline-col + .timeline-col::after{
  content:'';
  position:absolute;
  top:7px;
  left:-16px;
  height:1px;
  background:linear-gradient(90deg,var(--line-strong),var(--line));
  width:calc(100% - 20px);
  z-index:1;
}
.timeline-status{
  display:inline-flex;
  margin-bottom:12px;
}
.timeline-col h3{
  font-family:var(--font-serif);
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:10px;
}
.timeline-col p{
  font-size:14px;
  color:var(--text-dim);
  line-height:1.7;
}
.timeline-more{
  margin-top:40px;
  text-align:center;
}

/* ===== News ===== */
.news{background:var(--bg);}
.news-wrap{
  display:grid;
  grid-template-columns:1.7fr 1fr;
  gap:48px;
}
.news-list-item{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
  transition:all .3s ease;
}
.news-list-item:first-child{padding-top:0;}
.news-list-item:last-child{border-bottom:none;}
.news-list-item a{
  font-size:16px;
  color:var(--text);
  font-weight:500;
  transition:color .25s ease;
  line-height:1.5;
}
.news-list-item a:hover{color:var(--gold);}
.news-date{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  font-size:13px;
  color:var(--text-dim);
  white-space:nowrap;
}
.news-date b{
  font-family:Georgia,serif;
  font-size:1.2rem;
  color:var(--gold-light);
}
.news-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.side-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
}
.side-card h4{
  font-size:15px;
  font-weight:700;
  color:var(--gold-light);
  margin-bottom:14px;
  letter-spacing:.06em;
}
.side-card ul li{
  padding:9px 0;
  border-bottom:1px dashed var(--line);
  font-size:14px;
}
.side-card ul li:last-child{border-bottom:none;}
.side-card ul a{color:var(--text-dim);transition:color .25s;display:block;}
.side-card ul a:hover{color:var(--gold);padding-left:6px;}
.side-card-tag{
  display:inline-block;
  font-size:12px;
  padding:3px 12px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  color:var(--gold);
  margin-bottom:8px;
}

/* ===== Social Proof ===== */
.social-proof{
  background:
    linear-gradient(rgba(11,8,6,0.9),rgba(11,8,6,0.9)),
    url('/assets/images/backpic/back-2.jpg') no-repeat center/cover;
}
.sp-story{
  max-width:680px;
  margin-bottom:32px;
  padding:24px 28px;
  background:rgba(23,17,12,0.7);
  border-left:3px solid var(--gold);
  border-radius:0 16px 16px 0;
}
.sp-story p{
  font-size:15px;
  color:rgba(240,230,216,0.88);
  font-style:italic;
  line-height:1.9;
}
.sp-stats{
  display:flex;
  justify-content:center;
  gap:32px;
  flex-wrap:wrap;
  margin-bottom:56px;
}
.sp-stats .badge{
  min-width:150px;
  padding:18px 20px;
  background:rgba(23,17,12,0.8);
  backdrop-filter:blur(6px);
}
.sp-stats .badge-num{font-size:2.2rem;}
.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.review-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px;
  position:relative;
  transition:all .3s ease;
}
.review-card:hover{
  border-color:var(--line-strong);
  box-shadow:var(--shadow-gold);
  transform:translateY(-4px);
}
.review-card .quote-mark{
  font-family:Georgia,serif;
  font-size:3.2rem;
  line-height:.6;
  color:var(--gold);
  opacity:.5;
  display:block;
  margin-bottom:14px;
}
.review-text{
  font-size:14px;
  color:var(--text-dim);
  line-height:1.8;
  margin-bottom:20px;
}
.reviewer{
  display:flex;
  align-items:center;
  gap:14px;
  border-top:1px solid var(--line);
  padding-top:16px;
}
.avatar{
  width:46px;height:46px;
  border-radius:50%;
  background:linear-gradient(135deg,#8A5A2B,#C89B5E);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-serif);
  font-weight:700;
  color:#1A120B;
  font-size:18px;
  border:1px solid rgba(255,255,255,0.2);
}
.reviewer-info .name{font-size:14px;font-weight:600;color:var(--text);}
.reviewer-info .role{font-size:12px;color:var(--text-dim);}
.stars{color:var(--gold);font-size:13px;margin-bottom:4px;}

/* ===== FAQ ===== */
.faq{background:var(--bg-2);}
.faq-wrap{
  max-width:820px;
  margin:0 auto;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item:last-child{border-bottom:none;}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px 30px;
  font-size:15px;
  font-weight:600;
  color:var(--text);
  text-align:left;
  transition:background .3s ease;
  min-height:44px;
}
.faq-q:hover{background:rgba(200,155,94,0.06);}
.faq-q i{
  color:var(--gold);
  font-size:13px;
  transition:transform .3s ease;
  flex-shrink:0;
}
.faq-item.active .faq-q i{
  transform:rotate(180deg);
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-a-inner{
  padding:0 30px 24px;
  font-size:14px;
  color:var(--text-dim);
  line-height:1.85;
}

/* ===== Booking / Final CTA ===== */
.booking{
  background:
    linear-gradient(180deg,rgba(11,8,6,0.85),rgba(23,17,12,0.9)),
    url('/assets/images/backpic/back-3.jpg') no-repeat center/cover;
  position:relative;
}
.booking-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.booking-info h2{
  font-family:var(--font-serif);
  font-size:clamp(1.75rem,3.5vw,2.3rem);
  font-weight:700;
  line-height:1.3;
  margin-bottom:18px;
}
.booking-info p{
  color:var(--text-dim);
  font-size:15px;
  line-height:1.8;
  margin-bottom:26px;
}
.booking-contact-list li{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
  font-size:14px;
  color:var(--text-dim);
}
.booking-contact-list i{
  width:40px;height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(200,155,94,0.1);
  border:1px solid var(--line);
  color:var(--gold);
  font-size:15px;
}
.booking-form-card{
  background:var(--surface);
  border:1px solid var(--line-strong);
  border-radius:var(--radius-lg);
  padding:36px;
  box-shadow:var(--shadow-lg);
}
.form-group{margin-bottom:20px;}
.form-group label{
  display:block;
  font-size:13px;
  color:var(--text-dim);
  margin-bottom:6px;
  letter-spacing:.03em;
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  background:rgba(11,8,6,0.6);
  border:1px solid var(--line);
  color:var(--text);
  font-family:inherit;
  font-size:14px;
  padding:12px 16px;
  border-radius:12px;
  transition:border-color .3s ease,box-shadow .3s ease;
  appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(200,155,94,0.18);
}
.form-group textarea{resize:vertical;min-height:80px;}
.form-group select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C89B5E' fill='none' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
}
.form-submit{width:100%;margin-top:6px;}
.form-privacy{
  font-size:12px;
  color:var(--text-dim);
  text-align:center;
  margin-top:14px;
}

/* ===== Footer ===== */
.footer{
  background:#080503;
  border-top:1px solid var(--line);
  padding:70px 0 110px;
  font-size:13px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1.3fr;
  gap:48px;
  padding-bottom:40px;
  border-bottom:1px solid var(--line);
}
.footer-brand .brand-logo{
  display:inline-block;
  margin-bottom:16px;
}
.footer-brand p{
  color:var(--text-dim);
  line-height:1.75;
  margin-bottom:16px;
  max-width:300px;
}
.footer h4{
  font-size:14px;
  font-weight:600;
  color:var(--gold-light);
  margin-bottom:18px;
  letter-spacing:.08em;
}
.footer-links li{
  margin-bottom:10px;
}
.footer-links a{
  color:var(--text-dim);
  font-size:13px;
  transition:all .25s ease;
}
.footer-links a:hover{
  color:var(--gold);
  padding-left:4px;
}
.footer-contact li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--text-dim);
  margin-bottom:12px;
  font-size:13px;
}
.footer-contact i{
  color:var(--gold);
  font-size:13px;
  margin-top:4px;
  width:16px;
}
.footer-bottom{
  padding-top:26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  color:var(--text-dim);
  font-size:13px;
}
.footer-bottom a{color:var(--text-dim);}
.footer-bottom a:hover{color:var(--gold);}
.icp{color:var(--text-dim);}

/* ===== Fixed Bar ===== */
.fixed-bar{
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:10000;
  background:rgba(11,8,6,0.96);
  backdrop-filter:blur(12px);
  border-top:1px solid var(--line);
  padding:10px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transform:translateY(100%);
  transition:transform .4s ease;
  min-height:58px;
}
.fixed-bar.visible{transform:translateY(0);}
.fixed-bar-left{
  display:flex;
  align-items:center;
  gap:14px;
}
.fixed-bar-left .fb-icon{
  width:40px;height:40px;
  border-radius:50%;
  background:var(--grad-brand);
  color:#1A120B;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
}
.fixed-bar-left .fb-text strong{
  font-size:14px;
  color:var(--text);
  font-weight:700;
}
.fixed-bar-left .fb-text span{
  font-size:12px;
  color:var(--text-dim);
  display:block;
}
.fixed-bar .btn{
  padding:12px 28px;
  font-size:14px;
  min-width:110px;
}

/* ===== Responsive ===== */
@media (max-width:1024px){
  :root{--space-lg:96px;--space-md:60px;}
  .main-menu{display:none;}
  .main-menu.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;right:0;
    background:rgba(11,8,6,0.98);
    padding:16px 24px 24px;
    border-bottom:1px solid var(--line);
    box-shadow:0 20px 40px rgba(0,0,0,0.6);
    gap:2px;
  }
  .main-menu.open a{
    display:block;
    padding:14px 16px;
    font-size:15px;
  }
  .hamburger{
    display:flex;
    margin-left:8px;
  }
  .header-cta{margin-left:auto;}
  .nav-timeline{
    overflow-x:auto;
    scrollbar-width:none;
  }
  .nav-timeline::-webkit-scrollbar{display:none;}
  .hero-plans{grid-template-columns:1fr;max-width:500px;}
  .plan-card.recommend{order:-1;}
  .process-item{grid-template-columns:1fr;gap:36px;}
  .process-item.reverse .process-media{order:0;}
  .process-item.reverse .process-text{order:0;}
  .news-wrap{grid-template-columns:1fr;}
  .review-grid{grid-template-columns:repeat(2,1fr);}
  .timeline-row{grid-template-columns:1fr;}
  .timeline-col::before{left:0;transform:none;}
  .timeline-col + .timeline-col::after{
    top:-26px;left:6px;
    width:1px;height:40px;
  }
  .booking-inner{grid-template-columns:1fr;gap:40px;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px;}
}
@media (max-width:768px){
  .section{padding:64px 0;}
  .benefits-grid{grid-template-columns:1fr;}
  .review-grid{grid-template-columns:1fr;}
  .sp-stats{gap:16px;}
  .timeline-wrap{padding:32px 24px;}
  .hero-stats{gap:14px;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .hero-actions .btn{width:100%;}
  .hero-plans{gap:16px;}
  .fixed-bar{
    padding:8px 16px;
  }
  .fixed-bar-left .fb-text span{display:none;}
  .fixed-bar .btn{
    padding:10px 22px;
    font-size:14px;
  }
  .nav-timeline-inner{width:100%;justify-content:space-between;}
  .tl-node{padding:6px 10px;font-size:12px;}
}
@media (max-width:520px){
  :root{--space-lg:56px;--space-md:40px;}
  .container{padding:0 20px;}
  .section-head h2{font-size:1.6rem;}
  .hero h1{font-size:2rem;}
  .hero h1 .h1-sub{font-size:.82rem;}
  .brand-logo{font-size:1.05rem;}
  .brand-logo small{display:none;}
  .header-top{padding:10px 0;}
  .header-cta .btn{padding:10px 18px;font-size:13px;}
  .booking-form-card{padding:24px;}
  .review-card{padding:24px;}
  .side-card{padding:20px;}
}
