:root {
  --paper: #F7F4EE;
  --paper-2: #EFE9DF;
  --card: #FFFFFF;
  --ink: #1D221F;
  --ink-soft: #575D58;
  --ink-faint: #7C817B;
  --line: #E2DBCF;
  --pine: #2C473D;
  --pine-deep: #1E332C;
  --gold: #B08D57;
  --gold-text: #86672F;
  --wa: #15804A;
  --wa-hover: #10693C;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(29, 34, 31, .04), 0 12px 32px rgba(44, 71, 61, .09);
  --cta: #C5A059;
  --cta-hover: #B38F4C;
  --cta-ink: #1F241F;
  --serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.3; margin: 0; }
p { margin: 0; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .wrap { padding: 0 28px; } }
.narrow { max-width: 780px; }
.center { text-align: center; }
.center .btn-row { justify-content: center; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 12px; z-index: 100; background: #fff; padding: 8px 12px; border-radius: 8px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.ico { width: 18px; height: 18px; flex: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 238, .92);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid rgba(226, 219, 207, .85);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.brand-cn { font-family: var(--serif); font-weight: 700; font-size: 21px; letter-spacing: .08em; }
.brand-en { font-size: 10px; letter-spacing: .22em; color: var(--ink-soft); margin-top: 5px; }

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { text-decoration: none; font-size: 15px; color: var(--ink-soft); padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--gold); }
.site-nav .nav-wa {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cta); color: var(--cta-ink); padding: 8px 16px; border-radius: 999px; border: 0; font-weight: 600;
}
.site-nav .nav-wa:hover { background: var(--cta-hover); color: var(--cta-ink); }

.nav-toggle { display: none; }
@media (max-width: 959px) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 1px solid var(--line); border-radius: 999px;
    padding: 7px 14px; font: inherit; font-size: 14px; color: var(--ink); cursor: pointer;
  }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 64px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 4px 16px 16px; box-shadow: 0 16px 30px rgba(29, 34, 31, .08);
  }
  .nav-open .site-nav { display: flex; }
  .site-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--ink); }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--line); color: var(--gold-text); }
  .site-nav .nav-wa { margin-top: 14px; justify-content: center; border-radius: 12px; padding: 13px; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  font-size: 16px; font-weight: 600; text-decoration: none; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.btn .ico { width: 20px; height: 20px; }
.btn-wa { background: var(--cta); color: var(--cta-ink); box-shadow: 0 6px 18px rgba(197, 160, 89, .28); }
.btn-wa:hover { background: var(--cta-hover); }
.btn-ghost { border-color: rgba(255, 255, 255, .75); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-dark { background: var(--pine); color: #fff; }
.btn-dark:hover { background: var(--pine-deep); }
.btn-line { border-color: var(--pine); color: var(--pine); }
.btn-line:hover { background: rgba(44, 71, 61, .06); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- hero ---------- */
.hero, .page-hero {
  position: relative; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; background: var(--pine-deep);
}
.hero { min-height: 86vh; min-height: min(86svh, 780px); }
.page-hero { min-height: 60vh; min-height: min(60svh, 540px); }
.hero > img, .page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after, .page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 19, 17, .30) 0%, rgba(14, 19, 17, .12) 26%, rgba(14, 19, 17, .58) 56%, rgba(14, 19, 17, .86) 100%);
}
@media (min-width: 768px) {
  .hero::after, .page-hero::after {
    background:
      linear-gradient(90deg, rgba(14, 19, 17, .55) 0%, rgba(14, 19, 17, 0) 62%),
      linear-gradient(180deg, rgba(14, 19, 17, .30) 0%, rgba(14, 19, 17, .08) 30%, rgba(14, 19, 17, .72) 100%);
  }
}
.hero-inner h1, .hero-inner .eyebrow, .hero-brand, .hero-sub, .hero-lead, .crumbs { text-shadow: 0 1px 12px rgba(0, 0, 0, .35); }
.hero-inner { position: relative; z-index: 1; width: 100%; padding-top: 96px; padding-bottom: 44px; }
@media (min-width: 768px) { .hero-inner { padding-bottom: 72px; } }

.eyebrow { font-size: 13px; letter-spacing: .2em; color: var(--gold-text); font-weight: 600; margin-bottom: 10px; }
.eyebrow.light { color: #E8D9B8; }

.hero-brand { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; margin-bottom: 16px; font-size: 11.5px; letter-spacing: .28em; color: #EFE7D6; }
.hero-brand span { font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: .12em; color: #fff; }
.hero-title { font-size: clamp(32px, 6.2vw, 58px); font-weight: 700; line-height: 1.28; letter-spacing: .04em; max-width: 14em; margin-bottom: 16px; }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: #F1EBDD; max-width: 34em; margin-bottom: 26px; }
.hero-lead { font-size: clamp(17px, 2.2vw, 20px); max-width: 30em; color: #F4EFE6; margin-bottom: 26px; }

.page-hero h1 { font-size: clamp(38px, 7vw, 60px); letter-spacing: .06em; margin-bottom: 12px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.h1-sub { font-size: .4em; letter-spacing: .2em; color: #EFE7D6; font-weight: 500; }
.crumbs { font-size: 14px; color: #E3DCCD; margin-bottom: 14px; display: flex; gap: 8px; }
.crumbs a { color: #E3DCCD; }

/* ---------- sections ---------- */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } }
.tint { background: var(--paper-2); }
.section-head { margin-bottom: 32px; max-width: 680px; }
.section-head h2 { font-size: clamp(26px, 4vw, 36px); letter-spacing: .04em; }
.section-head .lead { margin-top: 12px; color: var(--ink-soft); font-size: 17px; }
.section-head .lead p + p { margin-top: 10px; }
.section-head.row { display: flex; align-items: flex-end; justify-content: space-between; max-width: none; gap: 16px; flex-wrap: wrap; }
.link-more { display: inline-block; margin-top: 22px; color: var(--pine); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.section-head .link-more { margin-top: 0; }

/* ---------- cards ---------- */
.cards { display: grid; gap: 20px; }
@media (min-width: 720px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(29, 34, 31, .06), 0 16px 36px rgba(29, 34, 31, .1); }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; background: var(--paper-2); }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { font-size: 23px; display: flex; align-items: baseline; gap: 10px; }
.card h3 small { font-family: var(--sans); font-size: 14px; color: var(--ink-faint); font-weight: 500; letter-spacing: .04em; }
.card p { color: var(--ink-soft); }
.more { margin-top: auto; padding-top: 8px; color: var(--pine); font-weight: 600; }
.more::after { content: " →"; }

/* ---------- features ---------- */
.features { display: grid; gap: 16px; }
@media (min-width: 720px) { .features { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 24px; }
.f-ico { width: 34px; height: 34px; color: var(--pine); margin-bottom: 12px; }
.feature h3 { font-size: 20px; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); }

/* ---------- gallery ---------- */
.gallery {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr; grid-auto-rows: 130px;
  grid-template-areas: "a e" "a e" "b c" "d f";
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 14px; grid-template-areas: "a b c" "a d e" "f f e"; }
}
.gallery figure { margin: 0; position: relative; border-radius: 12px; overflow: hidden; background: var(--paper-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 9px;
  font-size: 13.5px; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, .58));
}
.ga { grid-area: a; } .gb { grid-area: b; } .gc { grid-area: c; }
.gd { grid-area: d; } .ge { grid-area: e; } .gf { grid-area: f; }

/* ---------- split ---------- */
.split { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; gap: 52px; } }
.split h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.split > div > p { color: var(--ink-soft); }
.split-img { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.times { margin: 22px 0 8px; border-top: 1px solid var(--line); }
.times div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.times dt { color: var(--ink-soft); }
.times dd { margin: 0; font-weight: 600; white-space: nowrap; }
.fine { font-size: 14px; color: var(--ink-faint); margin-bottom: 22px; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 18px 40px 18px 0; font-family: var(--serif); font-size: 18px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); }

/* ---------- advisor / contact band ---------- */
.contact { background: var(--pine); color: #fff; }
.contact .eyebrow { color: #E0C98F; }
.contact h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 12px; }
.contact p { color: #DDE7E2; margin-bottom: 24px; }
.advisor-wrap { max-width: 1040px; }
.advisor { display: grid; gap: 28px; }
@media (min-width: 820px) { .advisor { grid-template-columns: minmax(280px, .85fr) 1.15fr; gap: 48px; align-items: center; } }
.advisor-photo { margin: 0; border-radius: 12px; overflow: hidden; background: var(--pine-deep); box-shadow: 0 18px 44px rgba(0, 0, 0, .28); }
.advisor-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 35%; }
@media (min-width: 820px) { .advisor-photo img { aspect-ratio: 3 / 4; } }
.advisor-photo figcaption { padding: 10px 14px; font-size: 13.5px; color: #CFDDD6; border-top: 1px solid rgba(255, 255, 255, .1); }
.advisor h2 { font-size: clamp(24px, 3.6vw, 31px); line-height: 1.4; }
.contact .advisor-motto { font-family: var(--serif); font-size: 18px; letter-spacing: .06em; color: #E8D9B8; margin-top: -10px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #CFCAC0; padding: 52px 0 24px; font-size: 15px; }
.footer-grid { display: grid; gap: 32px 24px; grid-template-columns: 1fr 1fr; }
.f-about { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .f-about { grid-column: auto; }
}
.f-brand { font-family: var(--serif); font-size: 22px; color: #fff; letter-spacing: .08em; display: flex; flex-direction: column; margin-bottom: 14px !important; }
.f-brand span { font-family: var(--sans); font-size: 10.5px; letter-spacing: .22em; color: #A9A498; margin-top: 5px; }
.f-about p + p { margin-top: 8px; }
.f-about p:last-child { max-width: 26em; }
.f-head { font-family: var(--serif); font-size: 17px; font-weight: 600; letter-spacing: .06em; color: #fff; margin-bottom: 12px !important; }
.f-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.f-col li { position: relative; padding-left: 14px; }
.f-col li::before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.f-col a { text-decoration: none; color: #CFCAC0; }
.f-col a:hover { color: #fff; }
.f-contact { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 14px; color: #fff; }
.footer-note {
  margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 13px; color: #A29D92;
}

/* ---------- mobile WhatsApp bar ---------- */
.wa-bar { display: none; }
@media (max-width: 767px) {
  .wa-bar {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(247, 244, 238, .95);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .wa-bar .btn { width: 100%; }
  .wa-bar .btn { min-height: 54px; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
}

.toast {
  position: fixed; left: 50%; bottom: 100px; z-index: 80; transform: translate(-50%, 12px);
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; font-size: 14px;
  max-width: calc(100% - 32px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- photo pages (福位 / 福地) ---------- */
.chip-bar {
  position: sticky; top: 64px; z-index: 40;
  background: rgba(247, 244, 238, .95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.chips { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chips a {
  flex: none; text-decoration: none; white-space: nowrap;
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; color: var(--ink-soft); background: var(--card);
}
.chips a b { color: var(--gold-text); margin-right: 6px; }
.chips a:hover { color: var(--ink); border-color: var(--gold); }

.groups { padding: 12px 0 56px; }
.groups-hint { padding-top: 24px; color: var(--ink-soft); font-size: 15px; }
.hero-lead p + p { margin-top: 10px; }
.group { padding: 36px 0 8px; scroll-margin-top: 140px; }
.group + .group { border-top: 1px solid var(--line); margin-top: 28px; }
.group-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.group-head h2 { font-size: clamp(23px, 3.4vw, 29px); letter-spacing: .04em; }
.group-head .tag { font-size: 13px; font-weight: 700; color: var(--gold-text); letter-spacing: .08em; }
.group-head p { width: 100%; color: var(--ink-soft); font-size: 15px; }

.pgrid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .pgrid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.ph { display: block; padding: 0; border: 0; background: none; text-align: left; cursor: zoom-in; font: inherit; color: inherit; }
.ph img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; background: var(--paper-2); transition: opacity .15s; }
.ph:hover img { opacity: .88; }
.ph span { display: block; font-size: 13.5px; color: var(--ink-soft); padding: 7px 2px 0; line-height: 1.5; }
.more-note { margin-top: 36px; padding: 20px 22px; border: 1px dashed var(--gold); border-radius: 12px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.more-note p { color: var(--ink-soft); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(10, 12, 11, .95);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; padding: 60px 10px 36px;
}
.lightbox[hidden] { display: none; }
.lb-fig { grid-column: 2; margin: 0; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lb-fig img { max-width: 100%; max-height: calc(100vh - 160px); max-height: calc(100svh - 160px); object-fit: contain; border-radius: 6px; }
.lb-fig figcaption { color: #E9E4D9; font-size: 15px; text-align: center; }
.lb-close { position: absolute; top: 8px; right: 10px; width: 48px; height: 48px; border: 0; background: none; color: #fff; font-size: 36px; line-height: 1; cursor: pointer; }
.lb-prev, .lb-next { width: 46px; height: 64px; border: 0; border-radius: 10px; background: rgba(255, 255, 255, .1); color: #fff; font-size: 32px; cursor: pointer; }
.lb-prev { grid-column: 1; }
.lb-next { grid-column: 3; }
.lb-count { position: absolute; top: 20px; left: 16px; margin: 0; color: #BDB7AA; font-size: 14px; }
body.lb-open { overflow: hidden; }
@media (max-width: 600px) {
  .lightbox { grid-template-columns: 1fr 1fr; align-content: center; row-gap: 16px; }
  .lb-fig { grid-column: 1 / -1; }
  .lb-prev { grid-column: 1; justify-self: start; }
  .lb-next { grid-column: 2; justify-self: end; }
}

/* ---------- 白事配套 page ---------- */
.pkgs { display: grid; gap: 18px; }
@media (min-width: 820px) { .pkgs { grid-template-columns: 1fr 1fr; gap: 22px; } }
.pkg { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.pkg h3 { font-size: 22px; margin-bottom: 14px; }
.names { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.names li { padding: 6px 14px; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line); font-family: var(--serif); font-size: 16px; }
.pkg p { color: var(--ink-soft); font-size: 15px; }

.includes { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px 28px; }
@media (min-width: 720px) { .includes { grid-template-columns: 1fr 1fr; } }
.includes li { position: relative; padding: 12px 0 12px 30px; border-bottom: 1px solid var(--line); }
.includes li::before {
  content: ""; position: absolute; left: 4px; top: 19px; width: 12px; height: 7px;
  border-left: 2px solid var(--pine); border-bottom: 2px solid var(--pine); transform: rotate(-45deg);
}
.fine-note { margin-top: 18px; font-size: 14px; color: var(--ink-faint); }

.urgent { background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 26px; }
.urgent h2 { font-size: clamp(24px, 3.6vw, 30px); margin-bottom: 10px; }
.urgent p { color: var(--ink-soft); margin-bottom: 20px; font-size: 17px; }

/* ---------- advisor trust points ---------- */
.trust { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
@media (min-width: 720px) { .trust { grid-template-columns: repeat(2, 1fr); } }
.trust li { padding: 12px 14px; border-radius: 12px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16); }
.trust b { display: block; font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--cta); }
.trust span { font-size: 14px; color: #DDE7E2; }

/* ---------- drive-time stat badges ---------- */
.stats { list-style: none; margin: 22px 0 20px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat { padding: 16px 16px 14px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.stat-num { font-family: var(--serif); font-size: clamp(34px, 5vw, 44px); font-weight: 700; line-height: 1; color: var(--pine); }
.stat-num small { margin-left: 4px; font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.stat-label { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); }
.stat-hi { background: var(--pine); border-color: var(--pine); }
.stat-hi .stat-num { color: var(--cta); }
.stat-hi .stat-num small, .stat-hi .stat-label { color: #DDE7E2; }

/* ---------- client stories ---------- */
.stories { display: grid; gap: 20px; }
@media (min-width: 820px) { .stories { grid-template-columns: 1fr 1fr; gap: 24px; } }
.story { display: flex; flex-direction: column; overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.story > img, .story .photo-missing { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--paper-2); }
.story .photo-missing { display: grid; place-items: center; font-size: 14px; color: var(--ink-faint); }
.story-body { padding: 20px 22px 22px; }
.story h3 { font-size: 20px; margin-bottom: 8px; }
.story p { color: var(--ink-soft); }
.story .story-tag { margin-top: 12px; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; color: var(--gold-text); }
[data-draft] .story { border-style: dashed; border-color: var(--gold); box-shadow: none; }

/* ---------- mobile sticky bar label ---------- */
.wa-bar-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.wa-bar-text small { font-size: 12.5px; font-weight: 500; opacity: .85; }
