.wp-topbar,
.wp-topbar *,
.wp-topbar *::before,
.wp-topbar *::after{
  box-sizing:border-box;
}

.wp-topbar{
  width:100%;
  position:relative;
  z-index:9999;
  background:linear-gradient(180deg,#080808,#13110d);
  border-bottom:1px solid rgba(232,190,108,.28);
  font-family:"Noto Sans TC","Microsoft JhengHei",system-ui,sans-serif;
}

.wp-topbar__inner{
  width:100%;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px clamp(14px,4vw,34px);
}

.wp-topbar__brand{
  display:flex;
  flex-direction:column;
  line-height:1.2;
  text-decoration:none;
}

.wp-topbar__brand span{
  display:block;
  color:#f5d89d;
  font-size:clamp(20px,2.3vw,28px);
  font-weight:900;
  letter-spacing:3px;
}

.wp-topbar__brand small{
  display:block;
  margin-top:6px;
  color:#d8b76a;
  font-size:12px;
  font-weight:800;
  letter-spacing:3px;
}

.wp-topbar__btn{
  width:74px;
  height:54px;
  min-width:74px;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:0;
  border-radius:999px;
  background:linear-gradient(180deg,#8b8574,#746c5f);
  color:#f1cc82;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  box-shadow:
    inset 0 7px 12px rgba(0,0,0,.34),
    inset 0 -3px 6px rgba(255,255,255,.12),
    0 10px 18px rgba(0,0,0,.35);
}

.wp-topbar__panel{
  display:none;
  position:absolute;
  top:calc(100% + 8px);
  left:clamp(12px,4vw,34px);
  right:clamp(12px,4vw,34px);
  z-index:10000;
  padding:14px 22px 20px;
  border:1px solid rgba(232,190,108,.28);
  border-radius:22px;
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,242,236,.98));
  box-shadow:0 18px 44px rgba(0,0,0,.5);
}

.wp-topbar__panel.is-open{
  display:block;
}

.wp-topbar__panel a{
  display:block;
  padding:15px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
  color:#b08847;
  font-size:17px;
  font-weight:800;
  line-height:1.5;
  text-decoration:none;
}

.wp-topbar__panel a:last-child{
  border-bottom:0;
}

@media (min-width:768px){
  .wp-topbar__inner{
    min-height:86px;
  }

  .wp-topbar__panel{
    left:auto;
    right:34px;
    width:min(420px,86vw);
  }
}

@media (max-width:767px){
  .wp-topbar__inner{
    justify-content:center;
  }

  .wp-topbar__btn{
    position:absolute;
    top:50%;
    left:16px;
    transform:translateY(-50%);
  }

  .wp-topbar__brand{
    text-align:center;
  }

  .wp-topbar__brand span{
    font-size:23px;
  }

  .wp-topbar__brand small{
    font-size:12px;
  }
}

.wp-main-widget,
.wp-main-widget *,
.wp-main-widget *::before,
.wp-main-widget *::after{
  box-sizing:border-box;
}

.wp-main-widget{
  width:100%;
  max-width:100%;
  margin:0;
  padding:0 0 84px;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 0%,rgba(245,204,127,.16),transparent 30%),
    radial-gradient(circle at 8% 10%,rgba(216,171,91,.10),transparent 34%),
    linear-gradient(180deg,#080807 0%,#050505 52%,#020202 100%);
  color:#f5e6c8;
  font-family:"Noto Sans TC","Microsoft JhengHei",system-ui,sans-serif;
}

.wp-main-widget img{
  width:auto;
  max-width:100%;
  height:auto;
  display:block;
}

.wp-main-widget a{
  color:#f3c86c;
  text-decoration:none;
}

.wp-main{
  width:100%;
  max-width:100%;
  margin:0;
  padding:0;
}

.wp-hero{
  width:100%;
  margin:0;
  padding:58px clamp(20px,5vw,86px) 64px;
  background:
    radial-gradient(circle at 78% 18%,rgba(245,204,127,.26),transparent 30%),
    linear-gradient(135deg,#080807 0%,#21170d 48%,#080807 100%);
}

.wp-hero-inner{
  width:100%;
  max-width:1380px;
  margin:0 auto;
}

.wp-hero-copy{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(400px,.96fr);
  grid-template-areas:
    "hero-title hero-media"
    "hero-subtitle hero-media"
    "hero-text hero-media"
    "hero-cta hero-media";
  column-gap:48px;
  row-gap:0;
  align-items:start;
  width:100%;
  min-width:0;
}

.wp-hero-copy > h1{
  grid-area:hero-title;
  min-width:0;
}

.wp-hero-copy > h2{
  grid-area:hero-subtitle;
  min-width:0;
}

.wp-hero-copy > p{
  grid-area:hero-text;
  min-width:0;
}

.wp-hero-copy > .wp-cta{
  grid-area:hero-cta;
  min-width:0;
}

.wp-hero-copy > .wp-media-card{
  grid-area:hero-media;
  align-self:center;
  justify-self:end;
  width:min(100%,540px);
  max-width:540px;
  margin:0;
}

.wp-hero-copy > .wp-media-card picture{
  display:block;
  width:100%;
}

.wp-hero-copy > .wp-media-card img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:2081 / 2561;
  object-fit:cover;
}

.wp-hero-copy h1{
  margin:0 0 18px;
  color:#f2d596;
  font-size:clamp(44px,4.6vw,76px);
  line-height:1.08;
  letter-spacing:2px;
  font-weight:900;
}

.wp-hero-copy h2{
  margin:0 0 20px;
  color:#f5dfad;
  font-size:clamp(24px,2vw,38px);
  line-height:1.35;
  font-weight:900;
}

.wp-hero-copy p{
  margin:0 0 18px;
  color:#f5e2bb;
  font-size:18px;
  line-height:2;
  font-weight:600;
}

.wp-media-card{
  position:relative;
  margin:0;
  padding:16px;
  border:1px solid rgba(216,171,91,.50);
  border-radius:34px;
  background:rgba(5,5,5,.62);
  box-shadow:0 24px 54px rgba(0,0,0,.45);
}

.wp-media-card img{
  width:100%;
  border:1px solid rgba(216,171,91,.35);
  border-radius:24px;
  object-fit:cover;
}

.wp-img-caption{
  margin:14px 6px 2px;
  color:#e8c98e;
  font-size:14px;
  line-height:1.65;
  text-align:center;
  font-weight:700;
}

.wp-cta{
  width:100%;
  max-width:980px;
  margin:26px 0 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.wp-cta a{
  position:relative;
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px 20px;
  overflow:hidden;
  border-radius:999px;
  color:rgba(255,255,255,.82);
  -webkit-text-fill-color:rgba(255,255,255,.82);
  text-align:center;
  font-size:16px;
  font-weight:800;
  letter-spacing:1px;
  background:linear-gradient(180deg,#8b8574 0%,#746c5f 100%);
  box-shadow:
    inset 0 7px 12px rgba(0,0,0,.34),
    inset 0 -3px 6px rgba(255,255,255,.12),
    0 12px 22px rgba(0,0,0,.42);
}

.wp-cta a::before{
  content:"";
  position:absolute;
  inset:0;
  padding:3px;
  border-radius:999px;
  background:linear-gradient(180deg,#fff1bf 0%,#d59532 38%,#8b4d14 62%,#ffd36a 100%);
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.wp-wrap{
  width:min(100% - 40px,1480px);
  max-width:none;
  margin:54px auto 0;
}

.wp-wide{
  width:min(100% - 40px,1560px);
}

.wp-card{
  position:relative;
  overflow:hidden;
  padding:46px 34px 52px;
  border:1px solid rgba(216,171,91,.42);
  border-radius:34px;
  background:
    radial-gradient(circle at 50% 0%,rgba(210,158,76,.18),transparent 36%),
    linear-gradient(180deg,#1b130c 0%,#070707 100%);
  box-shadow:
    inset 0 0 28px rgba(255,210,120,.045),
    0 22px 48px rgba(0,0,0,.38),
    0 0 26px rgba(216,171,91,.08);
}

.wp-card::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:33px;
  pointer-events:none;
  background:linear-gradient(135deg,rgba(255,232,170,.10),transparent 30%,rgba(214,170,88,.08));
}

.wp-card > *{
  position:relative;
  z-index:1;
}

.wp-head{
  max-width:1180px;
  margin:0 auto 34px;
  padding:34px 28px 36px;
  text-align:center;
  border:1px solid rgba(216,171,91,.65);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(65,45,25,.72),rgba(20,14,9,.9));
  box-shadow:
    inset 0 0 28px rgba(255,210,120,.08),
    0 0 22px rgba(216,171,91,.12);
}

.wp-head h2{
  margin:0 0 16px;
  color:#f5d89d;
  font-size:clamp(30px,3.5vw,48px);
  line-height:1.25;
  font-weight:900;
}

.wp-head h2:last-child{
  margin-bottom:0;
}

.wp-head p{
  margin:0;
  color:#f3e3c4;
  font-size:18px;
  line-height:1.9;
  font-weight:600;
}

.wp-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.wp-box{
  padding:26px 28px;
  border:1px solid rgba(216,171,91,.34);
  border-radius:24px;
  background:
    radial-gradient(circle at 0% 0%,rgba(216,171,91,.10),transparent 35%),
    linear-gradient(180deg,rgba(13,14,15,.96),rgba(5,5,5,.96));
  box-shadow:0 12px 26px rgba(0,0,0,.28);
}

.wp-box h2{
  margin:0 0 16px;
  color:#f5d89d;
  font-size:clamp(28px,3.2vw,44px);
  line-height:1.28;
  font-weight:900;
}

.wp-box h3{
  margin:0 0 14px;
  color:#f5d89d;
  font-size:28px;
  line-height:1.35;
  font-weight:900;
}

.wp-box p,
.wp-box li{
  color:#f4e4c3;
  font-size:17px;
  line-height:1.95;
  font-weight:600;
}

.wp-box p{
  margin:0;
}

.wp-box p + p{
  margin-top:16px;
}

.wp-box ul{
  margin:0;
  padding-left:20px;
}

.wp-touch-list{
  margin:0;
  padding:0 !important;
  list-style:none;
  display:grid;
  gap:12px;
}

.wp-touch-list li{
  padding:14px 16px;
  border:1px solid rgba(216,171,91,.26);
  border-radius:16px;
  background:rgba(0,0,0,.18);
}

.wp-related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:22px;
}

.wp-related-grid a{
  display:block;
  padding:20px;
  border:1px solid rgba(216,171,91,.38);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(13,14,15,.96),rgba(5,5,5,.96));
}

.wp-related-grid strong{
  display:block;
  margin-bottom:8px;
  color:#f5d89d;
  font-size:18px;
  line-height:1.45;
}

.wp-related-grid span{
  display:block;
  color:#f4e4c3;
  font-size:15px;
  line-height:1.75;
}

.wp-faq-title{
  margin:0 0 12px;
  color:#f5d89d;
  font-size:clamp(34px,4vw,56px);
  line-height:1.18;
  font-weight:900;
  text-align:center;
}

.wp-faq-sub{
  margin:0 0 28px;
  color:#f3e3c4;
  font-size:17px;
  line-height:1.8;
  font-weight:800;
  letter-spacing:2px;
  text-align:center;
}

.wp-faq-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.wp-faq-item{
  border:1px solid rgba(230,188,94,.65);
  border-radius:18px;
  background:linear-gradient(180deg,#111,#070707);
  overflow:hidden;
}

.wp-faq-item summary{
  list-style:none;
  cursor:pointer;
  display:grid;
  grid-template-columns:56px 1fr 24px;
  gap:16px;
  align-items:center;
  padding:18px;
}

.wp-faq-item summary::-webkit-details-marker{
  display:none;
}

.wp-faq-no{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(239,203,125,.85);
  border-radius:12px;
  background:#090909;
  color:#f2cd82;
  font-weight:900;
  transform:rotate(45deg);
}

.wp-faq-no em{
  font-style:normal;
  transform:rotate(-45deg);
}

.wp-faq-item h3{
  margin:0;
  color:#f5d89d;
  font-size:21px;
  line-height:1.45;
  font-weight:900;
}

.wp-faq-item summary b{
  color:#f2cd82;
  transition:transform .25s ease;
}

.wp-faq-item[open] summary b{
  transform:rotate(45deg);
}

.wp-faq-answer{
  padding:0 22px 24px 90px;
}

.wp-faq-answer p,
.wp-faq-answer li{
  margin:0;
  color:#f3ead8;
  font-size:16px;
  line-height:1.9;
  font-weight:600;
}

.wp-faq-answer p + p{
  margin-top:12px;
}

.wp-faq-answer ul{
  margin:0;
  padding-left:20px;
}

@media (min-width:1180px){
  .wp-card{
    padding:56px 52px 62px;
  }

  .wp-article-layout{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:20px;
    align-items:stretch;
  }

  .wp-sticky-media{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .wp-sticky-media img{
    height:100%;
    min-height:440px;
    object-fit:cover;
  }
}

@media (max-width:1024px){
  .wp-hero-copy{
    display:block;
    text-align:center;
  }

  .wp-hero-copy > .wp-media-card{
    width:min(100%,540px);
    max-width:540px;
    margin:24px auto 22px;
  }

  .wp-hero-copy > .wp-media-card picture{
    display:block;
    width:100%;
  }

  .wp-cta{
    margin-left:auto;
    margin-right:auto;
  }

  .wp-grid-2,
  .wp-faq-list{
    grid-template-columns:1fr;
  }

  .wp-related-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:767px){
  .wp-main-widget{
    padding-bottom:48px;
  }

  .wp-hero{
    padding:32px 14px 38px;
  }

  .wp-hero-copy > .wp-media-card{
    width:min(70%,294px);
    max-width:294px;
    margin:20px auto 22px;
    padding:10px;
    border-radius:24px;
  }

  .wp-hero-copy > .wp-media-card img{
    border-radius:17px;
  }

  .wp-hero-copy h1{
    font-size:34px;
    line-height:1.2;
    letter-spacing:1px;
  }

  .wp-hero-copy h2{
    font-size:22px;
  }

  .wp-hero-copy p{
    font-size:16px;
    line-height:1.9;
    text-align:left;
  }

  .wp-cta{
    grid-template-columns:1fr;
  }

  .wp-wrap,
  .wp-wide{
    width:calc(100% - 16px);
    margin-top:36px;
  }

  .wp-card{
    padding:24px 12px 32px;
    border-radius:26px;
  }

  .wp-head{
    margin-bottom:24px;
    padding:28px 18px 30px;
    border-radius:24px;
  }

  .wp-head h2{
    font-size:30px;
  }

  .wp-head p{
    font-size:16px;
    line-height:1.9;
  }

  .wp-box{
    padding:20px 14px;
    border-radius:20px;
  }

  .wp-box h2{
    font-size:27px;
  }

  .wp-box h3{
    font-size:24px;
  }

  .wp-box p,
  .wp-box li{
    font-size:16px;
    line-height:1.9;
  }

  .wp-related-grid{
    grid-template-columns:1fr;
  }

  .wp-faq-item summary{
    grid-template-columns:48px 1fr 20px;
    gap:12px;
    padding:15px;
  }

  .wp-faq-no{
    width:38px;
    height:38px;
  }

  .wp-faq-item h3{
    font-size:18px;
  }

  .wp-faq-answer{
    padding:0 16px 20px 72px;
  }

  .wp-faq-answer p,
  .wp-faq-answer li{
    font-size:15px;
  }
}