:root {
  color-scheme: dark;
  --ink: #070807;
  --deep: #101411;
  --paper: #f3eee4;
  --mist: rgba(243, 238, 228, 0.72);
  --soft: rgba(243, 238, 228, 0.12);
  --line: rgba(243, 238, 228, 0.16);
  --gold: #d5bf86;
  --green: #a7b6a2;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
video {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 72px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(7, 8, 7, 0.62), rgba(7, 8, 7, 0));
}

.static-header {
  position: sticky;
  background: rgba(7, 8, 7, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  color: rgba(243, 238, 228, 0.74);
  font-size: 13px;
}

.header-actions {
  position: relative;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta,
.language-button {
  justify-self: end;
  border: 1px solid rgba(243, 238, 228, 0.34);
  padding: 10px 16px;
  background: rgba(7, 8, 7, 0.24);
  color: rgba(243, 238, 228, 0.88);
  font-size: 13px;
  cursor: pointer;
}

.language-switcher {
  position: relative;
}

.language-button {
  min-width: 54px;
}

.language-menu[hidden] {
  display: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: grid;
  min-width: 150px;
  border: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.language-menu button {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  padding: 13px 16px;
  text-align: left;
  cursor: pointer;
}

.language-menu button:last-child {
  border-bottom: 0;
}

.language-menu button[aria-pressed="true"] {
  color: var(--gold);
}

.language-menu button:hover {
  background: rgba(243, 238, 228, 0.06);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(22px, 6vw, 82px) 82px;
  overflow: hidden;
}

.hero-video,
.hero-poster,
.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-poster {
  object-fit: cover;
  background: #111;
}

.hero-poster {
  z-index: 0;
}

.hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 900ms ease;
}

.video-ready .hero-video {
  opacity: 1;
}

.video-fallback .hero-video {
  display: none;
}

.hero-layer {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.74), rgba(5, 7, 6, 0.18)),
    linear-gradient(0deg, rgba(7, 8, 7, 0.8), rgba(7, 8, 7, 0.1) 46%, rgba(7, 8, 7, 0.42));
}

.video-ready .hero-layer {
  z-index: 2;
}

.video-fallback .hero-layer {
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker,
.service-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 9vw, 116px);
  line-height: 0.96;
}

.hero-content p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(243, 238, 228, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-controls {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(243, 238, 228, 0.66);
  font-size: 12px;
}

.hero-controls small {
  color: rgba(243, 238, 228, 0.5);
}

.sound-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.sound-button {
  min-width: 92px;
  border: 1px solid rgba(243, 238, 228, 0.28);
  background: rgba(7, 8, 7, 0.32);
  color: var(--paper);
  padding: 10px 12px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.scroll-cue {
  position: absolute;
  left: clamp(22px, 6vw, 82px);
  bottom: 34px;
  z-index: 3;
  color: rgba(243, 238, 228, 0.68);
  font-size: 12px;
}

section:not(.hero) {
  padding: clamp(86px, 11vw, 156px) clamp(22px, 6vw, 82px);
}

.intro {
  background:
    linear-gradient(180deg, #070807, #111611 48%, #0b0d0b),
    var(--deep);
}

.finder {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 110px);
  background:
    radial-gradient(circle at 80% 10%, rgba(213, 191, 134, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(167, 182, 162, 0.07), rgba(7, 8, 7, 0)),
    #0b0d0b;
}

.finder-heading {
  max-width: 720px;
  position: sticky;
  top: 112px;
  align-self: start;
}

.finder-heading > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.78;
}

.finder-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.finder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 22px;
  min-height: 172px;
  padding: clamp(24px, 4vw, 36px);
  border: 0;
  background:
    linear-gradient(90deg, rgba(243, 238, 228, 0.035), rgba(243, 238, 228, 0.012)),
    #101411;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
}

.finder-card:hover,
.finder-card:focus-visible {
  background:
    linear-gradient(90deg, rgba(213, 191, 134, 0.08), rgba(167, 182, 162, 0.04)),
    #101411;
  outline: 1px solid rgba(213, 191, 134, 0.38);
  outline-offset: -1px;
}

.finder-card span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 12px;
}

.finder-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.12;
}

.finder-card small {
  color: rgba(243, 238, 228, 0.62);
  font-size: 14px;
  line-height: 1.62;
}

.pathways {
  background: #0b0d0b;
}

.quick-oracle {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(213, 191, 134, 0.06), rgba(96, 143, 116, 0.04)),
    #0b0d0b;
}

.oracle-plate {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(243, 238, 228, 0.13);
  background:
    radial-gradient(circle at 50% 44%, rgba(213, 191, 134, 0.2), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(96, 143, 116, 0.22), transparent 30%),
    #080a08;
  box-shadow: inset 0 0 110px rgba(0, 0, 0, 0.46);
}

.oracle-plate::before,
.oracle-plate::after,
.oracle-plate span,
.oracle-plate i {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.oracle-plate::before {
  width: 210px;
  height: 210px;
  border: 1px solid rgba(213, 191, 134, 0.36);
  border-radius: 50%;
  background: conic-gradient(from 22deg, transparent, rgba(213, 191, 134, 0.18), transparent 32%);
  animation: oracleTurn 18s linear infinite;
}

.oracle-plate::after {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 45%, rgba(243, 238, 228, 0.46) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, rgba(243, 238, 228, 0.46) 45% 55%, transparent 55%);
  mask: radial-gradient(circle, #000 6%, transparent 7% 38%, #000 39% 41%, transparent 42%);
  opacity: 0.34;
  animation: oracleTurn 26s linear infinite reverse;
}

.oracle-plate span {
  width: 170px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243, 238, 228, 0.12), rgba(213, 191, 134, 0.86), rgba(243, 238, 228, 0.12));
  box-shadow: 0 0 34px rgba(213, 191, 134, 0.18);
  animation: oracleLine 4.2s ease-in-out infinite;
}

.oracle-plate span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 48px));
}

.oracle-plate span:nth-child(2) {
  transform: translate(-50%, -50%);
  background:
    linear-gradient(90deg, rgba(243, 238, 228, 0.12), rgba(213, 191, 134, 0.76) 42%, transparent 42% 58%, rgba(213, 191, 134, 0.76) 58%, rgba(243, 238, 228, 0.12));
  animation-delay: -1.4s;
}

.oracle-plate span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 48px));
  animation-delay: -2.8s;
}

.oracle-plate i {
  width: 8px;
  height: 260px;
  background: linear-gradient(180deg, transparent, rgba(243, 238, 228, 0.34), transparent);
  transform: translate(-50%, -50%) rotate(28deg);
  animation: oracleBeam 5.8s ease-in-out infinite;
}

.quick-oracle-copy {
  max-width: 760px;
}

.quick-oracle-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.78;
}

.quick-oracle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
}

.quick-oracle-meta span {
  border: 1px solid rgba(213, 191, 134, 0.3);
  padding: 9px 12px;
  color: rgba(243, 238, 228, 0.78);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-oracle-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 32px;
  border: 1px solid rgba(213, 191, 134, 0.42);
  padding: 12px 18px;
  color: var(--paper);
}

.entry-points {
  background:
    linear-gradient(180deg, rgba(167, 182, 162, 0.045), rgba(213, 191, 134, 0.035)),
    #101411;
  overflow: hidden;
}

.section-heading > p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--mist);
  font-size: 17px;
  line-height: 1.72;
}

.entry-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 31vw);
  gap: 18px;
  margin-top: 54px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.entry-scroll::-webkit-scrollbar {
  height: 8px;
}

.entry-scroll::-webkit-scrollbar-thumb {
  background: rgba(213, 191, 134, 0.36);
}

.entry-card {
  position: relative;
  min-height: 610px;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(243, 238, 228, 0.14);
  background:
    linear-gradient(180deg, rgba(243, 238, 228, 0.035), rgba(7, 8, 7, 0.22)),
    #0b0d0b;
  scroll-snap-align: start;
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 191, 134, 0.58), transparent);
}

.entry-visual {
  position: relative;
  height: 172px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(243, 238, 228, 0.12);
  background: rgba(243, 238, 228, 0.035);
}

.entry-label {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.entry-card h3 {
  max-width: 420px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.entry-card p:not(.entry-label) {
  margin: 0;
  color: var(--mist);
  line-height: 1.72;
}

.entry-card .entry-price {
  width: fit-content;
  border: 1px solid rgba(213, 191, 134, 0.32);
  padding: 8px 11px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
}

.entry-card ul {
  display: grid;
  gap: 9px;
  margin: 4px 0 8px;
  padding-left: 18px;
  color: rgba(243, 238, 228, 0.62);
  line-height: 1.58;
}

.entry-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: auto;
  border: 1px solid rgba(213, 191, 134, 0.36);
  padding: 12px 18px;
  color: var(--paper);
}

.bazi-card .entry-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(213, 191, 134, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(92, 128, 92, 0.18), rgba(95, 137, 163, 0.1)),
    #0b0d0b;
}

.bazi-card .entry-visual span {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(213, 191, 134, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: baziOrbit 12s linear infinite;
}

.bazi-card .entry-visual span:nth-child(1) {
  width: 118px;
  height: 118px;
}

.bazi-card .entry-visual span:nth-child(2) {
  width: 76px;
  height: 76px;
  animation-duration: 9s;
  animation-direction: reverse;
}

.bazi-card .entry-visual span:nth-child(3) {
  width: 14px;
  height: 14px;
  background: #d5bf86;
  box-shadow: 0 0 32px rgba(213, 191, 134, 0.55);
}

.bazi-card .entry-visual span:nth-child(4) {
  width: 160px;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(243, 238, 228, 0.5), transparent);
}

.iching-card .entry-visual {
  display: grid;
  place-content: center;
  gap: 10px;
  background:
    radial-gradient(circle at 80% 10%, rgba(213, 191, 134, 0.14), transparent 24%),
    #080a08;
}

.iching-card .entry-visual span {
  display: block;
  width: 156px;
  height: 10px;
  background: linear-gradient(90deg, rgba(243, 238, 228, 0.18), rgba(213, 191, 134, 0.82), rgba(243, 238, 228, 0.18));
  animation: hexagramPulse 3.6s ease-in-out infinite;
}

.iching-card .entry-visual span:nth-child(2),
.iching-card .entry-visual span:nth-child(5) {
  background:
    linear-gradient(90deg, rgba(243, 238, 228, 0.18), rgba(213, 191, 134, 0.72) 42%, transparent 42% 58%, rgba(213, 191, 134, 0.72) 58%, rgba(243, 238, 228, 0.18));
}

.iching-card .entry-visual span:nth-child(2) {
  animation-delay: 0.2s;
}

.iching-card .entry-visual span:nth-child(3) {
  animation-delay: 0.4s;
}

.iching-card .entry-visual span:nth-child(4) {
  animation-delay: 0.6s;
}

.iching-card .entry-visual span:nth-child(5) {
  animation-delay: 0.8s;
}

.iching-card .entry-visual span:nth-child(6) {
  animation-delay: 1s;
}

.feng-card .entry-visual {
  background:
    linear-gradient(90deg, rgba(243, 238, 228, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(243, 238, 228, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 28% 65%, rgba(96, 143, 116, 0.34), transparent 30%),
    radial-gradient(circle at 72% 34%, rgba(213, 191, 134, 0.22), transparent 28%),
    #0a0d0b;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.feng-card .entry-visual span {
  position: absolute;
  border: 1px solid rgba(213, 191, 134, 0.42);
  background: rgba(243, 238, 228, 0.055);
  animation: layoutBreath 5s ease-in-out infinite;
}

.feng-card .entry-visual span:nth-child(1) {
  left: 28px;
  top: 28px;
  width: 72px;
  height: 50px;
}

.feng-card .entry-visual span:nth-child(2) {
  right: 34px;
  top: 42px;
  width: 94px;
  height: 34px;
  animation-delay: 0.5s;
}

.feng-card .entry-visual span:nth-child(3) {
  left: 82px;
  bottom: 28px;
  width: 110px;
  height: 44px;
  animation-delay: 1s;
}

.feng-card .entry-visual span:nth-child(4) {
  right: 64px;
  bottom: 38px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(213, 191, 134, 0.42);
  box-shadow: 0 0 38px rgba(213, 191, 134, 0.45);
  animation-delay: 1.5s;
}

@keyframes baziOrbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.98);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.04);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(0.98);
  }
}

@keyframes hexagramPulse {
  0%,
  100% {
    transform: translateX(-4px);
    opacity: 0.54;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

@keyframes layoutBreath {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.62;
  }
  50% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

@keyframes oracleTurn {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes oracleLine {
  0%,
  100% {
    opacity: 0.58;
    filter: brightness(0.9);
  }
  50% {
    opacity: 1;
    filter: brightness(1.18);
  }
}

@keyframes oracleBeam {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(18deg);
    opacity: 0.18;
  }
  50% {
    transform: translate(-50%, -50%) rotate(38deg);
    opacity: 0.56;
  }
}

.entry-card .entry-video {
  height: clamp(238px, 23vw, 310px);
  margin-bottom: 18px;
  border-color: rgba(243, 238, 228, 0.16);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.entry-card .entry-video::before,
.entry-card .entry-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.entry-card .entry-video::after {
  z-index: 8;
  border: 1px solid rgba(213, 191, 134, 0.16);
  background:
    linear-gradient(180deg, rgba(243, 238, 228, 0.06), transparent 24%, rgba(7, 8, 7, 0.16)),
    radial-gradient(circle at 50% 110%, rgba(213, 191, 134, 0.16), transparent 36%);
  mix-blend-mode: screen;
}

.entry-card .entry-video span {
  position: absolute;
  inset: auto;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
  animation: none;
  box-shadow: none;
}

.bazi-video {
  background:
    linear-gradient(120deg, rgba(16, 20, 17, 0.32), rgba(7, 8, 7, 0.12)),
    radial-gradient(circle at 70% 30%, rgba(213, 191, 134, 0.2), transparent 26%),
    #0b0d0b;
}

.bazi-video::before {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 32%, rgba(226, 219, 199, 0.26), transparent 20%),
    radial-gradient(circle at 42% 52%, rgba(226, 219, 199, 0.18), transparent 23%),
    radial-gradient(circle at 62% 42%, rgba(50, 55, 48, 0.92), transparent 34%),
    linear-gradient(115deg, rgba(226, 219, 199, 0.11), transparent 54%);
  filter: blur(12px);
  animation: inkDrift 9s ease-in-out infinite alternate;
}

.bazi-video .ink-wash {
  z-index: 2;
  width: 62%;
  height: 62%;
  border-radius: 48% 52% 56% 44%;
  background:
    radial-gradient(circle at 34% 38%, rgba(231, 224, 204, 0.2), transparent 28%),
    radial-gradient(circle at 58% 48%, rgba(9, 10, 9, 0.8), transparent 48%);
  filter: blur(7px);
  opacity: 0.8;
  animation: inkBloom 8s ease-in-out infinite;
}

.bazi-video .ink-wash:nth-child(1) {
  left: 6%;
  top: 12%;
}

.bazi-video .ink-wash:nth-child(2) {
  right: 2%;
  bottom: 0;
  animation-delay: -3s;
  transform: rotate(18deg);
}

.bazi-video .seal-orbit {
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(213, 191, 134, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: baziSeal 16s linear infinite;
}

.bazi-video .seal-orbit::before,
.bazi-video .seal-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(243, 238, 228, 0.12);
  border-radius: 50%;
}

.bazi-video .seal-orbit::after {
  inset: 50%;
  width: 9px;
  height: 9px;
  background: var(--gold);
  box-shadow: 0 0 30px rgba(213, 191, 134, 0.7);
  transform: translate(-50%, -50%);
}

.bazi-video .script-ring,
.bazi-video .script-float {
  z-index: 4;
  color: rgba(243, 238, 228, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.22em;
  text-shadow: 0 0 24px rgba(213, 191, 134, 0.24);
}

.bazi-video .script-ring {
  left: 50%;
  top: 50%;
  width: min(320px, 82%);
  text-align: center;
  transform: translate(-50%, -50%);
  animation: scriptReveal 7s ease-in-out infinite;
}

.bazi-video .script-float {
  font-size: clamp(28px, 4vw, 56px);
  opacity: 0.22;
  animation: characterFloat 8s ease-in-out infinite;
}

.bazi-video .script-float:nth-child(5) {
  left: 12%;
  bottom: 15%;
}

.bazi-video .script-float:nth-child(6) {
  right: 10%;
  top: 16%;
  animation-delay: -3s;
}

.bazi-video .paper-grain {
  z-index: 7;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(243, 238, 228, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(243, 238, 228, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.iching-video {
  display: grid;
  place-content: center;
  gap: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(213, 191, 134, 0.18), transparent 30%),
    radial-gradient(circle at 18% 20%, rgba(96, 143, 116, 0.16), transparent 24%),
    #080a08;
}

.iching-video::before {
  z-index: 1;
  inset: 12%;
  border: 1px solid rgba(213, 191, 134, 0.16);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent, rgba(213, 191, 134, 0.18), transparent 28%, rgba(243, 238, 228, 0.1), transparent 62%);
  animation: oracleTurn 18s linear infinite;
}

.iching-video .hex-line {
  position: relative;
  z-index: 3;
  display: block;
  width: min(190px, 52vw);
  height: 10px;
  margin: 6px auto;
  background: linear-gradient(90deg, rgba(243, 238, 228, 0.18), rgba(213, 191, 134, 0.9), rgba(243, 238, 228, 0.18));
  filter: drop-shadow(0 0 16px rgba(213, 191, 134, 0.28));
  animation: hexagramPulse 3.8s ease-in-out infinite;
}

.iching-video .hex-line.broken {
  background:
    linear-gradient(90deg, rgba(243, 238, 228, 0.18), rgba(213, 191, 134, 0.84) 39%, transparent 39% 61%, rgba(213, 191, 134, 0.84) 61%, rgba(243, 238, 228, 0.18));
}

.iching-video .hex-line:nth-child(4) {
  animation-delay: 0.2s;
}

.iching-video .hex-line:nth-child(5) {
  animation-delay: 0.4s;
}

.iching-video .hex-line:nth-child(6) {
  animation-delay: 0.6s;
}

.iching-video .hex-line:nth-child(7) {
  animation-delay: 0.8s;
}

.iching-video .hex-line:nth-child(8) {
  animation-delay: 1s;
}

.iching-video .trigram {
  z-index: 2;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(243, 238, 228, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(0deg, transparent 18%, rgba(213, 191, 134, 0.48) 18% 22%, transparent 22% 48%, rgba(213, 191, 134, 0.48) 48% 52%, transparent 52% 78%, rgba(213, 191, 134, 0.48) 78% 82%, transparent 82%);
  opacity: 0.44;
  animation: trigramFloat 8s ease-in-out infinite;
}

.iching-video .trigram-left {
  left: 10%;
  top: 14%;
}

.iching-video .trigram-right {
  right: 10%;
  bottom: 14%;
  animation-delay: -4s;
}

.iching-video .oracle-glow {
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background: rgba(213, 191, 134, 0.16);
  filter: blur(36px);
  transform: translate(-50%, -50%);
  animation: oracleBreath 5s ease-in-out infinite;
}

.feng-video {
  background:
    linear-gradient(90deg, rgba(243, 238, 228, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(243, 238, 228, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 24% 72%, rgba(96, 143, 116, 0.22), transparent 30%),
    radial-gradient(circle at 78% 34%, rgba(213, 191, 134, 0.17), transparent 24%),
    #090d0b;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.feng-video .floor-outline {
  z-index: 2;
  left: 12%;
  top: 14%;
  width: 76%;
  height: 70%;
  border: 1px solid rgba(243, 238, 228, 0.24);
  background:
    linear-gradient(90deg, transparent 45%, rgba(243, 238, 228, 0.16) 45% 46%, transparent 46%),
    linear-gradient(0deg, transparent 54%, rgba(243, 238, 228, 0.16) 54% 55%, transparent 55%);
}

.feng-video .room {
  z-index: 3;
  border: 1px solid rgba(213, 191, 134, 0.34);
  background: rgba(243, 238, 228, 0.045);
  animation: roomPulse 5.8s ease-in-out infinite;
}

.feng-video .room-one {
  left: 18%;
  top: 22%;
  width: 25%;
  height: 24%;
}

.feng-video .room-two {
  right: 18%;
  top: 24%;
  width: 30%;
  height: 20%;
  animation-delay: -1.8s;
}

.feng-video .room-three {
  left: 36%;
  bottom: 20%;
  width: 34%;
  height: 24%;
  animation-delay: -3s;
}

.feng-video .energy-stream {
  z-index: 4;
  left: -18%;
  top: 30%;
  width: 56%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(167, 182, 162, 0.8), rgba(213, 191, 134, 0.76), transparent);
  filter: blur(0.4px) drop-shadow(0 0 12px rgba(167, 182, 162, 0.5));
  animation: energyFlow 6.5s ease-in-out infinite;
}

.feng-video .energy-stream:nth-child(6) {
  top: 52%;
  animation-delay: -2.1s;
}

.feng-video .energy-stream:nth-child(7) {
  top: 70%;
  animation-delay: -4s;
}

.feng-video .energy-node {
  z-index: 5;
  right: 24%;
  top: 42%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(213, 191, 134, 0.62);
  box-shadow: 0 0 34px rgba(213, 191, 134, 0.62);
  animation: nodeGlow 4.8s ease-in-out infinite;
}

.entry-card .bazi-video .seal-orbit {
  left: 50%;
  top: 50%;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(213, 191, 134, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: baziSeal 16s linear infinite;
}

.entry-card .bazi-video .script-ring {
  left: 50%;
  top: 50%;
  width: min(320px, 82%);
  text-align: center;
  transform: translate(-50%, -50%);
  animation: scriptReveal 7s ease-in-out infinite;
}

.entry-card .bazi-video .script-float:nth-child(5) {
  left: 12%;
  bottom: 15%;
}

.entry-card .bazi-video .script-float:nth-child(6) {
  right: 10%;
  top: 16%;
  animation-delay: -3s;
}

.entry-card .bazi-video .paper-grain {
  inset: 0;
}

.entry-card .iching-video .hex-line {
  position: relative;
  left: auto;
  top: auto;
  width: min(190px, 52vw);
  height: 10px;
  margin: 6px auto;
  border: 0;
  border-radius: 0;
  transform: none;
}

.entry-card .iching-video .trigram-left {
  left: 10%;
  top: 14%;
}

.entry-card .iching-video .trigram-right {
  right: 10%;
  bottom: 14%;
}

.entry-card .iching-video .oracle-glow {
  left: 50%;
  top: 50%;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.entry-card .feng-video .floor-outline {
  left: 12%;
  top: 14%;
  width: 76%;
  height: 70%;
}

.entry-card .feng-video .room-one {
  left: 18%;
  top: 22%;
  width: 25%;
  height: 24%;
}

.entry-card .feng-video .room-two {
  right: 18%;
  top: 24%;
  width: 30%;
  height: 20%;
}

.entry-card .feng-video .room-three {
  left: 36%;
  bottom: 20%;
  width: 34%;
  height: 24%;
}

.entry-card .feng-video .energy-stream {
  left: -18%;
  width: 56%;
  height: 2px;
}

.entry-card .feng-video .energy-stream:nth-child(5) {
  top: 30%;
}

.entry-card .feng-video .energy-stream:nth-child(6) {
  top: 52%;
}

.entry-card .feng-video .energy-stream:nth-child(7) {
  top: 70%;
}

.entry-card .feng-video .energy-node {
  right: 24%;
  top: 42%;
  width: 22px;
  height: 22px;
}

@keyframes inkDrift {
  0% {
    transform: translate3d(-18px, 6px, 0) scale(1);
  }
  100% {
    transform: translate3d(18px, -10px, 0) scale(1.08);
  }
}

@keyframes inkBloom {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.94) rotate(0deg);
    opacity: 0.46;
  }
  50% {
    transform: translate3d(16px, -8px, 0) scale(1.08) rotate(9deg);
    opacity: 0.86;
  }
}

@keyframes baziSeal {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes scriptReveal {
  0%,
  100% {
    opacity: 0.34;
    filter: blur(0.8px);
  }
  50% {
    opacity: 0.92;
    filter: blur(0);
  }
}

@keyframes characterFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes oracleTurn {
  0% {
    transform: rotate(0deg) scale(0.96);
  }
  100% {
    transform: rotate(360deg) scale(0.96);
  }
}

@keyframes trigramFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(12px) rotate(18deg);
  }
}

@keyframes oracleBreath {
  0%,
  100% {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0.88);
  }
  50% {
    opacity: 0.68;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes roomPulse {
  0%,
  100% {
    opacity: 0.52;
    transform: translateY(0);
  }
  50% {
    opacity: 0.92;
    transform: translateY(-4px);
  }
}

@keyframes energyFlow {
  0% {
    transform: translateX(0) rotate(-9deg);
    opacity: 0;
  }
  25%,
  72% {
    opacity: 0.86;
  }
  100% {
    transform: translateX(220%) rotate(-9deg);
    opacity: 0;
  }
}

@keyframes nodeGlow {
  0%,
  100% {
    transform: scale(0.78);
    opacity: 0.52;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pathway-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pathway-grid span {
  color: var(--gold);
  font-size: 12px;
}

.pathway-grid h3 {
  margin-top: 72px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
}

.pathway-grid p {
  margin: 18px 0 0;
  color: var(--mist);
  line-height: 1.72;
}

.deliverables {
  background:
    linear-gradient(180deg, rgba(213, 191, 134, 0.04), rgba(167, 182, 162, 0.035)),
    #0b0d0b;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  border: 1px solid var(--line);
  background: var(--line);
}

.deliverable-grid article {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  background: #101411;
}

.deliverable-grid span {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.deliverable-grid h3 {
  margin-top: 70px;
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1.08;
}

.deliverable-grid p {
  margin: 18px 0 0;
  color: var(--mist);
  line-height: 1.72;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 112px);
  background:
    linear-gradient(135deg, rgba(213, 191, 134, 0.055), rgba(167, 182, 162, 0.055)),
    #101411;
}

.experience-copy {
  max-width: 780px;
}

.experience-copy > p:not(.section-kicker) {
  margin: 30px 0 0;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.78;
}

.trust-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.trust-list div {
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.trust-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.trust-list span {
  color: var(--mist);
  line-height: 1.62;
}

.fit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(42px, 8vw, 116px);
  background: #0b0d0b;
}

.fit-copy {
  max-width: 760px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fit-grid article {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 360px;
  padding: clamp(26px, 4vw, 38px);
  background: #0b0d0b;
}

.fit-grid h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.fit-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--mist);
  line-height: 1.68;
}

.intro-heading,
.section-heading,
.booking > div {
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.03;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 7vw, 96px);
  margin-top: clamp(42px, 7vw, 88px);
  color: var(--mist);
  font-size: 18px;
  line-height: 1.82;
}

.intro-copy p {
  margin: 0;
}

.element-shell {
  margin-top: clamp(54px, 8vw, 108px);
}

.element-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: rgba(243, 238, 228, 0.56);
  font-size: 12px;
}

.element-toolbar > div {
  display: flex;
  gap: 8px;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.element-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 34vw);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(243, 238, 228, 0.28) transparent;
}

.element-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 450px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(243, 238, 228, 0.04), rgba(243, 238, 228, 0.015)),
    #0b0d0b;
  color: var(--paper);
  overflow: hidden;
  scroll-snap-align: start;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.element-card::before,
.element-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.element-card::before {
  inset: 0;
  z-index: -2;
  opacity: 0.92;
}

.element-card::after {
  inset: auto 22px 22px 22px;
  z-index: 1;
  height: 1px;
  background: rgba(243, 238, 228, 0.2);
}

.element-card:hover,
.element-card:focus-visible {
  border-color: rgba(213, 191, 134, 0.52);
  outline: none;
}

.wood::before {
  background:
    radial-gradient(circle at 56% 22%, rgba(213, 191, 134, 0.16), transparent 28%),
    linear-gradient(118deg, transparent 0 34%, rgba(151, 175, 119, 0.13) 35% 37%, transparent 38% 100%),
    linear-gradient(64deg, transparent 0 46%, rgba(93, 123, 82, 0.22) 47% 49%, transparent 50% 100%),
    linear-gradient(180deg, #10180f, #071008 82%);
}

.fire::before {
  background:
    radial-gradient(circle at 45% 36%, rgba(246, 186, 100, 0.3), transparent 24%),
    radial-gradient(circle at 54% 60%, rgba(204, 87, 54, 0.18), transparent 34%),
    linear-gradient(180deg, #170e0b, #090807 78%);
}

.earth::before {
  background:
    radial-gradient(circle at 52% 24%, rgba(213, 191, 134, 0.14), transparent 26%),
    linear-gradient(170deg, transparent 0 46%, rgba(123, 95, 67, 0.36) 47% 55%, transparent 56% 100%),
    linear-gradient(16deg, transparent 0 55%, rgba(93, 82, 62, 0.34) 56% 62%, transparent 63% 100%),
    linear-gradient(180deg, #11100b, #0a0907 84%);
}

.metal::before {
  background:
    radial-gradient(circle at 50% 45%, rgba(243, 238, 228, 0.16), transparent 28%),
    conic-gradient(from 90deg at 50% 52%, transparent 0deg, rgba(213, 191, 134, 0.16) 64deg, transparent 120deg, rgba(243, 238, 228, 0.1) 210deg, transparent 300deg),
    linear-gradient(180deg, #111312, #080908 80%);
}

.water::before {
  background:
    radial-gradient(circle at 50% 28%, rgba(171, 196, 195, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(33, 55, 57, 0.62), rgba(7, 10, 10, 0.96)),
    #081011;
}

.element-name {
  position: relative;
  z-index: 2;
  color: var(--green);
  font-size: 13px;
}

.element-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
}

.element-card small {
  position: relative;
  z-index: 2;
  max-width: 270px;
  margin-top: 14px;
  color: var(--mist);
  font-size: 15px;
  line-height: 1.6;
}

.element-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.element-visual::before,
.element-visual::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
}

.element-visual i {
  position: absolute;
  display: block;
}

.wood .element-visual::before {
  inset: 22px;
  border-radius: 50% 50% 44% 56%;
  background:
    radial-gradient(ellipse at 50% 95%, transparent 0 34%, rgba(190, 209, 147, 0.16) 35% 36%, transparent 37%),
    radial-gradient(ellipse at 52% 16%, rgba(124, 165, 105, 0.34), transparent 38%);
  animation: forestBreath 5.8s ease-in-out infinite;
}

.wood .element-visual::after {
  inset: 48px 80px 20px;
  border-left: 2px solid rgba(218, 212, 154, 0.8);
  box-shadow:
    -34px 18px 0 -1px rgba(125, 164, 124, 0.54),
    34px 12px 0 -1px rgba(125, 164, 124, 0.46);
  transform-origin: bottom center;
  animation: woodSway 4.4s ease-in-out infinite;
}

.wood .element-visual i {
  width: 54px;
  height: 22px;
  border: 1px solid rgba(216, 212, 154, 0.36);
  border-radius: 50% 0 50% 0;
  background: rgba(125, 164, 124, 0.12);
  transform-origin: 0 100%;
  animation: leafDrift 5s ease-in-out infinite;
}

.wood .element-visual i:nth-child(2) {
  margin: 62px 0 0 -72px;
  transform: rotate(-18deg);
  animation-delay: -1.4s;
}

.wood .element-visual i:nth-child(3) {
  margin: -72px 0 0 58px;
  transform: rotate(42deg);
  animation-delay: -2.2s;
}

.fire .element-visual::before {
  inset: 26px;
  border-radius: 48% 52% 48% 52%;
  background:
    radial-gradient(circle at 50% 70%, rgba(246, 186, 100, 0.72), transparent 44%),
    radial-gradient(circle at 50% 35%, rgba(238, 142, 88, 0.38), transparent 32%);
  filter: blur(10px);
  animation: emberGlow 2.4s ease-in-out infinite;
}

.fire .element-visual::after {
  width: 158px;
  height: 158px;
  border: 1px solid rgba(246, 186, 100, 0.32);
  border-radius: 50%;
  animation: heatRing 4.2s linear infinite;
}

.fire .element-visual i {
  width: 82px;
  height: 132px;
  border-radius: 70% 35% 70% 35%;
  background: rgba(213, 191, 134, 0.72);
  filter: blur(0.2px);
  transform: rotate(45deg);
  animation: firePulse 1.9s ease-in-out infinite;
}

.fire .element-visual i:nth-child(2) {
  width: 54px;
  height: 78px;
  background: rgba(238, 142, 88, 0.62);
  animation-delay: -0.4s;
}

.fire .element-visual i:nth-child(3) {
  width: 28px;
  height: 48px;
  background: rgba(243, 238, 228, 0.62);
  animation-delay: -0.8s;
}

.earth .element-visual::before {
  inset: 32px 18px 18px;
  border-radius: 48% 52% 8% 8%;
  background:
    linear-gradient(168deg, transparent 0 37%, rgba(213, 191, 134, 0.36) 38% 41%, transparent 42%),
    linear-gradient(24deg, transparent 0 48%, rgba(135, 107, 75, 0.62) 49% 58%, transparent 59%),
    linear-gradient(180deg, rgba(169, 137, 98, 0.44), rgba(83, 67, 49, 0.18));
  clip-path: polygon(50% 0, 100% 92%, 0 92%);
  animation: mountainLight 6s ease-in-out infinite;
}

.earth .element-visual::after {
  width: 178px;
  height: 178px;
  border: 1px solid rgba(213, 191, 134, 0.24);
  border-radius: 50%;
}

.earth .element-visual i {
  width: 30px;
  height: 30px;
  background: #a98962;
  transform: rotate(45deg);
  animation: earthOrbit 7s linear infinite;
}

.earth .element-visual i:nth-child(2) {
  width: 20px;
  height: 20px;
  background: #7f765f;
  animation-delay: -1.7s;
}

.earth .element-visual i:nth-child(3) {
  width: 14px;
  height: 14px;
  background: #d5bf86;
  animation-delay: -3.2s;
}

.metal .element-visual::before {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(243, 238, 228, 0.72), rgba(213, 191, 134, 0.28) 38%, transparent 39%),
    #111312;
  box-shadow: 0 0 36px rgba(243, 238, 228, 0.12);
  animation: moonPhase 7s ease-in-out infinite;
}

.metal .element-visual::after {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(243, 238, 228, 0.36), transparent 34%);
  mask: radial-gradient(circle, transparent 62%, #000 64%);
  animation: metalSpin 8s linear infinite;
}

.metal .element-visual i {
  width: 144px;
  height: 144px;
  border: 1px solid rgba(243, 238, 228, 0.52);
  border-radius: 50%;
  animation: metalSpin 9s linear infinite;
}

.metal .element-visual i:nth-child(2) {
  width: 92px;
  height: 92px;
  border-color: rgba(213, 191, 134, 0.46);
  animation-direction: reverse;
}

.metal .element-visual i:nth-child(3) {
  width: 2px;
  height: 166px;
  background: rgba(243, 238, 228, 0.38);
  animation: metalNeedle 4.8s ease-in-out infinite;
}

.water .element-visual::before {
  inset: 38px 12px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 65%, rgba(166, 199, 202, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(99, 133, 139, 0.18), rgba(10, 18, 19, 0.1));
  animation: tideGlow 4.8s ease-in-out infinite;
}

.water .element-visual::after {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(243, 238, 228, 0.18), transparent);
  transform: rotate(-18deg);
  animation: riverLight 5.6s ease-in-out infinite;
}

.water .element-visual i {
  width: 150px;
  height: 36px;
  border: 1px solid rgba(167, 198, 204, 0.52);
  border-top: 0;
  border-radius: 0 0 50% 50%;
  animation: waterWave 3.2s ease-in-out infinite;
}

.water .element-visual i:nth-child(2) {
  width: 118px;
  animation-delay: -0.7s;
}

.water .element-visual i:nth-child(3) {
  width: 84px;
  animation-delay: -1.4s;
}

.element-detail[hidden] {
  display: none;
}

.element-detail {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 8, 7, 0.72);
  backdrop-filter: blur(18px);
}

.detail-panel {
  position: relative;
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(243, 238, 228, 0.2);
  background:
    linear-gradient(135deg, rgba(213, 191, 134, 0.08), rgba(167, 182, 162, 0.045)),
    #0d100d;
  box-shadow: var(--shadow);
}

.detail-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.detail-panel h3 {
  font-size: clamp(38px, 6vw, 68px);
}

.detail-panel p:not(.section-kicker),
.detail-panel li,
.service-item p,
.booking-note,
.fineprint {
  color: var(--mist);
  line-height: 1.72;
}

.detail-panel p:not(.section-kicker) {
  margin: 24px 0 0;
  font-size: 18px;
}

.detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
}

@keyframes woodSway {
  0%,
  100% {
    transform: rotate(-3deg) scaleY(0.96);
  }
  50% {
    transform: rotate(5deg) scaleY(1.04);
  }
}

@keyframes forestBreath {
  0%,
  100% {
    transform: scale(0.96) translateY(4px);
    opacity: 0.64;
  }
  50% {
    transform: scale(1.04) translateY(-2px);
    opacity: 0.94;
  }
}

@keyframes leafDrift {
  0%,
  100% {
    transform: translate(-8px, 8px) rotate(-18deg);
    opacity: 0.42;
  }
  50% {
    transform: translate(12px, -10px) rotate(28deg);
    opacity: 0.86;
  }
}

@keyframes firePulse {
  0%,
  100% {
    transform: rotate(45deg) scale(0.92);
    opacity: 0.62;
  }
  50% {
    transform: rotate(45deg) scale(1.08);
    opacity: 0.98;
  }
}

@keyframes emberGlow {
  0%,
  100% {
    transform: scale(0.92) translateY(8px);
    opacity: 0.58;
  }
  50% {
    transform: scale(1.08) translateY(-4px);
    opacity: 0.92;
  }
}

@keyframes heatRing {
  from {
    transform: rotate(0deg) scale(0.94);
    opacity: 0.34;
  }
  to {
    transform: rotate(360deg) scale(1.06);
    opacity: 0.62;
  }
}

@keyframes earthOrbit {
  from {
    transform: rotate(0deg) translateX(72px) rotate(45deg);
  }
  to {
    transform: rotate(360deg) translateX(72px) rotate(45deg);
  }
}

@keyframes mountainLight {
  0%,
  100% {
    filter: brightness(0.86);
    transform: translateY(4px);
  }
  50% {
    filter: brightness(1.18);
    transform: translateY(-3px);
  }
}

@keyframes metalSpin {
  from {
    transform: rotateX(58deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(58deg) rotateZ(360deg);
  }
}

@keyframes metalNeedle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
}

@keyframes moonPhase {
  0%,
  100% {
    transform: translateX(-4px);
    filter: brightness(0.9);
  }
  50% {
    transform: translateX(5px);
    filter: brightness(1.22);
  }
}

@keyframes waterWave {
  0%,
  100% {
    transform: translateY(-8px);
    opacity: 0.42;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.9;
  }
}

@keyframes tideGlow {
  0%,
  100% {
    transform: scaleX(0.92);
    opacity: 0.54;
  }
  50% {
    transform: scaleX(1.08);
    opacity: 0.9;
  }
}

@keyframes riverLight {
  0%,
  100% {
    transform: translateX(-24px) rotate(-18deg);
    opacity: 0.2;
  }
  50% {
    transform: translateX(28px) rotate(-18deg);
    opacity: 0.62;
  }
}

.services {
  background: #0b0d0b;
}

.timeline {
  background:
    linear-gradient(180deg, rgba(167, 182, 162, 0.045), rgba(7, 8, 7, 0.2)),
    #101411;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid rgba(243, 238, 228, 0.11);
  background: rgba(243, 238, 228, 0.1);
}

.timeline-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(243, 238, 228, 0.03), rgba(7, 8, 7, 0.16)),
    #0b0d0b;
}

.timeline-grid span,
.sample-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-grid h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.timeline-grid p,
.sample-grid p,
.client-words p {
  margin: 16px 0 0;
  color: var(--mist);
  line-height: 1.72;
}

.sample-report {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(38px, 8vw, 110px);
  background:
    radial-gradient(circle at 80% 18%, rgba(213, 191, 134, 0.1), transparent 26%),
    #0b0d0b;
}

.sample-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.78;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  align-self: start;
  border: 1px solid rgba(243, 238, 228, 0.11);
  background: rgba(243, 238, 228, 0.1);
}

.sample-grid article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(140deg, rgba(213, 191, 134, 0.055), transparent 58%),
    #101411;
}

.client-words {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(38px, 8vw, 110px);
  background:
    linear-gradient(135deg, rgba(96, 143, 116, 0.06), rgba(213, 191, 134, 0.035)),
    #101411;
}

.word-grid {
  display: grid;
  gap: 14px;
}

.word-grid article {
  border-left: 1px solid rgba(213, 191, 134, 0.42);
  padding: 20px 0 20px 24px;
  background: linear-gradient(90deg, rgba(213, 191, 134, 0.045), transparent);
}

.word-grid p {
  margin: 0;
  color: rgba(243, 238, 228, 0.78);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.42;
}

.services-note {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--mist);
  line-height: 1.68;
}

.ethics {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 110px);
  background:
    linear-gradient(135deg, rgba(167, 182, 162, 0.06), rgba(213, 191, 134, 0.04)),
    #101411;
}

.ethics-list {
  display: grid;
  gap: 26px;
  align-content: start;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.78;
}

.ethics-list p {
  margin: 0;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.kindness {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 182, 162, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(213, 191, 134, 0.055), rgba(167, 182, 162, 0.035)),
    #0b0d0b;
}

.kindness-visual {
  position: relative;
  min-height: clamp(260px, 34vw, 430px);
  border: 1px solid rgba(243, 238, 228, 0.14);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 54%, rgba(213, 191, 134, 0.2), transparent 26%),
    radial-gradient(circle at 32% 70%, rgba(167, 182, 162, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(243, 238, 228, 0.035), rgba(7, 8, 7, 0.18)),
    #101411;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.38);
}

.kindness-visual::before,
.kindness-visual::after,
.kindness-visual span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.kindness-visual::before {
  left: 50%;
  top: 50%;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(213, 191, 134, 0.28);
  transform: translate(-50%, -50%);
  animation: kindnessOrbit 14s linear infinite;
}

.kindness-visual::after {
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  background: rgba(213, 191, 134, 0.78);
  box-shadow: 0 0 42px rgba(213, 191, 134, 0.6);
  transform: translate(-50%, -50%);
  animation: kindnessGlow 4.8s ease-in-out infinite;
}

.kindness-visual span {
  width: 42%;
  height: 1px;
  left: 29%;
  top: 50%;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(243, 238, 228, 0.48), transparent);
  transform-origin: center;
  animation: kindnessLine 9s ease-in-out infinite;
}

.kindness-visual span:nth-child(2) {
  transform: rotate(60deg);
  animation-delay: -3s;
}

.kindness-visual span:nth-child(3) {
  transform: rotate(120deg);
  animation-delay: -6s;
}

.kindness-copy {
  max-width: 760px;
}

.kindness-copy > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: var(--mist);
  font-size: 18px;
  line-height: 1.78;
}

.kindness blockquote {
  margin: 30px 0 0;
  padding-left: 18px;
  border-left: 1px solid rgba(213, 191, 134, 0.46);
  color: rgba(243, 238, 228, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.16;
}

.kindness-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 30px;
  border: 1px solid rgba(213, 191, 134, 0.34);
  background: rgba(243, 238, 228, 0.04);
  color: var(--paper);
  padding: 12px 18px;
  cursor: pointer;
}

.kindness-button:hover,
.kindness-button:focus-visible {
  border-color: rgba(213, 191, 134, 0.72);
  outline: none;
}

.donation-panel {
  background:
    linear-gradient(135deg, rgba(213, 191, 134, 0.075), rgba(167, 182, 162, 0.06)),
    #0d100d;
}

.donation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.apple-pay-panel {
  background:
    linear-gradient(135deg, rgba(243, 238, 228, 0.07), rgba(213, 191, 134, 0.04)),
    #080908;
}

.apple-pay-panel .apple-pay-button {
  width: fit-content;
  margin-top: 26px;
}

@keyframes kindnessOrbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.96);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(0.96);
  }
}

@keyframes kindnessGlow {
  0%,
  100% {
    opacity: 0.56;
    transform: translate(-50%, -50%) scale(0.82);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@keyframes kindnessLine {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.82;
  }
}

.faq {
  background: #0b0d0b;
}

.faq-list {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--mist);
  line-height: 1.72;
}

.service-list {
  display: grid;
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 0.78fr 1.12fr auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background: #0b0d0b;
}

.subscription-item {
  background:
    linear-gradient(135deg, rgba(74, 190, 112, 0.07), rgba(213, 191, 134, 0.045)),
    #0b0d0b;
}

.subscription-item .service-label {
  color: #b7ecc5;
}

.service-label {
  margin-bottom: 14px;
}

.service-item h3 {
  font-size: clamp(28px, 3vw, 44px);
}

.service-copy {
  display: grid;
  gap: 18px;
}

.service-item p {
  margin: 0;
  max-width: 560px;
}

.service-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(243, 238, 228, 0.62);
  line-height: 1.62;
}

.service-item a,
.booking-form button,
.paypal-button,
.apple-pay-button,
.wechat-pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(243, 238, 228, 0.3);
  padding: 12px 18px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 110px);
  background:
    linear-gradient(135deg, rgba(167, 182, 162, 0.08), rgba(213, 191, 134, 0.05)),
    #101411;
}

.booking-note {
  max-width: 520px;
  margin-top: 30px;
  font-size: 18px;
}

.booking-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.booking-assurance span {
  border: 1px solid var(--line);
  padding: 9px 12px;
  color: rgba(243, 238, 228, 0.72);
  font-size: 12px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.44);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(243, 238, 228, 0.78);
  font-size: 13px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 238, 228, 0.18);
  border-radius: 0;
  background: rgba(243, 238, 228, 0.06);
  color: var(--paper);
  padding: 13px 14px;
  outline: none;
}

.booking-form textarea {
  min-height: 130px;
  resize: vertical;
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  line-height: 1.55;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(213, 191, 134, 0.72);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.payment-method-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.payment-method-note span {
  border: 1px solid rgba(243, 238, 228, 0.16);
  padding: 8px 10px;
  color: rgba(243, 238, 228, 0.64);
  font-size: 12px;
}

.payment-method-note {
  width: 100%;
}

.booking-form button {
  background: var(--paper);
  color: var(--ink);
}

.wechat-pay-button {
  border-color: rgba(74, 190, 112, 0.44);
  color: #b7ecc5;
}

.apple-pay-button {
  border-color: rgba(243, 238, 228, 0.42);
  background:
    linear-gradient(180deg, rgba(243, 238, 228, 0.08), rgba(243, 238, 228, 0.02)),
    #050505;
  color: #fff;
}

.apple-pay-button:hover,
.apple-pay-button:focus-visible {
  border-color: rgba(243, 238, 228, 0.72);
  outline: none;
}

.payment-modal[hidden] {
  display: none;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 8, 7, 0.76);
  backdrop-filter: blur(18px);
}

.payment-panel {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(243, 238, 228, 0.2);
  background:
    linear-gradient(135deg, rgba(74, 190, 112, 0.08), rgba(213, 191, 134, 0.04)),
    #0d100d;
  box-shadow: var(--shadow);
}

.payment-panel h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.payment-panel p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--mist);
  line-height: 1.68;
}

.payment-panel img {
  display: block;
  width: min(360px, 100%);
  margin: 28px auto 0;
  border: 1px solid rgba(243, 238, 228, 0.18);
  background: #fff;
}

.payment-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.fineprint {
  margin: 0;
  font-size: 12px;
}

.share-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  padding: 62px clamp(22px, 6vw, 82px);
  border-top: 1px solid rgba(243, 238, 228, 0.1);
  background:
    linear-gradient(135deg, rgba(213, 191, 134, 0.045), rgba(96, 143, 116, 0.035)),
    #0b0d0b;
}

.share-strip h2 {
  max-width: 620px;
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.08;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-actions a,
.share-actions button {
  min-height: 44px;
  border: 1px solid rgba(243, 238, 228, 0.22);
  border-radius: 0;
  background: rgba(243, 238, 228, 0.035);
  color: rgba(243, 238, 228, 0.82);
  padding: 11px 13px;
  cursor: pointer;
}

.share-actions a:hover,
.share-actions button:hover,
.share-actions a:focus-visible,
.share-actions button:focus-visible {
  border-color: rgba(213, 191, 134, 0.58);
  color: var(--paper);
  outline: none;
}

.share-actions small {
  flex-basis: 100%;
  margin-top: 8px;
  color: rgba(243, 238, 228, 0.58);
  line-height: 1.6;
}

.noscript-notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  border: 1px solid rgba(213, 191, 134, 0.38);
  background: #101411;
  color: var(--paper);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.clipboard-helper {
  position: fixed;
  inset: auto auto 0 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 6vw, 82px);
  border-top: 1px solid var(--line);
  background: #070807;
  color: rgba(243, 238, 228, 0.56);
  font-size: 12px;
}

.policy-page {
  background:
    linear-gradient(135deg, rgba(167, 182, 162, 0.055), rgba(213, 191, 134, 0.045)),
    #0b0d0b;
}

.policy-page h1 {
  max-width: 900px;
  font-size: clamp(48px, 8vw, 104px);
}

.policy-updated {
  margin: 26px 0 0;
  color: rgba(243, 238, 228, 0.58);
}

.policy-content {
  display: grid;
  gap: 1px;
  margin-top: clamp(48px, 7vw, 86px);
  border: 1px solid var(--line);
  background: var(--line);
}

.policy-content section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(26px, 4vw, 42px);
  background: #0b0d0b;
}

.policy-content h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.policy-content p {
  margin: 0;
  color: var(--mist);
  line-height: 1.76;
}

.policy-content a,
.consent-field a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro-copy,
  .finder,
  .quick-oracle,
  .experience,
  .sample-report,
  .client-words,
  .share-strip,
  .fit,
  .ethics,
  .kindness,
  .booking,
  .service-item {
    grid-template-columns: 1fr;
  }

  .entry-scroll {
    grid-auto-columns: minmax(320px, 78vw);
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .policy-content section {
    grid-template-columns: 1fr;
  }

  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finder-heading {
    position: static;
  }

  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .element-carousel {
    grid-auto-columns: minmax(280px, 72vw);
  }

  .service-item a {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px;
  }

  .brand {
    font-size: 20px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 112px 18px 92px;
  }

  .hero-controls {
    right: 18px;
    bottom: 22px;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .scroll-cue {
    left: 18px;
    bottom: 32px;
  }

  section:not(.hero) {
    padding: 78px 18px;
  }

  .element-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .element-carousel {
    grid-auto-columns: 86vw;
  }

  .entry-scroll {
    grid-auto-columns: 88vw;
  }

  .entry-card {
    min-height: 640px;
  }

  .element-card {
    min-height: 390px;
    padding: 22px;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .timeline-grid,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .oracle-plate {
    min-height: 320px;
  }

  .finder-card {
    grid-template-columns: 1fr;
  }

  .pathway-grid article {
    min-height: 240px;
  }

  .pathway-grid h3,
  .deliverable-grid h3 {
    margin-top: 42px;
  }

  .fit-grid article {
    min-height: auto;
  }

  .faq-list summary {
    padding-right: 28px;
  }

  .form-actions,
  .donation-actions,
  .share-actions,
  .payment-method-note,
  .entry-card a,
  .service-item a,
  .booking-form button,
  .paypal-button,
  .apple-pay-button,
  .wechat-pay-button {
    width: 100%;
  }
}

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

  .hero-video {
    display: none;
  }

  .hero-poster {
    opacity: 1;
  }
}
