/* ============================================================================
   STYLE.CSS — GIAO DIỆN WEBSITE ANNA THU · HEALTH COACH
   ----------------------------------------------------------------------------
   Phong cách "wellness Á Đông": nền ngà ấm, xanh ngọc bích (jade), điểm nhấn
   vàng đồng nhẹ; chữ tiêu đề serif thanh thoát (Playfair Display) + chữ thân
   dễ đọc, hỗ trợ tốt dấu tiếng Việt (Be Vietnam Pro).

   Cấu trúc: (1) Biến & reset · (2) Typography & tiện ích · (3) Nút · (4) Header
   & điều hướng · (5) Hero · (6) About · (7) Programs · (8) Booking · (9)
   Testimonials · (10) FAQ · (11) Commitments · (12) Contact · (13) Footer ·
   (14) Feedback modal · (15) Reveal & reduced-motion · (16) Responsive.
   ========================================================================= */

/* ============================ 1. BIẾN & RESET ============================ */
:root {
  /* Nền & bề mặt */
  --bg: #faf7f0;          /* ngà ấm */
  --bg-alt: #f2ede1;      /* cát nhạt */
  --bg-deep: #eae3d4;     /* cát đậm hơn */
  --surface: #ffffff;
  --surface-warm: #fdfbf6;

  /* Mực / chữ */
  --ink: #2c352d;         /* xanh than trầm */
  --ink-soft: #586158;
  --ink-mute: #7c847b;

  /* Xanh ngọc bích (chủ đạo) */
  --jade: #4a6b57;
  --jade-deep: #35503f;
  --jade-hover: #3d5a49;
  --sage: #8ca795;
  --sage-soft: #d7e2d8;
  --jade-tint: #eef3ee;

  /* Vàng đồng (điểm nhấn) */
  --gold: #bf9d5f;
  --gold-deep: #a9873f;
  --gold-soft: #e6d5ab;
  --gold-tint: #f6efdd;

  /* Đất nung (phụ, rất tiết chế) */
  --clay: #c07a56;

  /* Đường kẻ & bóng */
  --line: rgba(74, 107, 87, 0.16);
  --line-soft: rgba(74, 107, 87, 0.09);
  --shadow-sm: 0 2px 8px rgba(44, 53, 45, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(44, 53, 45, 0.22);
  --shadow-lg: 0 26px 60px -24px rgba(44, 53, 45, 0.34);

  /* Bo góc */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Nhịp & bố cục */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 120px);

  /* Font */
  --font-display: "Playfair Display", "Be Vietnam Pro", Georgia, serif;
  --font-body: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Bảo đảm thuộc tính [hidden] luôn thắng các quy tắc display của tác giả
   (vd .contact__detail{display:flex}), tránh lộ hàng rỗng khi JS ẩn phần tử. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15.5px, 1vw + 13px, 17px);
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% -4%, rgba(191, 157, 95, 0.10), transparent 42%),
    radial-gradient(circle at 92% 4%, rgba(140, 167, 149, 0.14), transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open,
body.feedback-modal-open {
  overflow: hidden;
}

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

a {
  color: var(--jade-deep);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--gold-deep); }

button {
  font-family: inherit;
  cursor: pointer;
}

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

/* ==================== 2. TYPOGRAPHY & TIỆN ÍCH ==================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.16;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
}
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); }

.section__head {
  max-width: 680px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}
.section__head .section__title { margin-bottom: 0.35em; }
.section__desc {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}
.section__title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
}

/* Eyebrow (nhãn nhỏ phía trên tiêu đề) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jade);
  margin: 0 0 1em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section__head .eyebrow::before { display: none; }
.section__head .eyebrow {
  justify-content: center;
  color: var(--gold-deep);
}
.section__head .eyebrow::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section__head .eyebrow::before {
  display: inline-block;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--jade-deep);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translateY(0); color: #fff; }

.icon {
  width: 1.35em;
  height: 1.35em;
  display: inline-block;
  vertical-align: middle;
  flex: none;
}

/* ============================ 3. NÚT ============================ */
.btn {
  --btn-bg: var(--jade);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.7em;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  box-shadow: 0 8px 20px -12px rgba(53, 80, 63, 0.8);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -12px rgba(53, 80, 63, 0.7);
  color: var(--btn-fg);
}
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--jade); }
.btn--primary:hover { background: var(--jade-hover); }

.btn--gold {
  --btn-bg: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--jade-deep);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--jade-tint);
  border-color: var(--sage);
  color: var(--jade-deep);
}

.btn--light {
  --btn-bg: rgba(255, 255, 255, 0.14);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: none;
}
.btn--light:hover { background: rgba(255, 255, 255, 0.24); color: #fff; }

.btn--lg { padding: 1.05em 2.1em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ==================== 4. HEADER & ĐIỀU HƯỚNG ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 240, 0.72);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 240, 0.92);
  border-bottom-color: var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--sage), var(--jade) 78%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28), var(--shadow-sm);
  flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

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

/* Điều hướng */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.4vw, 22px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
  border-radius: 2px;
}
.nav-link:hover { color: var(--jade-deep); }
.nav-link:hover::after { transform: scaleX(1); }

/* Chuyển ngôn ngữ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  gap: 2px;
  background: var(--jade-tint);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-pill);
}
.lang-switch__btn {
  border: 0;
  background: transparent;
  color: var(--ink-mute);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-switch__btn.is-active {
  background: var(--surface);
  color: var(--jade-deep);
  box-shadow: var(--shadow-sm);
}

/* Nút hamburger (mobile) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-warm);
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 5px); }
.nav-toggle.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 40, 32, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 990;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

/* ============================ 5. HERO ============================ */
.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 104px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero__eyebrow { margin-bottom: 1.1em; }
.hero__title {
  font-size: clamp(2.9rem, 6vw, 4.7rem);
  line-height: 1.02;
  margin-bottom: 0.12em;
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  color: var(--jade);
  margin-bottom: 0.8em;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 2em;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  margin-top: 2.4em;
  padding-top: 1.8em;
  border-top: 1px solid var(--line-soft);
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--jade-deep);
}
.hero__trust-label {
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
/* Con số nổi bật: dùng chữ số lining + tabular để đều nhau; dấu "+" thu nhỏ,
   nâng nhẹ thành dạng superscript gọn gàng (tránh dấu + bị đẩy lên cao lệch). */
.hero__trust-num,
.stat__number {
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.num-plus {
  display: inline-block;
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: 0.5em;
  margin-left: 0.06em;
  color: var(--gold);
  font-feature-settings: normal;
}

/* Khối ảnh hero */
.hero__media { position: relative; }
.hero__figure {
  position: relative;
  margin: 0;
  border-radius: 200px 200px var(--r-xl) var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--jade-tint);
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 62%;
  aspect-ratio: 1;
  border: 1.5px solid var(--gold-soft);
  border-radius: 50%;
  z-index: -1;
}
.hero__badge {
  position: absolute;
  left: -14px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 14px;
  background: var(--surface);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
}
.hero__badge-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-deep);
}
.hero__badge-mark .icon { width: 22px; height: 22px; }
.hero__badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero__badge-text strong { font-size: 0.98rem; color: var(--ink); }
.hero__badge-text span { font-size: 0.78rem; color: var(--ink-mute); }

/* ============================ 6. ABOUT ============================ */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.about__portrait {
  position: relative;
  margin: 0;
}
.about__portrait-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--jade-tint);
}
.about__portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__portrait::after {
  content: "";
  position: absolute;
  inset: 16px 16px -16px -16px;
  border: 1.5px solid var(--sage-soft);
  border-radius: var(--r-xl);
  z-index: -1;
}
.about__quote {
  position: absolute;
  right: -12px;
  bottom: -22px;
  max-width: 230px;
  padding: 16px 20px;
  background: var(--jade-deep);
  color: #fff;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
}

.about__name {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.15em;
}
.about__role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--jade);
  margin-bottom: 1.2em;
}
.about__role::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.about__bio p {
  color: var(--ink-soft);
  margin-bottom: 0.9em;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 1.8em 0;
  padding: 1.4em 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--jade-deep);
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

.about__cred-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1em;
}
.cred-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cred-item__check {
  flex: none;
  width: 24px; height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--jade-tint);
  position: relative;
}
.cred-item__check::after {
  content: "";
  position: absolute;
  left: 8px; top: 5px;
  width: 6px; height: 11px;
  border: solid var(--jade);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cred-item__title { display: block; font-weight: 600; color: var(--ink); }
.cred-item__issuer { display: block; font-size: 0.86rem; color: var(--ink-mute); }

/* ============================ 7. PROGRAMS ============================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}
.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--jade), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-soft);
}
.program-card:hover::before { transform: scaleX(1); }
.program-card__index {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-soft);
  opacity: 0.7;
  line-height: 1;
}
.program-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--jade-tint);
  color: var(--jade);
  margin-bottom: 18px;
}
.program-card__icon .icon { width: 30px; height: 30px; }
.program-card__title {
  font-size: 1.24rem;
  margin-bottom: 0.35em;
  padding-right: 34px;
}
.program-card__tagline {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9em;
}
.program-card__desc {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin-bottom: 1.6em;
  flex: 1;
}
.program-card__cta { align-self: flex-start; }

/* ============================ 8. BOOKING ============================ */
.booking__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.booking__aside {
  position: sticky;
  top: 96px;
}
.booking__intro { color: var(--ink-soft); margin-bottom: 1.6em; }
.booking__contacts {
  display: grid;
  gap: 14px;
  margin-bottom: 1.8em;
}
.booking__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.booking__contact:hover { border-color: var(--sage); color: var(--ink); }
.booking__contact-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--jade-tint);
  color: var(--jade);
  flex: none;
}
.booking__contact-label { font-size: 0.78rem; color: var(--ink-mute); display: block; }
.booking__contact-value { font-weight: 600; }

.booking__note {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  background: var(--gold-tint);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: #7a5f2a;
}
.booking__note .icon { color: var(--gold-deep); margin-top: 2px; }

/* Gợi ý khu vực chung khi chọn hình thức "Trực tiếp" (bước 1 form đặt lịch) */
.booking-area-hint {
  margin: 12px 0 0;
  padding: 10px 14px;
  background: var(--gold-tint);
  border-radius: var(--r-md);
  font-size: 0.86rem;
  line-height: 1.5;
  color: #7a5f2a;
}
.booking-area-hint[hidden] { display: none; }

/* Thẻ form */
.booking__form-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 3vw, 44px);
}

.booking-step { margin-bottom: 28px; }
.booking-step:last-of-type { margin-bottom: 0; }
.booking-step__label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--jade-deep);
  margin-bottom: 14px;
}

/* Nhóm lựa chọn radio dạng thẻ */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}
.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface-warm);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.choice__icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--jade-tint);
  color: var(--jade);
  flex: none;
}
.choice__icon .icon { width: 20px; height: 20px; }
.choice__label { font-weight: 600; font-size: 0.95rem; }
.choice:hover { border-color: var(--sage); }
.choice:has(input:checked) {
  border-color: var(--jade);
  background: var(--jade-tint);
  box-shadow: 0 0 0 1px var(--jade);
}
.choice:has(input:checked) .choice__icon { background: var(--jade); color: #fff; }
.choice:has(input:focus-visible) { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Trường form chung */
.form-row { margin-bottom: 18px; }
.form-row:last-child { margin-bottom: 0; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 7px;
  color: var(--ink);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface-warm);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-mute); opacity: 0.75; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--jade);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(74, 107, 87, 0.14);
}
.form-textarea { resize: vertical; min-height: 96px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a6b57' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-hint { font-size: 0.82rem; color: var(--ink-mute); margin: 6px 0 0; }
.form-error { font-size: 0.85rem; color: var(--clay); font-weight: 600; margin: 6px 0 0; }

/* Khung giờ trống */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.time-slot {
  padding: 11px 8px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface-warm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease),
    color 0.18s var(--ease), transform 0.18s var(--ease);
}
.time-slot:hover { border-color: var(--sage); transform: translateY(-1px); }
.time-slot.is-selected {
  background: var(--jade);
  border-color: var(--jade);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

/* Honeypot ẩn (chống bot) */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.booking__submit-wrap { margin-top: 26px; }
.booking__disclaimer {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 14px;
  text-align: center;
}

/* Thông báo đặt lịch thành công */
.booking-success {
  text-align: center;
  padding: 20px 10px;
}
.booking-success__mark {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--jade-tint);
  color: var(--jade);
}
.booking-success__mark .icon { width: 40px; height: 40px; }
.booking-success__title { font-size: 1.6rem; margin-bottom: 0.4em; }
.booking-success__msg { color: var(--ink-soft); max-width: 42ch; margin-inline: auto; }

/* ==================== 9. TESTIMONIALS ==================== */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.testimonial-card__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold-soft);
  height: 30px;
}
.star-row { color: var(--gold); letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1.4em;
  flex: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.avatar-monogram {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex: none;
}
.avatar-monogram--one { background: linear-gradient(135deg, var(--jade), var(--jade-deep)); }
.avatar-monogram--two { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.avatar-monogram--three { background: linear-gradient(135deg, var(--sage), var(--jade)); }
.avatar-monogram--four { background: linear-gradient(135deg, var(--clay), var(--gold-deep)); }
.testimonial-card__name { display: block; font-weight: 700; color: var(--ink); }
.testimonial-card__location { display: block; font-size: 0.84rem; color: var(--ink-mute); }

.testimonial-card--placeholder {
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 180px;
  border-style: dashed;
  border-color: var(--sage-soft);
  background: var(--surface-warm);
}
.testimonial-card__placeholder { color: var(--ink-mute); font-style: italic; }

/* ============================ 10. FAQ ============================ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq-item.is-open { box-shadow: var(--shadow-sm); border-color: var(--sage-soft); }
.faq-item__heading { margin: 0; font-family: var(--font-body); }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-item__question:hover { color: var(--jade-deep); }
.faq-item__icon {
  position: relative;
  width: 22px; height: 22px;
  flex: none;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--jade);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-item__icon::before { width: 14px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 14px; }
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__answer { padding: 0 22px 20px; }
.faq-item__answer p { color: var(--ink-soft); margin: 0; }

/* ==================== 11. COMMITMENTS ==================== */
.commitment__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
.commitment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.commitment-list li {
  position: relative;
  padding: 18px 20px 18px 56px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.commitment-list li::before {
  content: "";
  position: absolute;
  left: 18px; top: 20px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--jade-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234a6b57' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.commitment__aside {
  padding: clamp(28px, 3.5vw, 44px);
  background: linear-gradient(150deg, var(--jade-deep), var(--jade));
  border-radius: var(--r-xl);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.commitment__aside .eyebrow { color: var(--gold-soft); }
.commitment__aside .eyebrow::before { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.commitment__aside-title { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.commitment__aside-text { color: rgba(255, 255, 255, 0.86); margin-top: 0.8em; }
.commitment__seal {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  margin-bottom: 20px;
}
.commitment__seal .icon { width: 34px; height: 34px; }

/* ============================ 12. CONTACT ============================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.contact__intro { color: var(--ink-soft); margin-bottom: 1.8em; max-width: 46ch; }

.contact__details { display: grid; gap: 14px; margin-bottom: 2em; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.contact__detail-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--jade-tint);
  color: var(--jade);
  flex: none;
}
.contact__detail-label { font-size: 0.78rem; color: var(--ink-mute); display: block; }
.contact__detail-value { font-weight: 600; }
a.contact__detail:hover { color: var(--jade-deep); }

.contact__cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2em; }

.contact__social-heading,
.contact__hours-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
}
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--jade);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.social-link:hover {
  transform: translateY(-3px);
  background: var(--jade);
  color: #fff;
  border-color: var(--jade);
}

/* Thẻ giờ + QR (cột phải) */
.contact__card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 3vw, 36px);
}
.contact-hours { list-style: none; margin: 0 0 8px; padding: 0; }
.contact-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.contact-hours li:last-child { border-bottom: 0; }
.contact-hours li span:first-child { color: var(--ink-soft); font-weight: 500; }
.contact-hours li span:last-child { color: var(--ink); font-weight: 600; text-align: right; }
.contact__after-hours {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--gold-tint);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: #7a5f2a;
}
.contact__after-hours .icon { flex: none; color: var(--gold-deep); margin-top: 2px; }

.contact__qr {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact__qr-img {
  width: 108px; height: 108px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px;
  flex: none;
}
.contact__qr-label { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================ 13. FOOTER ============================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(48px, 6vw, 76px) 28px;
}
.site-footer a { color: rgba(255, 255, 255, 0.72); }
.site-footer a:hover { color: var(--gold-soft); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer__brand .brand__mark { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.28); }
.footer__tagline { max-width: 40ch; font-size: 0.95rem; }
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 16px;
}
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__links a { font-size: 0.95rem; }
.footer__social { display: flex; gap: 12px; margin-top: 6px; }
.footer__social .social-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}
.footer__social .social-link:hover { background: var(--gold); border-color: var(--gold); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==================== 14. FEEDBACK MODAL (nút nổi) ==================== */
.feedback-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jade), var(--jade-deep));
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feedback-fab .icon { width: 28px; height: 28px; }
.feedback-fab:hover { transform: translateY(-3px) scale(1.04); }
.feedback-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--jade);
  opacity: 0.5;
  animation: fab-pulse 2.6s var(--ease) infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.feedback-modal[hidden] { display: none; }
.feedback-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 32, 0.5);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.feedback-modal.is-open .feedback-modal__overlay { opacity: 1; }
.feedback-modal__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 38px);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}
.feedback-modal.is-open .feedback-modal__panel { transform: translateY(0) scale(1); opacity: 1; }
.feedback-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.feedback-modal__close:hover { background: var(--jade-tint); color: var(--jade-deep); }
.feedback-modal__close .icon { width: 20px; height: 20px; }
.feedback-modal__title { font-size: 1.5rem; margin-bottom: 0.3em; }
.feedback-modal__subtitle { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.4em; }

.feedback-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: var(--bg-alt);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.feedback-tab {
  flex: 1;
  padding: 9px 12px;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.feedback-tab.is-active {
  background: var(--surface);
  color: var(--jade-deep);
  box-shadow: var(--shadow-sm);
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.feedback-form__status {
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 4px 0 16px;
}
.feedback-form__status.is-success { background: var(--jade-tint); color: var(--jade-deep); }
.feedback-form__status.is-error { background: #fbe9e2; color: #a2482a; }

/* ============== 15. REVEAL & REDUCED MOTION ============== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================ 16. RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 0.85fr; }
  .booking__grid,
  .commitment__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .booking__aside { position: static; }
  .about__quote { position: static; max-width: none; margin-top: 20px; }
  .about__portrait::after { display: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .header__actions { gap: 10px; }
  .header__cta { display: none; }

  .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(82vw, 340px);
    padding: 92px 30px 40px;
    background: var(--surface);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 995;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { padding: 12px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .nav-link::after { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 420px; margin-inline: auto; order: -1; }
  .hero__figure { aspect-ratio: 3 / 3.4; }
  /* Ảnh nhỏ lại trên điện thoại -> huy hiệu cũng thu gọn & sát góc để không
     lấn vào giữa ảnh. */
  .hero__badge {
    left: 8px;
    bottom: 14px;
    gap: 10px;
    padding: 10px 15px 10px 10px;
  }
  .hero__badge-mark { width: 36px; height: 36px; }
  .hero__badge-mark .icon { width: 19px; height: 19px; }
  .hero__badge-text strong { font-size: 0.9rem; }
  .hero__badge-text span { font-size: 0.72rem; }
  .about__grid { grid-template-columns: 1fr; }
  .about__portrait { max-width: 400px; margin-inline: auto; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .form-row--split { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  .stat { display: flex; align-items: baseline; gap: 12px; text-align: left; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .contact__qr { flex-direction: column; text-align: center; }
  .feedback-tabs { flex-direction: column; }
}

/* ==================== 17. TRANG PHÁP LÝ (privacy) ==================== */
.legal-header .site-header__inner { min-height: 68px; }
.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--jade-deep);
}

.legal-main { padding-block: clamp(40px, 6vw, 80px); }
.legal-doc {
  max-width: 840px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 5vw, 60px);
}
.legal-doc__head {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.legal-doc__title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 0.3em; }
.legal-doc__updated {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--ink-mute);
  background: var(--bg-alt);
  padding: 5px 14px;
  border-radius: var(--r-pill);
}
.legal-doc__intro { color: var(--ink-soft); margin-top: 1.2em; }

.legal-section { margin-bottom: 34px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 {
  font-size: 1.3rem;
  color: var(--jade-deep);
  margin-bottom: 0.6em;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.legal-section p { color: var(--ink-soft); }
.legal-section ul {
  margin: 0 0 1em;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.legal-section ul li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}
.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
}
.legal-section strong { color: var(--ink); font-weight: 700; }
.legal-note {
  padding: 16px 18px;
  background: var(--jade-tint);
  border-radius: var(--r-md);
  color: var(--ink-soft);
}
.legal-note--feedback { background: var(--gold-tint); }
.legal-contact-line { margin-top: 0.6em; font-size: 1.02rem; }
.legal-contact-line strong { color: var(--jade-deep); }
.legal-doc__foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}
