:root {
  --ink: #202321;
  --muted: #66706a;
  --paper: #f7f7f3;
  --white: #ffffff;
  --line: #dfe3df;
  --forest: #1e5547;
  --forest-dark: #123d33;
  --coral: #b9504e;
  --gold: #c8a764;
  --night: #17211f;
  --shadow: 0 18px 48px rgba(25, 39, 34, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}
body:has(dialog[open]) { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }

.site-header {
  height: 74px;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 227, 223, 0.86);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--forest);
  font-family: "Noto Serif SC", serif;
  font-size: 20px;
}
.brand strong, .brand small { display: block; letter-spacing: 0; }
.brand strong { font-family: "Noto Serif SC", serif; font-size: 20px; line-height: 1.2; }
.brand small { color: var(--muted); font-size: 10px; margin-top: 2px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); margin-left: auto; }
.desktop-nav a { color: #3f4642; font-size: 14px; font-weight: 500; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; height: 2px; background: var(--forest); left: 0; right: 100%; bottom: -8px; transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.language-control { height: 40px; margin: 0; padding: 0 9px; display: flex; grid-template-columns: none; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
.language-control svg { width: 17px; height: 17px; color: var(--forest); flex: none; }
.language-control select { width: 112px; height: 38px; padding: 0 20px 0 0; border: 0; box-shadow: none; background-color: transparent; font-size: 12px; cursor: pointer; }
.mobile-only { display: none !important; }
.mobile-menu { position: fixed; top: 74px; left: 0; right: 0; z-index: 49; padding: 12px 24px 18px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-menu a { display: block; padding: 13px 0; border-bottom: 1px solid #edf0ed; }

.button {
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #fff;
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { background: var(--forest-dark); border-color: var(--forest-dark); transform: translateY(-1px); }
.button svg { width: 18px; height: 18px; flex: none; }
.button-small { min-height: 40px; padding: 0 16px; font-size: 14px; }
.button-full { width: 100%; }
.button-light { color: var(--forest-dark); background: #fff; border-color: #fff; }
.button-light:hover { color: #fff; background: var(--coral); border-color: var(--coral); }
.button-ghost-light { background: transparent; border-color: rgba(255,255,255,.65); color: #fff; }
.button-ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.button-secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.button-secondary:hover { color: var(--forest); background: #f3f6f4; border-color: #a8b9b2; }
.button-gold { color: var(--night); background: var(--gold); border-color: var(--gold); }
.button-gold:hover { color: #fff; background: #9f824b; border-color: #9f824b; }
.icon-button { width: 42px; height: 42px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 4px; background: #fff; cursor: pointer; }
.icon-button svg { width: 20px; }
.text-button { padding: 0; border: 0; background: transparent; display: inline-flex; align-items: center; gap: 7px; color: var(--forest); font-weight: 700; cursor: pointer; }
.text-button svg { width: 17px; transition: transform .18s; }
.text-button:hover svg { transform: translateX(4px); }

.hero { min-height: min(700px, calc(100vh - 74px)); height: calc(100vh - 74px); max-height: 760px; position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; padding: 56px clamp(24px, 8vw, 120px); background: #17231f; }
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide { position: absolute; inset: 0; opacity: 0; background-image: var(--hero-image); background-position: var(--hero-position, center); background-size: cover; transform: scale(1.025); transition: opacity 1.1s ease, transform 10s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(16, 26, 22, .82) 0%, rgba(16, 26, 22, .58) 43%, rgba(16, 26, 22, .08) 75%); }
.hero-content { width: min(620px, 100%); color: #fff; }
.eyebrow { margin: 0 0 10px; color: var(--coral); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.eyebrow.light { color: #d8e9e1; }
.eyebrow.gold { color: var(--gold); }
.hero h1 { margin: 0; font: 700 clamp(54px, 7vw, 92px)/1 "Noto Serif SC", serif; letter-spacing: 0; }
.hero-lead { margin: 20px 0 30px; max-width: 560px; font: 500 clamp(21px, 2.4vw, 30px)/1.55 "Noto Serif SC", serif; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { margin-top: 36px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 16px 28px; border-top: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.82); font-size: 13px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 17px; }
.hero-carousel-controls { position: absolute; top: 24px; right: clamp(24px, 4vw, 60px); z-index: 2; min-height: 34px; padding: 6px 7px 6px 10px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.32); border-radius: 4px; background: rgba(12,24,19,.54); backdrop-filter: blur(8px); }
.hero-carousel-dots { display: flex; align-items: center; gap: 7px; }
.hero-carousel-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.48); cursor: pointer; transition: width .2s ease, border-radius .2s ease, background .2s ease; }
.hero-carousel-dots button.is-active { width: 22px; border-radius: 6px; background: #fff; }
.hero-carousel-toggle { width: 26px; height: 26px; padding: 0; display: grid; place-items: center; border: 0; border-left: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; cursor: pointer; }
.hero-carousel-toggle svg { width: 15px; height: 15px; }

.trust-band { min-height: 116px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; padding: 18px clamp(24px, 7vw, 100px); background: #fff; border-bottom: 1px solid var(--line); }
.trust-band div { text-align: center; padding: 6px 28px; border-right: 1px solid var(--line); }
.trust-band div:last-child { border-right: 0; }
.trust-band strong, .trust-band span { display: block; }
.trust-band strong { color: var(--forest); font: 700 25px/1.2 "Noto Serif SC", serif; }
.trust-band span { margin-top: 5px; color: var(--muted); font-size: 12px; }

.section { width: min(1200px, calc(100% - 48px)); margin: 0 auto; padding: 94px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 38px; }
.section-heading h2, .assessment-copy h2, .divination-heading h2, .story-copy h2, .cta-band h2 { margin: 0; font: 700 clamp(29px, 3.4vw, 44px)/1.35 "Noto Serif SC", serif; letter-spacing: 0; }
.section-heading > p { width: 360px; margin: 0 0 5px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { padding: 28px 24px 24px; background: #fff; border: 1px solid var(--line); border-top: 3px solid transparent; border-radius: 4px; transition: transform .2s, box-shadow .2s, border-top-color .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--forest); }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 50%; }
.service-icon svg { width: 22px; }
.service-icon.coral { background: #f9e8e5; color: #9f4544; }
.service-icon.green { background: #e3f0eb; color: var(--forest); }
.service-icon.amber { background: #f6edda; color: #8a691f; }
.service-icon.blue { background: #e4edf2; color: #416a7c; }
.service-card h3 { margin: 0 0 10px; font: 700 21px/1.3 "Noto Serif SC", serif; }
.service-card p { min-height: 76px; margin: 0 0 22px; color: var(--muted); font-size: 14px; }

.assessment-band { display: grid; grid-template-columns: 1fr 1fr; background: var(--forest); color: #fff; }
.assessment-copy { padding: 82px clamp(36px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.assessment-copy > p:not(.eyebrow) { max-width: 540px; margin: 24px 0; color: #ccddd6; }
.assessment-copy ul { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 12px; }
.assessment-copy li { display: flex; align-items: center; gap: 10px; }
.assessment-copy li svg { width: 18px; color: #bcd9cc; }
.assessment-form { padding: 60px clamp(36px, 6vw, 88px); background: #fff; color: var(--ink); }
.form-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 26px; }
.form-heading > span { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: var(--coral); border-radius: 50%; font-weight: 700; }
.form-heading h3 { margin: 0; font: 700 23px/1.3 "Noto Serif SC", serif; }
.form-heading p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
label { display: grid; gap: 7px; margin-bottom: 16px; color: #434a46; font-size: 13px; font-weight: 600; }
label > span { font-weight: 400; }
select, input, textarea { width: 100%; border: 1px solid #ccd3cf; border-radius: 4px; background: #fff; color: var(--ink); outline: none; }
select, input { height: 46px; padding: 0 12px; }
textarea { padding: 11px 12px; resize: vertical; }
select:focus, input:focus, textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(30, 85, 71, .1); }
input[type="range"] { height: 18px; padding: 0; accent-color: var(--coral); border: 0; box-shadow: none; }
.consent { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; gap: 9px; font-size: 12px; font-weight: 400; }
.consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--forest); }

.packages-band { padding: 88px clamp(24px, 6vw, 90px); color: #fff; background: #263832; }
.packages-heading { width: min(1200px, 100%); margin: 0 auto 38px; }
.packages-heading > p { color: #b8c8c1; }
.package-grid { width: min(1200px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.package-card { min-width: 0; padding: 25px 22px 22px; position: relative; display: flex; flex-direction: column; color: var(--ink); background: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 4px; }
.package-card.featured { border-top: 4px solid var(--coral); padding-top: 22px; }
.package-badge { position: absolute; top: 14px; right: 14px; padding: 4px 8px; color: #fff; background: var(--coral); border-radius: 3px; font-size: 10px; font-weight: 700; }
.package-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.package-top > span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--forest); background: #e7f0ec; border-radius: 50%; }
.package-top svg { width: 20px; }
.package-top small { color: var(--muted); }
.package-card h3 { margin: 20px 0 8px; font: 700 21px "Noto Serif SC", serif; }
.package-price { margin: 0 0 19px; display: flex; align-items: baseline; gap: 5px; }
.package-price strong { color: var(--coral); font: 700 29px "Noto Serif SC", serif; }
.package-price span { color: var(--muted); font-size: 11px; }
.package-card ul { min-height: 118px; padding: 16px 0; margin: 0 0 18px; flex: 1; list-style: none; border-top: 1px solid var(--line); }
.package-card > .button { margin-top: auto; }
.package-card li { display: flex; align-items: flex-start; gap: 7px; margin: 8px 0; color: var(--muted); font-size: 12px; }
.package-card li svg { width: 15px; height: 15px; margin-top: 2px; color: var(--forest); flex: none; }
.purchase-policies { width: min(1200px, 100%); margin: 20px auto 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px 24px; color: #b9c8c2; font-size: 11px; }
.purchase-policies p { margin: 0; display: flex; align-items: flex-start; gap: 7px; }
.purchase-policies svg { width: 15px; height: 15px; margin-top: 2px; flex: none; }
.checkout-consent { margin-top: 15px; padding: 12px; background: #f5f7f5; border-radius: 4px; }

.advisor-heading { align-items: center; }
.segmented { display: flex; padding: 4px; background: #e9ece9; border-radius: 4px; }
.segmented button { height: 36px; padding: 0 17px; border: 0; border-radius: 3px; background: transparent; color: var(--muted); cursor: pointer; font-size: 13px; }
.segmented button.active { color: var(--forest); background: #fff; box-shadow: 0 2px 8px rgba(20,40,30,.08); font-weight: 700; }
.advisor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.advisor-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.advisor-card[hidden] { display: none; }
.advisor-photo { height: 290px; position: relative; overflow: hidden; background: #e8ebe8; }
.advisor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform .35s; }
.advisor-card:hover .advisor-photo img { transform: scale(1.025); }
.advisor-photo > span { position: absolute; left: 14px; bottom: 14px; padding: 5px 9px; color: #fff; background: rgba(24, 71, 59, .9); border-radius: 3px; font-size: 11px; }
.advisor-body { padding: 20px; }
.advisor-name { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.advisor-name h3 { margin: 0; font: 700 21px "Noto Serif SC", serif; }
.advisor-name p { margin: 2px 0 0; color: var(--muted); font-size: 11px; }
.advisor-name > strong { color: var(--coral); font-size: 17px; white-space: nowrap; }
.advisor-name small { color: var(--muted); font-size: 10px; font-weight: 400; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 13px; }
.tags span { padding: 4px 8px; color: var(--forest); background: #edf4f1; border-radius: 3px; font-size: 10px; }
.advisor-intro { min-height: 66px; margin: 0; color: var(--muted); font-size: 13px; }
.advisor-foot { padding-top: 15px; display: flex; justify-content: space-between; align-items: center; gap: 10px; border-top: 1px solid #edf0ed; }
.advisor-foot > span { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 11px; }
.advisor-foot > span svg { width: 14px; color: #b4862d; fill: #b4862d; }

.divination-band { padding: 90px 24px; text-align: center; color: #fff; background-color: var(--night); background-image: radial-gradient(circle at 1px 1px, rgba(209,184,129,.15) 1px, transparent 0); background-size: 26px 26px; }
.divination-heading { width: min(680px, 100%); margin: 0 auto 38px; }
.divination-heading p:last-child { color: #aebcb6; }
.cards { width: min(670px, 100%); margin: 0 auto 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 3vw, 28px); perspective: 1200px; }
.tarot-card { aspect-ratio: 3 / 4.7; min-width: 0; padding: 0; position: relative; border: 0; border-radius: 5px; background: transparent; color: inherit; cursor: pointer; transform-style: preserve-3d; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.tarot-card:hover:not(.revealed) { transform: translateY(-7px); }
.tarot-card.revealed { transform: rotateY(180deg); }
.card-back, .card-front { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; backface-visibility: hidden; border-radius: 5px; }
.card-back { border: 1px solid #b69659; outline: 1px solid rgba(200,167,100,.4); outline-offset: -9px; background: #22312d; }
.card-back::before, .card-back::after { content: ""; width: 34%; aspect-ratio: 1; position: absolute; border: 1px solid rgba(200,167,100,.42); transform: rotate(45deg); }
.card-back::after { width: 54%; border-color: rgba(200,167,100,.18); }
.card-back svg { width: 34px; height: 34px; color: var(--gold); z-index: 1; }
.card-back small { margin-top: 68%; color: #d7c390; font-size: 11px; z-index: 1; }
.card-front { transform: rotateY(180deg); color: var(--night); background: #f3eee3; border: 1px solid #c9ae76; }
.card-front svg { width: 40px; height: 40px; color: #916d32; }
.card-front strong { font: 700 clamp(17px, 2vw, 25px) "Noto Serif SC", serif; }
.card-front small { color: #746a55; }
.reading-result { width: min(590px, 100%); min-height: 116px; margin: 0 auto 24px; padding: 18px 24px; border-top: 1px solid rgba(200,167,100,.35); border-bottom: 1px solid rgba(200,167,100,.35); }
.reading-result span { color: var(--gold); font-size: 11px; letter-spacing: 2px; }
.reading-result strong { display: block; margin: 4px 0; font: 600 21px "Noto Serif SC", serif; }
.reading-result p { margin: 0; color: #aebcb6; font-size: 13px; }
.reading-result.complete strong { color: #e1c886; }

.longevity-band { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 580px; color: #fff; background: var(--forest); }
.longevity-band > img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; object-position: center; }
.longevity-copy { padding: 70px clamp(34px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.longevity-copy h2 { margin: 0; font: 700 clamp(29px, 3.5vw, 46px)/1.4 "Noto Serif SC", serif; }
.longevity-copy > p:not(.eyebrow) { margin: 22px 0 28px; color: #d0dfd8; }
.longevity-points { display: grid; gap: 13px; }
.longevity-points span { display: flex; align-items: center; gap: 10px; }
.longevity-points svg { width: 18px; color: #d9bf84; }

.story-section { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.story-copy blockquote { margin: 30px 0 15px; padding-left: 24px; border-left: 3px solid var(--coral); font: 500 clamp(19px, 2.2vw, 27px)/1.7 "Noto Serif SC", serif; }
.story-author { color: var(--muted); font-size: 12px; }
.story-stats { display: grid; }
.story-stats div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.story-stats div:last-child { border: 0; }
.story-stats strong { display: block; color: var(--forest); font: 700 31px "Noto Serif SC", serif; }
.story-stats span { color: var(--muted); font-size: 13px; }
.cta-band { margin: 0 clamp(18px, 4vw, 60px) 60px; padding: 52px clamp(28px, 6vw, 84px); display: flex; align-items: center; justify-content: space-between; gap: 40px; color: #fff; background: var(--coral); }
.cta-band h2 { font-size: clamp(27px, 3vw, 39px); }
.cta-band p:not(.eyebrow) { margin: 8px 0 0; color: #f6dddd; }
.cta-band .button { flex: none; }

.refund-modal { width: min(960px, calc(100% - 28px)); }
.refund-modal-shell { max-height: calc(100vh - 28px); display: flex; flex-direction: column; }
.refund-modal .modal-header { flex: none; }
.refund-modal-body { padding: 28px 32px 32px; overflow-y: auto; overscroll-behavior: contain; }
.refund-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); gap: 34px; align-items: start; }
.refund-copy h2 { margin: 2px 0 14px; font: 700 28px/1.25 "Noto Serif SC", serif; }
.refund-copy > p:not(.eyebrow):not(.refund-email) { max-width: 620px; margin: 0 0 18px; color: var(--muted); line-height: 1.75; }
.refund-facts { margin: 24px 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cad5cf; border-bottom: 1px solid #cad5cf; }
.refund-facts div { min-width: 0; padding: 15px 10px; display: grid; justify-items: start; gap: 8px; border-right: 1px solid #cad5cf; }
.refund-facts div:first-child { padding-left: 0; }
.refund-facts div:last-child { border-right: 0; }
.refund-facts svg { width: 21px; color: var(--forest); }
.refund-facts strong { font-size: 12px; line-height: 1.35; }
.refund-email { margin: 25px 0 0; display: grid; gap: 4px; }
.refund-email span, .footer-contact span { color: var(--muted); font-size: 11px; }
.refund-email a, .footer-contact a { color: var(--forest); font-weight: 700; }
.refund-form { min-width: 0; padding-left: 32px; border-left: 1px solid var(--line); }
.refund-form-heading { margin-bottom: 24px; display: flex; align-items: center; gap: 13px; }
.refund-form-heading > svg { width: 42px; height: 42px; padding: 10px; color: #fff; background: var(--forest); border-radius: 50%; }
.refund-form-heading span { color: var(--coral); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.refund-form-heading h3 { margin: 2px 0 0; font: 700 22px "Noto Serif SC", serif; }
.refund-form textarea { min-height: 88px; }
.refund-form .button { margin-top: 6px; }
.checkout-consent a { color: var(--forest); font-weight: 700; }

footer { padding: 48px clamp(24px, 6vw, 90px) 22px; color: #c9d2ce; background: #101715; }
.footer-main { min-height: 120px; display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 40px; }
.footer-brand .brand-mark { background: #d8e6df; color: var(--forest); }
.footer-brand strong { color: #fff; }
.footer-brand small, .footer-main > p { color: #85938d; }
.footer-main > p { margin: 8px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 24px; font-size: 13px; }
.footer-links button { padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; font: inherit; }
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-contact { width: min(1200px, 100%); margin: 22px auto 0; padding-top: 18px; display: flex; align-items: center; gap: 10px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-contact a { color: #fff; overflow-wrap: anywhere; }
.footer-note { margin-top: 18px; padding-top: 18px; display: flex; justify-content: space-between; gap: 28px; border-top: 1px solid #26302d; color: #72807a; font-size: 10px; line-height: 1.6; }
.photo-credit a { color: #aab8b2; text-decoration: underline; text-underline-offset: 2px; }

.modal { width: min(620px, calc(100% - 28px)); max-height: calc(100vh - 28px); padding: 0; color: var(--ink); border: 0; border-radius: 5px; box-shadow: 0 30px 100px rgba(0,0,0,.3); }
.modal::backdrop { background: rgba(12, 22, 18, .68); backdrop-filter: blur(3px); }
.modal-shell { margin: 0; }
.modal-header { padding: 25px 28px 20px; display: flex; align-items: start; justify-content: space-between; border-bottom: 1px solid var(--line); }
.modal-header h2 { margin: 0; font: 700 27px "Noto Serif SC", serif; }
.modal-header .eyebrow { margin-bottom: 3px; }
.modal-body { padding: 22px 28px 5px; }
.form-note { margin: 0 0 18px; color: var(--muted); font-size: 12px; }
.legal-consent a { color: var(--forest); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.legal-modal { width: min(920px, calc(100% - 28px)); }
.legal-shell { max-height: calc(100vh - 28px); display: flex; flex-direction: column; }
.legal-modal .modal-header { flex: none; }
.legal-modal .modal-header small { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.legal-body { padding: 24px 32px 8px; overflow-y: auto; overscroll-behavior: contain; }
.legal-body section { padding: 0 0 18px; }
.legal-body h3 { margin: 0 0 7px; color: var(--forest-dark); font: 700 16px/1.4 "Noto Serif SC", serif; }
.legal-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.legal-body a { color: var(--forest); font-weight: 700; overflow-wrap: anywhere; }
.legal-en { display: none; }
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .legal-zh { display: none; }
html:not([lang="zh-CN"]):not([lang="zh-TW"]) .legal-en { display: block; }
.legal-actions { flex: none; padding: 14px 28px 22px; display: flex; justify-content: flex-end; border-top: 1px solid var(--line); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.phone-field, .code-field { display: grid; gap: 8px; }
.phone-field { grid-template-columns: 154px 1fr; }
.code-field { grid-template-columns: 1fr 142px; }
.code-field .button { min-height: 46px; padding: 0 12px; font-size: 12px; }
.adapter-note { margin: 14px 0 10px; padding: 11px 12px; display: flex; align-items: flex-start; gap: 8px; color: #69736e; background: #f1f4f2; border-radius: 4px; font-size: 11px; }
.adapter-note svg { width: 16px; height: 16px; flex: none; }
.account-summary { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 22px; border: 1px solid var(--line); }
.account-summary div { padding: 18px; border-right: 1px solid var(--line); }
.account-summary div:last-child { border-right: 0; }
.account-summary span, .account-summary strong { display: block; }
.account-summary span { color: var(--muted); font-size: 11px; }
.account-summary strong { margin-top: 3px; color: var(--forest); font: 700 27px "Noto Serif SC", serif; }
.subheading { margin: 0 0 10px; font-size: 14px; }
.order-list { max-height: 240px; overflow: auto; }
.order-row { padding: 12px 0; display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }
.order-row div > strong, .order-row div > span { display: block; }
.order-row div > span { margin-top: 2px; color: var(--muted); font-size: 10px; }
.empty-copy { padding: 24px 0; color: var(--muted); text-align: center; font-size: 12px; }
.checkout-summary { padding: 24px 28px; background: #f3f6f4; }
.checkout-summary span, .checkout-summary strong { display: block; }
.checkout-summary span { color: var(--muted); font-size: 11px; }
.checkout-summary strong { margin: 2px 0; color: var(--coral); font: 700 31px "Noto Serif SC", serif; }
.checkout-summary p { margin: 0; color: var(--muted); font-size: 12px; }
.payment-methods { padding: 0; margin: 0; border: 0; }
.payment-methods legend { margin-bottom: 10px; font-size: 13px; font-weight: 700; }
.payment-methods label { margin: 0 0 8px; display: block; position: relative; }
.payment-methods input { width: 1px; height: 1px; position: absolute; opacity: 0; }
.payment-methods label > span { min-height: 48px; padding: 0 14px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 4px; cursor: pointer; }
.payment-methods input:checked + span { color: var(--forest); border-color: var(--forest); background: #eff6f3; box-shadow: inset 3px 0 var(--forest); }
.payment-methods svg { width: 18px; }
.modal-actions { padding: 16px 28px 24px; display: flex; justify-content: flex-end; gap: 10px; }
.result-score { padding: 28px; display: flex; align-items: center; gap: 22px; background: #f5f7f5; }
.score-ring { --score: 240deg; width: 100px; height: 100px; flex: none; display: flex; align-items: baseline; justify-content: center; padding-top: 28px; border-radius: 50%; position: relative; background: conic-gradient(var(--coral) var(--score), #dce3df 0); }
.score-ring::before { content: ""; position: absolute; inset: 7px; background: #fff; border-radius: 50%; }
.score-ring strong, .score-ring span { z-index: 1; }
.score-ring strong { font: 700 28px "Noto Serif SC", serif; }
.score-ring span { color: var(--muted); font-size: 11px; }
.result-score > div:last-child > strong { font: 700 21px "Noto Serif SC", serif; }
.result-score p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.result-details { padding: 20px 28px 4px; }
.result-details div { display: grid; grid-template-columns: 78px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid #edf0ed; }
.result-details span { color: var(--forest); font-weight: 700; font-size: 12px; }
.result-details p { margin: 0; color: var(--muted); font-size: 13px; }
.toast { position: fixed; z-index: 100; right: 24px; bottom: 24px; max-width: calc(100% - 48px); padding: 13px 17px; display: flex; align-items: center; gap: 9px; color: #fff; background: var(--forest-dark); border-radius: 4px; box-shadow: var(--shadow); transform: translateY(24px); opacity: 0; pointer-events: none; transition: .25s; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 19px; color: #a8ddc7; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-only { display: grid !important; }
  .hero { min-height: 650px; height: calc(100vh - 74px); background-position: 60% center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .assessment-band { grid-template-columns: 1fr; }
  .assessment-copy { padding-top: 64px; padding-bottom: 64px; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .advisor-grid { grid-template-columns: repeat(2, 1fr); }
  .story-section { grid-template-columns: 1fr; gap: 35px; }
  .longevity-band { grid-template-columns: 1fr; }
  .longevity-band > img { min-height: 430px; max-height: 560px; }
  .refund-layout { grid-template-columns: 1fr; }
  .refund-form { padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 680px) {
  .site-header { height: 66px; padding: 0 16px; }
  .site-header .button-small span { display: none; }
  .site-header .button-small { width: 42px; padding: 0; }
  .site-header { gap: 10px; }
  .site-header .brand small { display: none; }
  .header-actions { gap: 6px; }
  .language-control { width: 92px; padding: 0 6px; }
  .language-control select { width: 64px; padding-right: 14px; font-size: 11px; }
  .mobile-menu { top: 66px; }
  .hero { min-height: 610px; height: calc(100svh - 66px); max-height: 760px; padding: 40px 22px; align-items: end; background-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(13,24,20,.9), rgba(13,24,20,.2) 76%); }
  .hero-carousel-controls { top: 14px; right: 14px; }
  .hero h1 { font-size: 49px; }
  .hero-lead { margin: 14px 0 22px; font-size: 20px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { min-width: 0; padding: 0 12px; font-size: 13px; }
  .hero-meta { margin-top: 23px; padding-top: 15px; gap: 9px 18px; font-size: 10px; }
  .trust-band { grid-template-columns: repeat(2, 1fr); padding: 14px; }
  .trust-band div { padding: 13px 8px; }
  .trust-band div:nth-child(2) { border-right: 0; }
  .trust-band div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-band strong { font-size: 21px; }
  .section { width: min(100% - 32px, 1200px); padding: 66px 0; }
  .section-heading { display: block; margin-bottom: 26px; }
  .section-heading > p { width: auto; margin-top: 10px; font-size: 13px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 22px; }
  .service-card p { min-height: 0; }
  .assessment-copy, .assessment-form { padding: 54px 22px; }
  .assessment-copy h2 { font-size: 29px; }
  .advisor-heading { display: block; }
  .segmented { width: 100%; margin-top: 20px; overflow-x: auto; }
  .segmented button { flex: 1; min-width: 65px; padding: 0 10px; }
  .packages-band { padding: 62px 16px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card ul { min-height: 0; }
  .advisor-grid { grid-template-columns: 1fr; }
  .advisor-photo { height: 270px; min-height: 0; }
  .advisor-intro { min-height: 0; margin-bottom: 15px; }
  .divination-band { padding: 68px 14px; }
  .cards { gap: 8px; }
  .card-back small { margin-top: 78%; }
  .card-front { gap: 7px; }
  .card-front svg { width: 29px; height: 29px; }
  .card-front small { font-size: 9px; }
  .reading-result { padding: 16px 10px; }
  .story-copy blockquote { padding-left: 17px; font-size: 18px; }
  .longevity-band > img { min-height: 360px; height: 360px; }
  .longevity-copy { padding: 48px 22px; }
  .cta-band { margin: 0 0 40px; padding: 42px 22px; display: block; }
  .cta-band .button { width: 100%; margin-top: 22px; }
  footer { padding: 38px 20px 18px; }
  .refund-modal { width: calc(100% - 16px); max-height: calc(100dvh - 16px); }
  .refund-modal-shell { max-height: calc(100dvh - 16px); }
  .refund-modal-body { padding: 22px 20px 26px; }
  .refund-copy h2 { font-size: 24px; }
  .refund-facts { grid-template-columns: 1fr; }
  .refund-facts div, .refund-facts div:first-child { padding: 14px 0; grid-template-columns: 24px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid #cad5cf; }
  .refund-facts div:last-child { border-bottom: 0; }
  .footer-main { display: block; }
  .footer-main > p { margin: 14px 0 22px; }
  .footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 22px; }
  .footer-links > * { width: 100%; min-width: 0; min-height: 42px; display: flex; align-items: center; justify-content: flex-start; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-links button { padding: 0; border-width: 0 0 1px; border-style: solid; border-color: rgba(255,255,255,.08); }
  .footer-contact { margin-top: 20px; padding-top: 16px; display: grid; gap: 5px; }
  .footer-contact a { font-size: 15px; line-height: 1.45; }
  .footer-note { margin-top: 16px; padding-top: 16px; display: grid; gap: 9px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .phone-field { grid-template-columns: 128px 1fr; }
  .code-field { grid-template-columns: 1fr 120px; }
  .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
  .legal-body { padding: 20px 20px 6px; }
  .legal-actions { padding: 12px 20px 18px; }
  .modal-actions { padding: 14px 20px 20px; }
  .result-score { padding: 22px 20px; gap: 15px; }
  .score-ring { width: 84px; height: 84px; padding-top: 23px; }
  .score-ring strong { font-size: 24px; }
  .result-details { padding-left: 20px; padding-right: 20px; }
  .result-details div { grid-template-columns: 62px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .2s ease; transform: none; }
  .hero-slide.is-active { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
