/* 天沐 · 養生 He-Mu Spa */

:root {
  --bg-dark: #211510;
  --bg-dark-2: #2b1c13;
  --cream: #f4ede1;
  --paper: #fbf7f0;
  --gold: #b79a67;
  --gold-light: #d9c69e;
  --gold-dark: #7a6138;
  --gold-line: rgba(183, 154, 103, 0.25);
  --on-dark: #f3eadc;
  --on-dark-muted: #c4af92;
  --ink: #2a211a;
  --muted: #77664f;
  --serif: "Noto Serif TC", serif;
  --sans: "Noto Sans TC", sans-serif;
  --latin: "Cormorant Garamond", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn svg {
  flex: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(183, 154, 103, 0.12);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--gold-light);
}

.btn-dark:hover {
  background: var(--bg-dark-2);
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(183, 154, 103, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 46px;
  height: 48px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--on-dark);
  line-height: 1.3;
}

.brand-sub {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--on-dark-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-light);
}

.nav .btn {
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  cursor: pointer;
  padding: 8px;
}

/* ---------- Section primitives ---------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-center {
  justify-content: center;
}

.eyebrow-center::before {
  display: none;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.35;
}

.section-sub {
  font-family: var(--latin);
  font-style: italic;
  font-size: 18px;
}

/* ---------- Page header (inner pages) ---------- */

.page-header {
  background: var(--bg-dark);
  padding: 72px 32px 64px;
  text-align: center;
}

.page-header .eyebrow {
  justify-content: center;
}

.page-header .eyebrow::before {
  display: none;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  color: var(--on-dark);
  margin-top: 14px;
}

.page-header p {
  font-family: var(--latin);
  font-style: italic;
  font-size: 19px;
  color: var(--on-dark-muted);
  margin-top: 10px;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--bg-dark);
  color: var(--on-dark);
  padding: 64px 0 88px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 600;
  line-height: 1.1;
  margin-top: 28px;
}

.hero-tagline {
  font-family: var(--latin);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--gold-light);
  margin-top: 18px;
}

.hero-body {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--on-dark-muted);
  margin-top: 28px;
}

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

.chip {
  padding: 8px 16px;
  border: 1px solid rgba(183, 154, 103, 0.33);
  border-radius: 20px;
  font-size: 13px;
  color: var(--gold-light);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-visual {
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid rgba(183, 154, 103, 0.53);
  border-radius: 236px 236px 0 0;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 444 / 574;
  object-fit: cover;
  border-radius: 236px 236px 0 0;
}

/* ---------- Stats strip ---------- */

.stats {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(183, 154, 103, 0.2);
  padding: 36px 0;
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px 40px;
}

.stat {
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
}

.stat span {
  font-size: 13px;
  color: var(--on-dark-muted);
}

/* ---------- Environment ---------- */

.env {
  background: var(--cream);
  padding: 104px 0;
}

.env-inner {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 72px;
  align-items: center;
}

.env-photos {
  position: relative;
  height: 560px;
}

.env-photos .photo-room {
  width: 78%;
  height: 71%;
  object-fit: cover;
}

.env-photos .photo-sauna {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 50%;
  object-fit: cover;
  border: 6px solid var(--paper);
}

.env-copy .section-title {
  color: var(--ink);
  margin-top: 24px;
}

.env-copy p {
  max-width: 480px;
  color: var(--muted);
  line-height: 2;
  margin-top: 24px;
}

.env-features {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.env-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.env-features svg {
  color: var(--gold-dark);
  flex: none;
}

/* ---------- Signature cards ---------- */

.signature {
  background: var(--bg-dark);
  color: var(--on-dark);
  padding: 96px 0;
}

.signature .section-sub {
  color: var(--on-dark-muted);
}

.sig-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.sig-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(183, 154, 103, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.sig-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 154, 103, 0.5);
}

.sig-photo {
  position: relative;
}

.sig-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.sig-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
}

.sig-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sig-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sig-title-row h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.sig-title-row em {
  font-family: var(--latin);
  font-size: 16px;
  color: var(--gold);
}

.sig-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--on-dark-muted);
}

.sig-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
}

.sig-price-row b {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
}

.sig-price-row span {
  font-size: 14px;
  color: var(--on-dark-muted);
}

/* ---------- Price menu ---------- */

.menu {
  background: var(--paper);
  padding: 96px 0;
}

.menu-note {
  font-size: 14px;
  color: var(--muted);
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 96px;
  margin-top: 52px;
}

.menu-group {
  margin-bottom: 44px;
}

.menu-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 10px;
}

.menu-group-head::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  align-self: center;
}

.menu-group-head h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
}

.menu-group-head em {
  font-family: var(--latin);
  font-size: 15px;
  color: var(--gold-dark);
}

.menu-group-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(183, 154, 103, 0.25);
}

.menu-item-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.menu-item-dur {
  font-size: 13px;
  color: var(--muted);
  margin-left: 10px;
}

.menu-item-price {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

.menu-foot {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.menu-foot a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Facial tiers ---------- */

.facial {
  background: var(--cream);
  padding: 88px 0;
}

.facial-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.tier {
  background: var(--paper);
  border: 1px solid rgba(183, 154, 103, 0.25);
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tier b {
  order: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--gold-dark);
}

.tier::after {
  content: "";
  order: 1;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.tier .tier-name {
  order: 2;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.tier .tier-sub {
  order: 3;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Offers / packages ---------- */

.packages {
  background: var(--bg-dark);
  color: var(--on-dark);
  padding: 24px 0 72px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pkg {
  display: flex;
  gap: 28px;
  background: var(--bg-dark-2);
  border: 1px solid rgba(183, 154, 103, 0.2);
  padding: 36px;
  transition: border-color 0.25s ease;
}

.pkg:hover {
  border-color: rgba(183, 154, 103, 0.5);
}

.pkg-medal {
  flex: none;
  width: 96px;
  height: 96px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-light);
}

.pkg-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pkg-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.pkg-title-row h2 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
}

.pkg-dur {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 4px;
}

.pkg-price {
  text-align: right;
}

.pkg-price b {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold-light);
}

.pkg-price span {
  display: block;
  font-size: 12px;
  color: var(--on-dark-muted);
}

.pkg-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pkg-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--on-dark-muted);
}

.pkg-items li::before {
  content: "";
  flex: none;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.packages-note {
  text-align: center;
  font-size: 13px;
  color: var(--on-dark-muted);
  margin-top: 44px;
}

.packages-note a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Member band ---------- */

.member-band {
  background: var(--cream);
  padding: 44px 0;
}

.member-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.member-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.member-seal {
  flex: none;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-dark);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}

.member-left h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.member-left p {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Contact ---------- */

.contact {
  background: var(--bg-dark);
  color: var(--on-dark);
  padding: 96px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.4;
}

.contact-sub {
  font-family: var(--latin);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-light);
  margin-top: 16px;
}

.contact-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--on-dark-muted);
}

.contact-list svg {
  color: var(--gold);
  flex: none;
}

.contact .btn {
  margin-top: 44px;
  padding: 18px 36px;
  font-size: 17px;
}

.contact-visual {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(183, 154, 103, 0.33);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.contact-visual img {
  width: 59%;
}

/* ---------- Contact page ---------- */

.contact-page {
  padding: 80px 0;
}

.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 72px;
  align-items: start;
}

.map-embed {
  width: 100%;
  height: 300px;
  border: 1px solid rgba(183, 154, 103, 0.25);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.info-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-list li {
  display: flex;
  gap: 16px;
}

.info-list svg {
  color: var(--gold-dark);
  flex: none;
  margin-top: 4px;
}

.info-list .info-label {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
}

.info-list .info-value {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.booking-card {
  background: #ffffff;
  border: 1px solid rgba(183, 154, 103, 0.25);
  padding: 44px;
}

.booking-card h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
}

.booking-card > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.booking-steps {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.booking-steps .step-num {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 13px;
  display: grid;
  place-items: center;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.booking-actions .btn {
  justify-content: center;
  width: 100%;
}

.booking-hint {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(183, 154, 103, 0.15);
  padding: 28px 0;
  color: var(--on-dark-muted);
}

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

.footer-inner p {
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--gold);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--gold-light);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-visual {
    max-width: 420px;
  }

  .env-inner,
  .contact-inner,
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .env-photos {
    max-width: 560px;
    height: 480px;
  }

  .sig-cards,
  .facial-tiers {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .sig-cards {
    margin-top: 56px;
  }

  .facial-tiers {
    margin-top: 44px;
  }

  .menu-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav .btn-gold {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(183, 154, 103, 0.25);
    padding: 12px 32px 20px;
  }

  .nav.open .nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 17px;
  }

  .stats-inner {
    justify-content: center;
  }

  .pkg {
    flex-direction: column;
  }

  .booking-card {
    padding: 32px 24px;
  }
}
