:root {
  --bg: #06090a;
  --bg-2: #0e1315;
  --panel: #12191c;
  --panel-2: #182125;
  --text: #f1e7d3;
  --text-soft: #c8baa3;
  --muted: #988b77;
  --line: rgba(241, 231, 211, 0.10);
  --line-strong: rgba(241, 231, 211, 0.18);
  --accent: #b43d2a;
  --accent-2: #c8a35d;
  --jade: #5d857a;
  --ink: #34465d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.40);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Alegreya Sans", "Segoe UI", Arial, sans-serif;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 0%, rgba(54, 78, 89, 0.26), transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(180, 61, 42, 0.16), transparent 20rem),
    radial-gradient(circle at 50% 100%, rgba(200, 163, 93, 0.08), transparent 18rem),
    linear-gradient(90deg, rgba(232, 218, 188, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(232, 218, 188, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, auto, 44px 44px, 44px 44px, auto;
  line-height: 1.55;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible {
  outline: 3px solid rgba(200, 163, 93, 0.34);
  outline-offset: 3px;
}

.page {
  min-height: 100vh;
}

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

.notice {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(241, 231, 211, 0.09);
  background: linear-gradient(90deg, #050708, #111113 60%, #080b0c);
  color: var(--text);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.notice span { color: #e1c47e; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(241, 231, 211, 0.08);
  background: rgba(8, 11, 12, 0.82);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
}
.seal {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 231, 211, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent), var(--accent);
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem;
}
.nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
}
.nav a:hover,
.nav a.is-active {
  background: rgba(180, 61, 42, 0.14);
  color: #fff1c6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.language-link {
  display: inline-grid;
  min-width: 44px;
  height: 40px;
  place-items: center;
  padding: 0 0.65rem;
  border: 1px solid rgba(241, 231, 211, 0.16);
  border-radius: 4px;
  color: #e1c47e;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.language-link:hover { background: rgba(225, 196, 126, 0.08); }
.icon-link,
.menu-toggle {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(241, 231, 211, 0.10);
  border-radius: 999px;
  background: rgba(8, 11, 12, 0.70);
  color: var(--text);
  text-decoration: none;
}
.menu-toggle { display: none; }

.hero,
.section {
  padding: 5rem 0;
}
.hero-grid,
.split-grid {
  display: grid;
  gap: 1.3rem;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
}
.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #e1c47e;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, .display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 {
  max-width: 760px;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: 0.88;
}
h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 0.94;
}
h3 {
  font-size: 1.85rem;
  line-height: 1.02;
}
p { margin: 0; }

.hero-copy,
.section-note {
  color: var(--text-soft);
  font-size: 1.07rem;
}
.hero-copy {
  max-width: 650px;
  margin-top: 1.2rem;
  font-size: clamp(1.12rem, 1.9vw, 1.35rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(8, 11, 12, 0.56);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  border-color: rgba(180, 61, 42, 0.72);
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 18px 34px rgba(180, 61, 42, 0.20);
}
.button.ghost {
  background: rgba(8, 11, 12, 0.35);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.chip {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(241, 231, 211, 0.10);
  border-radius: 999px;
  background: rgba(8, 11, 12, 0.58);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.panel,
.card,
.page-card,
.form-panel,
.result-panel,
.story-panel {
  border: 1px solid rgba(241, 231, 211, 0.10);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(19, 25, 27, 0.94), rgba(9, 13, 14, 0.96));
  box-shadow: var(--shadow);
}

.hero-art {
  position: relative;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(241, 231, 211, 0.08);
  border-radius: 50%;
}
.mountain {
  position: absolute;
  bottom: 8.2rem;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(11,15,16,0.98));
  clip-path: polygon(0% 100%, 12% 44%, 28% 64%, 41% 22%, 57% 45%, 75% 18%, 100% 100%);
  opacity: 0.92;
}
.mountain.left { left: -7%; width: 58%; }
.mountain.right {
  right: -2%;
  width: 64%;
  opacity: 0.68;
  clip-path: polygon(0% 100%, 16% 58%, 28% 76%, 40% 36%, 56% 49%, 70% 24%, 86% 58%, 100% 100%);
}
.temple {
  position: absolute;
  left: 50%;
  top: 1.7rem;
  width: 132px;
  height: 250px;
  translate: -50% 0;
  opacity: 0.78;
}
.temple::before,
.temple::after,
.temple-roof,
.temple-spire {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
.temple::before {
  top: 68px;
  width: 52px;
  height: 128px;
  border: 1px solid rgba(241, 231, 211, 0.10);
  border-radius: 2px 2px 10px 10px;
  background: linear-gradient(180deg, rgba(241, 231, 211, 0.12), rgba(12, 16, 18, 0.12));
}
.temple::after {
  top: 40px;
  width: 92px;
  height: 42px;
  border: 1px solid rgba(241, 231, 211, 0.10);
  clip-path: polygon(0% 100%, 18% 46%, 50% 0%, 82% 46%, 100% 100%);
  background: linear-gradient(180deg, rgba(180,61,42,0.24), rgba(13,19,21,0.08));
}
.temple-roof {
  top: 30px;
  width: 100px;
  height: 46px;
  border-bottom: 1px solid rgba(241, 231, 211, 0.10);
  clip-path: polygon(0% 100%, 18% 45%, 50% 0%, 82% 45%, 100% 100%);
  background: linear-gradient(180deg, rgba(241,231,211,0.18), rgba(180,61,42,0.08));
}
.temple-spire {
  top: 8px;
  width: 18px;
  height: 82px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(241,231,211,0.18), rgba(241,231,211,0.02));
}
.mist {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(241,231,211,0.2), rgba(241,231,211,0.02) 62%, transparent 80%);
  filter: blur(10px);
  opacity: 0.72;
  mix-blend-mode: screen;
}
.mist.one { left: -8%; right: 20%; top: 18%; height: 11rem; transform: rotate(-4deg); }
.mist.two { left: 18%; right: -10%; bottom: 18%; height: 10rem; transform: rotate(6deg); }
.wheel {
  position: absolute;
  top: 4.7rem;
  left: 50%;
  width: min(72%, 360px);
  aspect-ratio: 1;
  translate: -50% 0;
  z-index: 3;
  border: 1px solid rgba(241, 231, 211, 0.34);
  border-radius: 50%;
  background:
    conic-gradient(from -10deg, rgba(180, 61, 42, 0.18), transparent 18%, rgba(93, 133, 122, 0.22) 31%, transparent 48%, rgba(200, 163, 93, 0.22) 62%, transparent 82%, rgba(241,231,211,0.10)),
    rgba(8, 12, 13, 0.22);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.22);
}
.wheel span {
  position: absolute;
  inset: 15%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 231, 211, 0.20);
  border-radius: 50%;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
}
.thread {
  position: absolute;
  left: 9%;
  right: 11%;
  bottom: 12rem;
  z-index: 4;
  height: 94px;
  border: 10px solid rgba(180, 61, 42, 0.88);
  border-top-color: transparent;
  border-radius: 0 0 999px 999px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.34));
}
.thread::before,
.thread::after {
  content: "";
  position: absolute;
  top: -23px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, #fff6dc, transparent 28%),
    #314f49;
  border: 5px solid var(--accent-2);
}
.thread::before { left: 18%; }
.thread::after { right: 22%; }
.glass-card {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 5;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(241, 231, 211, 0.10);
  border-left: 8px solid var(--accent);
  border-radius: 22px;
  background: rgba(7, 10, 11, 0.84);
  backdrop-filter: blur(18px);
}
.glass-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.glass-card p,
.muted {
  color: rgba(241, 231, 211, 0.74);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.44fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.grid-6 { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.85rem; }

.card,
.page-card,
.form-panel,
.result-panel,
.story-panel {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.card p,
.page-card p,
.story-panel p,
.result-panel p {
  color: rgba(241, 231, 211, 0.74);
}

.route-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.route-card small,
.meta {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.route-card a,
.page-link {
  color: #e1c47e;
  text-decoration: none;
  font-weight: 700;
}

.stack {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.field {
  display: grid;
  gap: 0.35rem;
}
.field.wide { grid-column: 1 / -1; }
label {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(241, 231, 211, 0.12);
  border-radius: 16px;
  background: rgba(7, 10, 11, 0.70);
  color: var(--text);
  padding: 0.85rem 0.95rem;
}
textarea { min-height: 110px; resize: vertical; }

.pill-row,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pill {
  padding: 0.44rem 0.75rem;
  border: 1px solid rgba(241, 231, 211, 0.10);
  border-radius: 999px;
  background: rgba(8, 11, 12, 0.58);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.result-panel {
  position: relative;
  overflow: hidden;
}
.result-panel::before {
  content: "";
  position: absolute;
  inset: -8rem auto auto 56%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  border: 1px solid rgba(200, 163, 93, 0.12);
}
.result-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(241, 231, 211, 0.16);
  border-radius: 999px;
  color: #e1c47e;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.result-panel ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: rgba(241, 231, 211, 0.74);
}

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(241, 231, 211, 0.10);
  border-radius: 18px;
  overflow: hidden;
}
.table th,
.table td {
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid rgba(241, 231, 211, 0.08);
  text-align: left;
  vertical-align: top;
}
.table th {
  background: rgba(241, 231, 211, 0.04);
  color: #f6e6bd;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.table tr:last-child td { border-bottom: 0; }

.footer {
  padding: 3rem 0 4rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(180, 61, 42, 0.16), transparent 22rem),
    var(--bg);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.footer-links h3 {
  margin-bottom: 0.55rem;
  font-size: 1.3rem;
}
.footer-links a {
  display: block;
  margin: 0.35rem 0;
  color: rgba(241, 231, 211, 0.74);
  text-decoration: none;
}

.fixed-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: none;
}
.fixed-cta .button { width: 100%; }

/* Service hall: one index, four clearly separated categories. */
.services-page {
  background:
    linear-gradient(90deg, rgba(232, 218, 188, 0.025) 1px, transparent 1px),
    #080b0b;
  background-size: 52px 52px, auto;
}
.services-hero {
  padding: 6.5rem 0 5rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 8%, rgba(93, 133, 122, 0.12), transparent 25rem),
    linear-gradient(180deg, rgba(180, 61, 42, 0.06), transparent 72%);
}
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}
.services-hero h1 {
  max-width: 820px;
  margin-top: 1rem;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
}
.services-intro {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(225, 196, 126, 0.38);
  color: var(--text-soft);
  font-size: 1.12rem;
}
.services-intro p { margin-bottom: 1.3rem; }
.text-link,
.chapter-link {
  color: #e1c47e;
  font-weight: 700;
  text-decoration: none;
}
.services-body { padding: 0 0 7rem; }
.services-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.services-index {
  position: sticky;
  top: 104px;
  display: grid;
  padding-top: 4.5rem;
}
.services-index-label {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.services-index a {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: .5rem;
  padding: .9rem 0;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  text-decoration: none;
}
.services-index a:last-child { border-bottom: 1px solid var(--line); }
.services-index a span { color: var(--muted); font-size: .8rem; }
.services-index a:hover,
.services-index a.is-current { color: #f5dfaa; }
.services-chapters { min-width: 0; }
.service-chapter {
  scroll-margin-top: 96px;
  padding: 4.5rem 0 5rem;
  border-bottom: 1px solid rgba(241, 231, 211, 0.14);
}
.service-chapter-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .45fr);
  gap: 3rem;
  align-items: end;
}
.chapter-number {
  display: block;
  margin-bottom: .8rem;
  color: #e1c47e;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-chapter h2 {
  max-width: 690px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}
.service-chapter-head > p { color: var(--text-soft); }
.service-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
  border-top: 1px solid rgba(225, 196, 126, 0.3);
  border-bottom: 1px solid var(--line);
}
.service-options article {
  min-height: 220px;
  padding: 1.5rem 1.35rem;
  border-right: 1px solid var(--line);
}
.service-options article:last-child { border-right: 0; }
.service-options article > span {
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
}
.service-options h3 { margin-top: 2.7rem; }
.service-options p { margin-top: .8rem; color: rgba(241, 231, 211, .7); }
.service-request-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  margin-top: 1.25rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(225, 196, 126, .38);
  border-radius: 0;
  background: transparent;
  color: #e1c47e;
  font: inherit;
  font-weight: 700;
  text-align: left;
}
.service-request-link:hover,
.service-request-link:focus-visible { color: #fff0bd; border-bottom-color: #e1c47e; }
.service-request-link span { transition: transform .18s ease; }
.service-request-link:hover span { transform: translateX(3px); }
.chapter-link { display: inline-block; margin-top: 1.5rem; }
.chapter-link span { margin-left: .5rem; color: var(--accent); }
.service-closing {
  padding: 6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #11110f;
}
.service-closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}
.service-closing h2 { margin-top: .8rem; }
.service-closing p { color: var(--text-soft); font-size: 1.08rem; }

.service-inquiry-dialog {
  width: min(820px, calc(100vw - 2rem));
  max-width: 820px;
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(225, 196, 126, .3);
  border-radius: 6px;
  background: #090e0d;
  color: var(--text);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .75);
}
.service-inquiry-dialog::backdrop {
  background: rgba(2, 5, 5, .86);
  backdrop-filter: blur(6px);
}
.service-inquiry-shell {
  padding: clamp(1.3rem, 4vw, 2.7rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(79, 119, 101, .18), transparent 25rem),
    linear-gradient(135deg, rgba(225, 196, 126, .04), transparent 42%),
    #090e0d;
}
.service-inquiry-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(241, 231, 211, .13);
}
.service-inquiry-header h2 { margin-top: .45rem; font-size: clamp(2.15rem, 5vw, 3.7rem); }
.service-inquiry-lead {
  max-width: 700px;
  margin: 1.25rem 0 1.5rem;
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.75;
}
.service-inquiry-form .form-grid { gap: 1rem; }
.service-inquiry-form input,
.service-inquiry-form select,
.service-inquiry-form textarea { border-radius: 4px; }
.service-inquiry-form textarea { min-height: 128px; }
.inquiry-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.inquiry-consent { margin-top: 1.2rem; }
.inquiry-boundary {
  margin-top: 1rem;
  padding-left: .85rem;
  border-left: 2px solid rgba(174, 102, 80, .65);
  color: rgba(241, 231, 211, .62);
  font-size: .82rem;
  line-height: 1.65;
}
.service-inquiry-form .form-status[data-state="loading"] { color: #e8c681; }
.service-inquiry-form .form-status[data-state="success"] { color: #bcd5b5; }
.service-inquiry-form .form-status[data-state="error"] { color: #efaa98; }
.service-inquiry-actions {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(241, 231, 211, .1);
}
.service-inquiry-actions .button { min-height: 46px; }
.inquiry-is-open .fixed-cta { display: none; }

/* Home: three distinct routes instead of a repeated catalogue. */
.home-paths { padding: 1rem 0 6rem; }
.home-hero {
  position: relative;
  min-height: min(720px, calc(100svh - 108px));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(225, 196, 126, .22);
}
.home-hero-image,
.home-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(.82) contrast(1.06) brightness(.88);
}
.home-hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 7, 7, .96) 0%, rgba(3, 7, 7, .78) 46%, rgba(3, 7, 7, .16) 80%),
    linear-gradient(0deg, rgba(3, 7, 7, .92) 0%, rgba(3, 7, 7, .08) 58%);
}
.home-hero-inner { padding-top: 5rem; padding-bottom: 4.5rem; }
.home-hero-copy { max-width: 780px; }
.home-hero-copy h1 { margin-top: 1rem; text-wrap: balance; }
.home-hero-boundary {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(241, 231, 211, .2);
  color: rgba(241, 231, 211, .68);
  font-size: .92rem;
}
.home-path-list { border-top: 1px solid rgba(225, 196, 126, .32); }
.home-path {
  display: grid;
  grid-template-columns: 70px minmax(220px, .65fr) minmax(260px, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}
.home-path > span { color: var(--muted); font-size: .8rem; }
.home-path h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); }
.home-path p { color: var(--text-soft); }
.home-path a { color: #e1c47e; font-weight: 700; text-decoration: none; white-space: nowrap; }
.home-trust {
  padding: 6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #11110f;
}
.home-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}
.home-trust h2 { margin-top: .8rem; }
.home-trust-copy { color: var(--text-soft); font-size: 1.12rem; }

/* Free reading: text-based casting entry, ready for deterministic chart engines. */
.free-reading-page {
  background:
    radial-gradient(circle at 70% 0%, rgba(93, 133, 122, .16), transparent 28rem),
    radial-gradient(circle at 8% 18%, rgba(180, 61, 42, .12), transparent 22rem),
    var(--bg);
}
.reading-entry-hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(241, 231, 211, .04) 50%, transparent calc(50% + 1px)),
    linear-gradient(180deg, rgba(14, 24, 23, .74), rgba(6, 9, 10, .35));
}
.reading-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .76fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.reading-entry-grid h1 {
  margin-top: 1rem;
  font-size: clamp(3.4rem, 6.5vw, 6.4rem);
  text-wrap: balance;
}
.reading-preview {
  align-self: stretch;
  padding: 1.5rem;
}
.bazi-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
  margin: 1.15rem 0 .75rem;
}
.bazi-chart[hidden],
.bazi-chart-meta[hidden] { display: none; }
.bazi-chart > div {
  min-width: 0;
  padding: .8rem .45rem;
  border: 1px solid rgba(225, 196, 126, .26);
  background: rgba(5, 9, 9, .5);
  text-align: center;
}
.bazi-chart span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
}
.bazi-chart strong {
  display: block;
  margin-top: .35rem;
  color: #fff3c8;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 600;
}
.bazi-chart-meta {
  color: var(--text-soft);
  font-size: .92rem;
}
.method-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1.1rem;
}
.method-tab {
  min-height: 76px;
  padding: .9rem;
  border: 1px solid rgba(241, 231, 211, .12);
  border-radius: 18px;
  background: rgba(7, 10, 11, .58);
  color: var(--text-soft);
  text-align: left;
}
.method-tab span {
  display: block;
  margin-bottom: .35rem;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .1em;
}
.method-tab.is-active {
  border-color: rgba(225, 196, 126, .48);
  background: linear-gradient(180deg, rgba(93, 133, 122, .2), rgba(8, 11, 12, .76));
  color: #fff3c8;
}
.method-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(241, 231, 211, .12);
}
.method-panel.is-active { display: block; }
.method-note { margin-bottom: .8rem; }
.calculation-note {
  margin-top: .85rem;
  padding-left: .8rem;
  border-left: 2px solid rgba(225, 196, 126, .36);
  color: var(--muted);
  font-size: .86rem;
}
.form-status {
  min-height: 1.25rem;
  margin-top: .65rem;
  color: #e8c681;
  font-size: .9rem;
}
.form-status.is-error { color: #ef9e8d; }
.reading-result-dialog {
  width: min(940px, calc(100vw - 2rem));
  max-width: 940px;
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(225, 196, 126, .28);
  border-radius: 6px;
  background: #090e0d;
  color: var(--text);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .72);
}
.reading-result-dialog::backdrop {
  background: rgba(2, 5, 5, .82);
  backdrop-filter: blur(6px);
}
.reading-dialog-shell {
  position: relative;
  padding: clamp(1.3rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(225, 196, 126, .05) 50%, transparent 50.1%),
    radial-gradient(circle at 90% 0%, rgba(89, 126, 106, .18), transparent 24rem),
    #090e0d;
}
.reading-dialog-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(241, 231, 211, .12);
}
.reading-dialog-header h2 {
  margin-top: .5rem;
  max-width: 760px;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
}
.dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(241, 231, 211, .18);
  border-radius: 50%;
  background: rgba(5, 8, 8, .72);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
}
.dialog-close:hover { border-color: rgba(225, 196, 126, .6); color: #fff3c8; }
.reading-dialog-lead {
  max-width: 720px;
  margin: 1.4rem 0;
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.7;
}
.ai-reading-status {
  border-left: 2px solid rgba(225, 196, 126, .68);
  color: #d9cfb2;
  font-size: .92rem;
  line-height: 1.65;
  margin: 1rem 0 1.25rem;
  padding: .72rem .9rem;
}
.ai-reading-status[data-state="loading"] { animation: reading-breathe 1.8s ease-in-out infinite; }
.ai-reading-status[data-state="fallback"] { border-color: rgba(173, 104, 82, .8); color: #e0b9aa; }
.ai-reading-status[data-state="ready"] { border-color: rgba(112, 151, 105, .9); color: #c8ddbd; }
@keyframes reading-breathe { 50% { opacity: .58; } }
.reading-evidence {
  border-bottom: 1px solid rgba(225, 196, 126, .14);
  border-top: 1px solid rgba(225, 196, 126, .14);
  margin: 1.2rem 0;
  padding: 1rem 0;
}
.reading-evidence ul {
  color: var(--muted);
  display: grid;
  gap: .45rem;
  margin: .7rem 0 0;
  padding-left: 1.2rem;
}
.moment-basis {
  display: grid;
  gap: 1.5rem;
  padding-top: .5rem;
}
.reading-unlock[hidden],
[data-bazi-basis][hidden],
.moment-basis[hidden],
.liuyao-basis[hidden] { display: none !important; }
.moment-figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(225, 196, 126, .2);
  border-bottom: 1px solid rgba(241, 231, 211, .12);
}
.moment-figures article {
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 1.3rem 1rem;
  border-right: 1px solid rgba(241, 231, 211, .1);
  text-align: center;
}
.moment-figures article:last-child { border-right: 0; }
.moment-figures article > span:first-child {
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.moment-figures strong { margin-top: .65rem; font-family: var(--serif); font-size: 1.35rem; }
.moment-figures small { margin-top: .2rem; color: var(--muted); }
.hexagram-lines {
  display: grid;
  gap: 5px;
  width: 58px;
  margin-top: 1rem;
}
.hexagram-lines i {
  position: relative;
  display: block;
  width: 100%;
  height: 5px;
  background: #d9bd78;
}
.hexagram-lines i[data-line="0"] {
  background: linear-gradient(90deg, #d9bd78 0 42%, transparent 42% 58%, #d9bd78 58% 100%);
}
.hexagram-lines i.is-moving::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.moment-calculation {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}
.moment-calculation ol {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.3rem;
  color: var(--text-soft);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .86rem;
}
.liuyao-basis {
  display: grid;
  gap: 1.3rem;
  padding-top: .5rem;
}
.liuyao-figures { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.liuyao-lines {
  display: grid;
  border-top: 1px solid rgba(225, 196, 126, .2);
}
.liuyao-line {
  display: grid;
  grid-template-columns: 34px 74px minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
  min-height: 54px;
  padding: .55rem .2rem;
  border-bottom: 1px solid rgba(241, 231, 211, .09);
}
.liuyao-line > strong { color: #d9bd78; font-family: var(--serif); font-weight: 500; }
.liuyao-line-symbol { display: block; width: 58px; }
.liuyao-line-symbol i {
  position: relative;
  display: block;
  width: 100%;
  height: 5px;
  background: #d9bd78;
}
.liuyao-line-symbol i[data-line="0"] {
  background: linear-gradient(90deg, #d9bd78 0 42%, transparent 42% 58%, #d9bd78 58% 100%);
}
.liuyao-line-symbol i.is-moving::after {
  position: absolute;
  right: -12px;
  top: -5px;
  content: "○";
  color: #c96f55;
  font-size: .8rem;
}
.liuyao-line-detail { color: var(--text-soft); font-size: .88rem; }
.liuyao-line-flags { color: var(--muted); font-size: .76rem; text-align: right; }
.liuyao-focus-summary {
  padding: 1rem 1.1rem;
  border-left: 2px solid rgba(225, 196, 126, .55);
  background: rgba(225, 196, 126, .05);
  color: var(--text-soft);
  font-size: .88rem;
}
.reading-basis {
  margin: .4rem 0 1.35rem;
  border-top: 1px solid rgba(225, 196, 126, .24);
  border-bottom: 1px solid rgba(225, 196, 126, .24);
}
.reading-basis summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .3rem 1rem;
  align-items: center;
  padding: 1.15rem 0;
  color: #eee2bd;
  cursor: pointer;
  list-style: none;
}
.reading-basis summary::-webkit-details-marker { display: none; }
.reading-basis summary span {
  font-family: var(--serif);
  font-size: 1.25rem;
}
.reading-basis summary small {
  grid-row: 2;
  color: var(--muted);
  font-size: .8rem;
}
.reading-basis summary::after {
  grid-column: 2;
  grid-row: 1 / span 2;
  content: "+";
  color: #d7bd7c;
  font-size: 1.45rem;
  font-weight: 400;
}
.reading-basis[open] summary::after { content: "−"; }
.reading-basis-content {
  padding: .4rem 0 .8rem;
  border-top: 1px solid rgba(241, 231, 211, .08);
}
.reading-basis .dialog-pillars { margin-top: 1.25rem; }
.reading-basis .element-reading { border-bottom: 0; }
.reading-confidence {
  color: #b9aa83;
  display: inline-block;
  font-size: .72rem;
  margin-top: .7rem;
  text-transform: uppercase;
}
.ai-consent {
  align-items: start;
  color: var(--muted);
  display: grid;
  font-size: .82rem;
  gap: .7rem;
  grid-template-columns: 18px minmax(0, 1fr);
  line-height: 1.55;
  margin-top: .85rem;
}
.ai-consent input {
  accent-color: #b89d5e;
  height: 16px;
  margin: .18rem 0 0;
  min-height: 0;
  width: 16px;
}
.dialog-pillars { max-width: 650px; }
.reading-insights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  border-top: 1px solid rgba(241, 231, 211, .12);
  border-bottom: 1px solid rgba(241, 231, 211, .12);
}
.reading-insights:has(section:nth-child(3)) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.reading-insights section { padding: 1.5rem 1.5rem 1.5rem 0; }
.reading-insights section + section {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(241, 231, 211, .12);
}
.reading-insights h3,
.element-reading h3,
.concern-reading h3 {
  margin: .45rem 0 .7rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}
.reading-insights p,
.concern-reading p { color: var(--text-soft); }
.element-reading {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: end;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(241, 231, 211, .12);
}
.element-bars { display: grid; gap: .65rem; }
.element-caveat {
  max-width: 360px;
  color: var(--muted);
  font-size: .82rem;
}
.element-bar {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) 3rem;
  gap: .75rem;
  align-items: center;
  color: var(--text-soft);
  font-size: .9rem;
}
.element-track {
  height: 7px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(241, 231, 211, .08);
}
.element-fill { display: block; height: 100%; min-width: 2px; }
.element-fill[data-element="木"] { background: #739b76; }
.element-fill[data-element="火"] { background: #bd5038; }
.element-fill[data-element="土"] { background: #a98a55; }
.element-fill[data-element="金"] { background: #c8bd9f; }
.element-fill[data-element="水"] { background: #577d87; }
.concern-reading { padding: 2rem 0; }
.concern-reading p { max-width: 760px; font-size: 1.05rem; }
.concern-reading .concern-action {
  border-top: 1px solid rgba(225, 196, 126, .18);
  color: #eee2bd;
  margin-top: 1rem;
  padding-top: .9rem;
}
.reading-unlock {
  display: grid;
  grid-template-columns: minmax(220px, .58fr) minmax(0, 1fr);
  gap: 1rem 2rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid rgba(225, 196, 126, .26);
  border-bottom: 1px solid rgba(225, 196, 126, .26);
}
.reading-unlock h3 {
  margin-top: .45rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.reading-unlock > p {
  color: var(--text-soft);
  font-size: .98rem;
}
.reading-unlock .ai-consent,
.reading-unlock .button,
.reading-unlock-status {
  grid-column: 2;
}
.reading-unlock .ai-consent { margin-top: 0; }
.reading-unlock .button {
  width: fit-content;
  max-width: 100%;
}
.reading-unlock .button:disabled {
  cursor: not-allowed;
  opacity: .48;
}
.reading-unlock-status {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}
.reading-unlock[data-state="complete"] {
  border-color: rgba(112, 151, 105, .55);
}
.reading-unlock [hidden] { display: none !important; }
.dialog-boundary {
  padding: 1rem 1.1rem;
  border-left: 2px solid rgba(225, 196, 126, .42);
  background: rgba(225, 196, 126, .05);
  color: var(--muted);
  font-size: .88rem;
}
.reading-dialog-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}
.reading-dialog-footer > p { color: var(--muted); font-size: .78rem; text-transform: uppercase; }
.coin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}
.liuyao-focus-field { margin-bottom: .8rem; }
.coin-grid label {
  display: grid;
  gap: .35rem;
  color: var(--text-soft);
  font-size: .82rem;
}
.coin-grid select {
  min-height: 46px;
  text-align: center;
}
.reading-cast-form .field.wide textarea {
  min-height: 140px;
}
.reading-cast-form [hidden] { display: none !important; }

@media (max-width: 1180px) {
  .hero-grid,
  .split-grid,
  .section-head,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services-hero-grid,
  .service-closing-inner,
  .reading-entry-grid,
  .home-trust-grid { grid-template-columns: 1fr; }
  .service-chapter-head { grid-template-columns: 1fr; gap: 1.2rem; }
}
@media (max-width: 820px) {
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .nav.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.9rem;
    border: 1px solid rgba(241, 231, 211, 0.10);
    border-radius: 20px;
    background: rgba(8, 11, 12, 0.96);
    box-shadow: var(--shadow);
  }
  .hero, .section { padding: 4rem 0; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-2, .grid-4, .grid-6, .form-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; gap: 0; }
  .services-index {
    position: sticky;
    top: 72px;
    z-index: 20;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
    padding: .6rem 0;
    background: rgba(8, 11, 11, .96);
    border-bottom: 1px solid var(--line);
  }
  .services-index-label { display: none; }
  .services-index a,
  .services-index a:last-child { padding: .65rem .75rem; border: 0; }
  .service-options { grid-template-columns: 1fr; }
  .service-options article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-options article:last-child { border-bottom: 0; }
  .service-options h3 { margin-top: 1.6rem; }
  .home-path { grid-template-columns: 48px minmax(0, 1fr); }
  .home-path p,
  .home-path a { grid-column: 2; }
  .method-tabs { grid-template-columns: 1fr; }
  .coin-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .brand > span:not(.seal),
  .icon-link { display: none; }
  .hero-art { min-height: 460px; }
  .fixed-cta { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .services-hero { padding: 4.5rem 0 3.5rem; }
  .services-hero h1 { font-size: 3.2rem; line-height: .98; }
  .lang-zh.services-page .services-hero h1 { font-size: 2.75rem; line-height: 1.2; }
  .service-chapter { padding: 3.4rem 0 4rem; }
  .service-chapter h2 { font-size: 2.6rem; }
  .lang-zh .service-chapter h2 { font-size: 2.35rem; }
  .home-path { gap: .8rem; }
  .home-hero { min-height: 72svh; }
  .home-hero-image { object-position: center; }
  .home-hero-wash { background: linear-gradient(0deg, rgba(3,7,7,.98) 0%, rgba(3,7,7,.62) 68%, rgba(3,7,7,.2) 100%); }
  .home-hero-inner { padding-top: 4rem; padding-bottom: 3rem; }
  .home-hero-copy h1 { font-size: 3rem; line-height: 1; }
  .lang-zh .home-hero-copy h1 { font-size: 2.65rem; line-height: 1.2; }
  .reading-entry-hero { padding: 4.5rem 0 3.5rem; }
  .reading-entry-grid h1 { font-size: 3rem; line-height: 1; }
  .lang-zh .reading-entry-grid h1 { font-size: 2.55rem; line-height: 1.18; }
  .coin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* Reading Hall: temple dusk, manuscript order, and fewer framed surfaces. */
.reading-page {
  background: #070909;
  overflow-x: clip;
}
.lang-zh {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}
.lang-zh h1,
.lang-zh h2,
.lang-zh h3,
.lang-zh .brand strong,
.lang-zh .reading-methods span,
.lang-zh .reading-chamber-mark span,
.lang-zh .reading-deliverables span,
.lang-zh .reading-questions summary {
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
}
.lang-zh .notice,
.lang-zh .eyebrow,
.lang-zh .brand span,
.lang-zh .reading-chamber-mark small {
  letter-spacing: 0;
}
.lang-zh .reading-hero-copy h1 { font-size: 4.8rem; line-height: 1.08; }
.lang-zh .reading-hero-copy > p { line-height: 1.9; }

/* Guide articles */
.guide-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080c0d;
}
.guide-hero > img,
.guide-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.guide-hero > img { object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.06); }
.guide-hero-wash {
  background:
    linear-gradient(90deg, rgba(4, 7, 8, .96) 0%, rgba(4, 7, 8, .78) 46%, rgba(4, 7, 8, .24) 78%),
    linear-gradient(0deg, #06090a 0%, transparent 52%);
}
.guide-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.guide-breadcrumb {
  display: flex;
  gap: .65rem;
  margin-bottom: 3.5rem;
  color: var(--text-soft);
  font-size: .88rem;
}
.guide-breadcrumb a { text-underline-offset: 4px; }
.guide-hero h1 {
  max-width: 780px;
  margin-top: 1.1rem;
  font-size: 5.3rem;
  line-height: .94;
  letter-spacing: 0;
}
.guide-hero-inner > p {
  max-width: 690px;
  margin-top: 1.4rem;
  color: var(--text-soft);
  font-size: 1.28rem;
}
.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.4rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: .9rem;
}
.guide-layout {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 740px);
  justify-content: center;
  gap: 4.5rem;
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.guide-toc {
  position: sticky;
  top: 104px;
  align-self: start;
  padding-left: 1rem;
  border-left: 1px solid var(--line-strong);
}
.guide-toc > span {
  display: block;
  margin-bottom: .9rem;
  color: #e1c47e;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.guide-toc ol { margin: 0; padding: 0; list-style: none; }
.guide-toc li + li { margin-top: .62rem; }
.guide-toc a {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.35;
  text-decoration: none;
}
.guide-toc a:hover { color: var(--text); }
.guide-prose {
  min-width: 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.82;
}
.guide-prose > p:first-child {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.55;
}
.guide-prose h2 {
  margin: 4.5rem 0 1.25rem;
  padding-top: 1rem;
  color: var(--text);
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: 0;
  scroll-margin-top: 110px;
}
.guide-prose h3 {
  margin: 2.5rem 0 .85rem;
  color: #e4d3b4;
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0;
}
.guide-prose p + p { margin-top: 1.25rem; }
.guide-prose ul,
.guide-prose ol { margin: 1.35rem 0; padding-left: 1.3rem; }
.guide-prose li + li { margin-top: .62rem; }
.guide-prose strong { color: var(--text); }
.guide-prose em { color: #dfcfae; }
.guide-prose a { color: #e1c47e; text-underline-offset: 4px; overflow-wrap: anywhere; }
.guide-prose blockquote {
  margin: 2rem 0;
  padding: .2rem 0 .2rem 1.4rem;
  border-left: 2px solid var(--accent);
  color: #dfcfae;
}
.guide-prose table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  font-size: .98rem;
}
.guide-prose th,
.guide-prose td {
  padding: .8rem .7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.guide-prose th { color: var(--text); font-weight: 700; }
.guide-prose hr { margin: 3.5rem 0; border: 0; border-top: 1px solid var(--line); }
.guide-closing {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(27, 43, 40, .72), rgba(12, 16, 17, .92));
}
.guide-closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.guide-closing h2 {
  max-width: 760px;
  margin-top: 1rem;
  font-size: 3.3rem;
  letter-spacing: 0;
}
.guide-closing p { max-width: 700px; margin-top: 1rem; color: var(--text-soft); font-size: 1.05rem; }
.guide-footer { display: flex; justify-content: space-between; gap: 2rem; color: var(--muted); }
.guide-footer a { color: var(--text); text-underline-offset: 4px; }
.guide-footer p { max-width: 690px; text-align: right; }
.lang-zh .guide-prose { line-height: 2; }
.lang-zh .guide-hero h1 { line-height: 1.12; }

/* Policy and trust pages */
.policy-page {
  background:
    radial-gradient(circle at 14% 9%, rgba(138, 107, 50, .12), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(49, 93, 77, .16), transparent 30rem),
    var(--bg);
}
.policy-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
  border-bottom: 1px solid var(--line);
}
.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 7, .96), rgba(8, 14, 14, .76)),
    url("/assets/home-mountain-temple-v2.jpg") center 38% / cover;
  opacity: .34;
  filter: saturate(.65) contrast(1.1);
}
.policy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.policy-hero h1 {
  max-width: 860px;
  margin-top: 1rem;
  font-size: clamp(3rem, 8vw, 5.7rem);
  line-height: .96;
  letter-spacing: 0;
}
.lang-zh .policy-hero h1 { line-height: 1.14; }
.policy-hero p {
  max-width: 720px;
  margin-top: 1.4rem;
  color: var(--text-soft);
  font-size: 1.22rem;
  line-height: 1.75;
}
.policy-meta {
  display: inline-flex;
  margin-top: 2rem;
  padding: .55rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 7, 7, .58);
  color: var(--muted);
  font-size: .88rem;
}
.policy-body { padding: 5rem 0 6rem; }
.policy-layout {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 790px);
  justify-content: center;
  gap: 4rem;
}
.policy-index {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: .75rem;
  padding: 1.1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 13, 13, .66);
}
.policy-index span {
  color: #e1c47e;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.policy-index a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.35;
}
.policy-index a:hover { color: var(--text); }
.policy-panels {
  display: grid;
  gap: 1rem;
}
.policy-panel {
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    rgba(8, 13, 13, .78);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  scroll-margin-top: 110px;
}
.policy-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.policy-panel p {
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.82;
}
.policy-panel p + p { margin-top: .95rem; }
.policy-closing {
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(31, 49, 44, .78), rgba(7, 11, 12, .94));
}
.policy-closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.policy-closing h2 {
  max-width: 790px;
  margin-top: .9rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .guide-hero { min-height: 560px; }
  .guide-hero h1 { font-size: 4rem; }
  .guide-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .guide-toc { position: static; }
  .guide-closing-inner { grid-template-columns: 1fr; align-items: start; }
  .policy-layout { grid-template-columns: 1fr; gap: 2rem; }
  .policy-index { position: static; }
  .policy-closing-inner { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 640px) {
  .guide-hero { min-height: 540px; }
  .guide-hero > img { object-position: 62% center; }
  .guide-hero-wash {
    background: linear-gradient(0deg, #06090a 0%, rgba(4, 7, 8, .82) 58%, rgba(4, 7, 8, .38) 100%);
  }
  .guide-hero-inner { padding-top: 4rem; padding-bottom: 3rem; }
  .guide-breadcrumb { margin-bottom: 2.5rem; }
  .guide-hero h1,
  .lang-zh .guide-hero h1 { font-size: 2.85rem; }
  .guide-hero-inner > p { font-size: 1.08rem; }
  .guide-layout { padding-top: 3rem; padding-bottom: 4rem; }
  .guide-prose { font-size: 1.03rem; }
  .guide-prose > p:first-child { font-size: 1.32rem; }
  .guide-prose h2 { margin-top: 3.5rem; font-size: 2.1rem; }
  .guide-prose table { display: block; overflow-x: auto; white-space: nowrap; }
  .guide-closing h2 { font-size: 2.35rem; }
  .guide-closing .cta-row { display: grid; grid-template-columns: 1fr; }
  .guide-footer { flex-direction: column; }
  .guide-footer p { text-align: left; }
  .policy-hero { padding: 5rem 0 3.5rem; }
  .policy-hero::before { background-position: 62% center; }
  .policy-hero p { font-size: 1.05rem; }
  .policy-body { padding: 3rem 0 4rem; }
  .policy-closing .button { width: 100%; }
}
.lang-zh:not(.reading-page) h1 {
  font-size: 4.8rem;
  line-height: 1.1;
  text-wrap: balance;
}
.lang-zh:not(.reading-page) h2 {
  font-size: 3.4rem;
  line-height: 1.16;
}
.lang-zh:not(.reading-page) h3 { line-height: 1.25; }
.lang-zh:not(.reading-page) .hero-copy,
.lang-zh:not(.reading-page) .section-note,
.lang-zh:not(.reading-page) .card p,
.lang-zh:not(.reading-page) .story-panel p,
.lang-zh:not(.reading-page) .result-panel p { line-height: 1.85; }
.lang-zh .reading-chamber p,
.lang-zh .section-note,
.lang-zh .reading-deliverables li,
.lang-zh .reading-questions p { line-height: 1.8; }
.reading-page h1,
.reading-page h2,
.reading-page h3 {
  letter-spacing: 0;
}
.reading-hero {
  position: relative;
  min-height: min(790px, calc(100svh - 108px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(225, 196, 126, 0.18);
  isolation: isolate;
}
.reading-hero-image,
.reading-hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.reading-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 58% 38%;
  filter: saturate(0.66) contrast(1.12) brightness(0.72);
  animation: reading-image-in 1100ms ease-out both;
}
.reading-hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 7, 7, 0.96) 0%, rgba(4, 7, 7, 0.76) 43%, rgba(4, 7, 7, 0.18) 74%),
    linear-gradient(0deg, rgba(4, 7, 7, 0.95) 0%, rgba(4, 7, 7, 0.08) 55%, rgba(4, 7, 7, 0.18) 100%);
}
.reading-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 3rem;
  align-items: end;
  padding-top: 7rem;
  padding-bottom: 5.5rem;
}
.reading-hero-copy,
.reading-hero-inner,
.reading-methods { min-width: 0; }
.reading-hero-copy {
  animation: reading-copy-in 760ms 120ms ease-out both;
}
.reading-hero-copy h1 {
  max-width: 760px;
  margin-top: 1rem;
  font-size: 5.4rem;
  line-height: 0.92;
  text-wrap: balance;
}
.reading-hero-copy > p {
  max-width: 620px;
  margin-top: 1.35rem;
  color: rgba(241, 231, 211, 0.84);
  font-size: 1.26rem;
}
.reading-methods {
  display: grid;
  gap: 0;
  min-width: 130px;
  border-top: 1px solid rgba(241, 231, 211, 0.36);
  border-bottom: 1px solid rgba(241, 231, 211, 0.36);
}
.reading-methods span {
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(241, 231, 211, 0.13);
  color: rgba(241, 231, 211, 0.8);
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: right;
}
.reading-methods span:last-child { border-bottom: 0; }
.reading-photo-credit {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  color: rgba(241, 231, 211, 0.48);
  font-size: 0.72rem;
}
.reading-photo-credit a { color: inherit; }
.reading-page .notice-copy { color: var(--text); }

.reading-paths {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(241, 231, 211, 0.035) 50%, transparent calc(50% + 1px)),
    #0b0e0e;
}
.reading-page .section-head {
  margin-bottom: 3rem;
}
.reading-page .section-head h2 {
  margin-top: 0.8rem;
  font-size: 4rem;
}
.reading-chambers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(225, 196, 126, 0.34);
  border-bottom: 1px solid rgba(241, 231, 211, 0.1);
}
.reading-chamber {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.35rem 1.5rem;
  border-right: 1px solid rgba(241, 231, 211, 0.1);
  background: rgba(255, 255, 255, 0.012);
}
.reading-chamber:last-child { border-right: 0; }
.reading-chamber:nth-child(2) { background: rgba(93, 133, 122, 0.045); }
.reading-chamber:nth-child(3) { background: rgba(180, 61, 42, 0.035); }
.reading-chamber-mark {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4.5rem;
}
.reading-chamber-mark span {
  color: #e1c47e;
  font-family: var(--serif);
  font-size: 1.5rem;
}
.reading-chamber-mark small {
  color: var(--muted);
  text-transform: uppercase;
}
.reading-chamber h3 {
  min-height: 3.8rem;
  font-size: 2rem;
}
.reading-chamber p {
  margin-top: 1rem;
  color: rgba(241, 231, 211, 0.7);
}
.reading-chamber a {
  margin-top: auto;
  padding-top: 1.5rem;
  color: #e1c47e;
  text-decoration: none;
}
.reading-chamber a::after { content: "  /"; color: var(--accent); }

.reading-outcome-band {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #12110f;
  border-top: 1px solid rgba(241, 231, 211, 0.08);
  border-bottom: 1px solid rgba(241, 231, 211, 0.08);
}
.reading-outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 7rem;
}
.reading-outcome h2 {
  max-width: 680px;
  margin-top: 1rem;
  font-size: 4rem;
}
.reading-deliverables {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: deliverable;
}
.reading-deliverables li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(241, 231, 211, 0.12);
  color: rgba(241, 231, 211, 0.72);
}
.reading-deliverables li:last-child { border-bottom: 1px solid rgba(241, 231, 211, 0.12); }
.reading-deliverables span {
  color: #e1c47e;
  font-family: var(--serif);
  font-size: 1.12rem;
}
.reading-questions details {
  border-top: 1px solid rgba(241, 231, 211, 0.16);
}
.reading-questions details:last-child { border-bottom: 1px solid rgba(241, 231, 211, 0.16); }
.reading-questions summary {
  position: relative;
  padding: 1.35rem 2.3rem 1.35rem 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.5rem;
  cursor: pointer;
  list-style: none;
}
.reading-questions summary::-webkit-details-marker { display: none; }
.reading-questions summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.2rem;
  color: #e1c47e;
  font-family: var(--sans);
}
.reading-questions details[open] summary::after { content: "−"; }
.reading-questions details p {
  max-width: 520px;
  padding: 0 2rem 1.5rem 0;
  color: rgba(241, 231, 211, 0.7);
}

@keyframes reading-image-in {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes reading-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .reading-hero-inner { grid-template-columns: 1fr; }
  .reading-methods {
    grid-template-columns: repeat(5, auto);
    min-width: 0;
    max-width: 620px;
  }
  .reading-methods span {
    padding: 0.65rem 0.8rem;
    border-right: 1px solid rgba(241, 231, 211, 0.13);
    border-bottom: 0;
    text-align: center;
  }
  .reading-chambers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reading-chamber:nth-child(2) { border-right: 0; }
  .reading-chamber:nth-child(-n+2) { border-bottom: 1px solid rgba(241, 231, 211, 0.1); }
  .reading-outcome-grid { grid-template-columns: 1fr; gap: 5rem; }
}
@media (max-width: 680px) {
  .notice {
    display: flex;
    overflow: visible;
    white-space: normal;
    text-align: center;
  }
  .reading-page .notice-copy { display: none; }
  .reading-page .seal { display: grid; }
  .brand > span:not(.seal),
  .reading-page .icon-link { display: none; }
  .reading-hero {
    min-height: 630px;
    align-items: end;
  }
  .reading-hero-image { object-position: 67% center; }
  .reading-hero-wash {
    background:
      linear-gradient(0deg, rgba(4, 7, 7, 0.97) 0%, rgba(4, 7, 7, 0.72) 57%, rgba(4, 7, 7, 0.18) 100%);
  }
  .reading-hero-inner { padding-top: 4rem; padding-bottom: 2.25rem; }
  .reading-hero-copy h1 { font-size: 2.9rem; line-height: 0.98; }
  .lang-zh .reading-hero-copy h1 { font-size: 2.8rem; line-height: 1.14; }
  .lang-zh:not(.reading-page) h1 { font-size: 2.4rem; line-height: 1.2; }
  .lang-zh:not(.reading-page) h2 { font-size: 2.45rem; line-height: 1.2; }
  .reading-hero-copy > p { font-size: 1.08rem; }
  .reading-hero-copy .cta-row { display: grid; grid-template-columns: 1fr; }
  .reading-hero-copy .button { width: 100%; }
  .reading-methods {
    display: none;
  }
  .reading-photo-credit {
    right: 0.65rem;
    bottom: 0.35rem;
    font-size: 0.58rem;
  }
  .reading-page .section-head h2,
  .reading-outcome h2 { font-size: 3rem; }
  .reading-chambers { grid-template-columns: 1fr; }
  .reading-chamber,
  .reading-chamber:nth-child(2) {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(241, 231, 211, 0.1);
  }
  .reading-chamber-mark { margin-bottom: 3rem; }
  .reading-deliverables li { grid-template-columns: 1fr; gap: 0.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reading-hero-image,
  .reading-hero-copy { animation: none; }
}

/* Editorial service pages: one clear image beside one clear introduction. */
.editorial-hero {
  position: relative;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(241, 231, 211, 0.12);
  background:
    radial-gradient(circle at 82% 20%, rgba(58, 91, 79, 0.14), transparent 30rem),
    linear-gradient(180deg, rgba(19, 30, 27, 0.22), rgba(6, 9, 9, 0));
}
.editorial-hero .split-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
}
.editorial-hero h1 {
  max-width: 700px;
  margin-top: 1rem;
  font-size: clamp(3.5rem, 5.8vw, 6.2rem);
  line-height: 0.94;
  text-wrap: balance;
}
.lang-zh .editorial-hero h1 {
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1.12;
}
.editorial-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(225, 196, 126, 0.17);
  border-radius: 4px;
  background: #07100e;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}
.editorial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 8, 8, 0.14), transparent 35%),
    linear-gradient(0deg, rgba(4, 8, 8, 0.3), transparent 38%);
}
.editorial-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.86);
}
.about-page .editorial-visual img { object-position: 44% center; }
.talisman-page .editorial-visual img { object-position: 52% center; }
.feng-shui-page .editorial-visual img { object-position: 50% center; }

.services-hero-visual {
  position: relative;
  grid-column: 1 / -1;
  aspect-ratio: 2.65 / 1;
  margin: 1rem 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(225, 196, 126, 0.2);
  border-bottom: 1px solid rgba(225, 196, 126, 0.12);
  background: #07100e;
}
.services-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 10, 9, 0.28), transparent 58%, rgba(5, 10, 9, 0.14));
  pointer-events: none;
}
.services-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.05) brightness(0.82);
}

@media (max-width: 980px) {
  .editorial-hero .split-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .editorial-hero .split-grid > div { max-width: 760px; }
  .editorial-visual { aspect-ratio: 16 / 9; }
  .services-hero-visual { aspect-ratio: 2 / 1; }
}

@media (max-width: 680px) {
  .editorial-hero { padding: 4rem 0 3.5rem; }
  .editorial-hero h1,
  .lang-zh .editorial-hero h1 {
    font-size: 2.65rem;
    line-height: 1.15;
  }
  .editorial-visual { aspect-ratio: 4 / 3; }
  .services-hero-visual { aspect-ratio: 4 / 3; }
  .services-hero-visual img { object-position: 72% center; }
}

@media (max-width: 820px) {
  .reading-insights,
  .element-reading,
  .reading-unlock { grid-template-columns: 1fr; }
  .reading-unlock .ai-consent,
  .reading-unlock .button,
  .reading-unlock-status { grid-column: 1; }
  .reading-insights section { padding: 1.3rem 0; }
  .reading-insights section + section {
    padding-left: 0;
    border-top: 1px solid rgba(241, 231, 211, .12);
    border-left: 0;
  }
  .reading-dialog-footer { display: grid; grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .reading-result-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
  }
  .reading-dialog-shell { padding: 1.15rem; }
  .reading-dialog-header h2 { font-size: 2.35rem; }
  .dialog-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reading-dialog-footer .cta-row { display: grid; grid-template-columns: 1fr; }
  .reading-dialog-footer .button { width: 100%; }
  .moment-figures { grid-template-columns: 1fr; }
  .moment-figures article { border-right: 0; border-bottom: 1px solid rgba(241, 231, 211, .1); }
  .moment-figures article:last-child { border-bottom: 0; }
  .moment-calculation { grid-template-columns: 1fr; gap: .7rem; }
  .liuyao-line { grid-template-columns: 28px 64px minmax(0, 1fr); gap: .55rem; }
  .liuyao-line-flags { grid-column: 3; text-align: left; }
  .service-inquiry-dialog {
    width: calc(100vw - .75rem);
    max-height: calc(100dvh - .75rem);
  }
  .service-inquiry-shell { padding: 1.1rem 1rem 0; }
  .service-inquiry-header h2 { font-size: 2.25rem; }
  .service-inquiry-lead { font-size: 1rem; }
  .service-request-link { min-height: 48px; }
  .service-inquiry-actions {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    margin-inline: -1rem;
    padding: .8rem 1rem max(.8rem, env(safe-area-inset-bottom));
    background: rgba(9, 14, 13, .97);
  }
  .service-inquiry-actions .button { width: 100%; min-height: 48px; }
}
