:root {
  --color-red: #e60012;
  --color-black: #111111;
  --color-gray: #f4f4f4;
  --color-gold: #b68b2d;
  --color-text: #202124;
  --color-muted: #666666;
  --color-line: #dddddd;
  --layout-width: 1160px;
  color: var(--color-text);
  font-family:
    "Noto Sans TC",
    "Microsoft JhengHei",
    "PingFang TC",
    Arial,
    sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  width: 5px;
  background: var(--color-red);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--color-black);
}

.brand__mark {
  width: 34px;
  height: 34px;
  border: 3px solid var(--color-red);
  border-radius: 50%;
  position: relative;
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  border: 2px solid var(--color-red);
  border-radius: 50%;
}

.brand__mark::before {
  inset: 7px 3px;
}

.brand__mark::after {
  inset: 3px 10px;
}

.brand__name {
  font-size: 22px;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav__link,
.header-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-bottom: 3px solid transparent;
  font-size: 15px;
  font-weight: 700;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--color-red);
  border-bottom-color: var(--color-red);
}

.header-action {
  color: #ffffff;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 4px;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 54%, #f3f3f3 54%, #f3f3f3 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: var(--color-red);
  z-index: -1;
}

.hero__inner {
  width: min(var(--layout-width), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 54px;
  align-items: center;
  padding: 72px 0 56px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__media {
  position: relative;
  min-height: 520px;
  padding: 18px 0 42px 44px;
}

.hero__media::before {
  content: "";
  position: absolute;
  top: 54px;
  right: -96px;
  bottom: 0;
  width: 82%;
  background:
    linear-gradient(135deg, rgba(230, 0, 18, 0.18), rgba(255, 255, 255, 0) 34%),
    var(--color-black);
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo--main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 390px;
  border: 10px solid #ffffff;
  border-radius: 4px;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.18);
}

.hero-photo-strip {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 46px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-photo--supporting {
  overflow: hidden;
  height: 154px;
  border: 8px solid #ffffff;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.hero-photo--supporting:first-child img {
  object-position: center;
}

.hero-photo--supporting:last-child img {
  object-position: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.activity-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.activity-status--active {
  color: var(--color-red);
  background: rgba(230, 0, 18, 0.08);
}

.activity-status--upcoming {
  color: var(--color-gold);
  background: rgba(182, 139, 45, 0.12);
}

.activity-status--ended {
  color: #666666;
  background: rgba(0, 0, 0, 0.06);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--color-black);
  font-size: 56px;
  line-height: 1.08;
  font-weight: 900;
}

.hero__subtitle {
  max-width: 560px;
  margin-bottom: 32px;
  color: #333333;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.hero__actions,
.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 152px;
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid var(--color-red);
  font-weight: 800;
}

.button--primary {
  color: #ffffff;
  background: var(--color-red);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #bd0010;
  border-color: #bd0010;
}

.button--secondary {
  color: var(--color-red);
  background: rgba(255, 255, 255, 0.76);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: #ffffff;
}

.highlight-band {
  background: var(--color-black);
  color: #ffffff;
}

.highlight-band__inner {
  width: min(var(--layout-width), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.highlight {
  min-height: 112px;
  padding: 28px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.highlight strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
}

.section {
  width: min(var(--layout-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.section--intro {
  padding-bottom: 40px;
}

.section__head {
  max-width: 680px;
  margin-bottom: 32px;
}

.section__head h2,
.booking h2 {
  margin-bottom: 12px;
  color: var(--color-black);
  font-size: 34px;
  line-height: 1.25;
  font-weight: 900;
}

.section__head--light h2 {
  color: #ffffff;
}

.section--dark {
  width: 100%;
  max-width: none;
  padding: 72px max(24px, calc((100% - var(--layout-width)) / 2));
  background:
    linear-gradient(135deg, rgba(230, 0, 18, 0.16), rgba(255, 255, 255, 0) 35%),
    var(--color-black);
}

.summary-grid,
.prize-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.summary-item,
.product,
.prize {
  border-radius: 8px;
  border: 1px solid var(--color-line);
  background: #ffffff;
}

.summary-item {
  padding: 26px;
  border-top: 5px solid var(--color-red);
}

.summary-item h3,
.product h3,
.service-item h3,
.step h3 {
  margin-bottom: 10px;
  color: var(--color-black);
  font-size: 20px;
  line-height: 1.35;
}

.summary-item p,
.product p,
.service-item p,
.step p,
.booking p,
.faq-list p {
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.visual-carousel {
  width: min(var(--layout-width), calc(100% - 48px));
  margin: 18px auto 0;
  padding: 32px 0 72px;
}

.visual-carousel__intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.visual-carousel__intro h2 {
  margin: 0;
  color: var(--color-black);
  font-size: 34px;
  line-height: 1.25;
  font-weight: 900;
}

.visual-carousel__intro p:last-child {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.visual-carousel__stage {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-black);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.visual-carousel__track {
  position: relative;
  min-height: 520px;
}

.visual-slide {
  position: absolute;
  inset: 0;
  min-height: 520px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.visual-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.visual-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.visual-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.68) 34%,
      rgba(0, 0, 0, 0.2) 66%,
      rgba(0, 0, 0, 0.02) 100%
    );
}

.visual-slide__copy {
  position: absolute;
  z-index: 1;
  left: 44px;
  bottom: 98px;
  max-width: 420px;
  color: #ffffff;
}

.visual-slide__copy span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 11px;
  color: #ffffff;
  background: var(--color-red);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.visual-slide__copy h3 {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.24;
  font-weight: 900;
}

.visual-slide__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.visual-carousel__controls {
  position: absolute;
  z-index: 2;
  inset: auto 28px 28px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.carousel-button,
.carousel-dot {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.carousel-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--color-red);
  border-color: var(--color-red);
}

.carousel-button span {
  display: block;
  transform: translateY(-1px);
  font-size: 34px;
  line-height: 1;
}

.carousel-dots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.carousel-dot {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.carousel-dot::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: transparent;
}

.carousel-dot.is-active {
  color: #ffffff;
  background: rgba(230, 0, 18, 0.64);
  border-color: rgba(230, 0, 18, 0.9);
}

.carousel-dot.is-active::before {
  background: #ffffff;
}

.carousel-dot span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section--split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--color-line);
}

.step:last-child {
  border-bottom: 1px solid var(--color-line);
}

.step__number {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--color-red);
  border-radius: 4px;
  font-weight: 900;
}

.prize {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.14);
  background: #ffffff;
}

.prize::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--color-red);
}

.prize__tier,
.product__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.prize__tier {
  color: var(--color-black);
  background: #f1e4c1;
}

.prize h3 {
  min-height: 64px;
  margin-bottom: 10px;
  color: var(--color-black);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 900;
}

.prize strong {
  display: block;
  margin-bottom: 16px;
  color: var(--color-red);
  font-size: 18px;
}

.prize p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.product {
  min-height: 330px;
  padding: 28px;
}

.product__tag {
  color: var(--color-red);
  background: rgba(230, 0, 18, 0.08);
}

.product ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product li {
  position: relative;
  padding-left: 20px;
  color: #333333;
  line-height: 1.55;
}

.product li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--color-red);
}

.section--service {
  background:
    linear-gradient(90deg, var(--color-gray), var(--color-gray)) left top /
      100% 54% no-repeat;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
}

.service-item span {
  width: 40px;
  height: 40px;
  background:
    linear-gradient(90deg, transparent 45%, var(--color-red) 45% 55%, transparent 55%),
    linear-gradient(transparent 45%, var(--color-red) 45% 55%, transparent 55%),
    #f8e6e8;
  border-radius: 50%;
}

.section--faq {
  padding-top: 16px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--color-black);
  font-weight: 900;
}

details p {
  padding: 0 24px 22px;
}

.booking {
  width: min(var(--layout-width), calc(100% - 48px));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 38px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.72)),
    var(--color-black);
  border-left: 8px solid var(--color-red);
  border-radius: 8px;
}

.booking .eyebrow,
.booking h2,
.booking p {
  color: #ffffff;
}

.section--notes {
  padding-top: 40px;
}

.note-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
  color: #555555;
  line-height: 1.75;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  padding: 30px 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-black);
  font-size: 14px;
}

.footer strong {
  color: #ffffff;
}

.noscript {
  padding: 32px;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 24px;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .hero {
    min-height: 68vh;
    background:
      linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f3f3f3 58%, #f3f3f3 100%);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__media {
    min-height: 460px;
    padding-left: 0;
  }

  .hero__media::before {
    right: -24px;
    width: 90%;
  }

  .hero-photo--main {
    height: 340px;
  }

  .hero-photo-strip {
    right: 24px;
  }

  h1 {
    font-size: 44px;
  }

  .highlight-band__inner,
  .summary-grid,
  .prize-grid,
  .product-grid,
  .service-list,
  .visual-carousel__intro {
    grid-template-columns: 1fr;
  }

  .visual-carousel__stage,
  .visual-carousel__track,
  .visual-slide {
    min-height: 460px;
  }

  .visual-slide img {
    height: 460px;
  }

  .visual-slide__copy {
    left: 30px;
    right: 30px;
    bottom: 118px;
  }

  .visual-carousel__controls {
    grid-template-columns: auto auto;
  }

  .carousel-dots {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .highlight,
  .highlight:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section--split,
  .booking {
    grid-template-columns: 1fr;
  }

  .booking__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body::before {
    width: 4px;
  }

  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .brand__name {
    font-size: 19px;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .site-nav__link {
    min-width: max-content;
    padding: 0 12px;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner,
  .section,
  .highlight-band__inner,
  .booking,
  .visual-carousel {
    width: min(100% - 32px, var(--layout-width));
  }

  .hero__inner {
    padding: 54px 0 52px;
  }

  .hero__media {
    min-height: 392px;
    padding-bottom: 30px;
  }

  .hero__media::before {
    top: 42px;
    right: -18px;
    width: 88%;
  }

  .hero-photo--main {
    height: 260px;
    border-width: 7px;
  }

  .hero-photo-strip {
    right: 12px;
    gap: 10px;
  }

  .hero-photo--supporting {
    height: 120px;
    border-width: 6px;
  }

  h1 {
    font-size: 35px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .visual-carousel {
    padding: 18px 0 54px;
  }

  .section__head h2,
  .booking h2,
  .visual-carousel__intro h2 {
    font-size: 28px;
  }

  .visual-carousel__stage,
  .visual-carousel__track,
  .visual-slide {
    min-height: 500px;
  }

  .visual-slide img {
    height: 500px;
  }

  .visual-slide::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.18) 34%,
        rgba(0, 0, 0, 0.86) 100%
      );
  }

  .visual-slide__copy {
    left: 22px;
    right: 22px;
    bottom: 122px;
  }

  .visual-slide__copy h3 {
    font-size: 26px;
  }

  .visual-carousel__controls {
    inset: auto 16px 18px;
  }

  .carousel-dots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button {
    width: 100%;
  }

  .step {
    grid-template-columns: 56px 1fr;
  }

  .summary-item,
  .product,
  .prize,
  .service-item,
  .booking {
    padding: 22px;
  }
}
