:root {
  --ink: #0c0a09; /* near-black background */
  --ink-2: #14110f;
  --char: #1c1815; /* raised charcoal panels */
  --bone: #e7dfce; /* aged bone / parchment text */
  --bone-dim: #9a9082;
  --oxblood: #8a261b; /* the only chromatic accent */
  --oxblood-bright: #b13325;
  --rule: rgba(231, 223, 206, 0.16);
  --rule-soft: rgba(231, 223, 206, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}

body {
  font-family: 'EB Garamond', 'Frank Ruhl Libre', serif;
  background: var(--ink);
  color: var(--bone);
  overflow-x: hidden;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- atmosphere: paper grain + vignette, no color ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 35%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

/* ---------- stage / leaves ---------- */
.stage {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}
.leaf {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  animation: enter 1.1s cubic-bezier(0.2, 0.6, 0.15, 1) both;
}
.leaf.is-active {
  display: flex;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- shared editorial type ---------- */
.kicker {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
  color: var(--bone-dim);
  margin-bottom: 22px;
}
.masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.masthead__he {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: clamp(3rem, 14vw, 4.4rem);
  letter-spacing: 4px;
  color: var(--bone);
  line-height: 1;
}
.masthead__rule {
  width: 64px;
  height: 1px;
  background: var(--oxblood);
  position: relative;
}
.masthead__rule::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--oxblood);
  transform: translate(-50%, -50%) rotate(45deg);
}
.masthead__en {
  font-family: 'EB Garamond', serif;
  font-size: clamp(0.78rem, 3.4vw, 0.95rem);
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
}
.lede {
  font-size: 1.24rem;
  line-height: 1.72;
  color: var(--bone);
  opacity: 0.92;
  max-width: 33rem;
  margin-bottom: 38px;
}
.colophon {
  margin-top: 34px;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--bone-dim);
  opacity: 0.75;
  max-width: 27rem;
}

/* consent row */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 30rem;
  margin-bottom: 26px;
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--bone-dim);
  cursor: pointer;
}
.consent input {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid var(--oxblood);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: background 0.3s ease;
}
.consent input::before {
  content: '';
  width: 10px;
  height: 10px;
  transform: scale(0);
  background: var(--bone);
  transition: transform 0.18s ease;
}
.consent input:checked {
  background: rgba(138, 38, 27, 0.25);
}
.consent input:checked::before {
  transform: scale(1);
}
.consent strong {
  color: var(--bone);
  font-weight: 500;
}

/* disabled controls */
.seal[disabled],
.quiet[disabled] {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}

.linklike {
  display: inline;
  background: none;
  border: none;
  color: var(--bone);
  font: inherit;
  font-style: italic;
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid var(--rule);
}
.linklike:hover {
  color: var(--oxblood-bright);
}

/* privacy sheet */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 3, 3, 0.78);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: enter 0.4s ease both;
}
.sheet[hidden] {
  display: none;
}
.sheet__panel {
  max-width: 32rem;
  background: var(--char);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  padding: 36px 34px;
  text-align: left;
}
.sheet__title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--bone);
  margin-bottom: 16px;
}
.sheet__panel p {
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--bone);
  opacity: 0.9;
  margin-bottom: 16px;
}
.sheet__list {
  list-style: none;
  margin-bottom: 26px;
}
.sheet__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 11px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--bone-dim);
}
.sheet__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--oxblood);
  transform: rotate(45deg);
}
.sheet__list strong {
  color: var(--bone);
  font-weight: 500;
}

/* ---------- sigil (engraved eye) ---------- */
.sigil {
  margin-bottom: 26px;
  opacity: 0.95;
}
.sigil svg {
  display: block;
}
.sigil__ring {
  fill: none;
  stroke: var(--rule);
  stroke-width: 1;
}
.sigil__eye {
  fill: none;
  stroke: var(--bone);
  stroke-width: 1.25;
  opacity: 0.85;
}
.sigil__iris {
  fill: none;
  stroke: var(--oxblood);
  stroke-width: 1.5;
}
.sigil__pupil {
  fill: var(--bone);
}

/* ---------- actions / controls ---------- */
.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--oxblood);
  padding: 17px 40px;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease, letter-spacing 0.5s ease;
  position: relative;
}
.seal::before,
.seal::after {
  content: '';
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 1px;
  background: var(--rule);
}
.seal::before {
  left: -4px;
}
.seal::after {
  right: -4px;
}
.seal:hover {
  background: var(--oxblood);
  color: #f3ece0;
  letter-spacing: 4px;
}
.quiet {
  background: none;
  border: none;
  color: var(--bone-dim);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
  padding: 14px;
  cursor: pointer;
  transition: color 0.4s ease;
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 5px;
}
.quiet:hover {
  color: var(--bone);
}

/* ---------- the plate (scan) — instrument precision ---------- */
.plate {
  width: min(74vw, 320px);
  aspect-ratio: 3 / 4;
  margin-bottom: 30px;
}
.plate__frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
.plate__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.65) contrast(1.08) brightness(0.92) sepia(0.12);
}
.plate__image--mirror {
  transform: scaleX(-1); /* mirror the live camera so it reads naturally */
}
/* live face-alignment guide (check-deposit style) */
.guide-oval {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 60%;
  height: 76%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(231, 223, 206, 0.4);
  border-radius: 50% 50% 48% 48% / 60% 60% 40% 40%;
  pointer-events: none;
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}
.guide-oval--hand {
  width: 78%;
  height: 86%;
  top: 50%;
  border-radius: 18% / 14%; /* a broad, upright frame for an open hand, not a face */
}
.guide-oval.adjust {
  border-color: rgba(231, 223, 206, 0.85);
}
.guide-oval.locking {
  border-color: var(--oxblood-bright);
  box-shadow: 0 0 20px rgba(177, 51, 37, 0.5), inset 0 0 20px rgba(177, 51, 37, 0.22);
}
.guide-oval.locked {
  border-color: var(--oxblood-bright);
  box-shadow: 0 0 42px rgba(177, 51, 37, 0.95), inset 0 0 34px rgba(177, 51, 37, 0.5);
}
/* guidance message overlaid on the camera, large and readable */
.cam-guide {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 46px 14px 18px;
  text-align: center;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  line-height: 1.25;
  color: var(--bone);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 0 4px rgba(0, 0, 0, 0.8);
  background: linear-gradient(to top, rgba(4, 3, 3, 0.9), rgba(4, 3, 3, 0.5) 55%, transparent);
  pointer-events: none;
  z-index: 3;
}
.plate__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* rotating radar sweep — the "examining" spin over the photo */
.plate__radar {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: conic-gradient(
    from 0deg,
    rgba(177, 51, 37, 0.45) 0deg,
    rgba(177, 51, 37, 0.12) 22deg,
    transparent 60deg,
    transparent 360deg
  );
  mix-blend-mode: screen;
  animation: radar 2.6s linear infinite;
}
@keyframes radar {
  to {
    transform: rotate(360deg);
  }
}
/* a thin concentric ring that breathes, reinforcing the instrument feel */
.plate__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(231, 223, 206, 0.22);
  box-shadow: inset 0 0 0 1px rgba(177, 51, 37, 0.18);
  animation: ringpulse 2.6s ease-in-out infinite;
}
.plate__ring::after {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(231, 223, 206, 0.18);
}
@keyframes ringpulse {
  50% {
    opacity: 0.5;
  }
}
.plate__sweep {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--oxblood-bright);
  box-shadow: 0 0 12px 1px rgba(177, 51, 37, 0.7);
  opacity: 0.9;
  animation: sweep 3.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes sweep {
  0%, 100% {
    top: 2%;
  }
  50% {
    top: 98%;
  }
}
.plate__reticle {
  position: absolute;
  border: 1px solid rgba(231, 223, 206, 0.55);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.plate__reticle.is-visible {
  opacity: 1;
}
.plate__reticle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  border-left: 1px solid var(--oxblood-bright);
  border-top: 1px solid var(--oxblood-bright);
  transform: translate(-50%, -50%);
}
.plate__corners i {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(231, 223, 206, 0.4);
}
.plate__corners i:nth-child(1) {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}
.plate__corners i:nth-child(2) {
  top: 8px;
  right: 8px;
  border-left: 0;
  border-bottom: 0;
}
.plate__corners i:nth-child(3) {
  bottom: 8px;
  left: 8px;
  border-right: 0;
  border-top: 0;
}
.plate__corners i:nth-child(4) {
  bottom: 8px;
  right: 8px;
  border-left: 0;
  border-top: 0;
}
.readout {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--bone);
  letter-spacing: 0.5px;
  min-height: 1.6em;
  max-width: 28rem;
}
.gauge {
  width: min(74vw, 320px);
  height: 1px;
  background: var(--rule-soft);
  margin-top: 22px;
  position: relative;
}
.gauge__bar {
  position: absolute;
  left: 0;
  top: -1px;
  height: 3px;
  width: 0%;
  background: var(--oxblood);
  transition: width 0.35s linear;
}

/* ---------- the finding ---------- */
.verdict {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 9vw, 3rem);
  color: var(--bone);
  line-height: 1.15;
  margin-bottom: 6px;
}
.verdict__he {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--oxblood-bright);
  margin-bottom: 30px;
}
.reading {
  width: min(82vw, 380px);
  margin-bottom: 30px;
}
.reading__measure {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'EB Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 10px;
}
.reading__measure-value {
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--oxblood-bright);
}
.reading__track {
  height: 1px;
  background: var(--rule);
  position: relative;
}
.reading__fill {
  position: absolute;
  left: 0;
  top: -1px;
  height: 3px;
  width: 0%;
  background: var(--oxblood);
  transition: width 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.finding {
  font-size: 1.24rem;
  line-height: 1.74;
  color: var(--bone);
  opacity: 0.94;
  max-width: 34rem;
  margin-bottom: 16px;
}
.finding--he {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 300;
  font-size: 1.12rem;
  color: var(--bone-dim);
  line-height: 1.9;
  margin-bottom: 34px;
}

/* ---------- the remedy ---------- */
.dissolve {
  margin-bottom: 36px;
}
.dissolve svg {
  display: block;
}
.dissolve__eye {
  fill: none;
  stroke: var(--bone);
  stroke-width: 1.25;
  opacity: 0.85;
  transition: opacity 1s ease;
}
.dissolve__iris {
  fill: var(--oxblood);
  transform-origin: 70px 50px;
  transition: transform 1s ease, opacity 1s ease;
}
.dissolve.is-breaking .dissolve__eye {
  opacity: 0;
}
.dissolve.is-breaking .dissolve__iris {
  transform: scale(0.1);
  opacity: 0;
}
.remedy {
  max-width: 34rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.remedy.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.remedy__name {
  font-family: 'EB Garamond', serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-size: 0.82rem;
  margin-bottom: 20px;
}
.remedy__verse-he {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--bone);
  line-height: 1.6;
  margin-bottom: 14px;
}
.remedy__verse-en {
  font-size: 1.18rem;
  font-style: italic;
  color: var(--bone);
  opacity: 0.85;
  margin-bottom: 22px;
}
.remedy__rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--oxblood);
  margin: 0 auto 22px;
}
.remedy__note {
  font-size: 1.08rem;
  line-height: 1.74;
  color: var(--bone-dim);
}

/* ---------- cleansed ---------- */
.aureole {
  position: relative;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.aureole::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--oxblood);
  opacity: 0.5;
}
.aureole__face {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--char);
  filter: grayscale(0.3) brightness(1.05);
  box-shadow: 0 0 0 1px var(--rule), 0 20px 50px rgba(0, 0, 0, 0.5);
}
.benediction-he {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 2.1rem;
  color: var(--bone);
  margin: 4px 0 10px;
}
.benediction-en {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--bone-dim);
  max-width: 28rem;
  margin-bottom: 34px;
}
.share-credit {
  margin-top: 26px;
  color: var(--bone-dim);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.96rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.4s ease;
}
.share-credit:hover {
  color: var(--bone);
}

/* ---------- identity form ---------- */
.identity__title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  color: var(--bone);
  margin-bottom: 10px;
}
.identity__note {
  font-size: 1.06rem;
  line-height: 1.62;
  color: var(--bone-dim);
  max-width: 31rem;
  margin-bottom: 30px;
}
.identity__note em {
  font-style: italic;
  color: var(--bone);
}
.identity__note strong {
  color: var(--bone);
  font-weight: 500;
}
.field input::placeholder {
  color: rgba(231, 223, 206, 0.28);
  font-style: italic;
}
.idform {
  width: min(92vw, 420px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-bottom: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field > span {
  font-family: 'EB Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.field em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
}
.field input[type='text'] {
  background: rgba(231, 223, 206, 0.04);
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--bone);
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  padding: 9px 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field input[type='text']:focus {
  outline: none;
  border-bottom-color: var(--oxblood-bright);
  background: rgba(231, 223, 206, 0.07);
}
.seg {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.seg label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'EB Garamond', serif;
  font-size: 1.08rem;
  color: var(--bone);
  cursor: pointer;
}
.field--check {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.field--check span {
  font-family: 'EB Garamond', serif;
  font-size: 1.08rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone);
}
.seg input,
.field--check input {
  accent-color: var(--oxblood);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ---------- the ceremony ---------- */
.ceremony__progress {
  font-family: 'EB Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 16px;
}
.ceremony__label {
  font-family: 'EB Garamond', serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--oxblood-bright);
  font-size: 0.84rem;
  margin-bottom: 22px;
}
.ceremony {
  max-width: 34rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ceremony.is-fading {
  opacity: 0;
  transform: translateY(8px);
}
.ceremony__he {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  color: var(--bone);
  margin-bottom: 14px;
  text-shadow: 0 0 22px rgba(231, 223, 206, 0.12);
}
.ceremony__translit {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bone);
  opacity: 0.8;
  margin-bottom: 20px;
}
.ceremony__meaning {
  font-size: 1.14rem;
  line-height: 1.7;
  color: var(--bone-dim);
  margin-bottom: 14px;
}
.ceremony__instruction {
  font-family: 'EB Garamond', serif;
  font-size: 0.96rem;
  letter-spacing: 1px;
  color: var(--bone);
  opacity: 0.7;
}
.ceremony__dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 22px 0 2px;
}
.ceremony__dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--oxblood);
  transform: rotate(45deg);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.ceremony__dot.lit {
  background: var(--oxblood-bright);
  box-shadow: 0 0 14px rgba(177, 51, 37, 0.7);
}
#cer-action {
  margin-top: 26px;
}

/* ---------- palm reading ---------- */
.seal--ghost {
  background: transparent;
  color: var(--bone-dim);
}
.seal--ghost:hover {
  color: var(--bone);
}
.palm-reading {
  width: min(86vw, 40rem);
  margin-bottom: 30px;
  text-align: left;
}
.palm-line {
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
}
.palm-line:first-child {
  border-top: none;
}
.palm-line__label {
  font-family: 'EB Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.palm-line__label-he {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1rem;
  color: var(--oxblood-bright);
  margin-bottom: 10px;
}
.palm-line__text {
  font-size: 1.16rem;
  line-height: 1.7;
  color: var(--bone);
  opacity: 0.94;
  margin-bottom: 8px;
}
.palm-line__text--he {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 300;
  font-size: 1.04rem;
  color: var(--bone-dim);
  line-height: 1.85;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
  }
}
