:root {
  --bg: #f6f1e9;
  --bg-2: #ece3d6;
  --bg-3: #e2d3bf;
  --ink: #24191b;
  --muted: #62595a;
  --faint: #8e8281;
  --line: #dfd2c2;
  --card: #fffdf9;
  --accent: #742f37;
  --accent-2: #b79359;
  --gold: #c8a96b;
  --ok: #32624d;
  --radius: 18px;
  --shadow: 0 14px 36px rgba(55, 42, 30, .08);
  --shadow-hover: 0 20px 50px rgba(55, 42, 30, .13);
  --font: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --serif: "Songti SC", "Noto Serif SC", "Source Han Serif SC", serif;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 247, 241, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 76px; }
.logo {
  display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-family: var(--serif);
  font-size: 1.3rem; font-weight: 700; text-decoration: none; letter-spacing: .04em; white-space: nowrap;
}
.logo img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 4px 14px rgba(77,35,39,.13);
}
.logo__text em { color: var(--accent); font-style: normal; margin-left: 2px; }
.nav__links { display: flex; gap: 26px; list-style: none; margin: 0 auto; padding: 0; font-size: .9rem; }
.nav__links a { position: relative; text-decoration: none; color: var(--muted); transition: color .2s ease; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px;
  background: var(--accent); transform: scaleX(0); transition: transform .2s ease;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta { display: flex; gap: 8px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 44px; text-decoration: none; border-radius: 999px; padding: 10px 18px; font-size: .9rem;
  font-weight: 600; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--ghost { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.28); }
.btn--ghost:hover { background: var(--card); box-shadow: 0 8px 20px rgba(55,42,30,.08); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 9px 22px rgba(138,61,58,.18); }
.btn--primary:hover { background: #5e252c; box-shadow: 0 12px 28px rgba(116,47,55,.26); }
.btn--gold { background: var(--ink); color: #fff; }
.hero {
  position: relative; overflow: hidden; padding: 86px 0 74px;
  background:
    radial-gradient(circle at 82% 20%, rgba(183,147,89,.2), transparent 28%),
    linear-gradient(135deg, #faf7f1 0%, #f3ebdf 60%, #eadbc8 100%);
  border-bottom: 1px solid rgba(176,137,74,.18);
}
.hero::before {
  content: "伴"; position: absolute; right: 6%; top: 50%; transform: translateY(-53%);
  font-family: var(--serif); font-size: clamp(15rem, 28vw, 25rem); line-height: 1;
  color: rgba(138,61,58,.035); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero--home {
  min-height: 680px; display: flex; align-items: center;
  background-image:
    linear-gradient(90deg, rgba(25,15,18,.94) 0%, rgba(33,18,22,.86) 43%, rgba(33,18,22,.28) 75%, rgba(33,18,22,.08) 100%),
    url("/assets/hero-singapore.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 0;
}
.hero--home::before { display: none; }
.hero--home h1 { color: #fffaf3; text-shadow: 0 4px 28px rgba(0,0,0,.2); }
.hero--home .lead { color: rgba(255,250,243,.78); }
.hero--home .kicker { color: var(--gold); }
.hero--home .kicker::before { background: var(--gold); }
.hero--home .hero__trust { color: rgba(255,250,243,.67); }
.hero--home .hero__trust span::before { color: var(--gold); }
.hero--home .btn--ghost {
  color: #fffaf3; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07);
}
.hero--home .btn--ghost:hover { background: rgba(255,255,255,.14); }
.hero__layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 70px; align-items: center; }
.hero__copy { max-width: 690px; }
.hero__panel {
  position: relative; padding: 28px; border: 1px solid rgba(176,137,74,.35);
  border-radius: 26px; background: rgba(255,252,247,.74); backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.hero__panel::before {
  content: ""; position: absolute; width: 64px; height: 3px; top: 0; left: 28px;
  background: var(--accent); border-radius: 999px;
}
.hero__panel-title { margin: 0 0 18px; color: var(--faint); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; }
.hero__panel-brand {
  display: flex; align-items: center; gap: 14px; margin: 0 0 24px; padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}
.hero__panel-brand img {
  width: 58px; height: 58px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 8px 20px rgba(77,35,39,.12);
}
.hero__panel-brand strong { display: block; font-family: var(--serif); font-size: 1.1rem; letter-spacing: .04em; }
.hero__panel-brand span { display: block; color: var(--faint); font-size: .75rem; margin-top: 2px; }
.hero--home .hero__panel {
  background: rgba(255,250,243,.9); border-color: rgba(200,169,107,.5);
  box-shadow: 0 25px 70px rgba(0,0,0,.2);
}
.hero__feature { display: grid; grid-template-columns: 36px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hero__feature:last-child { border-bottom: 0; padding-bottom: 0; }
.hero__feature:first-of-type { padding-top: 0; }
.hero__feature-icon {
  width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%;
  background: var(--bg-2); color: var(--accent); font-size: .9rem; font-weight: 700;
}
.hero__feature strong { display: block; font-family: var(--serif); }
.hero__feature span { display: block; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.kicker {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px;
  color: var(--accent); letter-spacing: .18em; font-size: .72rem; font-weight: 700; text-transform: uppercase;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
h1, h2, h3 { font-family: var(--serif); line-height: 1.25; margin: 0 0 .6em; }
h1 { font-size: clamp(2.7rem, 5.5vw, 4.6rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.lead { font-size: 1.06rem; color: var(--muted); max-width: 43rem; line-height: 1.9; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 30px; color: var(--faint); font-size: .8rem; }
.hero__trust span::before { content: "✓"; margin-right: 6px; color: var(--ok); font-weight: 700; }
.section { padding: 72px 0; }
.section--alt {
  background:
    linear-gradient(rgba(236,227,214,.94), rgba(236,227,214,.94)),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(138,61,58,.025) 12px 13px);
}
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 28px; }
.section-head > :last-child { max-width: 540px; }
.section-label { margin: 0 0 8px; color: var(--accent); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #cfbfa9; }
.card h3 { font-size: 1.18rem; }
.card > :last-child { margin-bottom: 0; }
.service-card { position: relative; overflow: hidden; min-height: 190px; padding-top: 68px; }
.service-card::before {
  position: absolute; top: 24px; left: 26px; color: var(--accent); font-family: var(--serif);
  font-size: .78rem; letter-spacing: .12em;
}
.service-card:nth-child(1)::before { content: "01 · SOCIAL"; }
.service-card:nth-child(2)::before { content: "02 · BUSINESS"; }
.service-card:nth-child(3)::before { content: "03 · WELLNESS"; }
.muted { color: var(--muted); }
.small { font-size: .92rem; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.tag {
  font-size: .78rem; padding: 6px 12px; border: 1px solid transparent; border-radius: 999px;
  background: var(--bg-2); color: var(--muted); text-decoration: none; transition: all .2s ease;
}
.tag:hover { color: var(--accent); background: var(--card); border-color: var(--line); }
.profile {
  display: grid; grid-template-columns: 132px 1fr; gap: 22px; align-items: stretch;
  position: relative; overflow: hidden; min-height: 220px;
}
.profile::after {
  content: ""; position: absolute; width: 120px; height: 120px; right: -55px; bottom: -65px;
  border: 1px solid rgba(183,147,89,.25); border-radius: 50%; pointer-events: none;
}
.profile__photo {
  width: 132px; height: 176px; border-radius: 18px; object-fit: cover; object-position: center top;
  box-shadow: 0 12px 28px rgba(54,31,34,.16); background: var(--bg-2);
}
.profile__body { display: flex; flex-direction: column; align-items: flex-start; }
.profile__body h3 { margin-bottom: 0; }
.profile__body .btn { margin-top: auto; }
.faq { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 24px; box-shadow: var(--shadow); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: 0; }
.faq summary { position: relative; padding-right: 32px; cursor: pointer; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--accent); font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }
.notice {
  border: 1px solid #d8c6a7; border-left: 4px solid var(--accent-2);
  border-radius: 0 12px 12px 0; padding: 14px 18px; color: var(--muted); background: #fbf5e9;
}
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #211619 0%, #4e2228 100%);
  color: #f7f2ea; border-radius: 28px; padding: 48px;
  box-shadow: 0 24px 60px rgba(49,23,27,.18);
}
.cta-band::after {
  content: "SG"; position: absolute; right: 28px; bottom: -44px; font-family: var(--serif);
  font-size: 9rem; color: rgba(255,255,255,.035); pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; max-width: 760px; }
.cta-band .btn--primary { background: #fff; color: var(--ink); }
.footer { padding: 52px 0 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; background: #f1e9dd; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--ink); }
.footer__brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.footer__brand strong { font-family: var(--serif); font-size: 1.15rem; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--ink); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 6px 0; }
.mobile-dock { display: none; }
.crumb { font-size: .85rem; color: var(--faint); margin-bottom: 18px; }
.crumb a { color: var(--muted); text-decoration: none; }
.prose { max-width: 820px; }
.prose p { margin: 0 0 1.1em; color: var(--muted); line-height: 1.9; }
.prose ul { color: var(--muted); }
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero__layout { grid-template-columns: 1fr; gap: 36px; }
  .hero__panel { max-width: 640px; }
  .hero--home { min-height: auto; background-position: 62% center; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 720px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .wrap { width: min(100% - 32px, var(--max)); }
  .nav__inner { min-height: 66px; gap: 10px; }
  .logo { gap: 7px; font-size: 1.12rem; }
  .logo img { width: 36px; height: 36px; }
  .nav__cta .btn--ghost { display: none; }
  .nav__cta .btn--primary { min-height: 40px; padding: 8px 14px; }
  .btn { min-height: 46px; padding-inline: 16px; }
  .hero { padding: 52px 0 48px; }
  .hero--home {
    min-height: 680px; padding-top: 64px;
    background-image:
      linear-gradient(180deg, rgba(27,15,18,.9) 0%, rgba(31,17,21,.84) 52%, rgba(31,17,21,.72) 100%),
      url("/assets/hero-singapore.jpg");
    background-position: 68% center;
  }
  .hero--home .hero__panel { display: none; }
  .hero__panel { padding: 22px; }
  .grid-3, .grid-2, .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .section-head { display: block; }
  .profile { grid-template-columns: 92px 1fr; gap: 14px; min-height: 0; }
  .profile__photo { width: 92px; height: 124px; border-radius: 14px; }
  .cta-band { padding: 30px 24px; border-radius: 22px; }
  h1 { font-size: clamp(2.55rem, 14vw, 3.5rem); }
  .lead { font-size: 1rem; line-height: 1.85; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { flex: 1 1 140px; }
  .faq { padding-inline: 18px; }
  .card { padding: 22px; }
  .service-card { min-height: 0; padding-top: 62px; }
  .mobile-dock {
    position: fixed; z-index: 50; left: 0; right: 0; bottom: 0;
    display: grid; grid-template-columns: 1fr 1.25fr; gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,252,247,.94); border-top: 1px solid var(--line);
    backdrop-filter: blur(18px); box-shadow: 0 -8px 30px rgba(55,42,30,.08);
  }
  .mobile-dock .btn { width: 100%; min-height: 46px; padding: 8px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
