@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;800&family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

:root{
  --navy-deep: #05080c;
  --navy: #0a1119;
  --ice: #9bd4ee;
  --ice-dim: #5f7d8f;
  --white: #f5f8fa;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-bg-strong: rgba(255,255,255,0.09);
  --glass-border: rgba(255,255,255,0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ background:var(--navy-deep); }

body{
  background:var(--navy-deep);
  color:var(--white);
  font-family:'Inter','Noto Sans TC',sans-serif;
  overflow-x:hidden;
  position:relative;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

/* ---------- Glass utility ---------- */
.glass{
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
}

/* ---------- Ambient glow ---------- */
.glow{
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  pointer-events:none;
  z-index:0;
  opacity:.55;
  will-change:transform;
}
.glow--a{
  width:52vw; height:52vw;
  top:-14vw; left:-10vw;
  background:radial-gradient(circle, rgba(155,212,238,.35) 0%, rgba(155,212,238,0) 70%);
}
.glow--b{
  width:44vw; height:44vw;
  bottom:-10vw; right:-8vw;
  background:radial-gradient(circle, rgba(120,90,200,.28) 0%, rgba(120,90,200,0) 70%);
}
.grain{
  position:fixed; inset:0; z-index:1; pointer-events:none;
  opacity:.03; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Nav ---------- */
.nav{
  position:fixed;
  top:18px; left:50%;
  transform:translateX(-50%);
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
  padding:14px 26px;
  width:min(920px, 90vw);
  border-radius:999px;
  transition:background .3s ease, padding .3s ease;
}
.nav__logo{
  font-weight:800;
  letter-spacing:0.06em;
  font-size:14px;
}
.nav__links{ display:flex; align-items:center; gap:28px; }
.nav__links a{
  font-size:13px;
  letter-spacing:0.1em;
  font-weight:700;
  color:#d7e6ee;
  text-shadow:0 1px 12px rgba(0,0,0,.45);
  transition:color .25s ease, text-shadow .25s ease;
}
.nav__links a:hover{ color:var(--ice); text-shadow:0 0 16px rgba(155,212,238,.45); }
.nav__icons{ display:flex; align-items:center; gap:6px; }
.nav__icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:32px; height:32px;
  border-radius:50%;
  transition:background .25s ease, color .25s ease;
}
.nav__icon-btn svg{ width:15px; height:15px; }
.nav__icon-btn:hover{ background:var(--glass-bg-strong); }
.nav__item--dropdown{ position:relative; display:flex; align-items:center; }
.nav__dropdown-trigger{
  display:inline-flex; align-items:center; gap:5px;
  background:none; border:none; padding:0; margin:0;
  font-family:inherit; cursor:pointer;
  font-size:13px; letter-spacing:0.1em; font-weight:700;
  color:#d7e6ee; text-shadow:0 1px 12px rgba(0,0,0,.45);
  transition:color .25s ease, text-shadow .25s ease;
}
.nav__dropdown-trigger:hover{ color:var(--ice); text-shadow:0 0 16px rgba(155,212,238,.45); }
.nav__caret{ font-size:10px; transition:transform .2s ease; }
.nav__item--dropdown.is-open .nav__caret{ transform:rotate(180deg); }
.nav__dropdown-menu{
  position:absolute; top:calc(100% + 18px); left:50%;
  transform:translateX(-50%) translateY(-8px);
  min-width:190px;
  background:var(--glass-bg-strong);
  border:1px solid var(--glass-border);
  backdrop-filter:blur(24px) saturate(150%);
  -webkit-backdrop-filter:blur(24px) saturate(150%);
  border-radius:var(--radius-sm);
  padding:8px;
  display:flex; flex-direction:column; gap:2px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .2s ease, transform .2s ease, visibility .2s;
  box-shadow:0 20px 50px rgba(0,0,0,.4);
}
.nav__item--dropdown.is-open .nav__dropdown-menu{
  opacity:1; visibility:visible; pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.nav__dropdown-menu a{
  padding:10px 12px; border-radius:8px;
  font-size:13px; font-weight:600; letter-spacing:0.02em;
  white-space:nowrap; color:#d7e6ee;
  transition:background .18s ease, color .18s ease;
}
.nav__dropdown-menu a:hover{ background:rgba(155,212,238,.14); color:var(--ice); }
.nav--scrolled{
  background:var(--glass-bg-strong);
  box-shadow:0 8px 30px rgba(0,0,0,.3);
}
.nav__toggle{
  display:none;
  flex-direction:column; justify-content:center; gap:5px;
  background:none; border:none; padding:6px; margin:0; cursor:pointer;
}
.nav__toggle span{ display:block; width:20px; height:2px; background:var(--white); border-radius:2px; transition:transform .2s ease, opacity .2s ease; }
.nav.is-mobile-open .nav__toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav.is-mobile-open .nav__toggle span:nth-child(2){ opacity:0; }
.nav.is-mobile-open .nav__toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:720px){
  .nav{ flex-wrap:wrap; }
  .nav__toggle{ display:flex; }
  .nav__links{
    display:none;
    flex-basis:100%;
    flex-direction:column; align-items:stretch; gap:2px;
    margin-top:14px; padding-top:14px;
    border-top:1px solid var(--glass-border);
  }
  .nav.is-mobile-open .nav__links{ display:flex; }
  .nav__links a{ padding:10px 4px; }
  .nav__icons{ padding:6px 4px; }
  .nav__icons .nav__icon-btn{ padding:0; }
  .nav__item--dropdown{ flex-direction:column; align-items:stretch; }
  .nav__dropdown-trigger{ justify-content:space-between; width:100%; padding:10px 4px; }
  .nav__dropdown-menu{
    position:static; transform:none; opacity:1; visibility:visible; pointer-events:auto;
    max-height:0; overflow:hidden;
    background:none; border:none; backdrop-filter:none; -webkit-backdrop-filter:none; box-shadow:none;
    padding:0; margin:0 0 0 10px;
    transition:max-height .25s ease;
  }
  .nav__item--dropdown.is-open .nav__dropdown-menu{ max-height:260px; padding:2px 0 8px; transform:none; }
}

/* ---------- Side card ---------- */
.side-card{
  position:fixed;
  right:26px; top:50%;
  transform:translateY(-50%);
  z-index:200;
  border-radius:var(--radius-md);
  padding:18px 10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.side-card__dots{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.side-card__dots span{
  width:6px; height:6px;
  border-radius:50%;
  background:rgba(255,255,255,.25);
  transition:background .3s ease, transform .3s ease;
}
.side-card__dots span.is-active{
  background:var(--ice);
  transform:scale(1.4);
}
.side-card__label{
  writing-mode:vertical-rl;
  font-size:10px;
  letter-spacing:0.18em;
  color:var(--ice-dim);
  font-weight:600;
}

/* ---------- Chapters (scroll-driven) ---------- */
.chapter{
  position:relative;
  height:var(--h, 100vh);
  z-index:2;
}
.chapter:nth-of-type(1){ z-index:1; }
.chapter:nth-of-type(2){ z-index:2; }
.chapter:nth-of-type(3){ z-index:3; }

.chapter__pin{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden;
  background:var(--navy);
  border-radius:0 0 40px 40px;
}
.chapter__media{
  position:absolute;
  inset:0;
  will-change:transform;
}
.chapter__media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:50% 12%;
  position:absolute; inset:0;
}
.chapter__media--top img{
  object-position:50% 0%;
}

.chapter__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(5,8,12,.55) 0%, rgba(5,8,12,.05) 30%, rgba(5,8,12,.75) 100%);
}
.chapter__scrim--hero{
  background:
    linear-gradient(180deg, rgba(5,8,12,.4) 0%, rgba(5,8,12,.1) 35%, rgba(5,8,12,.9) 100%),
    linear-gradient(90deg, rgba(5,8,12,.5) 0%, rgba(5,8,12,0) 45%);
}

.chapter__content{
  position:absolute;
  left:6vw; bottom:14vh;
  max-width:560px;
  z-index:3;
  opacity:0;
  transform:translateY(28px);
  will-change:transform, opacity;
}
.chapter__content--hero{
  bottom:auto; top:50%;
  transform:translateY(-40%);
  opacity:1;
}
.chapter__content--right{
  left:auto; right:6vw;
  text-align:right;
}
.glass-card{
  padding:30px 32px;
  border-radius:var(--radius-lg);
}

.eyebrow{
  font-size:12px;
  letter-spacing:0.24em;
  color:var(--ice);
  font-weight:600;
  margin-bottom:16px;
}
.chapter__content--hero h1{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:900;
  font-size:clamp(42px, 9vw, 110px);
  line-height:0.95;
  color:var(--white);
  text-shadow:0 4px 40px rgba(0,0,0,.4);
}
.chapter__location{
  margin-top:16px;
  font-size:clamp(14px, 1.6vw, 18px);
  font-weight:500;
  letter-spacing:0.04em;
  color:var(--ice);
}
.chapter__sub{
  margin-top:10px;
  font-size:13px;
  letter-spacing:0.08em;
  color:var(--ice-dim);
}
.chapter__tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:0.18em;
  color:var(--ice);
  font-weight:700;
  margin-bottom:10px;
}
.chapter__content h2{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(28px, 4vw, 44px);
  margin-bottom:12px;
}
.chapter__content p{
  font-size:14px;
  line-height:1.7;
  color:#d7e6ee;
  max-width:420px;
}
.chapter__content--right p{ margin-left:auto; }

.scroll-cue{
  position:absolute;
  right:5vw; bottom:32px;
  z-index:3;
  font-size:11px;
  letter-spacing:0.25em;
  color:var(--ice-dim);
  writing-mode:vertical-rl;
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity:.4; transform:translateY(0); }
  50%{ opacity:1; transform:translateY(-6px); }
}

/* ---------- Gallery grid ---------- */
.gallery-section{
  position:relative;
  z-index:10;
  background:var(--navy-deep);
  padding-bottom:40px;
}
.section-head{
  padding:110px 5vw 36px;
  display:flex;
  align-items:baseline;
  gap:16px;
}
.section-head h1,
.section-head h2{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:900;
  font-size:clamp(26px, 3.6vw, 40px);
}
.section-head p{
  font-size:12px;
  letter-spacing:0.18em;
  color:var(--ice-dim);
  text-transform:uppercase;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  padding:0 5vw;
}
.gallery-grid--portrait{
  margin-top:16px;
}
.gcard{
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
  cursor:pointer;
  border-radius:var(--radius-md);
}
.gcard--portrait{
  aspect-ratio:3/4;
}
.gcard img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:50% 25%;
  transition:transform .7s cubic-bezier(.2,.7,.2,1);
}
.gcard::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(5,8,12,0) 55%, rgba(5,8,12,.85) 100%);
  opacity:0;
  transition:opacity .4s ease;
}
.gcard figcaption{
  position:absolute; left:18px; bottom:16px;
  z-index:2;
  font-size:13px;
  font-weight:500;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .4s ease, transform .4s ease;
}
.gcard:hover img{ transform:scale(1.06); }
.gcard:hover::after{ opacity:1; }
.gcard:hover figcaption{ opacity:1; transform:translateY(0); }

/* ---------- News banner ---------- */
.news-banner{
  position:relative;
  z-index:10;
  margin:60px 5vw 0;
}
.news-banner__card{
  border-radius:var(--radius-lg);
  padding:clamp(28px,4vw,44px);
  text-align:center;
}
.news-banner__eyebrow{
  display:inline-block;
  font-size:11px;
  letter-spacing:0.18em;
  font-weight:800;
  color:var(--ice);
  margin-bottom:14px;
}
.news-banner__card h2{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(22px, 3vw, 32px);
  margin-bottom:14px;
}
.news-banner__list{
  max-width:560px;
  margin:0 auto 24px;
  padding:0;
  list-style:none;
  text-align:left;
}
.news-banner__list li{
  font-size:18px;
  line-height:1.8;
  color:#cfe3ec;
  padding-left:20px;
  position:relative;
}
.news-banner__list li::before{
  content:'•';
  position:absolute;
  left:2px;
  color:var(--ice);
}
.news-banner__list li+li{ margin-top:6px; }
.news-banner__btn{
  display:inline-flex;
}

/* ---------- About ---------- */
.about{
  position:relative;
  z-index:10;
  margin:60px 5vw 0;
  padding:44px;
  border-radius:var(--radius-lg);
}
.about .section-head{ padding:0 0 20px; justify-content:center; }
.about--standalone{ margin-top:130px; }
@media (max-width:720px){ .about--standalone{ margin-top:110px; } }
.about__inner{ text-align:center; }
.about__brand{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(22px, 2.6vw, 30px);
  color:var(--ice);
  margin-bottom:18px;
}
.about__lead{
  max-width:640px;
  margin:0 auto 22px;
  font-family:'Noto Sans TC', sans-serif;
  font-weight:700;
  font-size:clamp(16px, 2vw, 19px);
  line-height:1.7;
  color:var(--white);
}
.about__inner > p{
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  font-size:15px;
  line-height:1.9;
  color:#cfe3ec;
  margin-bottom:14px;
}
.about__block{
  margin-top:46px;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,.1);
}
.about__block h4{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(18px, 2vw, 22px);
  color:var(--white);
  margin-bottom:16px;
  letter-spacing:0.02em;
}
.about__block p{
  font-size:15px;
  line-height:1.9;
  color:#cfe3ec;
  margin-bottom:10px;
}
.about__list{
  list-style:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin:14px 0;
}
.about__list li{
  font-size:15px;
  line-height:1.7;
  color:#e4eff4;
}
.about__list--plain li{
  color:#cfe3ec;
}
.about__list--plain li::before{
  content:'— ';
  color:var(--ice-dim);
}

.about__row{
  display:flex;
  gap:40px;
}
.about__row--split{ align-items:center; gap:56px; }
.about__row--split .about__inner{ flex:1; min-width:0; text-align:left; }
.about__row--split .about__lead{ margin:0 0 22px; max-width:none; }
.about__row--split .about__inner > p{ margin:0 0 14px; max-width:none; }
.about__media{ flex:0 0 42%; align-self:stretch; }
.about__media img{ width:100%; height:100%; min-height:360px; object-fit:cover; border-radius:var(--radius-md); display:block; }
.about__col{ flex:1; min-width:0; text-align:center; }
.about__col h4{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(16px, 1.6vw, 19px);
  color:var(--white);
  margin-bottom:14px;
  letter-spacing:0.02em;
}
.about__col p{
  font-size:15px;
  line-height:1.8;
  color:#cfe3ec;
  margin-bottom:8px;
}
.about__col .about__list{ margin:10px 0; }
.about__col .about__list li{ font-size:15px; }
.about__col .about__list--plain li{ font-size:15px; }

.partners{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.partner-card{
  padding:24px;
  border-radius:var(--radius-md);
}
.partner-card h5{
  font-size:15px;
  font-weight:700;
  color:var(--ice);
  margin-bottom:10px;
  letter-spacing:0.02em;
}
.partner-card p{
  font-size:13.5px;
  line-height:1.75;
  color:#c3d6df;
}

/* ---------- Journal ---------- */
.journal{
  position:relative;
  z-index:10;
  margin:60px 5vw 0;
  padding:44px;
  border-radius:var(--radius-lg);
}
.journal .section-head{ padding:0 0 20px; }
.journal__intro{
  max-width:640px;
  font-size:15px;
  line-height:1.8;
  color:#cfe3ec;
  margin-bottom:28px;
}
.journal__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.journal-card{
  display:block;
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease;
}
.journal-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.3);
}
.journal-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  object-position:50% 30%;
}
.journal-card__body{ padding:20px; }
.journal-card__tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--ice);
  border:1px solid rgba(155,212,238,.35);
  border-radius:999px;
  padding:3px 10px;
  margin-bottom:12px;
}
.journal-card__body h3{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:700;
  font-size:16px;
  line-height:1.5;
  margin-bottom:8px;
  color:var(--white);
}
.journal-card--title-only .journal-card__body h3{ font-size:17px; margin-bottom:0; }
.journal-card__body p{
  font-size:13.5px;
  line-height:1.7;
  color:#c3d6df;
}
.journal__more{
  display:inline-block;
  margin-top:28px;
  font-size:13px;
  letter-spacing:0.06em;
  color:var(--ice);
  border-bottom:1px solid rgba(155,212,238,.4);
  padding-bottom:2px;
}

/* ---------- Appointment ---------- */
.appointment{
  position:relative;
  z-index:10;
  margin:60px 5vw 0;
  padding:44px;
  border-radius:var(--radius-lg);
  text-align:center;
}
.appointment .section-head{
  padding:0 0 20px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.appointment__inner{
  max-width:640px;
  margin:0 auto;
}
.appointment__text{
  font-size:15px;
  line-height:1.8;
  color:#cfe3ec;
  margin-bottom:24px;
}
.appointment__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:16px 34px;
  min-height:54px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.04em;
  color:var(--white);
  transition:background .25s ease, transform .25s ease;
}
.appointment__btn--line{
  background:#06c755;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 10px 28px rgba(6,199,85,.18);
}
.appointment__btn--line:hover{
  background:#08b94f;
}
.appointment__btn:not(.appointment__btn--line):hover{
  background:var(--glass-bg-strong);
  transform:translateY(-2px);
}
/* ---------- Booking wizard ---------- */
.booking-wizard{ text-align:left; }
.booking-wizard__stepper{
  display:flex;
  align-items:flex-start;
  margin-bottom:40px;
}
.booking-wizard__step{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  flex:0 0 auto;
  opacity:.55;
  transition:opacity .2s ease;
}
.booking-wizard__step.is-active,
.booking-wizard__step.is-done{ opacity:1; }
.booking-wizard__step-num{
  width:32px; height:32px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--glass-border);
  background:var(--glass-bg);
  font-weight:700; font-size:14px;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.booking-wizard__step.is-active .booking-wizard__step-num{
  background:var(--ice); color:#07130b; border-color:var(--ice);
}
.booking-wizard__step.is-done .booking-wizard__step-num{
  background:rgba(155,212,238,.22); border-color:var(--ice); color:var(--ice);
}
.booking-wizard__step-label{ font-size:12px; color:var(--ice-dim); white-space:nowrap; }
.booking-wizard__step.is-active .booking-wizard__step-label{ color:var(--ice); font-weight:700; }
.booking-wizard__step-line{ flex:1; height:1px; background:var(--glass-border); margin-top:16px; }

.booking-wizard__main{ min-width:0; }
.booking-wizard__panel{ display:none; }
.booking-wizard__panel.is-active{ display:block; }
.booking-wizard__panel-title{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:20px;
  margin-bottom:20px;
}

.booking-plan-options{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-bottom:8px;
}
.booking-plan-option{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  padding:18px;
  border-radius:var(--radius-sm);
  border:1px solid var(--glass-border);
  background:rgba(255,255,255,.03);
  color:inherit;
  font-family:inherit;
  text-align:left;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease;
}
.booking-plan-option:hover{ border-color:rgba(155,212,238,.4); }
.booking-plan-option.is-selected{
  border-color:var(--ice);
  background:rgba(155,212,238,.1);
  box-shadow:0 0 0 1px var(--ice) inset;
}
.booking-plan-option__icon{ font-size:22px; }
.booking-plan-option__title{ font-weight:700; font-size:15px; color:var(--white); }
.booking-plan-option__desc{ font-size:12.5px; color:var(--ice-dim); line-height:1.5; }

.booking-field{ margin-bottom:18px; }
.booking-field label{
  display:block;
  font-size:13px; font-weight:600;
  color:#d8e9f1;
  margin-bottom:8px;
}
.booking-field input,
.booking-field textarea{
  width:100%;
  padding:12px 14px;
  border-radius:var(--radius-sm);
  border:1px solid var(--glass-border);
  background:rgba(255,255,255,.04);
  color:var(--white);
  font-size:14px;
  font-family:inherit;
  color-scheme:dark;
}
.booking-field input::placeholder,
.booking-field textarea::placeholder{ color:var(--ice-dim); }
.booking-field input:focus,
.booking-field textarea:focus{
  outline:none;
  border-color:var(--ice);
  background:rgba(155,212,238,.06);
}
.booking-field textarea{ resize:vertical; }

.booking-pill-group{ display:flex; gap:10px; flex-wrap:wrap; }
.booking-pill{
  padding:10px 22px;
  border-radius:999px;
  border:1px solid var(--glass-border);
  background:transparent;
  color:var(--ice-dim);
  font-size:14px;
  font-family:inherit;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.booking-pill.is-selected{
  background:var(--glass-bg-strong);
  color:var(--ice);
  border-color:var(--ice);
}

.booking-wizard__error{
  color:#ff9494;
  font-size:13px;
  margin:4px 0 0;
  min-height:1.2em;
}

.booking-wizard__actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:24px;
}
.booking-wizard__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:14px 28px;
  min-height:48px;
  border-radius:999px;
  border:1px solid var(--glass-border);
  background:var(--glass-bg);
  color:var(--white);
  font-size:14px;
  font-weight:700;
  font-family:inherit;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
  text-decoration:none;
}
.booking-wizard__btn--next,
.booking-wizard__btn--submit{
  background:var(--ice);
  color:#07130b;
  border-color:var(--ice);
}
.booking-wizard__btn--next:hover,
.booking-wizard__btn--submit:hover{ background:#fff; }
.booking-wizard__btn--prev{ background:transparent; }
.booking-wizard__btn--line{
  background:#06c755;
  color:#07130b;
  border-color:transparent;
  margin:0 auto;
}
.booking-wizard__btn--line:hover{ background:#08b94f; }
.booking-wizard__btn:disabled{ opacity:.6; cursor:default; }

.booking-wizard__confirm{ text-align:center; padding:12px 0; }
.booking-wizard__confirm-icon{ font-size:40px; margin-bottom:12px; }
.booking-wizard__confirm h3{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:20px;
  margin-bottom:10px;
}
.booking-wizard__confirm p{
  color:#cfe3ec;
  font-size:14px;
  line-height:1.75;
  max-width:480px;
  margin:0 auto 22px;
}
.booking-wizard__fallback{
  margin-top:20px;
  font-size:12.5px;
  color:var(--ice-dim);
}
.booking-wizard__fallback a{
  color:var(--ice);
  border-bottom:1px solid rgba(155,212,238,.4);
}

.booking-wizard__error-banner{
  text-align:center;
  padding:20px;
  border:1px solid rgba(255,148,148,.35);
  border-radius:var(--radius-sm);
  background:rgba(255,148,148,.08);
  font-size:13.5px;
}
.booking-wizard__error-banner a{ color:var(--ice); }

.booking-summary{
  background:rgba(255,255,255,.03);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-md);
  padding:22px;
  align-self:start;
}
.booking-summary h4{
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ice);
  margin-bottom:16px;
}
.booking-summary__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:13.5px;
}
.booking-summary__row span{ color:var(--ice-dim); }
.booking-summary__row strong{ font-weight:600; text-align:right; color:var(--white); }

/* Defensive: several elements in this wizard set an explicit `display` at the
   same specificity as the browser's default [hidden] rule, which would
   otherwise silently cancel it out. */
.booking-wizard [hidden]{ display:none !important; }

@media (max-width:820px){
}
@media (max-width:640px){
  .booking-plan-options{ grid-template-columns:1fr; }
  .booking-wizard__step-label{ display:none; }
}

/* ---------- Footer ---------- */
.contact{
  position:relative;
  z-index:10;
  padding:100px 5vw 60px;
  margin-top:60px;
  text-align:center;
}
.contact h2{
  font-weight:800;
  font-size:clamp(26px,4.5vw,44px);
  margin-bottom:12px;
}
.contact__sub{
  font-size:12px;
  letter-spacing:0.12em;
  color:var(--ice-dim);
  margin-bottom:32px;
}
.contact__links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}
.contact__icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:50%;
  color:var(--white);
  transition:background .25s ease, transform .25s ease, color .25s ease;
}
.contact__icon-btn svg{ width:24px; height:24px; }
.contact__icon-btn:hover{
  background:var(--glass-bg-strong);
  color:var(--ice);
  transform:translateY(-3px);
}

/* ---------- Lightbox ---------- */
.lightbox{
  position:fixed; inset:0; z-index:1000;
  background:rgba(5,8,12,.96);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition:opacity .35s ease;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox__img{
  max-width:88vw; max-height:82vh;
  object-fit:contain;
  border-radius:var(--radius-sm);
  box-shadow:0 20px 80px rgba(0,0,0,.6);
  opacity:0; transform:scale(.97);
  transition:opacity .3s ease, transform .3s ease;
}
.lightbox.is-open .lightbox__img{ opacity:1; transform:scale(1); }
.lightbox__close{
  position:absolute; top:24px; right:28px;
  font-size:32px; line-height:1;
  background:none; border:none; color:var(--white);
  cursor:pointer; opacity:.7; transition:opacity .2s ease;
}
.lightbox__close:hover{ opacity:1; }
.lightbox__nav{
  position:absolute; top:50%; transform:translateY(-50%);
  background:none; border:none; color:var(--white);
  font-size:44px; padding:12px 18px; cursor:pointer;
  opacity:.6; transition:opacity .2s ease;
}
.lightbox__nav:hover{ opacity:1; }
.lightbox__nav--prev{ left:6px; }
.lightbox__nav--next{ right:6px; }
.lightbox__meta{
  position:absolute; left:0; right:0; bottom:24px;
  display:flex; justify-content:center; gap:12px;
  font-size:11px; letter-spacing:0.16em; color:var(--ice-dim);
}
.lightbox__meta span:first-child{ color:var(--ice); }

/* ---------- Article (blog) ---------- */
.article-hero{
  position:relative;
  z-index:10;
  max-width:820px;
  margin:130px auto 0;
  padding:0 5vw;
}
.article-breadcrumb{
  font-size:12px;
  letter-spacing:0.08em;
  color:var(--ice-dim);
  margin-bottom:20px;
  display:inline-block;
}
.article-breadcrumb:hover{ color:var(--ice); }
.article-hero__tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--ice);
  border:1px solid rgba(155,212,238,.35);
  border-radius:999px;
  padding:4px 12px;
  margin-bottom:18px;
}
.article-hero h1{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:900;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.35;
  margin-bottom:18px;
}
.article-hero__meta{
  font-size:13px;
  color:var(--ice-dim);
  margin-bottom:32px;
}
.article-hero__image{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:var(--radius-lg);
  margin-bottom:8px;
}
.article-hero__image img{ width:100%; height:100%; object-fit:cover; }

.article-body{
  position:relative;
  z-index:10;
  max-width:820px;
  margin:0 auto;
  padding:20px 5vw 40px;
}
.article-body__lead{
  font-size:clamp(16px, 1.8vw, 18px);
  line-height:1.9;
  color:#e4eff4;
  margin-bottom:48px;
}
.article-block{
  display:flex;
  align-items:center;
  gap:44px;
  margin-bottom:56px;
}
.article-block--reverse{ flex-direction:row-reverse; }
.article-block__media{
  flex:0 0 42%;
  border-radius:var(--radius-md);
  overflow:hidden;
}
.article-block__media img{ width:100%; height:100%; object-fit:cover; }
.article-block__text{ flex:1; min-width:0; }
.article-block__text h2{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(19px, 2.2vw, 24px);
  margin-bottom:14px;
  color:var(--white);
}
.article-block__text p{
  font-size:15px;
  line-height:1.9;
  color:#cfe3ec;
  margin-bottom:12px;
}
.article-block__text ul{
  margin:12px 0 12px 20px;
}
.article-block__text li{
  font-size:15px;
  line-height:1.85;
  color:#cfe3ec;
  margin-bottom:8px;
}

.article-section{ margin-bottom:56px; }
.article-section h2{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:clamp(19px, 2.2vw, 24px);
  margin-bottom:16px;
  color:var(--white);
}
.article-section p{
  font-size:15px;
  line-height:1.9;
  color:#cfe3ec;
  margin-bottom:12px;
}
.article-section ul{ margin:12px 0 12px 20px; }
.article-section li{
  font-size:15px;
  line-height:1.85;
  color:#cfe3ec;
  margin-bottom:8px;
}
.article-table{
  width:100%;
  border-collapse:collapse;
  margin:20px 0;
  font-size:14px;
}
.article-table th, .article-table td{
  border:1px solid rgba(255,255,255,.14);
  padding:12px 14px;
  text-align:left;
  line-height:1.6;
  color:#cfe3ec;
}
.article-table th{
  color:var(--ice);
  font-weight:700;
  background:var(--glass-bg);
}

.article-cta{
  padding:36px;
  border-radius:var(--radius-lg);
  text-align:center;
  margin:56px 0 40px;
}
.article-cta p{
  font-size:16px;
  line-height:1.8;
  color:#e4eff4;
  margin-bottom:22px;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}
.article-cta__btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:0.06em;
  color:var(--white);
  transition:transform .3s ease, border-color .3s ease;
}
.article-cta__btn:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.35);
}

.article-related{
  max-width:820px;
  margin:0 auto;
  padding:0 5vw 100px;
}
.article-related h3{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:800;
  font-size:18px;
  margin-bottom:20px;
}

/* ---------- Blog index ---------- */
.blog-hero{
  position:relative;
  z-index:10;
  max-width:1100px;
  margin:130px auto 0;
  padding:0 5vw 20px;
}
.blog-hero h1{
  font-family:'Noto Sans TC', sans-serif;
  font-weight:900;
  font-size:clamp(28px, 4vw, 44px);
  margin-bottom:14px;
}
.blog-hero p{
  font-size:15px;
  line-height:1.8;
  color:#cfe3ec;
  max-width:600px;
}
.blog-grid-section{
  position:relative;
  z-index:10;
  max-width:1100px;
  margin:0 auto;
  padding:20px 5vw 100px;
}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .side-card{ display:none; }
  .chapter__content{ max-width:80vw; }
  .gallery-grid{ grid-template-columns:repeat(2, 1fr); }
  .gallery-grid--portrait{ grid-template-columns:repeat(3, 1fr); }
  .partners{ grid-template-columns:1fr; }
  .about__row{ flex-direction:column; gap:32px; }
  .about__row--split .about__inner{ text-align:center; }
  .about__row--split .about__lead,
  .about__row--split .about__inner > p{ max-width:640px; margin-left:auto; margin-right:auto; }
  .about__media{ order:-1; width:100%; }
  .about__media img{ min-height:0; aspect-ratio:4/3; }
  .journal__grid{ grid-template-columns:1fr; }
}

@media (max-width:720px){
  .nav{ gap:16px; padding:12px 20px; }
  .nav__links{ gap:14px; }
  .nav__links a{ font-size:11px; }
  .nav__dropdown-trigger{ font-size:11px; }
}

@media (max-width:560px){
  .nav{ width:92vw; padding:12px 18px; gap:20px; }
  .nav__links{ gap:16px; }
  .chapter[style*="180vh"]{ --h:150vh !important; }
  .glass-card{ padding:22px 22px; }
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-grid--portrait{ grid-template-columns:repeat(2, 1fr); }
  .gcard figcaption{ opacity:1; transform:none; }
  .gcard::after{ opacity:1; }
  .about{ padding:30px 24px; }
  .journal{ padding:30px 24px; }
  .article-block{ flex-direction:column; gap:20px; }
  .article-block--reverse{ flex-direction:column; }
  .article-block__media{ flex:0 0 auto; width:100%; aspect-ratio:16/10; }
  .article-cta{ padding:28px 22px; }
  .appointment__btn{ width:100%; padding:15px 18px; }
}

/* ---------- Booking-first service information ---------- */
.service-plans{position:relative;z-index:10;background:var(--navy-deep);padding:0 5vw 88px}
.service-plans .section-head{padding-left:0;padding-right:0}

/* Standalone policy/FAQ/news pages (linked from the 我要預約 nav dropdown) */
.policies,.faq,.news-page{position:relative;z-index:10;max-width:900px;margin:130px auto 0;padding:0 5vw 100px}
.policies .section-head,.faq .section-head,.news-page .section-head{padding-left:0;padding-right:0}
.news-list{list-style:none;display:flex;flex-direction:column;gap:18px}
.news-list__item{padding:28px 32px;border-radius:var(--radius-md)}
.news-list__item h3{font-family:'Noto Sans TC',sans-serif;font-weight:800;font-size:clamp(20px,2.6vw,26px);color:var(--white);margin-bottom:14px}
.news-list__points{list-style:none;padding:0}
.news-list__points li{font-size:15px;line-height:1.85;color:#cfe3ec;padding-left:20px;position:relative}
.news-list__points li::before{content:'•';position:absolute;left:2px;color:var(--ice)}
.news-list__points li+li{margin-top:6px}

.plans-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media (max-width:900px){ .plans-grid{ grid-template-columns:1fr; } }
.plan-preview{display:block;border-radius:var(--radius-lg);overflow:hidden;transition:transform .35s cubic-bezier(.2,.7,.2,1),border-color .35s ease}
.plan-preview:hover{transform:translateY(-4px);border-color:rgba(255,255,255,.3)}
.plan-preview img{width:100%;height:200px;object-fit:cover;object-position:50% 25%}
.plan-preview__body{padding:24px}
.plan-preview h3{font-family:'Noto Sans TC',sans-serif;font-weight:800;font-size:clamp(19px,2.2vw,22px);color:var(--white);margin-bottom:8px}
.plan-preview__desc{font-size:14px;line-height:1.7;color:#cfe3ec;margin-bottom:16px}
.plan-preview__link{display:inline-block;font-size:13px;letter-spacing:.04em;color:var(--ice);border-bottom:1px solid rgba(155,212,238,.4);padding-bottom:2px}

/* ---------- Plan detail pages (used in plans/*.html) ---------- */
.plan-premium__groups{margin-top:8px;display:grid;grid-template-columns:repeat(3,1fr);gap:24px 28px}
@media (max-width:900px){ .plan-premium__groups{ grid-template-columns:repeat(2,1fr); } }
.plan-premium__group h4{display:flex;align-items:center;gap:8px;font-size:14.5px;font-weight:700;color:var(--white);margin-bottom:10px}
.plan-premium__group h4 span{font-size:17px}
.plan-premium__group ul{list-style:none;display:flex;flex-direction:column;gap:5px}
.plan-premium__group li{font-size:13.5px;line-height:1.65;color:#c3d6df}
.plan-premium__group li::before{content:'— ';color:var(--ice-dim)}

.policy-note{max-width:900px;margin:20px auto 0;color:#9cb3c0;line-height:1.75;font-size:14px}
.faq-list,.policy-list{max-width:900px;margin:0 auto;display:grid;gap:12px}.faq-list details,.policy-list details{border-radius:var(--radius-sm);padding:0 22px}.faq-list summary,.policy-list summary{cursor:pointer;padding:20px 28px 20px 0;font-size:16px;font-weight:700;list-style:none;position:relative}.faq-list summary::-webkit-details-marker,.policy-list summary::-webkit-details-marker{display:none}.faq-list summary::after,.policy-list summary::after{content:'+';position:absolute;right:0;color:var(--ice);font-size:22px;font-weight:400;top:15px}.faq-list details[open] summary::after,.policy-list details[open] summary::after{content:'–'}.faq-list p,.policy-list p,.policy-list ul{padding:0 0 20px;color:#cfe3ec;line-height:1.75;font-size:14px}.policy-list ul{padding-left:20px}.policy-list li+li{margin-top:6px}.line-float{position:fixed;display:inline-flex;align-items:center;line-height:1;right:18px;top:62%;bottom:auto;transform:translateY(-50%);z-index:220;background:#06c755;color:#07130b!important;border:1px solid rgba(255,255,255,.7);box-shadow:0 8px 30px rgba(0,0,0,.35);border-radius:999px;padding:14px 18px;font-size:14px;font-weight:800;letter-spacing:.03em}.line-float span{margin-left:6px}
@media(max-width:720px){.plan-premium__groups{grid-template-columns:1fr}.service-plans,.policies,.faq,.news-page{padding-bottom:62px}.policies,.faq,.news-page{margin-top:110px}.line-float{right:16px;top:auto;bottom:max(16px, 15%);transform:none;padding:13px 16px}}
