:root {
  --ink: #151716;
  --muted: #666c68;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dedbd1;
  --teal: #006b63;
  --teal-dark: #06443f;
  --gold: #c78d3a;
  --coral: #b94f3d;
  --night: #171311;
  --shadow: 0 18px 50px rgba(23, 19, 17, 0.16);
  color-scheme: light;
  font-family:
    "Noto Sans TC",
    "PingFang TC",
    "Microsoft JhengHei",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(18, 17, 15, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  background: #fff;
  color: var(--teal-dark);
  border-radius: 6px;
  font-weight: 800;
}

.nav-cta svg,
.btn svg,
.trust-band svg,
.contact-row svg,
.mobile-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: clamp(680px, 92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 15, 13, 0.9) 0%, rgba(15, 15, 13, 0.66) 36%, rgba(15, 15, 13, 0.22) 68%, rgba(15, 15, 13, 0.12) 100%),
    linear-gradient(0deg, rgba(15, 15, 13, 0.82) 0%, rgba(15, 15, 13, 0.12) 44%, rgba(15, 15, 13, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 140px clamp(18px, 4vw, 36px) 48px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #171311;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-dark {
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  background: var(--ink);
  color: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 800px;
  margin: 46px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  min-height: 96px;
  padding: 20px;
  background: rgba(18, 17, 15, 0.66);
}

.hero-facts dt {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero-facts dd {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band article {
  padding: clamp(28px, 5vw, 48px);
  background: var(--surface);
}

.trust-band svg {
  width: 30px;
  height: 30px;
  color: var(--teal);
}

.trust-band h2 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.trust-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section {
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.split-section,
.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-intro p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.section-intro.compact {
  max-width: 760px;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-item {
  min-height: 178px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 19, 17, 0.05);
}

.service-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-item h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-board {
  padding: clamp(28px, 5vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-board p {
  margin: 0 0 8px;
  color: var(--muted);
}

.price-board strong {
  display: block;
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.price-board span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.area-section {
  padding-bottom: clamp(48px, 7vw, 84px);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  background: #e9f3ef;
  color: var(--teal-dark);
  border: 1px solid #bdd8ce;
  border-radius: 999px;
  font-weight: 800;
}

.booking-section {
  border-top: 1px solid var(--line);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: booking;
}

.booking-steps li {
  counter-increment: booking;
  min-height: 150px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-steps li::before {
  content: counter(booking, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 900;
}

.booking-steps strong,
.booking-steps span {
  display: block;
}

.booking-steps strong {
  font-size: 21px;
}

.booking-steps span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.compare-section {
  padding-top: 0;
}

.compare-table {
  margin-top: 28px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(110px, 0.55fr) minmax(160px, 1fr) minmax(180px, 1.15fr);
  border-bottom: 1px solid var(--line);
}

.compare-table [role="row"]:last-child {
  border-bottom: 0;
}

.compare-table span {
  padding: 18px;
  line-height: 1.65;
  border-right: 1px solid var(--line);
}

.compare-table span:last-child {
  border-right: 0;
}

.compare-table [role="columnheader"] {
  background: var(--teal-dark);
  color: #fff;
  font-weight: 850;
}

.compare-table [role="cell"] {
  color: var(--muted);
}

.compare-table [role="cell"]:first-child {
  color: var(--ink);
  font-weight: 850;
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding: clamp(52px, 8vw, 86px) clamp(18px, 4vw, 56px);
  background: var(--night);
  color: #fff;
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 54px);
}

.contact-section p:not(.section-kicker) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.contact-grid {
  display: grid;
  gap: 12px;
}

.contact-row {
  display: grid;
  grid-template-columns: 24px minmax(54px, 80px) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 74px;
  width: 100%;
  padding: 18px;
  text-align: left;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.contact-row span {
  color: rgba(255, 255, 255, 0.66);
}

.contact-row strong {
  font-size: clamp(18px, 3vw, 24px);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #0e0d0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
}

.mobile-contact {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mobile-contact a,
.mobile-contact button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  color: var(--ink);
  background: #f3f0e8;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
}

.mobile-contact a:nth-child(2) {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(320px, calc(100vw - 36px));
  padding: 12px 16px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .btn,
  .nav-cta,
  .contact-row,
  .mobile-contact a,
  .mobile-contact button {
    transition:
      transform 160ms ease,
      box-shadow 160ms ease,
      background-color 160ms ease,
      border-color 160ms ease;
  }

  .btn:hover,
  .nav-cta:hover,
  .contact-row:hover,
  .mobile-contact a:hover,
  .mobile-contact button:hover {
    transform: translateY(-1px);
  }

  .btn-primary:hover {
    box-shadow: 0 14px 28px rgba(199, 141, 58, 0.28);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 116px;
  }

  .hero-facts,
  .trust-band,
  .pricing-section,
  .contact-section,
  .split-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .nav-cta svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 15, 13, 0.9) 0%, rgba(15, 15, 13, 0.72) 56%, rgba(15, 15, 13, 0.42) 100%),
      linear-gradient(0deg, rgba(15, 15, 13, 0.86) 0%, rgba(15, 15, 13, 0.24) 48%, rgba(15, 15, 13, 0.52) 100%);
  }

  .hero-content {
    padding: 110px 18px 32px;
  }

  .hero-copy {
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 32px;
  }

  .hero-facts div {
    min-height: auto;
    padding: 16px;
  }

  .section {
    width: min(100% - 28px, 1180px);
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-table [role="row"] {
    min-width: 680px;
  }

  .contact-section {
    padding: 48px 18px;
  }

  .contact-row {
    grid-template-columns: 22px minmax(48px, 64px) minmax(0, 1fr);
    gap: 10px;
  }

  .site-footer {
    display: block;
    padding-bottom: 22px;
  }

  .site-footer p + p {
    margin-top: 10px;
  }

  .mobile-contact {
    display: grid;
  }

  .toast {
    right: 12px;
    bottom: 84px;
  }
}

@media (max-width: 390px) {
  .nav-cta span {
    display: none;
  }

  .nav-cta {
    width: 42px;
    padding: 0;
  }

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

  .hero-copy {
    font-size: 16px;
  }

  .btn {
    padding: 0 14px;
  }
}
