:root {
  --ink: #2a1f18;
  --brown: #4a3728;
  --gold: #c4a574;
  --gold-deep: #a68554;
  --cream: #f7f1e8;
  --sand: #e8dcc8;
  --forest: #2c4a3e;
  --forest-deep: #1e3329;
  --paper: #fdfbf7;
  --text: #3a3129;
  --muted: #6b5e52;
  --line: rgba(74, 55, 40, 0.12);
  --shadow: 0 18px 50px rgba(42, 31, 24, 0.08);
  --radius: 18px;
  --header: 84px;
  --font-serif: "Noto Serif TC", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Noto Sans TC", "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.25; color: var(--ink); margin: 0; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--forest);
  color: var(--cream);
  cursor: pointer;
  transition: 0.25s ease;
}
.btn:hover { background: var(--forest-deep); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--brown); }
.btn.ghost:hover { background: var(--sand); }
.btn.gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn.gold:hover { background: var(--gold-deep); color: white; }

/* Top bar + header */
.topbar {
  background: var(--forest-deep);
  color: var(--sand);
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 16px;
}
.lang-switch { display: flex; gap: 6px; }
.lang-switch button {
  background: none;
  border: 0;
  color: var(--sand);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 999px;
  opacity: 0.7;
}
.lang-switch button.is-active { opacity: 1; background: rgba(196, 165, 116, 0.25); color: white; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-serif); font-size: 1.35rem; color: var(--ink); letter-spacing: 0.04em; }
.brand-text span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.12em; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 0.95rem; color: var(--brown); position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: 0.2s;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero img, .hero .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30, 22, 16, 0.35) 0%, rgba(30, 51, 41, 0.72) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  text-align: center;
  padding: 80px 0;
}
.hero h1 {
  color: white;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 8px 0 18px;
}
.hero p { color: rgba(247, 241, 232, 0.92); font-size: 1.08rem; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* Sections */
.section { padding: 96px 0; }
.section.alt { background: var(--cream); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-head p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gold-line { width: 56px; height: 1px; background: var(--gold); margin: 18px 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card, .service-card, .news-card, .fb-card, .value-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}
.service-card:hover, .news-card:hover, .fb-card:hover { transform: translateY(-4px); }
.service-card img, .news-card img, .fb-card img { width: 100%; height: 210px; object-fit: cover; background: var(--sand); }
.card-body, .service-card .body, .news-card .body, .fb-card .body { padding: 22px; }
.price { color: var(--gold-deep); font-family: var(--font-serif); font-size: 1.05rem; }
.meta { color: var(--muted); font-size: 0.85rem; }

.value-card { padding: 28px; }
.value-card h3 { margin-bottom: 8px; }

.cta-band {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 72px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 { color: white; margin-bottom: 10px; }
.cta-band p { color: var(--sand); margin-bottom: 24px; max-width: 42rem; }

/* Facebook grid */
.fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fb-card .body p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6.2em;
}
.fb-fallback {
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  background: white;
  text-align: center;
}
.fb-plugin { display: flex; justify-content: center; margin-top: 24px; overflow: hidden; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.info-list { display: grid; gap: 16px; }
.contact-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.info-item h3 { font-size: 1rem; margin-bottom: 4px; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; }

.form { display: grid; gap: 14px; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
}
.form textarea { min-height: 140px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.site-footer a:hover { color: var(--gold); }
.copyright { border-top: 1px solid rgba(232, 220, 200, 0.15); padding-top: 18px; font-size: 0.82rem; opacity: 0.8; }

/* Float contact */
.float-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  box-shadow: var(--shadow);
  border: 0;
}
.float-btn.wa { background: #25d366; }
.float-btn.fb { background: #1877f2; }
.float-btn.ig { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); }
.float-btn.th { background: #000; }
.float-btn.book { background: var(--forest); width: auto; padding: 0 16px; border-radius: 999px; font-size: 0.85rem; }

/* Page hero small */
.page-hero {
  background: var(--cream);
  padding: 72px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }

.prose { max-width: 760px; margin: 0 auto; }
.prose p { white-space: pre-line; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--forest);
  color: white;
  padding: 8px 14px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
}
.faq-item p { margin: 0 0 16px; color: var(--muted); }

.hidden { display: none !important; }
.is-open { display: flex !important; }

@media (max-width: 900px) {
  .split, .cards, .fb-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .split img { height: 320px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
    gap: 16px;
  }
  .nav.is-open { display: flex; }
  .section { padding: 64px 0; }
  .float-bar {
    left: 0; right: 0; bottom: 0;
    flex-direction: row;
    justify-content: center;
    background: rgba(253, 251, 247, 0.96);
    padding: 10px 12px 12px;
    border-top: 1px solid var(--line);
  }
  body { padding-bottom: 76px; }
}
