:root {
  --ink: #111614;
  --ink-soft: #27332f;
  --paper: #fbf7ef;
  --paper-2: #eff7f1;
  --line: #d7ded3;
  --amber: #d99a32;
  --teal: #0f766e;
  --green: #123f32;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(13, 21, 18, 0.18);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10;
  transform: translateY(-140%);
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(17, 22, 20, 0.86);
  color: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 176px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-weight: 800;
}

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

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav a,
.nav-cta,
.btn {
  text-decoration: none;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
}

.nav a:hover,
.nav a:focus {
  color: var(--white);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--teal);
  color: var(--white);
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 14, 13, 0.82) 0%, rgba(10, 14, 13, 0.55) 42%, rgba(10, 14, 13, 0.1) 100%),
    linear-gradient(0deg, rgba(17, 22, 20, 0.65) 0%, rgba(17, 22, 20, 0) 45%);
}

.hero-content {
  position: relative;
  padding: 100px 0 52px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1.12;
}

h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.2;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
}

.hero-copy {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
}

.btn-primary {
  background: var(--amber);
  color: #1f1608;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.hero-facts {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts li {
  padding: 16px;
  background: rgba(17, 22, 20, 0.44);
}

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

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

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

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

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px 0;
}

.strip-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.strip-grid h2 {
  font-size: 1.12rem;
}

.strip-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 88px 0;
}

.alt {
  background: var(--paper-2);
}

.section-grid,
.pricing-layout,
.booking-grid,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.lead {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.service-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(26, 45, 38, 0.08);
}

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

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

.price-box {
  padding: 34px;
  border: 1px solid #c9d8ce;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-box p,
.price-box span {
  margin: 0;
  color: var(--ink-soft);
}

.price-box strong {
  display: block;
  margin: 10px 0;
  color: var(--green);
  font-size: 2.4rem;
  line-height: 1.1;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 800;
}

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

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

.area-tags span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 800;
}

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

.steps li {
  position: relative;
  padding: 20px 20px 20px 70px;
  border: 1px solid #c9d8ce;
  border-radius: 8px;
  background: var(--white);
  counter-increment: steps;
}

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

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

.steps span {
  margin-top: 4px;
  color: var(--ink-soft);
}

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

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

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

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

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

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

details {
  border: 1px solid #c9d8ce;
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

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

.contact-section {
  background: var(--ink);
  color: var(--white);
}

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

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

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

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

.contact-row strong {
  font-size: 1.25rem;
}

.site-footer {
  background: #0b0f0e;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 64px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-content {
    padding: 84px 0 40px;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-copy,
  .lead {
    font-size: 1rem;
  }

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

  .section {
    padding: 62px 0;
  }

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

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}

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

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

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

  h1 {
    font-size: 2.02rem;
  }

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

  .hero-facts li {
    padding: 13px 15px;
  }

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

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

