/* ==========================================================================
   午睡空間｜Recharge Lounge — site.css
   色票與字體依 docs/brand/02_品牌UI與版型規範.md
   規則：元件只用語意 token，不直接寫 hex。
   ========================================================================== */

:root {
  /* 原始色票 */
  --cream-50: #FCF9F6;
  --cream-100: #F7F1EC;
  --blush-100: #F3E2DD;
  --blush-200: #EBCFC7;
  --rose-300: #E8B7A7;
  --camel-300: #D9BB98;
  --camel-500: #C69D70;
  --camel-700: #A77C52;
  --camel-800: #8F6944;   /* 補充：小字與按鈕用，對比達 AA */
  --ink-900: #5E554D;
  --ink-700: #766A61;
  --ink-500: #988A80;
  --line: #E9DED7;
  --white: #FFFFFF;

  /* 語意 token */
  --color-background: var(--cream-50);
  --color-surface: var(--white);
  --color-surface-soft: var(--cream-100);
  --color-surface-blush: var(--blush-100);
  --color-primary: var(--camel-800);
  --color-primary-hover: var(--camel-700);
  --color-primary-soft: var(--camel-500);
  --color-accent: var(--rose-300);
  --color-heading: var(--camel-700);
  --color-text: var(--ink-900);
  --color-text-muted: var(--ink-700);
  --color-text-faint: var(--ink-500);
  --color-border: var(--line);
  --color-footer: var(--ink-900);
  --color-on-dark: #FFF7F1;
  --color-success: #2F855A;
  --color-danger: #B33A3A;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 42px;
  --radius-pill: 999px;

  --shadow-soft: 0 12px 34px rgba(117, 92, 73, .08);
  --shadow-float: 0 20px 48px rgba(117, 92, 73, .12);

  --font: "Huninn", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --max: 1180px;
  --ease: .2s ease;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { font-weight: 400; }

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0s !important; animation: none !important; }
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 300;
  padding: 10px 16px;
  color: var(--white);
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  transition: top var(--ease);
}
.skip-link:focus { top: 16px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 6px 24px rgba(117, 92, 73, .06);
  backdrop-filter: blur(9px);
}
.nav-bar {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand-logo {
  width: 56px; height: 56px;
  flex: none;
}
.brand-copy strong {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: var(--color-heading);
  line-height: 1.1;
}
.brand-copy span {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: .06em;
  margin-top: 3px;
  white-space: nowrap;
}
.brand-copy em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .14em;
}
.nav-main { flex: 1 1 auto; display: flex; justify-content: center; }
.nav-links {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links li { display: flex; align-items: center; }
.nav-links li + li { border-left: 1px solid var(--color-border); }
.nav-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 16px;
  color: var(--color-text-muted);
  line-height: 1.3;
  transition: color var(--ease);
}
.nav-en {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.nav-zh { font-size: 15px; white-space: nowrap; }
.nav-links a:hover .nav-zh,
.nav-links a:focus-visible .nav-zh { color: var(--color-heading); }
.nav-links li.nav-social-mobile { display: none; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--camel-300);
  background: var(--color-surface);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover {
  background: var(--color-surface-blush);
  border-color: var(--color-primary-soft);
  transform: translateY(-1px);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--white);
  padding: 10px 17px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(143, 105, 68, .22);
  transition: background var(--ease), transform var(--ease);
}
.nav-cta:hover { background: var(--color-primary-hover); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  place-items: center;
  color: var(--color-heading);
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform var(--ease), opacity var(--ease);
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary {
  background: var(--color-primary);
  color: var(--white);
  box-shadow: 0 9px 22px rgba(143, 105, 68, .25);
}
.btn-primary:hover { background: var(--color-primary-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(143, 105, 68, .2); }
.btn-secondary {
  background: rgba(255, 255, 255, .78);
  border-color: var(--color-border);
  color: var(--color-text-muted);
}
.btn-secondary:hover { background: var(--color-surface); color: var(--color-heading); }
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- Hero ---------- */
.hero {
  margin-top: 10px;
  background: var(--color-surface-blush);
  position: relative;
  overflow: hidden;
  padding: 74px 0 118px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  right: 4%;
  top: 15%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: center;
}
.kicker {
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: .18em;
  margin-bottom: 10px;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.1;
  color: var(--color-heading);
}
.hero .lead {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 0 26px;
}
.hero .lead strong { color: var(--color-text); font-weight: 400; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.meta-chip {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .9);
  color: var(--color-text-muted);
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  font-size: 13px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { min-height: 510px; position: relative; }
.hero-photo {
  position: absolute;
  right: 0; top: 0;
  margin: 0;
  width: min(100%, 480px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 44% 56% 43% 57% / 38% 42% 58% 62%;
  box-shadow: var(--shadow-float);
}
.hero-photo img,
.blob-photo img { width: 100%; height: 100%; object-fit: cover; }

/* 首屏改用巧薇去背照：腮紅色塊、貼齊底部、不裁切 */
.hero-photo.hero-founder {
  background: linear-gradient(160deg, var(--color-surface-blush), var(--blush-200));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px 20px 0;
}
.hero-photo.hero-founder img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 14px 24px rgba(117, 92, 73, .18));
}

/* About 區：品牌色柔和圖形（無照片時） */
.blob-photo.blob-soft { box-shadow: var(--shadow-soft); aspect-ratio: 4 / 5; min-height: 0; }
.floating-note {
  position: absolute;
  left: 0; bottom: 42px;
  max-width: 230px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 26px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}
.floating-note small {
  display: block;
  color: var(--color-primary);
  letter-spacing: .12em;
  margin-bottom: 5px;
}
.floating-note strong { font-size: 22px; font-weight: 400; }
.sparkle {
  position: absolute;
  color: rgba(255, 255, 255, .82);
  font-size: 58px;
  left: 4%; top: 18%;
  line-height: 1;
}
.scallop {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.scallop span {
  aspect-ratio: 2 / 1;
  background: var(--color-background);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
}

/* ---------- Sections ---------- */
.section { padding: 86px 0; }
.section-alt { background: #FFFDFB; }
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.mini {
  color: var(--color-primary);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
}
.section-title p {
  margin: 12px 0 0;
  color: var(--color-text-muted);
  font-size: 16px;
}
.wave {
  color: var(--color-accent);
  font-size: 36px;
  line-height: 1;
  margin-top: 4px;
}

/* ---------- Story / Founder ---------- */
.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: center;
}
.story-grid.reverse { grid-template-columns: 1.08fr .92fr; }
.story-grid.reverse .blob-photo { order: 2; }
.blob-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 40% 60% 57% 43% / 47% 37% 63% 53%;
  min-height: 500px;
  box-shadow: var(--shadow-float);
}
.blob-photo.alt { border-radius: 58% 42% 45% 55% / 40% 58% 42% 60%; }

/* 去背人像：放在腮紅色塊上，不裁切、貼齊底部 */
.blob-photo.founder {
  background: linear-gradient(160deg, var(--color-surface-blush), var(--blush-200));
  aspect-ratio: 4 / 5;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 36px 24px 0;
}
.blob-photo.founder img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 14px 24px rgba(117, 92, 73, .18));
}
.story-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--color-heading);
}
.story-copy p {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 0 0 14px;
}
.quote {
  margin: 24px 0 0;
  padding: 22px 24px;
  background: var(--color-surface-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 20px 20px 0;
  font-size: 22px;
  line-height: 1.6;
  color: var(--color-text);
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.fact {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 14px 16px;
}
.fact small {
  display: block;
  color: var(--color-primary);
  font-size: 12px;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.fact strong { font-weight: 400; font-size: 16px; }

/* ---------- Experience steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 26px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.step-no {
  width: 36px; height: 36px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--color-surface-blush);
  color: var(--color-primary);
  font-size: 14px;
}
.step h3 { margin: 0 0 7px; font-size: 20px; }
.step p { margin: 0; color: var(--color-text-muted); font-size: 14px; }

/* ---------- Why rest ---------- */
.soft-panel {
  background: var(--color-surface-blush);
  border-radius: var(--radius-xl);
  padding: 44px;
  overflow: hidden;
  position: relative;
}
.soft-panel::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .55);
  right: -80px; top: -70px;
}
.soft-panel .section-title { margin-bottom: 30px; }
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.card .icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-surface-soft);
  color: var(--color-heading);
  font-size: 22px;
  margin-bottom: 15px;
}
.card h3 { margin: 0 0 8px; font-size: 21px; }
.card p { margin: 0; color: var(--color-text-muted); font-size: 15px; }

/* ---------- Space ---------- */
.space-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}
.space-large,
.space-small {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.space-large { min-height: 520px; border-radius: 36px 90px 36px 90px; }
.space-small { min-height: 250px; border-radius: 90px 36px 90px 36px; }
.space-side { display: grid; gap: 20px; }
.space-grid img { width: 100%; height: 100%; object-fit: cover; }
/* 無照片時的空間資訊卡 */
.space-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.space-cards .icon svg { width: 26px; height: 26px; }

/* Founder 區只留文字 */
.story-solo {
  max-width: 760px;
  margin-inline: auto;
}
.story-solo .story-copy h3 { text-align: center; }
.story-solo .story-copy > p { max-width: 65ch; margin-inline: auto; }

.space-caption {
  margin-top: 18px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
}

/* ---------- Audience ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ---------- Locations ---------- */
.venue {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 24px 0;
}
.venue + .venue {
  margin-top: 24px;
  padding-top: 48px;
  border-top: 1px dashed var(--color-border);
}
.venue.reverse .venue-map { order: 2; }
.venue-map {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 36px 90px 36px 90px;
  background: var(--color-surface-soft);
  box-shadow: var(--shadow-soft);
}
.venue.reverse .venue-map { border-radius: 90px 36px 90px 36px; }
.venue-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.78) contrast(.96);
}
.venue-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid var(--color-primary-soft);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: var(--color-primary);
  font-size: 14px;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.venue-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(26px, 3vw, 32px);
  color: var(--color-heading);
}
.venue-sub {
  margin: 0 0 20px;
  color: var(--color-text-muted);
}
.venue-rows {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.venue-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--color-text);
}
.venue-row svg {
  width: 22px; height: 22px;
  flex: none;
  margin-top: 3px;
  color: var(--color-heading);
}
.venue-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.social {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--white);
  transition: background var(--ease), transform var(--ease);
}
.social svg { width: 22px; height: 22px; }
.social:hover { background: var(--color-primary-hover); transform: translateY(-1px); }

/* ---------- Reservation ---------- */
.reserve-panel {
  background: linear-gradient(135deg, var(--blush-100), #F8EEE9);
  border-radius: var(--radius-xl);
  padding: 46px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.reserve-copy .mini { margin-bottom: 8px; }
.reserve-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 3.6vw, 42px);
  line-height: 1.2;
}
.reserve-copy p { margin: 0 0 18px; color: var(--color-text-muted); font-size: 16px; }
.reserve-note {
  margin-top: 20px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 24px;
  padding: 22px 24px;
  color: var(--color-text-muted);
}
.reserve-note strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 18px;
}
.reserve-info {
  margin: 0 0 4px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  padding: 8px 22px;
}
.reserve-info .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 15px;
}
.reserve-info .row:last-child { border-bottom: none; }
.reserve-info dt { color: var(--color-text-muted); }
.reserve-info dd { margin: 0; color: var(--color-text); text-align: right; }

/* ---------- Journal ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-card small {
  display: block;
  color: var(--color-primary);
  font-size: 12px;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.article-card h3 { font-size: 20px; line-height: 1.45; }
.article-card p { margin-bottom: 14px; }
.tag-soon {
  display: inline-block;
  font-size: 13px;
  color: var(--color-text-muted);
  background: var(--color-surface-soft);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.2;
}
.contact-copy p { color: var(--color-text-muted); margin: 0 0 14px; }
.quiet-promise {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--color-surface-soft);
  border-radius: 20px;
  color: var(--color-text-muted);
  font-size: 15px;
}
.site-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.form-title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-heading);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label,
.field legend { font-size: 14px; color: var(--color-text); }
.field input[type="text"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-background);
  color: var(--color-text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23766A61' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}
.field input[type="date"] { min-width: 0; }
.field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .7; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(143, 105, 68, .18);
}
.field-label { font-size: 14px; color: var(--color-text); }
.field-static {
  margin: 0;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px dashed var(--color-border);
  border-radius: 18px;
  background: var(--color-surface-soft);
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.field-static strong {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
  white-space: nowrap;
}
.field-error {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--color-danger);
}
.field.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-actions { position: relative; }
.field input::placeholder,
.field textarea::placeholder { color: var(--color-text-muted); opacity: .8; }
fieldset { border: 0; padding: 0; margin: 0; }
.choices { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-background);
  font-size: 14px;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.choice:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-surface-blush);
}
.choice input,
.consent input { accent-color: var(--color-primary); width: 16px; height: 16px; margin: 0; }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--color-text-muted);
}
.consent input { margin-top: 5px; }
.form-status {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--color-primary);
  min-height: 1.5em;
}
.form-status.is-error { color: var(--color-danger); }
.form-status.is-success { color: var(--color-success); }

/* 尚未接上寄送服務時的備援：產生訊息讓訪客複製 */
.form-fallback {
  margin-top: 22px;
  padding: 20px;
  border: 1px dashed var(--color-primary-soft);
  border-radius: 22px;
  background: var(--color-surface-soft);
}
.fallback-title {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--color-text);
}
.fallback-text {
  margin: 0 0 16px;
  padding: 16px;
  font: inherit;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  user-select: all;
}
.fallback-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-footer);
  color: var(--color-on-dark);
  margin-top: 92px;
  padding: 54px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.footer-logo { width: 88px; height: 88px; }
.footer-brand strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  font-weight: 400;
}
.footer-title { font-size: 16px; margin-bottom: 12px; }
.footer-text { font-size: 14px; line-height: 1.8; opacity: .92; }
.footer-text a { text-decoration: underline; text-underline-offset: 3px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-chip {
  border: 1px solid rgba(255, 247, 241, .45);
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  font-size: 13px;
  transition: background var(--ease);
}
.footer-chip:hover { background: rgba(255, 247, 241, .12); }
.footer-legal {
  border-top: 1px solid rgba(255, 247, 241, .28);
  margin-top: 34px;
  padding-top: 18px;
  font-size: 13px;
  line-height: 1.8;
  opacity: .9;
}
.footer-legal p { margin: 0 0 6px; }
.copyright { text-align: center; font-size: 12px; margin-top: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav-bar { min-height: 72px; }
  .nav-main { flex: none; }
  .menu-toggle { display: grid; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    box-shadow: var(--shadow-float);
    padding: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { display: block; }
  .nav-links li + li { border-left: 0; }
  .nav-links a {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 16px;
    border-radius: 18px;
  }
  .nav-links a:hover { background: var(--color-surface-soft); }
  .nav-zh { font-size: 16px; }
  .nav-links li.nav-social-mobile {
    display: flex;
    gap: 10px;
    padding: 12px 16px 6px;
    margin-top: 6px;
    border-top: 1px dashed var(--color-border);
  }
  .nav-social-mobile a { padding: 0; }
  .hero-grid,
  .story-grid,
  .story-grid.reverse,
  .space-grid,
  .reserve-panel,
  .contact-grid { grid-template-columns: 1fr; }
  .story-grid.reverse .blob-photo { order: 0; }
  .hero-visual { min-height: 460px; }
  .hero-photo { left: 50%; transform: translateX(-50%); right: auto; }
  .floating-note { left: 8%; bottom: 20px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reasons,
  .article-grid { grid-template-columns: 1fr; }
  .audience-grid,
  .space-cards { grid-template-columns: repeat(2, 1fr); }
  .venue,
  .footer-grid { grid-template-columns: 1fr; }
  .venue { gap: 28px; }
  .venue.reverse .venue-map { order: 0; }
  .blob-photo { min-height: 420px; }
  .blob-soft { aspect-ratio: auto; height: 440px; max-width: 520px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--max)); }
  .nav-bar { min-height: 64px; gap: 12px; }
  .nav-social { display: none; }
  .brand-logo { width: 44px; height: 44px; }
  .footer-logo { width: 72px; height: 72px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy em { display: none; }
  .brand-copy span { font-size: 11px; }
  .nav-cta { padding: 9px 13px; font-size: 13px; }
  .hero { padding: 48px 0 96px; }
  .hero .lead { font-size: 17px; }
  .hero-visual { min-height: 440px; }
  .hero-photo { max-width: 330px; }
  .floating-note { max-width: 200px; left: 3%; }
  .scallop { grid-template-columns: repeat(6, 1fr); }
  .section { padding: 64px 0; }
  .steps,
  .audience-grid,
  .space-cards,
  .facts,
  .form-grid { grid-template-columns: 1fr; }
  .soft-panel,
  .reserve-panel { padding: 28px 20px; border-radius: 32px; }
  .site-form { padding: 22px 18px; border-radius: 26px; }
  .venue-map { border-radius: 28px 64px 28px 64px; }
  .venue.reverse .venue-map { border-radius: 64px 28px 64px 28px; }
  .venue-actions .btn { flex: 1 1 auto; }
  .blob-photo { min-height: 360px; }
  .blob-soft { height: 320px; }
  .space-large { min-height: 360px; }
  .space-small { min-height: 200px; }
  .quote { font-size: 19px; }
  .site-footer { margin-top: 64px; }
}

/* ---------- Legal page（privacy.html） ---------- */
.legal {
  max-width: 760px;
  padding: 56px 0 80px;
}
.legal h1 {
  margin: 0 0 6px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.2;
  color: var(--color-heading);
}
.legal-meta {
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.legal h2 {
  margin: 36px 0 10px;
  font-size: 22px;
  color: var(--color-heading);
}
.legal p,
.legal li { color: var(--color-text-muted); font-size: 16px; }
.legal p { margin: 0 0 12px; }
.legal ul { margin: 0 0 12px; padding-left: 1.3em; }
.legal li { margin-bottom: 6px; }
.legal li strong { color: var(--color-text); font-weight: 400; }
.legal a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { margin-top: 40px; background: var(--color-surface-soft); border-color: var(--color-border); }
.consent a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 404 ---------- */
.notfound {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--color-surface-blush);
}
.notfound-logo {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-bottom: 20px;
}
.notfound h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--color-heading);
}
.notfound p { max-width: 460px; margin: 0 0 26px; color: var(--color-text-muted); }
.notfound-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Journal：自動同步 Blogger ---------- */
.article-card { display: flex; flex-direction: column; }
.article-thumb {
  display: block;
  margin: -26px -26px 16px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: var(--color-surface-blush);
}
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--color-primary);
}
.article-meta time { color: var(--color-text-muted); letter-spacing: 0; }
.article-card h3 a { color: inherit; }
.article-card h3 a:hover { color: var(--color-heading); }
.article-card .text-link {
  margin-top: auto;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 14px;
}
.journal-actions { margin-top: 28px; text-align: center; }
.journal-fallback {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-text-muted);
}
.journal-fallback p { margin: 0 0 16px; }
