:root {
  color-scheme: light;
  --ink: #161716;
  --muted: #60645f;
  --soft: #f5f2ea;
  --paper: #fffdf8;
  --line: #ded8cc;
  --charcoal: #121615;
  --teal: #0f7773;
  --teal-dark: #0a4e4c;
  --gold: #c58b32;
  --coral: #b84e3d;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(22, 23, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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;
}

body::selection {
  color: var(--white);
  background: var(--teal-dark);
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(222, 216, 204, 0.86);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.98rem;
}

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

.brand strong {
  font-size: 1.03rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

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

.nav a,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav a {
  color: #3d403d;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--soft);
}

.nav-cta {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 10px 22px rgba(15, 119, 115, 0.2);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  max-height: 760px;
  height: calc(100svh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 14, 13, 0.88) 0%, rgba(10, 14, 13, 0.68) 42%, rgba(10, 14, 13, 0.22) 100%),
    linear-gradient(0deg, rgba(10, 14, 13, 0.38) 0%, rgba(10, 14, 13, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 58px 0 72px;
}

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

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.1rem;
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
}

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

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-facts {
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.hero-facts li {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  background: rgba(10, 14, 13, 0.42);
}

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

.hero-facts span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
}

.quick-strip {
  background: var(--charcoal);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.strip-grid article {
  min-height: 172px;
  padding: 30px;
  background: #171c1a;
}

.strip-grid h2 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.strip-grid p,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--soft);
}

.section-grid,
.pricing-layout,
.booking-grid,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 58px;
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.22;
}

.lead {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

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

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(22, 23, 22, 0.04);
}

.service-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
  font-weight: 900;
}

.service-item h3 {
  margin: 0 0 6px;
  font-size: 1.16rem;
}

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

.price-box {
  padding: 34px;
  color: var(--white);
  background: var(--charcoal);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-box p,
.price-box span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.price-box strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 2.35rem;
  line-height: 1.15;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.area-tags span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #353834;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 750;
}

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

.steps li {
  counter-increment: step;
  position: relative;
  min-height: 82px;
  padding: 20px 22px 20px 70px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 22px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 6px;
  font-weight: 900;
}

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

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

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

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

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

thead th {
  color: var(--white);
  background: var(--teal-dark);
}

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

tbody th {
  width: 21%;
  color: var(--teal-dark);
}

td {
  color: var(--muted);
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

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

.contact-section {
  background: #edf4f1;
}

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

.contact-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(22, 23, 22, 0.05);
  transition: transform 160ms ease, border-color 160ms ease;
}

.contact-row:hover,
.contact-row:focus-visible {
  border-color: rgba(15, 119, 115, 0.42);
}

.contact-row span {
  color: var(--muted);
  font-weight: 800;
}

.contact-row strong {
  font-size: 1.2rem;
  word-break: break-all;
}

.site-footer {
  padding: 28px 0;
  color: var(--white);
  background: var(--charcoal);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mobile-contact {
  display: none;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 760px);
  }

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

  .nav {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 590px;
    max-height: none;
  }

  .hero-content {
    padding: 70px 0 62px;
  }

  .hero h1 {
    font-size: 2.7rem;
    max-width: 540px;
  }

  .hero-copy {
    font-size: 1.03rem;
  }

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

  .strip-grid {
    gap: 0;
  }

  .strip-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 68px 0;
  }

  .section h2 {
    font-size: 1.9rem;
  }

  .section-grid,
  .pricing-layout,
  .booking-grid,
  .faq-layout,
  .contact-layout {
    gap: 30px;
  }

  .footer-inner {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 66px;
  }

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

  .nav-cta {
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 565px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

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

  .btn {
    width: 100%;
  }

  .hero-facts {
    margin-top: 28px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-facts li {
    min-height: 82px;
    padding: 12px 10px;
  }

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

  .hero-facts span {
    font-size: 0.78rem;
  }

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

  .price-box {
    padding: 28px 24px;
  }

  .price-box strong {
    font-size: 1.9rem;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
    min-height: 94px;
    gap: 4px;
  }

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

  .mobile-contact a {
    min-height: 46px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--teal-dark);
    border-radius: 7px;
    font-weight: 850;
  }
}
