:root {
  color-scheme: light;
  --ink: #171716;
  --muted: #68645c;
  --paper: #f7f4ee;
  --paper-strong: #fffdf8;
  --line: rgba(23, 23, 22, 0.14);
  --night: #101111;
  --night-soft: #1b2020;
  --teal: #0e615a;
  --teal-dark: #0a403d;
  --gold: #d59f42;
  --rose: #bf476d;
  --cream: #fff6df;
  --shadow: 0 18px 48px rgba(16, 17, 17, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--night);
  background: var(--gold);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--night);
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 15;
  color: #fff;
  background: rgba(16, 17, 17, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--night);
  background: linear-gradient(135deg, var(--gold), #f2d37e 52%, var(--rose));
  border-radius: var(--radius);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.nav a {
  padding: 8px 0;
}

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

.nav-cta,
.btn,
.mobile-cta a,
.mobile-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  color: var(--night);
  background: var(--gold);
  white-space: nowrap;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, 86svh);
  padding: 110px 0 58px;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 10, 10, 0.92) 0%, rgba(9, 10, 10, 0.76) 34%, rgba(9, 10, 10, 0.28) 66%, rgba(9, 10, 10, 0.46) 100%),
    linear-gradient(0deg, rgba(9, 10, 10, 0.82), rgba(9, 10, 10, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: var(--max);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

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

h1,
h2,
h3 {
  line-height: 1.16;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  font-weight: 950;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.btn {
  min-width: 162px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

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

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:focus-visible,
.nav-cta:focus-visible,
.copy-button:focus-visible,
.quick-contact a:focus-visible,
.contact-row:focus-visible,
.mobile-cta a:focus-visible,
.mobile-cta button:focus-visible {
  outline: 3px solid rgba(213, 159, 66, 0.65);
  outline-offset: 3px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.hero-facts li {
  min-height: 86px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 1.06rem;
}

.hero-facts span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.quick-contact {
  background: var(--night);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: translateY(-28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-contact a,
.quick-contact button {
  display: grid;
  min-height: 96px;
  padding: 20px;
  color: #fff;
  background: #17201f;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.quick-contact a:nth-child(2) {
  background: var(--teal);
}

.quick-contact button {
  border-right: 0;
  background: #281927;
}

.quick-contact span,
.contact-row span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 800;
}

.quick-contact strong,
.contact-row strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: clamp(1.16rem, 2.8vw, 1.65rem);
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--paper);
}

.section.tone {
  background: #e7f0eb;
}

.section-grid,
.booking-grid,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 98px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--teal);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.lead {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.13rem);
}

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

.service-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px 18px;
  padding: 22px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-item span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--cream);
  background: var(--night-soft);
  border-radius: var(--radius);
  font-weight: 900;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.compact {
  margin-bottom: 22px;
}

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

.area-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(14, 97, 90, 0.18);
  border-radius: var(--radius);
  font-weight: 850;
}

.steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 18px 18px 18px 74px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
  font-weight: 900;
}

.steps strong {
  font-size: 1.08rem;
}

.steps span {
  color: var(--muted);
}

.compare-section {
  padding-top: 28px;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--paper-strong);
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: #fff;
  background: var(--night-soft);
}

tbody th {
  width: 140px;
  color: var(--teal-dark);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

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

details {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(14, 97, 90, 0.16);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--teal-dark);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  color: #fff;
  background: var(--night);
}

.contact-section .section-kicker {
  color: var(--gold);
}

.contact-section .lead {
  color: rgba(255, 255, 255, 0.72);
}

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

.contact-row {
  display: grid;
  grid-template-columns: minmax(72px, 0.25fr) minmax(0, 1fr);
  align-items: center;
  min-height: 84px;
  padding: 18px 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  text-align: left;
}

.contact-row:nth-child(2) {
  background: rgba(14, 97, 90, 0.8);
}

.contact-row:nth-child(3) {
  background: rgba(191, 71, 109, 0.42);
}

.copy-button {
  position: relative;
}

.copy-button.is-copied::after {
  content: "已複製";
  position: absolute;
  right: 12px;
  top: 10px;
  padding: 5px 8px;
  color: var(--night);
  background: var(--gold);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.site-footer {
  padding: 28px 0 90px;
  color: rgba(255, 255, 255, 0.7);
  background: #0b0c0c;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin-bottom: 0;
}

.mobile-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: auto;
  z-index: 16;
  display: none;
  width: min(calc(100vw - 24px), 366px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(16, 17, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.mobile-cta a,
.mobile-cta button {
  min-height: 46px;
  padding: 10px 12px;
  color: var(--night);
  background: var(--gold);
}

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

.mobile-cta button {
  color: #fff;
  background: var(--rose);
}

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

  .brand {
    min-width: 0;
  }

  .section-grid,
  .booking-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact a,
  .quick-contact button {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .quick-contact button {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 64px;
  }

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

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 84svh;
    padding: 90px 0 42px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 10, 10, 0.92), rgba(9, 10, 10, 0.5)),
      linear-gradient(0deg, rgba(9, 10, 10, 0.86), rgba(9, 10, 10, 0.12) 54%);
  }

  h1 {
    font-size: clamp(2.16rem, 11.4vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.78rem, 9vw, 2.5rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .btn {
    width: 100%;
  }

  .hero-facts {
    gap: 8px;
  }

  .hero-facts li {
    min-height: 72px;
    padding: 13px 16px;
  }

  .section {
    padding: 64px 0;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item span {
    grid-row: auto;
  }

  .steps li {
    padding-left: 18px;
    padding-top: 72px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    display: grid;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
