/* Landing-critical public CSS extracted from assets/styles.css. Keep heavy modal/admin styles in lazy chunks. */
:root {
  --bg: #f8f3eb;
  --bg-soft: rgba(255, 252, 247, 0.86);
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #fffdf8;
  --text: #171512;
  --muted: #4f4a43;
  --line: rgba(20, 92, 66, 0.12);
  --line-strong: rgba(20, 92, 66, 0.24);
  --green: #0f5a40;
  --green-deep: #0c4632;
  --gold: #cb9a36;
  --gold-soft: #ead7ac;
  --hero-lead-font-family: "Manrope", sans-serif;
  --hero-lead-font-size: 0.98rem;
  --hero-lead-line-height: 1.52;
  --hero-lead-font-weight: 400;
  --hero-lead-letter-spacing: 0;
  --shadow: 0 18px 42px rgba(68, 46, 18, 0.12);
  --shadow-soft: 0 12px 28px rgba(68, 46, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(86px, 10vw, 118px);
  width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(226, 198, 138, 0.28), transparent 22%),
    radial-gradient(circle at top right, rgba(240, 227, 188, 0.62), transparent 26%),
    radial-gradient(circle at bottom right, rgba(195, 214, 181, 0.34), transparent 18%),
    linear-gradient(180deg, #fcf8f1 0%, #f7f1e6 100%);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@media (prefers-reduced-motion: no-preference) {
  .site-header,
  .hero-layout {
    animation: landing-first-paint 180ms ease-out both;
  }

  .hero-layout {
    animation-delay: 35ms;
  }
}

@keyframes landing-first-paint {
  from {
    opacity: 0.96;
    transform: translateY(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.man-check-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
  border-radius: 999px;
  opacity: 0.5;
}

body::before {
  width: 340px;
  height: 340px;
  top: -140px;
  left: -90px;
  background: radial-gradient(circle, rgba(216, 181, 117, 0.28), transparent 70%);
}

body::after {
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(110, 144, 115, 0.22), transparent 70%);
}

/* Decorative background language: editorial numerology details only. */

body {
  position: relative;
}

.hero,
.section,
.booking,
.modal-card--calculator,
.modal-card--daily {
  position: relative;
}

.container {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.ambient {
  position: fixed;
  inset: auto;
  border-radius: 50%;
  z-index: -3;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
}

.ambient-a {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 80px;
  background: #d6c08d;
}

.ambient-b {
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: 160px;
  background: #c1d3b3;
}

h1,
h2,
h3,
p,
blockquote,
ol,
ul {
  margin-top: 0;
}

.site-header {
  position: relative;
  z-index: 30;
  padding-top: 10px;
  transition: padding 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  transition: padding 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.brand-block {
  max-width: 100%;
}

.auth-entry {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.auth-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(15, 90, 64, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-deep);
  font: 800 0.86rem/1 "Manrope", sans-serif;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(61, 45, 22, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-entry__button[hidden] {
  display: none !important;
}

.auth-entry__button--primary {
  background: var(--green-deep);
  color: #fffaf2;
  border-color: rgba(15, 90, 64, 0.24);
}

.auth-entry__button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 90, 64, 0.28);
  box-shadow: 0 14px 26px rgba(61, 45, 22, 0.12);
}

.auth-entry__button--primary:hover {
  background: #164d39;
}

.site-brand {
  color: var(--green-deep);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 6.5vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: font-size 0.24s ease, color 0.24s ease;
}

.site-role {
  margin: 2px 0 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.menu-toggle {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(81, 62, 30, 0.12);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 16px;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 94px 20px auto;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(218, 203, 171, 0.7);
  box-shadow: 0 28px 60px rgba(70, 50, 20, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

body.nav-open .site-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 90, 64, 0.08);
}

.hero {
  padding: 0 0 10px;
  overflow-x: clip;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  top: 112px;
  right: min(3vw, 26px);
  width: clamp(188px, 22vw, 304px);
  height: clamp(224px, 27vw, 348px);
  border-radius: 28px 28px 38px 28px;
  opacity: 0.28;
  transform: rotate(8deg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 233, 214, 0.88)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='380' viewBox='0 0 320 380'%3E%3Cg fill='none' stroke='%23155b43' stroke-opacity='.28'%3E%3Cpath d='M50 36h220'/%3E%3Cpath d='M50 86h220'/%3E%3Cpath d='M50 136h220'/%3E%3Cpath d='M50 186h220'/%3E%3Cpath d='M50 236h220'/%3E%3Cpath d='M50 286h220'/%3E%3Ccircle cx='238' cy='112' r='38'/%3E%3Ccircle cx='238' cy='112' r='18'/%3E%3Cpath d='M238 74v76M200 112h76'/%3E%3C/g%3E%3Cg fill='%23b99045' fill-opacity='.56' font-family='Georgia' font-size='23'%3E%3Ctext x='70' y='72'%3E8%3C/text%3E%3Ctext x='106' y='122'%3E14%3C/text%3E%3Ctext x='76' y='169'%3E21%3C/text%3E%3Ctext x='110' y='220'%3E6%3C/text%3E%3Ctext x='72' y='272'%3E10%3C/text%3E%3Ctext x='108' y='322'%3E3%3C/text%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
  box-shadow: 0 30px 54px rgba(91, 71, 35, 0.11);
}

.hero::after {
  top: 172px;
  right: clamp(120px, 13vw, 212px);
  width: clamp(126px, 13vw, 168px);
  height: clamp(126px, 13vw, 168px);
  border-radius: 50%;
  opacity: 0.26;
  background:
    radial-gradient(circle at 50% 50%, rgba(78, 53, 26, 0.08) 0 22%, transparent 23% 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94) 0 56%, rgba(236, 223, 195, 0.86) 57% 100%);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.34);
}

.hero-layout {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 0;
}

.heroDecor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.heroDecorItem {
  position: absolute;
  pointer-events: none;
}

.decorNotebook {
  top: 64px;
  right: clamp(18px, 8vw, 108px);
  width: clamp(210px, 26vw, 340px);
  height: clamp(246px, 29vw, 396px);
  border-radius: 22px 24px 34px 22px;
  opacity: 0.72;
  transform: rotate(9deg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 239, 225, 0.96)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='420' viewBox='0 0 360 420'%3E%3Crect width='360' height='420' rx='22' fill='none'/%3E%3Cg fill='none' stroke='%23155b43' stroke-opacity='.18'%3E%3Cpath d='M54 52h252'/%3E%3Cpath d='M54 106h252'/%3E%3Cpath d='M54 160h252'/%3E%3Cpath d='M54 214h252'/%3E%3Cpath d='M54 268h252'/%3E%3Cpath d='M54 322h252'/%3E%3Cpath d='M54 376h252'/%3E%3C/g%3E%3Cg fill='%230f5a40' fill-opacity='.74' font-family='Georgia' font-size='30'%3E%3Ctext x='82' y='92'%3E8%3C/text%3E%3Ctext x='132' y='144'%3E22%3C/text%3E%3Ctext x='86' y='196'%3E7%3C/text%3E%3Ctext x='148' y='248'%3E3%3C/text%3E%3Ctext x='90' y='300'%3E1%3C/text%3E%3Ctext x='150' y='350'%3E9%3C/text%3E%3C/g%3E%3Cg fill='none' stroke='%23c79a42' stroke-opacity='.34'%3E%3Ccircle cx='250' cy='128' r='46'/%3E%3Ccircle cx='250' cy='128' r='24'/%3E%3Cpath d='M250 82v92M204 128h92'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
  box-shadow: 0 34px 60px rgba(82, 61, 31, 0.16);
}

.decorNotebook::before {
  content: "";
  position: absolute;
  top: -14px;
  right: 42px;
  width: 64px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(211, 167, 77, 0.95), rgba(162, 116, 34, 0.94));
  box-shadow: 0 6px 16px rgba(131, 93, 27, 0.22);
}

.decorPen {
  top: 176px;
  right: clamp(102px, 17vw, 248px);
  width: clamp(138px, 15vw, 212px);
  height: clamp(14px, 1.4vw, 18px);
  opacity: 0.68;
  transform: rotate(36deg);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(130, 97, 42, 0.92) 0 12%, rgba(214, 182, 118, 0.95) 12% 28%, rgba(245, 240, 230, 0.96) 28% 82%, rgba(187, 139, 53, 0.96) 82% 100%);
  box-shadow: 0 12px 26px rgba(86, 63, 28, 0.18);
}

.decorPen::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 1px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12px solid rgba(146, 108, 39, 0.92);
}

.decorCoffee {
  right: clamp(172px, 27vw, 390px);
  top: clamp(286px, 31vw, 392px);
  width: clamp(118px, 15vw, 182px);
  height: clamp(118px, 15vw, 182px);
  border-radius: 50%;
  opacity: 0.58;
  background:
    radial-gradient(circle at 50% 48%, rgba(92, 59, 29, 0.95) 0 24%, rgba(133, 88, 44, 0.92) 25% 35%, rgba(247, 243, 236, 0.96) 36% 52%, rgba(232, 221, 196, 0.88) 53% 64%, rgba(202, 186, 151, 0.34) 65% 72%, transparent 73%),
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.62), transparent 18%);
  filter: drop-shadow(0 18px 28px rgba(99, 75, 37, 0.14));
}

.decorCoffee::before {
  content: "";
  position: absolute;
  right: -14px;
  top: 42px;
  width: 30px;
  height: 38px;
  border: 4px solid rgba(243, 239, 232, 0.92);
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.decorNumbers {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.86;
  color: rgba(198, 151, 59, 0.72);
  text-shadow: 0 10px 22px rgba(162, 118, 37, 0.16);
}

.decorNumbers::before {
  content: "8 22 7";
  white-space: pre;
}

.decorNumbers--left {
  top: 28px;
  left: -8px;
  font-size: clamp(2rem, 5vw, 4rem);
  opacity: 0.52;
  transform: rotate(-8deg);
}

.decorNumbers--right {
  right: 12px;
  bottom: 110px;
  font-size: clamp(1.85rem, 4.4vw, 3.2rem);
  opacity: 0.46;
  transform: rotate(8deg);
}

.decorNumbers--right::before {
  content: "3 1 9";
}

.decorFlower {
  top: 4px;
  right: clamp(-14px, 2vw, 10px);
  width: clamp(190px, 23vw, 310px);
  height: clamp(186px, 24vw, 300px);
  opacity: 0.54;
  background:
    radial-gradient(circle at 70% 30%, rgba(215, 184, 121, 0.55) 0 8%, transparent 9%),
    radial-gradient(circle at 61% 42%, rgba(204, 171, 114, 0.52) 0 9%, transparent 10%),
    radial-gradient(circle at 80% 44%, rgba(184, 151, 94, 0.36) 0 7%, transparent 8%),
    linear-gradient(160deg, transparent 0 44%, rgba(133, 121, 78, 0.48) 45% 46%, transparent 47% 100%),
    linear-gradient(190deg, transparent 0 62%, rgba(146, 133, 88, 0.34) 63% 64%, transparent 65% 100%);
  filter: blur(0.1px);
}

.decorChart {
  top: 98px;
  right: clamp(54px, 12vw, 180px);
  width: clamp(210px, 25vw, 330px);
  height: clamp(210px, 25vw, 330px);
  border-radius: 50%;
  opacity: 0.46;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360' viewBox='0 0 360 360'%3E%3Cg fill='none' stroke='%23c79a42' stroke-opacity='.68'%3E%3Ccircle cx='180' cy='180' r='126'/%3E%3Ccircle cx='180' cy='180' r='88'/%3E%3Ccircle cx='180' cy='180' r='42'/%3E%3Cpath d='M180 36v288M36 180h288M82 82l196 196M278 82 82 278'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.decorSparkles {
  inset: 0;
  opacity: 0.56;
  background:
    radial-gradient(circle at 17% 18%, rgba(206, 167, 88, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 54%, rgba(206, 167, 88, 0.56) 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 43% 24%, rgba(206, 167, 88, 0.62) 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 58% 68%, rgba(206, 167, 88, 0.58) 0 1.8px, transparent 3px),
    radial-gradient(circle at 76% 18%, rgba(206, 167, 88, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 42%, rgba(206, 167, 88, 0.68) 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 74% 78%, rgba(206, 167, 88, 0.62) 0 1.7px, transparent 2.7px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
  width: 100%;
  max-width: 100%;
}

.hero-copy > h1 {
  margin-inline: auto;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 24px rgba(73, 49, 21, 0.1);
}

.hero-copy > .ornament {
  justify-content: center;
}

.hero-title-line--primary {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78), 0 8px 18px rgba(54, 38, 20, 0.1);
}

.hero-title-line--accent {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62), 0 8px 18px rgba(15, 90, 64, 0.12);
}
.hero-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 90, 64, 0.38);
  background: rgba(255, 255, 255, 0.62);
  color: var(--green);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-soft);
}

h1 {
  margin: 0;
  max-width: min(90vw, 15.6ch);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.34rem, 8vw, 3.7rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: initial;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
  margin-top: 0;
}

.hero-title-line + .hero-title-line {
  margin-top: 6px;
}

.hero-title-line--primary {
  color: var(--text);
  font-size: 1.02em;
}

.hero-title-line--accent {
  color: var(--green);
}

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 0;
  color: var(--gold);
}

.ornament span {
  flex: 1;
  max-width: 86px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 154, 54, 0.76), transparent);
}

.ornament i {
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.hero-lead,
.sub,
.card li,
blockquote p,
.faq p,
ol,
.booking p,
.picker-meta,
.process-step__content p,
.calculator-note p,
.form-message,
.money-reading-hint,
.love-reading-disclaimer,
cite,
.site-role,
.daily-forecast-intro,
.daily-forecast-list,
.daily-question-text,
.daily-forecast-risk,
.love-scale p,
.calculator-card__label,
.calculator-card__meta,
.calculator-card p,
.forecast-summary-card p,
.forecast-day-card__summary,
.forecast-day-card__meta,
.man-check-card__question,
.man-check-card__shareline,
.man-check-card__fact p,
.man-check-more p {
  color: var(--muted);
  font-family: var(--hero-lead-font-family);
  font-size: var(--hero-lead-font-size);
  line-height: var(--hero-lead-line-height);
  font-weight: var(--hero-lead-font-weight);
  letter-spacing: var(--hero-lead-letter-spacing);
}

.man-check-card__fact--verdict strong,
.man-check-card__fact--verdict p {
  color: #fffaf5 !important;
}

.hero-lead {
  margin: 0 auto;
  max-width: 36rem;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 253, 248, .64), rgba(255, 249, 238, .34));
  box-shadow: 0 16px 30px rgba(91, 71, 35, .07);
  text-align: center;
  text-wrap: pretty;
}

.hero-lead__statement {
  display: block;
  color: var(--green-deep);
  font-size: 1.12em;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.012em;
}

.hero-lead__detail {
  display: block;
  margin-top: 9px;
  color: #4f4a43;
  font-size: .94em;
  line-height: 1.5;
  font-weight: 500;
}

.hero-lead-row {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  max-width: 100%;
}

.hero-spotlight-action {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  position: relative;
}

.btn-primary--hero-spotlight {
  position: relative;
  min-height: 72px;
  padding: 18px 38px;
  border-radius: 24px;
  width: auto;
  min-width: 340px;
  white-space: nowrap;
  font-size: 1.18rem;
  font-weight: 800;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #145d41 0%, #0f5a40 72%, #0c4632 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 20px 40px rgba(15, 90, 64, 0.28),
    0 0 0 10px rgba(203, 154, 54, 0.08);
}

.btn-primary--hero-spotlight::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.btn-primary--hero-spotlight::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 36px;
  border: 1px solid rgba(203, 154, 54, 0.28);
  box-shadow:
    0 0 0 12px rgba(203, 154, 54, 0.06),
    0 0 34px rgba(203, 154, 54, 0.16);
  pointer-events: none;
}

.hero-actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  width: min(100%, 880px);
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.quick-tools-list {
  width: min(100%, 1240px);
  margin: 18px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 6vw, 96px);
  row-gap: 14px;
  list-style: none;
  color: #4f4a43;
  font-size: clamp(1.08rem, 1.45vw, 1.55rem);
  line-height: 1.34;
  font-weight: 700;
}

.quick-tools {
  scroll-margin-top: clamp(86px, 10vw, 118px);
}

.quick-tools-list li {
  position: relative;
  padding-left: 22px;
}

.quick-tools-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  transform: translateY(-50%);
}

@media (max-width: 720px) {
  .quick-tools-list {
    grid-template-columns: 1fr;
    row-gap: 10px;
    font-size: clamp(1rem, 5vw, 1.22rem);
  }
}

.life-map-highlight {
  margin: 20px auto 0;
  width: min(100%, 880px);
  display: grid;
  gap: 10px;
  justify-items: center;
}

.life-map-highlight__button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 84px;
  padding: 20px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 16% 24%, rgba(255, 237, 194, 0.16), transparent 18%),
    linear-gradient(135deg, #185f44 0%, #0f5a40 58%, #09392a 100%);
  box-shadow:
    0 24px 44px rgba(15, 90, 64, 0.28),
    0 0 0 12px rgba(203, 154, 54, 0.08);
}

.life-map-highlight__button::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 38px;
  border: 1px solid rgba(203, 154, 54, 0.3);
  box-shadow:
    0 0 0 12px rgba(203, 154, 54, 0.06),
    0 0 36px rgba(203, 154, 54, 0.14);
  pointer-events: none;
}

.life-map-highlight__note {
  margin: 0;
  max-width: 42rem;
  text-align: center;
  text-wrap: balance;
}

.quick-tools-grid {
  margin-top: 14px;
}

.hero-quick-tools {
  width: min(100%, 680px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.hero-quick-tools .btn-primary--hero {
  min-height: 62px;
  padding: 14px 16px;
  font-size: 1.02rem;
}

.hero-spotlight-action--below-tools {
  position: static;
  width: min(100%, 680px);
  align-self: center;
  justify-content: stretch;
  margin: 20px auto 0;
}

.hero-spotlight-action--below-tools .btn-primary--hero-spotlight {
  width: 100%;
  min-width: 0;
}

@media (max-width: 640px) {
  .hero-quick-tools {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-quick-tools .btn-primary--hero {
    min-height: 58px;
    font-size: 1.08rem;
  }

  .hero-spotlight-action--below-tools {
    width: 100%;
    margin-top: 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 20px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.numerology-action--loading {
  pointer-events: none;
  cursor: wait;
}

.numerology-action--loading::before {
  content: '';
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: numerology-action-spin 0.72s linear infinite;
}

@keyframes numerology-action-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .numerology-action--loading::before {
    animation-duration: 1.5s;
  }
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #136646 0%, #0f5a40 100%);
  box-shadow: 0 16px 30px rgba(15, 90, 64, 0.24);
}

.btn-primary--hero {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  font-size: 1.24rem;
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
  text-wrap: balance;
}

#open-horary-modal {
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 9px 40px 9px 18px;
}

#open-horary-modal > [aria-hidden="true"] {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

#open-horary-modal .horary-hero-button__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  line-height: 0.94;
  text-align: center;
}

#open-horary-modal .horary-hero-button__title {
  display: block;
  width: 100%;
  font-size: clamp(1.02rem, 1.9vw, 1.24rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  white-space: nowrap;
  text-align: center;
}

#open-horary-modal .horary-hero-button__subtitle {
  display: block;
  width: 100%;
  margin-top: 1px;
  font-size: clamp(0.8rem, 1.28vw, 0.94rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
  opacity: 0.96;
  text-align: center;
}

#open-woman-check-modal {
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 9px 40px 9px 18px;
}

#open-woman-check-modal > [aria-hidden="true"] {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

#open-woman-check-modal .woman-hero-button__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  line-height: 0.98;
  text-align: center;
}

#open-woman-check-modal .woman-hero-button__title {
  display: block;
  width: 100%;
  font-size: clamp(1rem, 1.72vw, 1.16rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

#open-woman-check-modal .woman-hero-button__subtitle {
  display: block;
  width: 100%;
  margin-top: 4px;
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.92;
  text-wrap: balance;
}

@media (max-width: 680px) {
  #open-horary-modal {
    padding: 8px 38px 8px 16px;
  }

  #open-horary-modal > [aria-hidden="true"] {
    right: 14px;
  }

  #open-horary-modal .horary-hero-button__title {
    font-size: clamp(0.98rem, 4vw, 1.08rem);
  }

  #open-horary-modal .horary-hero-button__subtitle {
    font-size: clamp(0.74rem, 3vw, 0.84rem);
  }

  #open-woman-check-modal {
    padding: 8px 38px 8px 16px;
  }

  #open-woman-check-modal > [aria-hidden="true"] {
    right: 14px;
  }

  #open-woman-check-modal .woman-hero-button__title {
    font-size: clamp(0.94rem, 3.7vw, 1rem);
  }

  #open-woman-check-modal .woman-hero-button__subtitle {
    font-size: clamp(0.64rem, 2.5vw, 0.72rem);
    line-height: 1.14;
  }
}

.btn-primary--secondary {
  background: linear-gradient(180deg, #f5f0e2 0%, #eee2c6 100%);
  color: var(--green-deep);
  box-shadow: 0 14px 26px rgba(126, 95, 34, 0.16);
}

.hero-visual {
  position: absolute;
  right: 2px;
  top: 74px;
  width: 36%;
  min-width: 102px;
  max-width: 150px;
  height: 250px;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.62;
  z-index: 1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: 20px;
  width: 150px;
  height: 92px;
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-12deg);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0 41%, rgba(214, 193, 152, 0.8) 42% 68%, rgba(126, 98, 53, 0.16) 69% 74%, transparent 75%),
    radial-gradient(circle at 66% 32%, rgba(255, 255, 255, 0.72), transparent 28%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 0;
  width: 110px;
  height: 144px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.36) 40%, transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.02));
  border-radius: 50%;
}

.hero-paper {
  position: absolute;
  top: 56px;
  right: 0;
  width: 88px;
  padding: 16px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 232, 0.92));
  border-radius: 4px 4px 24px 4px;
  box-shadow: 0 26px 36px rgba(91, 73, 32, 0.12);
  transform: rotate(14deg);
}

.hero-paper::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 10px;
  width: 24px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(180deg, #caa04c, #a67924);
  box-shadow: 0 3px 8px rgba(131, 93, 27, 0.22);
}

.hero-paper span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  color: var(--green);
  text-align: center;
}

.hero-orbit {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 1px solid rgba(203, 154, 54, 0.22);
  opacity: 0.95;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(203, 154, 54, 0.16);
}

.hero-orbit::after {
  inset: 28px;
}

.hero-orbit b {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
}

.hero-orbit b:nth-child(1) { top: -10px; left: 50px; }
.hero-orbit b:nth-child(2) { top: 30px; left: -1px; font-size: 0.88rem; }
.hero-orbit b:nth-child(3) { top: 50px; right: 3px; font-size: 0.88rem; }
.hero-orbit b:nth-child(4) { bottom: 28px; left: 12px; font-size: 0.84rem; }
.hero-orbit b:nth-child(5) { bottom: 14px; right: 16px; font-size: 0.84rem; }
.hero-orbit b:nth-child(6) { top: 42px; left: 50px; color: var(--gold); font-size: 2rem; }

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px auto 18px;
}

.metrics article,
.card,
blockquote,
.faq details,
.booking,
.booking-picker,
.modal-card,
.panel-admin {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(237, 226, 204, 0.9);
  box-shadow: var(--shadow);
}

.metrics article {
  min-height: 104px;
  border-radius: 20px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.metrics::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 34px;
  width: 132px;
  height: 132px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23c79a42' stroke-opacity='.76'%3E%3Ccircle cx='90' cy='90' r='60'/%3E%3Ccircle cx='90' cy='90' r='35'/%3E%3Cpath d='M90 24v132M24 90h132M46 46l88 88M134 46 46 134'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.metric-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--gold);
  font-size: 1.45rem;
  line-height: 1;
}

.metrics strong {
  display: block;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.92rem;
  line-height: 0.96;
  font-weight: 700;
}

.metrics span:last-child {
  display: block;
  margin-top: 6px;
  font-size: 0.98rem;
  line-height: 1.38;
  font-weight: 600;
  color: #3e3932;
}

@media (max-width: 640px) {
  :root {
    --hero-lead-font-size: 1.06rem;
    --hero-lead-line-height: 1.5;
    --hero-lead-font-weight: 600;
  }

  .container {
    width: min(100vw - 24px, 520px);
  }

  .site-header {
    padding-top: 8px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand-block {
    max-width: 100%;
  }

  .site-brand {
    font-size: clamp(1.72rem, 5.6vw, 2.1rem);
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    padding: 0 14px;
  }

  .site-nav {
    inset: 82px 12px auto;
  }

  .hero {
    padding: 0;
  }

  .heroDecor {
    inset: 0 -8px 0 0;
  }

  .hero-layout {
    gap: 8px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .chip {
    min-height: 34px;
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  h1 {
    width: 100%;
    margin-top: 8px;
    max-width: 100%;
    font-size: clamp(1.92rem, 6.55vw, 2.62rem);
    line-height: 0.88;
    letter-spacing: -0.028em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82), 0 3px 9px rgba(73, 49, 21, 0.12), 0 12px 26px rgba(73, 49, 21, 0.12);
  }

  .hero-title-line + .hero-title-line {
    margin-top: 6px;
  }

  .hero-title-line--primary {
    font-size: 1.08em;
  }

  .hero-title-line--accent {
    font-size: 0.81em;
    letter-spacing: -0.035em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 3px 9px rgba(15, 90, 64, 0.14), 0 12px 24px rgba(15, 90, 64, 0.13);
  }

  .ornament {
    margin-top: 12px;
  }

  .hero-lead {
    margin-top: 12px;
    max-width: 100%;
    padding: 16px 15px;
    border-radius: 20px;
  }

  .hero-lead__statement { font-size: 1.08em; }
  .hero-lead__detail { margin-top: 8px; font-size: .92em; }

  .hero-actions {
    margin-top: 14px;
  }

  .quick-tools-grid__matrix-link {
    order: -1;
  }

  .btn-primary--hero {
    min-height: 58px;
    border-radius: 16px;
    font-size: 1.14rem;
    font-weight: 800;
    padding: 13px 20px;
  }

  .booking-stepper {
    gap: 16px;
    margin-top: 20px;
  }

  .booking-picker {
    padding: 18px 16px;
  }

  .picker-head {
    gap: 10px;
    margin-bottom: 18px;
  }

  .picker-head h3 {
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .booking .picker-meta {
    font-size: 0.98rem;
    line-height: 1.36;
  }

  .date-options,
  .time-options {
    gap: 10px;
  }

  .booking-actions {
    margin-top: 18px;
  }

  .man-check-shell {
    padding: 14px;
    border-radius: 20px;
  }

  .man-check-results {
    gap: 10px;
  }

  .man-check-card {
    padding: 12px 12px 10px;
    border-radius: 18px;
  }

  .man-check-card__topline {
    gap: 4px 8px;
  }

  .man-check-card__date,
  .man-check-card__brand {
    font-size: 0.7rem;
  }

  .man-check-card__question {
    margin-top: 6px;
    font-size: 0.82rem;
    line-height: 1.24;
  }

  .man-check-card__verdict {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .man-check-card__scales {
    gap: 6px;
    margin-top: 8px;
  }

  .man-check-scale {
    padding: 7px 9px;
    border-radius: 12px;
  }

  .man-check-scale__row {
    margin-bottom: 5px;
    font-size: 0.8rem;
  }

  .man-check-scale__row b {
    font-size: 0.78rem;
  }

  .man-check-scale i {
    height: 4px;
  }

  .man-check-card__facts {
    gap: 6px;
    margin-top: 8px;
  }

  .man-check-card__fact {
    padding: 8px 9px;
    border-radius: 12px;
  }

  .man-check-card__fact strong {
    font-size: 0.72rem;
  }

  .man-check-card__fact p {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .man-check-card__shareline {
    margin-top: 8px;
    font-size: 0.74rem;
    line-height: 1.34;
  }

  .man-check-more-wrap {
    gap: 8px;
  }

  .man-check-more {
    padding: 12px;
    border-radius: 14px;
  }

  .man-check-actions {
    gap: 8px;
  }

  .man-check-actions .btn {
    min-height: 46px;
    font-size: 0.92rem;
    padding: 11px 14px;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .calculator-card {
    min-height: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .calculator-card strong {
    margin-top: 10px;
  }

  .hero-visual {
    right: -8px;
    top: 86px;
    width: 31%;
    min-width: 78px;
    max-width: 116px;
    height: 186px;
    opacity: 0.42;
  }

  .decorNotebook {
    top: 82px;
    right: -20px;
    width: 148px;
    height: 196px;
    opacity: 0.38;
  }

  .decorNotebook::before {
    right: 22px;
    width: 42px;
    height: 18px;
  }

  .decorPen {
    top: 164px;
    right: 48px;
    width: 110px;
    height: 12px;
    opacity: 0.3;
  }

  .decorCoffee {
    right: 88px;
    top: 248px;
    width: 84px;
    height: 84px;
    opacity: 0.24;
  }

  .decorCoffee::before {
    right: -10px;
    top: 28px;
    width: 20px;
    height: 26px;
    border-width: 3px;
  }

  .decorNumbers--left {
    top: 36px;
    left: -10px;
    font-size: 1.7rem;
    opacity: 0.34;
  }

  .decorNumbers--right {
    right: -8px;
    bottom: 156px;
    font-size: 1.45rem;
    opacity: 0.28;
  }

  .decorFlower {
    top: 8px;
    right: -28px;
    width: 148px;
    height: 148px;
    opacity: 0.28;
  }

  .decorChart {
    top: 118px;
    right: 8px;
    width: 136px;
    height: 136px;
    opacity: 0.22;
  }

  .decorSparkles {
    opacity: 0.34;
  }

  .hero-visual::before {
    width: 82px;
    height: 102px;
  }

  .hero-paper {
    top: 46px;
    width: 64px;
    padding: 12px 7px;
    gap: 5px;
  }

  .hero-paper span {
    font-size: 0.88rem;
  }

  .hero-orbit {
    width: 86px;
    height: 86px;
  }

  .hero-orbit b {
    font-size: 0.78rem;
  }

  .hero-orbit b:nth-child(1) { left: 34px; top: -8px; }
  .hero-orbit b:nth-child(2) { top: 18px; left: 0; }
  .hero-orbit b:nth-child(3) { top: 34px; right: 1px; }
  .hero-orbit b:nth-child(4) { bottom: 18px; left: 7px; }
  .hero-orbit b:nth-child(5) { bottom: 8px; right: 10px; }
  .hero-orbit b:nth-child(6) { top: 26px; left: 34px; font-size: 1.4rem; }

  .metrics {
    gap: 8px;
    margin: 12px auto 14px;
  }

  .metrics article {
    min-height: 92px;
    padding: 38px 12px 10px;
    border-radius: 18px;
    justify-content: flex-start;
    gap: 4px;
  }

  .metric-icon {
    top: 10px;
    left: 12px;
    font-size: 1.3rem;
  }

  .metrics strong {
    font-size: 1.62rem;
    line-height: 1;
  }

  .metrics span:last-child {
    margin-top: 4px;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 600;
  }
}

.section {
  padding: 14px 0;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
}

.section::before {
  top: 18px;
  right: -10px;
  width: 104px;
  height: 104px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%230f5a40' stroke-opacity='.32'%3E%3Ccircle cx='80' cy='80' r='46'/%3E%3Ccircle cx='80' cy='80' r='24'/%3E%3Cpath d='M80 34v92M34 80h92'/%3E%3C/g%3E%3Cg fill='%23cb9a36' fill-opacity='.62' font-family='Georgia' font-size='18'%3E%3Ctext x='118' y='34'%3E8%3C/text%3E%3Ctext x='18' y='62'%3E3%3C/text%3E%3Ctext x='114' y='126'%3E21%3C/text%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.section::after {
  left: -8px;
  bottom: 12px;
  width: 120px;
  height: 74px;
  opacity: 0.11;
  background:
    linear-gradient(145deg, rgba(205, 175, 117, 0.24), rgba(255, 255, 255, 0) 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='110' viewBox='0 0 180 110'%3E%3Cg fill='none' stroke='%23c79a42' stroke-opacity='.52'%3E%3Cpath d='M24 84c18-20 38-30 60-30s42 10 72 30'/%3E%3Cpath d='M38 92c16-10 34-15 52-15s40 5 62 15'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.section-heading {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 6px;
}

.section-heading::after {
  position: absolute;
  right: clamp(6px, 5vw, 56px);
  top: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(203, 154, 54, 0.42);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.section-heading::before {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(203, 154, 54, 0.28);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

#children .section-heading::after {
  content: "2 4 6";
  top: 10px;
  right: clamp(10px, 6vw, 78px);
}

#children .section-heading::before {
  content: "1 5";
  left: min(54vw, 420px);
  top: 70px;
}

#adults .section-heading::after {
  content: "8 1 4";
  top: 2px;
  right: clamp(18px, 8vw, 108px);
}

#adults .section-heading::before {
  content: "9 7";
  left: min(50vw, 390px);
  top: 84px;
}

#reviews h2,
#faq h2,
.booking h2 {
  position: relative;
}

#reviews h2::after,
#faq h2::after,
.booking h2::after {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(203, 154, 54, 0.34);
  pointer-events: none;
  white-space: nowrap;
}

#reviews h2::after {
  content: "2 7";
  top: 18px;
  left: min(52vw, 420px);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

#faq h2::after {
  content: "3 1 9";
  top: 10px;
  left: min(58vw, 470px);
  font-size: clamp(2rem, 3.3vw, 3.1rem);
}

.booking h2::after {
  content: "7 14 21";
  top: 16px;
  left: min(60vw, 520px);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 8vw, 4.3rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.section h2 span {
  color: var(--green);
}

.booking-title-accent {
  color: #0f6b4a;
}

.ornament--section {
  margin-top: 4px;
}

.sub {
  margin: 10px 0 0;
  max-width: 36rem;
  text-wrap: pretty;
}

.cards {
  margin-top: 14px;
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 28px;
  padding: 18px;
  position: relative;
  overflow: clip;
}

.card::before,
blockquote::before,
.booking-picker::before,
.daily-forecast-panel::before,
.calculator-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  inset: auto;
}

.card::before {
  top: 14px;
  right: 14px;
  width: 74px;
  height: 74px;
  opacity: 0.12;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%230f5a40' stroke-opacity='.36'%3E%3Ccircle cx='60' cy='60' r='34'/%3E%3Ccircle cx='60' cy='60' r='18'/%3E%3C/g%3E%3Cg fill='%23cb9a36' fill-opacity='.64' font-family='Georgia' font-size='15'%3E%3Ctext x='17' y='30'%3E7%3C/text%3E%3Ctext x='88' y='98'%3E2%3C/text%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.card::after {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.55rem;
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.24);
  pointer-events: none;
  z-index: 0;
}

#children .cards .card:nth-child(1)::after {
  content: "1 4";
}

#children .cards .card:nth-child(2)::after {
  content: "2 6";
}

#children .cards .card:nth-child(3)::after {
  content: "3 5";
}

#adults .cards .card:nth-child(1)::after {
  content: "8 3";
}

#adults .cards .card:nth-child(2)::after {
  content: "2 5";
}

#adults .cards .card:nth-child(3)::after {
  content: "1 7";
}

#children .cards .card:nth-child(1) .card-head::after {
  position: absolute;
  right: 4px;
  top: -6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.2);
  pointer-events: none;
  content: "2";
}

#children .cards .card:nth-child(2) .card-head::after {
  position: absolute;
  right: 4px;
  top: -6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.2);
  pointer-events: none;
  content: "6";
}

#children .cards .card:nth-child(3) .card-head::after {
  position: absolute;
  right: 4px;
  top: -6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.2);
  pointer-events: none;
  content: "5";
}

#adults .cards .card:nth-child(1) .card-head::after {
  position: absolute;
  right: 4px;
  top: -6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.2);
  pointer-events: none;
  content: "8";
}

#adults .cards .card:nth-child(2) .card-head::after {
  position: absolute;
  right: 4px;
  top: -6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.2);
  pointer-events: none;
  content: "2";
}

#adults .cards .card:nth-child(3) .card-head::after {
  position: absolute;
  right: 4px;
  top: -6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.2);
  pointer-events: none;
  content: "7";
}

.card-head {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.card-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 1.75rem;
  color: var(--green);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 237, 223, 0.96));
  border: 1px solid rgba(203, 154, 54, 0.2);
  box-shadow: inset 0 -6px 14px rgba(203, 154, 54, 0.08);
}

.card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.52rem;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card-chevron {
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
}

.card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.card li {
  position: relative;
  padding-left: 30px;
  text-wrap: pretty;
}

.card li + li {
  margin-top: 12px;
}

.card li::before {
  content: "●";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--green);
  font-size: 0.8rem;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(240, 244, 235, 0.92), rgba(234, 240, 229, 0.92));
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.card-link::after {
  content: "›";
  font-size: 1.6rem;
  line-height: 1;
}

.split {
  display: grid;
  gap: 16px;
}

.life-map {
  position: relative;
}

.life-map__sub {
  max-width: 58rem;
}

.life-map-options {
  margin-top: clamp(18px, 2.6vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
}

.life-map-option {
  position: relative;
  display: grid;
  overflow: clip;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 239, 226, 0.92)),
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.08), transparent 30%);
  border: 1px solid rgba(219, 204, 171, 0.55);
  box-shadow:
    0 20px 38px rgba(91, 67, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.life-map-option::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 0.88;
  letter-spacing: 0.12em;
  color: rgba(203, 154, 54, 0.2);
  pointer-events: none;
}

.life-map-option--pdf::after {
  content: "8 22";
}

.life-map-option--personal::after {
  content: "6 19";
}

.life-map-option__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.life-map-option__stamp {
  color: rgba(203, 154, 54, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.life-map-option h3 {
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.92;
  max-width: 100%;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.life-map-option__title-accent {
  color: var(--green-deep);
}

.life-map-option__price {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  font-weight: 800;
  line-height: 1.36;
  letter-spacing: -0.02em;
}

.life-map-option__subtitle,
.life-map-option__lead {
  margin: 18px 0 0;
  max-width: 76rem;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.45vw, 1.32rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}

.life-map-question-list {
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 14px 34px;
}

.life-map-question-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.22vw, 1.18rem);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.life-map-question-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.94rem;
}

.life-map-option__note {
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: clamp(18px, 2vw, 24px) clamp(18px, 2.4vw, 30px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(203, 154, 54, 0.14);
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.45vw, 1.3rem);
  font-weight: 800;
  line-height: 1.48;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}

.life-map-option__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin-top: clamp(18px, 2.5vw, 28px);
  margin-right: auto;
  margin-left: auto;
  width: min(100%, 44rem);
  min-height: 68px;
  border-radius: 24px;
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
  letter-spacing: -0.01em;
}

.process-showcase {
  position: relative;
}

.process-showcase__sub {
  max-width: 56rem;
}

.process-showcase__layout {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.process-editorial {
  display: grid;
  gap: 14px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 20px 18px;
  min-height: 186px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(247, 240, 229, 0.88));
  border: 1px solid rgba(203, 154, 54, 0.16);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform: none;
}

.process-step::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -8px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 154, 54, 0.12), transparent 68%);
  pointer-events: none;
}

.process-step--accent {
  background:
    radial-gradient(circle at top right, rgba(15, 90, 64, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(240, 247, 242, 0.9));
}

.process-step--paper {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 243, 232, 0.9)),
    repeating-linear-gradient(180deg, rgba(15, 90, 64, 0.04) 0 1px, transparent 1px 30px);
}

.process-step:nth-child(1) {
  background:
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(247, 240, 229, 0.9));
}

.process-step:nth-child(1) .process-step__number {
  border-radius: 18px 24px 18px 24px;
}

.process-step:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(15, 90, 64, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(239, 247, 241, 0.9));
}

.process-step:nth-child(2)::after {
  right: auto;
  left: -18px;
  top: auto;
  bottom: -22px;
}

.process-step:nth-child(2) .process-step__number {
  border-radius: 26px 18px 26px 18px;
}

.process-step:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 243, 232, 0.9)),
    repeating-linear-gradient(180deg, rgba(15, 90, 64, 0.04) 0 1px, transparent 1px 30px);
}

.process-step:nth-child(3) .process-step__number {
  border-radius: 50%;
}

.process-step:nth-child(4) {
  background:
    radial-gradient(circle at top left, rgba(203, 154, 54, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(245, 239, 228, 0.9));
}

.process-step:nth-child(4)::after {
  right: 14px;
  top: 14px;
  width: 84px;
  height: 84px;
}

.process-step:nth-child(4) .process-step__number {
  border-radius: 20px;
}

.process-step__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(203, 154, 54, 0.18);
  box-shadow: inset 0 -8px 14px rgba(203, 154, 54, 0.08);
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.process-step__content h3 {
  margin: 0;
  color: var(--green-deep);
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.process-step__content h3 span {
  color: var(--text);
}

.process-step__content p {
  margin: 10px 0 0;
}

ol {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.6;
}

.note-box {
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 251, 244, 0.76);
  border: 1px solid rgba(203, 154, 54, 0.16);
  box-shadow: var(--shadow-soft);
}

.quote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.02;
  color: var(--green);
}

.process-quote-box {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(245, 236, 220, 0.86));
}

.process-quote-box__eyebrow {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-quote-box__stamp {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: grid;
  justify-items: end;
  gap: 2px;
  color: rgba(203, 154, 54, 0.34);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 0.92;
  pointer-events: none;
}

.reviews {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

blockquote {
  margin: 0;
  border-radius: 24px;
  padding: 22px;
  position: relative;
  overflow: clip;
}

blockquote::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(203, 154, 54, 0.22);
  pointer-events: none;
  z-index: 0;
}

.reviews blockquote:nth-child(odd)::after {
  content: "6 9";
}

.reviews blockquote:nth-child(even)::after {
  content: "2 8";
}

blockquote::before {
  right: 14px;
  top: 10px;
  width: 62px;
  height: 62px;
  opacity: 0.11;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='none' stroke='%23cb9a36' stroke-opacity='.58'%3E%3Cpath d='M20 66c4-18 14-30 30-36'/%3E%3Cpath d='M42 66c4-18 14-30 30-36'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
}

.faq details {
  position: relative;
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(249, 244, 235, 0.9)),
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.08), transparent 34%);
  border: 1px solid rgba(219, 204, 171, 0.55);
  box-shadow:
    0 18px 34px rgba(91, 67, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.faq details:first-of-type {
  margin-top: 22px;
}

.faq details + details {
  margin-top: 18px;
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  color: var(--green-deep);
  font-weight: 800;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.12;
  padding: 22px 76px 18px 26px;
  text-wrap: balance;
}

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

.faq summary::before {
  content: "";
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(180deg, rgba(20, 93, 65, 0.16), rgba(15, 90, 64, 0.04));
  border: 1px solid rgba(15, 90, 64, 0.14);
  box-shadow: inset 0 -6px 16px rgba(203, 154, 54, 0.08);
}

.faq summary::after {
  content: "⌄";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 1.3rem;
  line-height: 1;
  background: rgba(15, 90, 64, 0.06);
  border: 1px solid rgba(15, 90, 64, 0.08);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.faq details:hover {
  transform: translateY(-2px);
  border-color: rgba(203, 154, 54, 0.42);
  box-shadow:
    0 22px 38px rgba(91, 67, 28, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.faq details[open] {
  border-color: rgba(15, 90, 64, 0.22);
  box-shadow:
    0 24px 42px rgba(15, 90, 64, 0.12),
    0 0 0 8px rgba(203, 154, 54, 0.05);
}

.faq details[open] summary::after {
  transform: rotate(180deg);
  background: rgba(15, 90, 64, 0.12);
  border-color: rgba(15, 90, 64, 0.16);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.34s ease;
  transform: translateY(-6px);
  will-change: height, opacity, transform;
  pointer-events: none;
}

.faq details[open] .faq-answer {
  height: auto;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.faq-answer p {
  margin: 0;
  padding: 0 26px 24px 82px;
  max-width: 60rem;
  color: #4d4840;
  font-size: 1.08rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.faq details:nth-of-type(odd)::after {
  content: "8";
  position: absolute;
  right: 84px;
  top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(203, 154, 54, 0.22);
  pointer-events: none;
}

.faq details:nth-of-type(even)::after {
  content: "2";
  position: absolute;
  right: 84px;
  top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(203, 154, 54, 0.22);
  pointer-events: none;
}

.booking {
  margin: 18px auto 10px;
  border-radius: 30px;
  padding: 18px 16px;
  overflow: clip;
  overflow-anchor: none;
}

.booking::before,
.booking::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.booking::before {
  top: -14px;
  right: 16px;
  width: 142px;
  height: 142px;
  opacity: 0.12;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23cb9a36' stroke-opacity='.52'%3E%3Ccircle cx='90' cy='90' r='68'/%3E%3Ccircle cx='90' cy='90' r='42'/%3E%3Cpath d='M90 22v136M22 90h136'/%3E%3C/g%3E%3Cg fill='%230f5a40' fill-opacity='.3' font-family='Georgia' font-size='16'%3E%3Ctext x='28' y='54'%3E14%3C/text%3E%3Ctext x='118' y='48'%3E8%3C/text%3E%3Ctext x='126' y='136'%3E21%3C/text%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.booking::after {
  left: -10px;
  bottom: -4px;
  width: 126px;
  height: 52px;
  opacity: 0.12;
  transform: rotate(-8deg);
  background:
    linear-gradient(180deg, rgba(205, 175, 117, 0.4), rgba(160, 118, 50, 0.26));
  border-radius: 999px;
}

.booking-stepper {
  position: relative;
}

.booking-stepper::after {
  content: "1 4 7";
  position: absolute;
  right: 14px;
  top: -6px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.28);
  pointer-events: none;
}

.booking-stepper::before {
  content: "3 9";
  position: absolute;
  left: 12px;
  bottom: -10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.2);
  pointer-events: none;
}

.booking h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 10vw, 4rem);
  line-height: 1.02;
  margin-bottom: 0;
}

.booking-stepper {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.booking .picker-head {
  position: relative;
  justify-items: center;
  text-align: center;
}

.booking-stepper .booking-picker:first-child .picker-head::after,
.booking-stepper .booking-picker:last-child .picker-head::after {
  position: absolute;
  right: 4px;
  top: -2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.18);
  pointer-events: none;
}

.booking-stepper .booking-picker:first-child .picker-head::after {
  content: "3 9";
}

.booking-stepper .booking-picker:last-child .picker-head::after {
  content: "1 8";
}

.booking-picker {
  border-radius: 22px;
  padding: 22px 20px;
  overflow: clip;
}

.booking-picker::before {
  right: 12px;
  bottom: 8px;
  width: 58px;
  height: 58px;
  opacity: 0.1;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%230f5a40' stroke-opacity='.36'%3E%3Ccircle cx='50' cy='50' r='28'/%3E%3Cpath d='M50 22v56M22 50h56'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.booking-picker--time-empty {
  text-align: center;
}

.booking-picker--time-empty .time-options {
  display: flex;
  justify-content: center;
}

.booking-picker--time-empty .time-options .picker-meta {
  margin: 0;
}

.picker-head {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.picker-head h3 {
  margin: 0;
  color: var(--green-deep);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.34rem, 2.3vw, 1.72rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.booking .picker-meta {
  margin: 0;
}

.date-options,
.time-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-options--animating {
  will-change: height, opacity, transform;
  transition:
    height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .booking-options--animating {
    transition: none !important;
  }
}

.slot-option {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 90, 64, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 242, 232, 0.94)),
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.08), transparent 36%);
  color: var(--text);
  border-radius: 18px;
  padding: 15px 12px 13px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.slot-option:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 90, 64, 0.28);
  box-shadow:
    0 14px 24px rgba(91, 67, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.slot-option.is-selected {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #136646 0%, #0f5a40 100%);
  border-color: transparent;
  color: #fff;
  box-shadow:
    0 18px 30px rgba(15, 90, 64, 0.22),
    0 0 0 6px rgba(203, 154, 54, 0.06);
}

.slot-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.6;
  background: linear-gradient(180deg, #f7f2e9, #eee6d8);
  color: #908879;
}

.slot-option.is-disabled:hover {
  transform: none;
}

.slot-option small {
  display: block;
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: 0;
  color: inherit;
}

.booking-actions {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.booking-actions::before {
  content: "2 5 7";
  position: absolute;
  left: 18px;
  top: -10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(203, 154, 54, 0.2);
  pointer-events: none;
}

.booking-actions::after {
  content: "4 6";
  position: absolute;
  right: 20px;
  bottom: -8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(203, 154, 54, 0.22);
  pointer-events: none;
}

.booking-launch {
  width: 100%;
}

.booking-launch--hidden {
  display: none;
}

.booking-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.booking-form--hidden {
  display: none;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--green-deep);
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.admin-filters input,
.admin-filters select {
  width: 100%;
  border: 1px solid rgba(15, 90, 64, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fffdfa;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.admin-filters input:focus,
.admin-filters select:focus {
  outline: none;
  border-color: rgba(15, 90, 64, 0.34);
  box-shadow: 0 0 0 4px rgba(15, 90, 64, 0.08);
}

.booking-form .full {
  grid-column: 1 / -1;
}

.booking-form .booking-product-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-product-field__label {
  color: var(--green-deep);
  font-weight: 800;
}

.booking-form .booking-product-field select {
  min-height: 58px;
  border-radius: 18px;
  padding: 0 46px 0 18px;
  color: var(--green-deep);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 242, 232, 0.94)),
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.08), transparent 36%);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(91, 67, 28, 0.06);
}

.booking-form .booking-product-field select.booking-product-select--native-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.booking-product-picker {
  position: relative;
  z-index: 2;
}

.booking-product-picker--open {
  z-index: 24;
}

.booking-product-picker__button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(15, 90, 64, 0.2);
  border-radius: 18px;
  padding: 12px 16px 12px 18px;
  color: var(--green-deep);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 242, 232, 0.95)),
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.12), transparent 40%);
  font: inherit;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 10px 24px rgba(91, 67, 28, 0.08);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.booking-product-picker__button:hover {
  border-color: rgba(15, 90, 64, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 30px rgba(91, 67, 28, 0.11);
}

.booking-product-picker__button:focus-visible,
.booking-product-picker__option:focus-visible {
  outline: none;
  border-color: rgba(15, 90, 64, 0.44);
  box-shadow:
    0 0 0 4px rgba(15, 90, 64, 0.1),
    0 12px 28px rgba(91, 67, 28, 0.1);
}

.booking-product-picker__button[aria-expanded="true"] {
  border-color: rgba(15, 90, 64, 0.4);
  box-shadow:
    0 0 0 4px rgba(15, 90, 64, 0.08),
    0 16px 34px rgba(91, 67, 28, 0.12);
}

.booking-product-picker__selected,
.booking-product-picker__option {
  min-width: 0;
}

.booking-product-picker__selected {
  display: grid;
  gap: 4px;
}

.booking-product-picker__selected-title,
.booking-product-picker__option-title {
  overflow-wrap: anywhere;
  color: var(--green-deep);
  font-family: "Manrope", sans-serif;
  font-weight: 850;
  line-height: 1.22;
}

.booking-product-picker__selected-title {
  font-size: 1rem;
}

.booking-product-picker__option-title {
  font-size: 0.98rem;
}

.booking-product-picker__selected-price,
.booking-product-picker__option-price {
  width: fit-content;
  border-radius: 999px;
  color: #6d511a;
  background: rgba(203, 154, 54, 0.13);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
}

.booking-product-picker__selected-price {
  padding: 4px 9px;
}

.booking-product-picker__chevron {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-right: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.booking-product-picker__button[aria-expanded="true"] .booking-product-picker__chevron {
  transform: translateY(3px) rotate(225deg);
}

.booking-product-picker__list {
  position: absolute;
  z-index: 25;
  right: 0;
  left: 0;
  top: calc(100% + 8px);
  display: grid;
  gap: 6px;
  max-height: min(320px, 56vh);
  overflow-y: auto;
  border: 1px solid rgba(15, 90, 64, 0.16);
  border-radius: 18px;
  padding: 8px;
  background: #fffdf8;
  box-shadow:
    0 24px 54px rgba(49, 34, 12, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.booking-product-picker__list[hidden] {
  display: none;
}

.booking-product-picker__option {
  display: grid;
  gap: 6px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 12px 13px;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.booking-product-picker__option:hover {
  border-color: rgba(15, 90, 64, 0.12);
  background: rgba(15, 90, 64, 0.06);
}

.booking-product-picker__option--selected {
  border-color: rgba(15, 90, 64, 0.22);
  background:
    linear-gradient(135deg, rgba(15, 90, 64, 0.12), rgba(203, 154, 54, 0.1));
}

.booking-product-picker__option-price {
  padding: 4px 8px;
}

@media (max-width: 640px) {
  .booking-product-picker__button {
    min-height: 60px;
    gap: 12px;
    padding: 11px 14px;
  }

  .booking-product-picker__list {
    max-height: min(360px, 62vh);
    border-radius: 16px;
  }

  .booking-product-picker__option {
    padding: 11px 12px;
  }
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-message {
  margin: 0;
}

.form-message--muted {
  color: var(--muted);
  font-weight: 400;
}

.money-reading-hint {
  margin-top: 6px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-method {
  position: relative;
}

.contact-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-method span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border: 1px solid rgba(15, 90, 64, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7efe3 100%);
  color: var(--green-deep);
  font-weight: 700;
  cursor: pointer;
}

.contact-method svg {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  fill: var(--green);
}

.contact-method small {
  font-size: 0.88rem;
}

.contact-method input:checked + span {
  color: #fff;
  background: linear-gradient(180deg, #136646 0%, #0f5a40 100%);
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(15, 90, 64, 0.18);
}

.contact-method input:checked + span svg {
  fill: #fff;
}

.footer {
  position: relative;
  padding: 18px 0;
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #5a534a;
}

.footer a {
  display: inline-flex;
  margin: 10px 6px 0;
  color: #0f5a40;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.footer a:focus-visible {
  outline: 3px solid rgba(15, 90, 64, 0.24);
  outline-offset: 5px;
  border-radius: 8px;
}

.footer::before,
.footer::after {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.2em;
  color: rgba(203, 154, 54, 0.24);
  pointer-events: none;
  white-space: nowrap;
}

.footer::before {
  content: "3 9 1";
  left: 18px;
  top: -10px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.footer::after {
  content: "7 2 8";
  right: 18px;
  top: -6px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 640px) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.chip--soft {
  background: rgba(248, 243, 235, 0.92);
}

.support-fab {
  position: fixed;
  right: max(14px, calc(14px + env(safe-area-inset-right)));
  bottom: max(14px, calc(14px + env(safe-area-inset-bottom)));
  z-index: 45;
  border: 0;
  border-radius: 999px;
  padding: 14px 16px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(180deg, #136646 0%, #0f5a40 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(15, 90, 64, 0.26);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease, gap 0.2s ease;
}

.support-fab:hover,
.support-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(15, 90, 64, 0.32);
  gap: 10px;
  padding-right: 18px;
}

.support-fab__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.support-fab__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.support-fab__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-4px);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: max-width 0.2s ease, opacity 0.18s ease, transform 0.2s ease;
}

.support-fab:hover .support-fab__label,
.support-fab:focus-visible .support-fab__label {
  max-width: 140px;
  opacity: 1;
  transform: translateX(0);
}

.support-contact-actions {
  display: grid;
  gap: 12px;
}

.support-contact-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  min-height: 72px;
  padding: 16px 22px;
  border-radius: 24px;
  text-decoration: none;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #145d41 0%, #0f5a40 72%, #0c4632 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 40px rgba(15, 90, 64, 0.28),
    0 0 0 10px rgba(203, 154, 54, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-contact-link::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 36px;
  border: 1px solid rgba(203, 154, 54, 0.28);
  box-shadow:
    0 0 0 12px rgba(203, 154, 54, 0.06),
    0 0 34px rgba(203, 154, 54, 0.16);
  pointer-events: none;
}

.support-contact-link::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  pointer-events: none;
}

.support-contact-link:hover,
.support-contact-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 24px 46px rgba(15, 90, 64, 0.32),
    0 0 0 12px rgba(203, 154, 54, 0.09);
}

.support-contact-link.is-disabled {
  opacity: 1;
  pointer-events: none;
  cursor: default;
  filter: none;
  box-shadow:
    0 20px 40px rgba(15, 90, 64, 0.28),
    0 0 0 10px rgba(203, 154, 54, 0.08);
}

.support-contact-link__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.support-contact-link__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.support-contact-link__body {
  display: grid;
  gap: 4px;
  justify-items: start;
  text-align: left;
  flex: 1 1 auto;
}

.support-contact-link__body strong {
  font-size: 1.02rem;
}

.support-contact-link__body small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.support-contact-link__spark {
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.support-contact-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

#support-contact-modal [data-support-payment-return] {
  display: flex;
  justify-content: center;
  width: min(100%, 240px);
  min-width: 0;
  margin: 20px auto 4px;
}

#support-contact-modal #support-contact-note:empty {
  display: none;
}

@media (min-width: 641px) {
  #support-contact-modal .modal-head h3 {
    white-space: nowrap;
    font-size: clamp(1.9rem, 2.5vw, 2rem);
    letter-spacing: -0.018em;
  }
}

@media (max-width: 640px) {
  .faq details {
    border-radius: 24px;
  }

  .faq summary {
    gap: 12px;
    padding: 18px 62px 14px 18px;
    font-size: 1.04rem;
  }

  .faq summary::before {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .faq summary::after {
    right: 16px;
    top: 18px;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .faq-answer p {
    padding: 0 18px 20px 64px;
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .faq details:nth-of-type(odd)::after,
  .faq details:nth-of-type(even)::after {
    right: 58px;
    top: 14px;
    font-size: 1.55rem;
  }

  .support-fab {
    right: max(12px, calc(12px + env(safe-area-inset-right)));
    bottom: max(12px, calc(12px + env(safe-area-inset-bottom)));
    padding: 12px;
    gap: 0;
  }

  .support-fab__label {
    display: none;
  }

  .support-contact-link {
    padding: 14px;
  }

  .support-contact-link__icon {
    width: 44px;
    height: 44px;
  }

  .section-heading::after,
  #reviews h2::after,
  #faq h2::after,
  .booking h2::after,
  .card::after,
  blockquote::after,
  .booking-stepper::after {
    opacity: 0.55;
  }

  .section-heading::after {
    right: 6px;
    font-size: 1.9rem;
  }

  #reviews h2::after,
  #faq h2::after,
  .booking h2::after {
    left: auto;
    right: 8px;
    top: 8px;
    font-size: 1.7rem;
  }

  .card::after,
  blockquote::after {
    right: 14px;
    bottom: 12px;
    font-size: 1.7rem;
  }

  .booking-stepper .booking-picker:first-child .picker-head::after,
  .booking-stepper .booking-picker:last-child .picker-head::after,
  .booking-actions::before,
  .booking-actions::after,
  .footer::before,
  .footer::after {
    opacity: 0.5;
  }

  .card-head {
    min-height: 0;
  }

  .booking-stepper::after {
    right: 8px;
    top: -2px;
    font-size: 1.65rem;
  }

  .hero::before {
    top: 138px;
    right: -18px;
    width: 132px;
    height: 176px;
    opacity: 0.18;
  }

  .hero::after {
    top: 204px;
    right: 68px;
    width: 82px;
    height: 82px;
    opacity: 0.16;
  }

  .metrics::before,
  .section::after,
  .booking::after {
    display: none;
  }

  .section::before {
    width: 74px;
    height: 74px;
    opacity: 0.1;
    right: -8px;
    top: 10px;
  }

  .card::before,
  blockquote::before,
  .booking-picker::before,
  .daily-forecast-panel::before,
  .calculator-card::before,
  .modal-card::before {
    opacity: 0.06;
  }

  .modal-shell {
    align-items: flex-start;
    padding: 10px 10px max(10px, env(safe-area-inset-bottom));
  }

  .modal-card {
    width: 100%;
    border-radius: 22px;
    padding: 18px 14px 16px;
    max-height: calc(100dvh - 20px);
    margin-top: max(6px, env(safe-area-inset-top));
  }

  .modal-card--calculator {
    padding-top: 20px;
  }

  .modal-card--daily {
    padding-top: 16px;
  }

  .modal-head {
    margin-bottom: 6px;
    padding-right: 34px;
  }

  .modal-head h3 {
    font-size: 1.55rem;
    line-height: 1.04;
  }

  .life-map-highlight {
    gap: 8px;
  }

  .life-map-highlight__button {
    min-height: 74px;
    padding: 18px 18px;
    border-radius: 24px;
    font-size: 1.08rem;
  }

  .life-map-option {
    padding: 18px 16px;
    border-radius: 24px;
  }

  .life-map-option h3 {
    font-size: 1.72rem;
    max-width: none;
  }

  .life-map-option__subtitle,
  .life-map-option__lead,
  .life-map-option__note {
    font-size: 1rem;
    line-height: 1.42;
  }

  .life-map-option__price {
    font-size: 1.14rem;
  }

  .life-map-option__stamp {
    font-size: 0.74rem;
  }

  .life-map-question-list {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .life-map-question-list li {
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .life-map-option__note {
    padding: 14px;
    border-radius: 18px;
  }

  .calculator-form {
    gap: 10px;
  }

  .calculator-form input {
    border-radius: 14px;
    padding: 13px 14px;
  }

  .calculator-form select {
    border-radius: 14px;
    padding: 13px 14px;
  }

  .calculator-form .form-row {
    display: block;
  }

  .calculator-form .btn {
    width: 100%;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .life-map-short-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .life-map-quick-nav {
    padding: 14px;
    border-radius: 18px;
  }

  .life-map-quick-nav__links {
    gap: 8px;
  }

  .life-map-quick-nav__link {
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .calculator-card {
    padding: 14px;
    border-radius: 18px;
  }

  .calculator-card h5 {
    font-size: 0.94rem;
  }

  .calculator-card strong {
    margin-top: 10px;
  }

  .calculator-card__label {
    margin-top: 6px;
  }

  .calculator-card__meta {
    margin-top: 6px;
  }

  .calculator-card--financial strong {
    font-size: 1.86rem;
  }

  .calculator-results {
    margin-top: 16px;
  }

  .analysis-card {
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .analysis-orbit {
    width: 62px;
    height: 62px;
    margin-bottom: 10px;
  }

  .analysis-orbit span {
    font-size: 0.92rem;
  }

  .analysis-step {
    font-size: 0.92rem;
  }

  .analysis-note {
    font-size: 0.78rem;
    line-height: 1.36;
  }

  .calculator-results h4 {
    margin-bottom: 12px;
    font-size: 1.7rem;
    line-height: 1.02;
  }

  .calculator-note {
    margin-top: 12px;
    padding: 13px;
    border-radius: 18px;
  }

  .love-reading-disclaimer {
    margin-top: 8px !important;
  }

  .calculator-cta {
    margin-top: 12px;
  }

  .daily-forecast-results {
    margin-top: 14px;
  }

  .daily-forecast-public {
    gap: 8px;
    margin-bottom: 10px;
  }

  #daily-forecast-modal .daily-forecast-hero {
    padding: 10px;
    border-radius: 18px;
  }

  #daily-forecast-modal .daily-forecast-number {
    font-size: 1.65rem;
  }

  #daily-forecast-modal .daily-forecast-today {
    font-size: 0.95rem;
  }

  #daily-forecast-modal .daily-forecast-intro,
  #daily-forecast-modal .daily-question-text,
  #daily-forecast-modal .daily-public-split__item p {
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .daily-forecast-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 8px;
  }

  .daily-public-split {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 8px;
  }

  #daily-forecast-modal .daily-forecast-panel {
    padding: 10px;
    border-radius: 16px;
  }

  #daily-forecast-modal .daily-forecast-panel h5 {
    font-size: 0.9rem;
  }

  .life-map-accordion summary {
    padding: 18px 58px 16px 18px;
  }

  .life-map-accordion__title {
    font-size: 1.02rem;
  }

  .life-map-accordion__body,
  .life-map-accordion__grid,
  .life-map-accordion__columns {
    grid-template-columns: 1fr;
  }

  .life-map-accordion__body {
    padding: 0 18px 20px;
  }

  .daily-forecast-list {
    margin-top: 8px;
    padding-left: 16px;
  }

  .daily-forecast-panel--question {
    margin-top: 12px;
  }

  .daily-forecast-panel--advice {
    margin-top: 12px;
  }

  .daily-forecast-panel--transition {
    margin-top: 12px;
  }

  .daily-question-text {
    margin-top: 8px;
  }

  #daily-forecast-modal .daily-forecast-panel--public-cta {
    padding: 12px;
  }

  #daily-forecast-modal .daily-public-split__item {
    padding: 10px;
  }

  #daily-forecast-modal .calculator-form--daily-cta {
    margin-top: 8px;
  }

  #daily-forecast-modal .calculator-form input {
    padding: 12px 14px;
  }

  #daily-forecast-modal .calculator-form--daily-cta .btn {
    min-height: 54px;
  }

  .daily-public-cta-kicker {
    font-size: 0.8rem;
  }

  .daily-forecast-card .calculator-card__label,
  .daily-forecast-card .calculator-card__meta,
  .daily-forecast-card p {
    text-wrap: pretty;
  }

  .daily-forecast-risk {
    margin-top: 8px;
  }

  .daily-forecast-actions-row,
  .forecast-day-card__grid,
  .forecast-summary-grid,
  .forecast-key-grid {
    grid-template-columns: 1fr;
  }

  .forecast-stack {
    gap: 10px;
    margin-top: 12px;
  }

  .forecast-day-card {
    padding: 14px;
    border-radius: 18px;
  }

  .forecast-day-card__head strong {
    font-size: 1.8rem;
  }

  .love-scales {
    gap: 10px;
    margin-top: 10px;
  }

  .love-scale {
    padding: 11px;
    border-radius: 14px;
  }

  .love-scale__head b {
    font-size: 0.86rem;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 1.45rem;
  }

  .hero-lead-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-spotlight-action {
    width: 100%;
    justify-content: stretch;
  }

  .btn-primary--hero-spotlight {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .process-showcase__layout {
    gap: 14px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 16px 14px;
    min-height: 0;
    border-radius: 22px;
    transform: none;
  }

  .process-step__number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 1.7rem;
  }

  .process-step__content h3 {
    font-size: 1.02rem;
  }

  .sub {
    max-width: 100%;
  }

  .card h3 {
    font-size: 1.28rem;
    line-height: 1.04;
  }

  .card li {
    padding-left: 26px;
  }

  .process-quote-box {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .man-check-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .man-check-card {
    padding: 16px;
    border-radius: 24px;
  }

  .man-check-card h3 {
    font-size: 1.14rem;
  }

  .man-check-category__toggle,
  .man-check-question {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 430px) {
  .section-heading::after,
  #reviews h2::after,
  #faq h2::after,
  .booking h2::after,
  .booking-stepper::after,
  .booking-stepper::before,
  .booking-stepper .booking-picker:first-child .picker-head::after,
  .booking-stepper .booking-picker:last-child .picker-head::after,
  .booking-actions::before,
  .booking-actions::after,
  .footer::before,
  .footer::after {
    font-size: 1.45rem;
    opacity: 0.42;
  }

  .card::after,
  blockquote::after {
    font-size: 1.42rem;
    opacity: 0.4;
  }

  .decorPen {
    right: 28px;
    top: 170px;
    width: 96px;
    opacity: 0.24;
  }

  .decorCoffee {
    right: 74px;
    top: 254px;
    width: 74px;
    height: 74px;
    opacity: 0.2;
  }

  .decorNotebook {
    right: -26px;
    width: 138px;
    height: 184px;
    opacity: 0.34;
  }
}

@media (max-width: 390px) {
  .site-header__inner {
    gap: 10px;
  }

  .site-brand {
    white-space: normal;
    line-height: 0.9;
  }

  .site-nav {
    inset: 78px 10px auto;
  }

  .decorPen,
  .decorCoffee {
    display: none;
  }

  .decorNumbers--right {
    right: -14px;
    opacity: 0.22;
  }
}

@media (max-width: 375px) {
  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0 13px;
  }

  .decorNotebook {
    right: -32px;
    opacity: 0.28;
  }

  .decorChart {
    right: -6px;
    opacity: 0.18;
  }
}

@media (max-width: 320px) {
  .section-heading::after,
  #reviews h2::after,
  #faq h2::after,
  .booking h2::after,
  .booking-stepper::after,
  .booking-stepper::before,
  .booking-stepper .booking-picker:first-child .picker-head::after,
  .booking-stepper .booking-picker:last-child .picker-head::after,
  .booking-actions::before,
  .booking-actions::after,
  .footer::before,
  .footer::after {
    display: none;
  }

  .heroDecor {
    inset: 0 -2px 0 0;
  }

  .decorNotebook {
    top: 94px;
    right: -30px;
    width: 120px;
    height: 164px;
    opacity: 0.28;
  }

  .decorPen,
  .decorCoffee {
    display: none;
  }

  .decorFlower {
    width: 124px;
    height: 124px;
    right: -34px;
    opacity: 0.22;
  }

  .decorChart {
    top: 132px;
    right: -12px;
    width: 118px;
    height: 118px;
    opacity: 0.16;
  }

  .decorNumbers--left,
  .decorNumbers--right {
    font-size: 1.28rem;
  }

  .decorSparkles {
    opacity: 0.24;
  }
}

@media (min-width: 900px) {
  :root {
    --hero-lead-font-size: 1.18rem;
    --hero-lead-font-weight: 600;
  }

  .container {
    width: min(1180px, calc(100vw - 56px));
  }

  .site-header {
    position: sticky;
    top: 0;
    padding-top: 6px;
  }

  .site-header__inner {
    align-items: center;
    padding: 4px 0 6px;
    border-radius: 24px;
    border: 1px solid transparent;
  }

  .site-header--scrolled {
    padding-top: 10px;
  }

  .site-header--scrolled .site-header__inner {
    padding: 10px 14px;
    background: rgba(255, 253, 248, 0.82);
    border-color: rgba(218, 203, 171, 0.62);
    box-shadow: 0 18px 42px rgba(61, 45, 22, 0.14);
    backdrop-filter: blur(18px) saturate(1.08);
  }

  .brand-block {
    max-width: none;
  }

  .auth-entry__button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .site-brand {
    font-size: 3rem;
  }

  .site-header--scrolled .site-brand {
    font-size: 2.34rem;
  }

  .site-header--scrolled .site-role {
    opacity: 0.82;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    background: rgba(255, 255, 255, 0.58);
    transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
  }

  .site-header--scrolled .site-nav a {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(15, 90, 64, 0.12);
    box-shadow: 0 10px 20px rgba(61, 45, 22, 0.06);
  }

  .site-nav a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.94);
  }

  .hero {
    padding-top: 0;
    margin-top: -8px;
  }

  .hero::before {
    top: 136px;
    right: 44px;
    width: 298px;
    height: 344px;
    opacity: 0.32;
  }

  .hero::after {
    top: 180px;
    right: 206px;
    width: 166px;
    height: 166px;
    opacity: 0.24;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
    align-items: center;
    min-height: 640px;
  }

  .hero-copy {
    padding-right: 40px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    height: 560px;
    justify-self: end;
  }

  .hero-visual::before {
    right: 48px;
    top: 0;
    width: 260px;
    height: 340px;
  }

  .hero-paper {
    top: 120px;
    right: 44px;
    width: 180px;
    padding: 28px 22px;
  }

  .hero-paper span {
    font-size: 2rem;
  }

  .hero-orbit {
    left: 10px;
    bottom: 34px;
    width: 260px;
    height: 260px;
  }

  .hero-orbit b:nth-child(1) { left: 118px; }
  .hero-orbit b:nth-child(2) { top: 66px; }
  .hero-orbit b:nth-child(3) { top: 112px; right: 22px; }
  .hero-orbit b:nth-child(4) { bottom: 60px; left: 40px; }
  .hero-orbit b:nth-child(5) { bottom: 40px; right: 46px; }
  .hero-orbit b:nth-child(6) { top: 90px; left: 116px; }

  h1 {
    max-width: 12ch;
    font-size: clamp(4.4rem, 6vw, 6.6rem);
  }

  .hero-lead {
    max-width: 38rem;
  }

  .btn-primary--hero {
    width: 100%;
    min-width: 320px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 440px));
    gap: 16px 40px;
    width: min(940px, calc(100vw - 72px));
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 18px;
    justify-content: center;
    justify-items: stretch;
  }

  .btn-primary--hero-spotlight {
    width: 428px;
    min-width: 428px;
    min-height: 92px;
    padding: 24px 50px;
    border-radius: 30px;
    font-size: 1.62rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    background:
      radial-gradient(circle at 84% 24%, rgba(255, 255, 255, 0.28), transparent 16%),
      radial-gradient(circle at 18% 22%, rgba(255, 239, 198, 0.14), transparent 18%),
      linear-gradient(135deg, #1a744f 0%, #0f5a40 54%, #09392a 100%);
    border: 1px solid rgba(255, 250, 240, 0.22);
    box-shadow:
      0 28px 58px rgba(15, 90, 64, 0.34),
      0 0 0 14px rgba(203, 154, 54, 0.08),
      0 0 42px rgba(203, 154, 54, 0.18);
    transform: translateZ(0);
  }

  .hero-lead-row {
    display: block;
  }

  .hero-spotlight-action {
    position: absolute;
    right: -460px;
    bottom: 6px;
    z-index: 4;
    width: auto;
    justify-content: flex-end;
    filter: drop-shadow(0 18px 36px rgba(173, 132, 55, 0.18));
  }

  .hero-spotlight-action::before,
  .hero-spotlight-action::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
  }

  .hero-spotlight-action::before {
    width: 108px;
    height: 108px;
    right: -40px;
    top: -34px;
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(233, 197, 118, 0.34) 0 12%, rgba(233, 197, 118, 0.12) 13% 28%, transparent 29% 100%);
    filter: blur(0.5px);
  }

  .hero-spotlight-action::after {
    width: 126px;
    height: 56px;
    left: -34px;
    bottom: -18px;
    border-radius: 999px;
    background:
      radial-gradient(circle at 12px 28px, rgba(233, 197, 118, 0.82) 0 2px, transparent 3px),
      radial-gradient(circle at 42px 18px, rgba(233, 197, 118, 0.56) 0 2px, transparent 3px),
      radial-gradient(circle at 74px 34px, rgba(233, 197, 118, 0.72) 0 2px, transparent 3px),
      radial-gradient(circle at 102px 16px, rgba(233, 197, 118, 0.48) 0 2px, transparent 3px);
    opacity: 0.9;
  }

  .btn-primary--secondary {
    min-width: 240px;
  }

  .life-map-question-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }

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

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

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

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

  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .process-showcase__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    align-items: start;
  }

  .process-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .process-step:nth-child(1),
  .process-step:nth-child(4) {
    margin-top: 0;
  }

  .process-step:nth-child(2) {
    margin-top: 20px;
  }

  .process-step:nth-child(3) {
    margin-top: -12px;
  }

  .process-quote-box {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

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

  .booking-stepper .booking-picker:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .booking-stepper .booking-picker:last-child .picker-head,
  .booking-stepper .booking-picker:last-child .time-options {
    width: 100%;
    max-width: 860px;
  }

  .booking-stepper .booking-picker:last-child .picker-head {
    justify-items: center;
    text-align: center;
  }

  .booking-form,
  .admin-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .date-options,
  .time-options {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .slot-option {
    border-radius: 16px;
    padding: 13px 10px 12px;
    font-size: 1.68rem;
  }

  .slot-option small {
    margin-top: 6px;
    font-size: 0.82rem;
  }
}

.modal-shell[aria-hidden="true"],
.auth-modal[aria-hidden="true"],
.auth-view--hidden,
.auth-form--hidden {
  display: none !important;
}

#horary-modal .horary-card__scales {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

#horary-modal .horary-scale {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 90, 64, 0.08);
  display: grid;
  gap: 8px;
}

#horary-modal .horary-scale__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

#horary-modal .horary-scale__head strong {
  color: var(--green-deep);
  font-size: 0.82rem;
  line-height: 1.3;
}

#horary-modal .horary-scale__head span {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

#horary-modal .horary-scale__track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15, 90, 64, 0.08);
}

#horary-modal .horary-scale__fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(15, 90, 64, 0.68), rgba(203, 154, 54, 0.95));
}

#horary-modal .horary-scale--risk .horary-scale__track {
  background: rgba(141, 48, 66, 0.08);
}

#horary-modal .horary-scale--risk .horary-scale__fill {
  background: linear-gradient(90deg, rgba(141, 48, 66, 0.66), rgba(205, 96, 115, 0.96));
}

#horary-modal .horary-card__detail {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 90, 64, 0.08);
}

#horary-modal .horary-card__detail h5,
#horary-modal .horary-card__detail p {
  margin: 0;
}

#horary-modal .horary-card__detail p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .hero-spotlight-action.hero-spotlight-action--below-tools {
    position: static;
    right: auto;
    bottom: auto;
    width: min(100%, 680px);
    margin: 20px auto 0;
    filter: none;
  }
}
/* Light thematic cards for the first-screen calculations. */
.hero-quick-tools .tool-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 94px;
  padding: 18px 78px 18px 20px;
  border: 1px solid rgba(97, 82, 52, .15);
  border-radius: 22px;
  color: #164d39;
  text-align: left;
  text-shadow: none;
  box-shadow: 0 14px 26px rgba(73, 55, 27, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-quick-tools .tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(73, 55, 27, .13);
}

.hero-quick-tools .tool-card__label {
  position: relative;
  z-index: 1;
  max-width: 15rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.03rem;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -.025em;
}

.hero-quick-tools .tool-card__mark {
  position: absolute;
  z-index: 0;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(24, 91, 65, .18);
  font-family: "Cormorant Garamond", serif;
  font-size: 5.5rem;
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

.hero-quick-tools .tool-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -22px;
  bottom: -30px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(25, 86, 63, .14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-quick-tools .tool-card--base { background: linear-gradient(135deg, #fffdf5 0%, #f5ebcd 100%); }
.hero-quick-tools .tool-card--man { background: linear-gradient(135deg, #f8fcff 0%, #dceaf0 100%); }
.hero-quick-tools .tool-card--woman { background: linear-gradient(135deg, #fffafb 0%, #f3e1e6 100%); }
.hero-quick-tools .tool-card--code { background: linear-gradient(135deg, #fcfbff 0%, #e8e1f2 100%); }
.hero-quick-tools .tool-card--day { background: linear-gradient(135deg, #fffdf7 0%, #f8edc6 100%); }
.hero-quick-tools .tool-card--year { background: linear-gradient(135deg, #fbfdf9 0%, #dcead6 100%); }
.hero-quick-tools .tool-card--children { background: linear-gradient(135deg, #fcfdff 0%, #dcecf0 100%); }
.hero-quick-tools .tool-card--money { background: linear-gradient(135deg, #fdfdf8 0%, #e2ead3 100%); }
.hero-quick-tools .tool-card--love { background: linear-gradient(135deg, #fffafb 0%, #f5ddd5 100%); }
.hero-quick-tools .tool-card--horary { background: linear-gradient(135deg, #f8faff 0%, #dbe4f1 100%); }

@media (max-width: 640px) {
  .hero-quick-tools .tool-card {
    min-height: 76px;
    padding: 15px 72px 15px 18px;
    border-radius: 19px;
  }

  .hero-quick-tools .tool-card__label { font-size: 1.05rem; }
  .hero-quick-tools .tool-card__mark { right: 10px; font-size: 4.8rem; }
}
/* Keep the new cards visibly actionable and their labels consistently left-aligned. */
.hero-quick-tools .tool-card::before {
  content: "→";
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 77, 57, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  color: #15543d;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(57, 74, 54, .08);
}

.hero-quick-tools #open-woman-check-modal.tool-card,
.hero-quick-tools #open-horary-modal.tool-card {
  justify-content: flex-start;
  text-align: left;
  padding: 18px 78px 18px 20px;
}

@media (max-width: 640px) {
  .hero-quick-tools #open-woman-check-modal.tool-card,
  .hero-quick-tools #open-horary-modal.tool-card {
    padding: 15px 72px 15px 18px;
  }

  .hero-quick-tools .tool-card::before {
    right: 14px;
    bottom: 12px;
    width: 28px;
    height: 28px;
  }
}
/* The short promise is copy, not an actionable card. */
.hero-lead {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 640px) {
  .hero-lead { padding: 0; }
}
/* Watercolour illustrations sit in a reserved right-hand area; the arrow remains clear. */
.hero-quick-tools .tool-card {
  min-height: 98px;
  padding-right: 92px;
}

.hero-quick-tools .tool-card__mark { display: none; }

.hero-quick-tools .tool-card::before {
  right: 14px;
  bottom: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(50%);
  border-color: rgba(22, 77, 57, .25);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 7px 16px rgba(57, 74, 54, .14);
  font-size: 1.35rem;
}

.hero-quick-tools .tool-card::after {
  inset: 0 54px 0 auto;
  width: 57%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 142%;
  mix-blend-mode: multiply;
  opacity: .58;
}

.hero-quick-tools .tool-card--base::after { background-image: url("tool-art/full.webp"); }
.hero-quick-tools .tool-card--man::after { background-image: url("tool-art/man.webp"); opacity: .68; }
.hero-quick-tools .tool-card--woman::after { background-image: url("tool-art/woman-watercolor.webp"); }
.hero-quick-tools .tool-card--code::after { background-image: url("tool-art/code.webp"); }
.hero-quick-tools .tool-card--day::after { background-image: url("tool-art/day.webp"); }
.hero-quick-tools .tool-card--year::after { background-image: url("tool-art/year.webp"); }
.hero-quick-tools .tool-card--children::after { background-image: url("tool-art/children.webp"); }
.hero-quick-tools .tool-card--money::after { background-image: url("tool-art/money.webp"); }
.hero-quick-tools .tool-card--love::after { background-image: url("tool-art/love.webp"); }
.hero-quick-tools .tool-card--horary::after { background-image: url("tool-art/horary-watercolor.webp"); }

.hero-quick-tools .tool-card--man {
  color: #6f2527;
  border-color: rgba(151, 49, 53, .24);
  background: linear-gradient(135deg, #fffafa 0%, #f6e1df 100%);
}

.hero-quick-tools .tool-card--man::before {
  color: #164d39;
  border-color: rgba(22, 77, 57, .25);
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card {
    min-height: 86px;
    padding-right: 84px;
  }

  .hero-quick-tools .tool-card::before {
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .hero-quick-tools .tool-card::after {
    right: 49px;
    width: 61%;
    background-size: auto 148%;
  }
}

/* Editorial paper surface: deliberately quiet behind the content. */
body {
  background-color: #f8f3e9;
  background-image:
    linear-gradient(118deg, rgba(255, 252, 244, .44), rgba(255, 252, 244, .08) 44%, rgba(237, 229, 207, .20)),
    repeating-linear-gradient(27deg, rgba(168, 126, 55, .025) 0 1px, transparent 1px 132px),
    url("site-paper.webp"),
    linear-gradient(180deg, #fffdf8 0%, #f7f0e4 100%);
  background-position: center top, center top, center top, center top;
  background-size:
    max(1024px, 100vw) 1536px,
    512px 768px,
    max(1024px, 100vw) auto,
    max(1024px, 100vw) 1536px;
  background-repeat: repeat-y, repeat, repeat-y, repeat-y;
}

body::before {
  width: min(54vw, 680px);
  height: min(54vw, 680px);
  top: -280px;
  left: -250px;
  opacity: .46;
  background:
    radial-gradient(circle at 62% 62%, rgba(208, 170, 86, .24) 0 16%, rgba(231, 204, 143, .18) 26%, transparent 66%),
    radial-gradient(circle at 44% 42%, rgba(255, 255, 255, .72) 0 18%, transparent 54%);
  filter: blur(2px);
}

body::after {
  width: min(48vw, 600px);
  height: min(48vw, 600px);
  right: -230px;
  bottom: 5vh;
  opacity: .40;
  background:
    radial-gradient(circle at 34% 40%, rgba(119, 159, 122, .22) 0 18%, rgba(183, 207, 173, .16) 35%, transparent 70%),
    radial-gradient(circle at 64% 68%, rgba(232, 190, 177, .13) 0 13%, transparent 46%);
  filter: blur(2px);
}

.ambient {
  opacity: .30;
  filter: blur(90px);
}

@media (max-width: 640px) {
  body {
    background-size: 1024px 1536px, 512px 768px, auto 1100px, 1024px 1536px;
    background-repeat: repeat-y, repeat, repeat-y, repeat-y;
  }

  body::before { width: 420px; height: 420px; top: -170px; left: -220px; }
  body::after { width: 380px; height: 380px; right: -200px; bottom: 10vh; }
}
/* Full calculation uses the complete destiny-matrix artwork without cropping. */
.hero-quick-tools .tool-card--base::after {
  background-image: url("tool-art/code.webp");
  background-size: contain;
  background-position: right center;
  opacity: .62;
}
/* Keep only the fine geometric orbit on the hero; remove decorative loose numbers. */
.hero .decorNumbers,
.hero .hero-paper,
.hero .hero-orbit b {
  display: none;
}
/* The yearly reading keeps a full twelve-month calendar away from the action arrow. */
.hero-quick-tools .tool-card--year::after {
  right: 72px;
  width: 51%;
  background-image: url("tool-art/year-calendar.webp");
  background-size: contain;
  background-position: center;
  opacity: .68;
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--year::after {
    right: 68px;
    width: 54%;
    background-size: contain;
  }
}
/* Keep auth actions visually aligned with the primary site navigation. */
.auth-entry__button,
.auth-entry__button--primary {
  min-height: auto;
  padding: 12px 14px;
  border: 1px solid rgba(15, 90, 64, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
  color: var(--green-deep);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
  box-shadow: none;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

@media (min-width: 900px) {
  .auth-entry__button,
  .auth-entry__button--primary {
    background: rgba(255, 255, 255, .58);
  }

  .site-header--scrolled .auth-entry__button,
  .site-header--scrolled .auth-entry__button--primary {
    background: rgba(255, 255, 255, .82);
    border-color: rgba(15, 90, 64, .12);
    box-shadow: 0 10px 20px rgba(61, 45, 22, .06);
  }
}

.auth-entry__button:hover,
.auth-entry__button--primary:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 90, 64, .12);
  background: rgba(255, 255, 255, .94);
  color: var(--green-deep);
  box-shadow: 0 10px 20px rgba(61, 45, 22, .06);
}
/* Fade the Red Flag artwork into its card and keep it clear of the action arrow. */
.hero-quick-tools .tool-card--man::after {
  right: 82px;
  width: 48%;
  background-position: right center;
  background-size: auto 148%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .18) 18%, #000 42%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .18) 18%, #000 42%, #000 88%, transparent 100%);
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--man::after {
    right: 74px;
    width: 47%;
    background-size: auto 142%;
  }
}
/* Scattered money artwork remains fully inside the card and away from its arrow. */
.hero-quick-tools .tool-card--money::after {
  right: 70px;
  width: 63%;
  background-image: url("tool-art/money-scatter.webp");
  background-size: contain;
  background-position: right center;
  opacity: .68;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 92%, transparent 100%);
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--money::after {
    right: 64px;
    width: 64%;
  }
}
/* Compatibility: brighter swans, water ripples and flowers, with a clear arrow area. */
.hero-quick-tools .tool-card--love {
  background: linear-gradient(135deg, #fffafb 0%, #f9e1e3 100%);
}

.hero-quick-tools .tool-card--love::after {
  right: 72px;
  width: 66%;
  background-image: url("tool-art/compatibility-swans.webp");
  background-size: contain;
  background-position: right center;
  opacity: .88;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .28) 22%, #000 48%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .28) 22%, #000 48%, #000 90%, transparent 100%);
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--love::after {
    right: 66px;
    width: 67%;
  }
}
/* Annual reading: an unmistakable twelve-month calendar with all four seasons. */
.hero-quick-tools .tool-card--year {
  min-height: 122px;
}

.hero-quick-tools .tool-card--year::after {
  right: 74px;
  width: 58%;
  background-image: url("tool-art/year-seasons.webp");
  background-size: contain;
  background-position: center;
  opacity: .82;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .28) 22%, #000 48%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .28) 22%, #000 48%, #000 88%, transparent 100%);
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--year {
    min-height: 114px;
  }

  .hero-quick-tools .tool-card--year::after {
    right: 68px;
    width: 60%;
  }
}
/* Flip calendar: one clear year object, with twelve calm month tabs. */
.hero-quick-tools .tool-card--year {
  min-height: 132px;
}

.hero-quick-tools .tool-card--year::after {
  right: 68px;
  width: 60%;
  background-image: url("tool-art/year-flip-calendar.webp");
  background-size: contain;
  background-position: right center;
  opacity: .92;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .28) 18%, #000 42%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .28) 18%, #000 42%, #000 92%, transparent 100%);
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--year {
    min-height: 124px;
  }

  .hero-quick-tools .tool-card--year::after {
    right: 62px;
    width: 63%;
  }
}
/* Clean, centered desktop hero: the cards are now the only illustrations. */
.hero .heroDecor,
.hero .hero-visual,
.hero::before,
.hero::after {
  display: none;
}

@media (min-width: 900px) {
  .hero {
    margin-top: 14px;
    padding: 16px 0 42px;
  }

  .hero-layout {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    max-width: 1280px;
    margin: 0 auto;
    padding-right: 0;
    text-align: center;
  }

  .hero h1 {
    max-width: 1240px;
    margin: 0 auto;
    font-size: clamp(3.45rem, 4.8vw, 5.65rem);
    line-height: 0.92;
    text-align: center;
  }

  .hero .ornament,
  .hero-lead-row,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-lead {
    max-width: 760px;
  }

  .hero-quick-tools {
    width: min(1120px, 100%);
    margin: 28px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .hero-quick-tools .tool-card,
  .hero-quick-tools .tool-card--year {
    min-height: 124px;
    padding: 22px 106px 22px 30px;
    text-align: left;
  }

  .hero-spotlight-action {
    position: static;
    width: min(560px, 100%);
    margin: 22px auto 0;
    filter: none;
  }

  .btn-primary--hero-spotlight {
    width: 100%;
    min-width: 0;
  }
}
/* Keep the new woman portrait fully visible in her card. */
.hero-quick-tools .tool-card--woman::after {
  background-image: url("tool-art/woman-watercolor.webp?v=20260822-woman-portrait-1");
  background-size: contain;
  background-position: right center;
  opacity: .76;
}
/* Editorial brand thesis: graceful, light and still easy to read. */
.hero-lead__statement {
  color: #1b5c43;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.52rem, 3.9vw, 2.08rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.006em;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

@media (min-width: 900px) {
  .hero-lead__statement {
    font-size: clamp(2rem, 2.25vw, 2.62rem);
    letter-spacing: 0.012em;
  }
}
/* Desktop title: three intentional lines leave room for the tools below. */
@media (min-width: 900px) {
  .hero h1 .hero-title-line--primary {
    display: inline;
  }

  .hero h1 .hero-title-line--primary + .hero-title-line--primary {
    margin-left: .16em;
  }

  .hero h1 .hero-title-line--accent {
    display: block;
  }

  .hero h1 .hero-title-line--accent:nth-of-type(4),
  .hero h1 .hero-title-line--accent:nth-of-type(5) {
    display: inline;
  }

  .hero h1 .hero-title-line--accent:nth-of-type(4) {
    margin-right: .16em;
  }
}
/* Featured full calculation: larger matrix, quiet numerology details and a clear arrow zone. */
.hero-quick-tools .tool-card--base {
  background:
    radial-gradient(circle at 66% 50%, rgba(222, 195, 113, .18), transparent 28%),
    linear-gradient(135deg, #fffdf7 0%, #f4e8bd 100%);
}

.hero-quick-tools .tool-card--base .tool-card__label {
  max-width: 13rem;
  font-size: clamp(1.3rem, 3.7vw, 1.7rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.hero-quick-tools .tool-card--base .tool-card__label::after {
  content: "9  ·  8  ·  22  ·  7  ·  3";
  position: absolute;
  z-index: -1;
  left: calc(100% + 16px);
  top: 50%;
  width: 16rem;
  transform: translateY(-50%);
  color: rgba(118, 89, 32, .28);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.06rem, 3vw, 1.5rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: .13em;
  white-space: nowrap;
  pointer-events: none;
}

.hero-quick-tools .tool-card--base::after {
  right: 86px;
  width: 54%;
  background-size: auto 120%;
  background-position: right center;
  opacity: .7;
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--base {
    grid-column: 1 / -1;
    min-height: 158px;
    padding: 28px 132px 28px 42px;
  }

  .hero-quick-tools .tool-card--base .tool-card__label {
    max-width: 20rem;
    font-size: clamp(2rem, 2.65vw, 2.75rem);
  }

  .hero-quick-tools .tool-card--base .tool-card__label::after {
    left: calc(100% + 28px);
    width: 25rem;
    font-size: clamp(1.45rem, 1.8vw, 2rem);
  }

  .hero-quick-tools .tool-card--base::after {
    right: 118px;
    width: 52%;
    background-size: auto 132%;
  }
}
/* Make the woman illustration read clearly instead of dissolving into the pink wash. */
.hero-quick-tools .tool-card--woman::after {
  right: 72px;
  width: 61%;
  background-image: url("tool-art/woman-watercolor.webp?v=20260822-woman-visible-1");
  background-size: auto 130%;
  background-position: right center;
  mix-blend-mode: normal;
  opacity: .94;
}

/* A concise, readable promise — one calm black line on every screen. */
.hero-lead {
  max-width: none;
  white-space: nowrap;
}

.hero-lead__statement {
  color: #171716;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(.84rem, 3.25vw, 1.16rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.025em;
  text-shadow: none;
}

@media (min-width: 900px) {
  .hero-lead__statement {
    font-size: clamp(1.1rem, 1.5vw, 1.42rem);
    font-weight: 500;
    letter-spacing: -.028em;
  }

  .hero-quick-tools .tool-card--woman::after {
    right: 88px;
    width: 57%;
    background-size: auto 142%;
  }
}
/* Annual reading: a full-width illustrated journey of months, not a single calendar. */
.hero-quick-tools .tool-card--year {
  min-height: 136px;
  background: linear-gradient(135deg, #fbfdf9 0%, #dcead6 100%);
}

.hero-quick-tools .tool-card--year::after {
  inset: 0 68px 0 0;
  width: auto;
  background-image: url("tool-art/year-month-path.webp?v=20260822-month-path-1");
  background-position: center;
  background-size: 100% 100%;
  mix-blend-mode: normal;
  opacity: .84;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .46) 0%, #000 27%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .46) 0%, #000 27%, #000 84%, transparent 100%);
}

.hero-quick-tools .tool-card--year .tool-card__label {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 12px;
  background: rgba(255, 253, 248, .72);
  box-shadow: 0 5px 14px rgba(54, 71, 43, .08);
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--year {
    min-height: 158px;
    padding-left: 30px;
  }

  .hero-quick-tools .tool-card--year::after {
    inset-right: 82px;
  }
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--year {
    min-height: 124px;
  }

  .hero-quick-tools .tool-card--year::after {
    inset-right: 58px;
  }
}
/* Approved woman with a bowl — replaces the previous generic portrait. */
.hero-quick-tools .tool-card--woman::after {
  right: 84px;
  width: 60%;
  background-image: url("tool-art/woman-bowl.webp?v=20260822-woman-bowl-1");
  background-size: auto 118%;
  background-position: right center;
  mix-blend-mode: multiply;
  opacity: .92;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .38) 28%, #000 60%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .38) 28%, #000 60%, #000 92%, transparent 100%);
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--woman::after {
    right: 100px;
    width: 58%;
    background-size: auto 128%;
  }
}
/* Keep the woman and bowl complete; dissolve the source canvas into the pink card. */
.hero-quick-tools .tool-card--woman::after {
  right: 78px;
  width: 64%;
  background-size: auto 94%;
  background-position: right center;
  opacity: .88;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .06) 13%, rgba(0, 0, 0, .32) 30%, rgba(0, 0, 0, .8) 52%, rgba(0, 0, 0, .92) 72%, rgba(0, 0, 0, .38) 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .06) 13%, rgba(0, 0, 0, .32) 30%, rgba(0, 0, 0, .8) 52%, rgba(0, 0, 0, .92) 72%, rgba(0, 0, 0, .38) 90%, transparent 100%);
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--woman::after {
    right: 92px;
    width: 62%;
    background-size: auto 98%;
  }
}
/* The full calculation is the calm green anchor of the tool set. */
.hero-quick-tools .tool-card--base {
  border-color: rgba(28, 91, 60, .2);
  background:
    radial-gradient(circle at 72% 52%, rgba(116, 151, 113, .26), transparent 34%),
    linear-gradient(102deg, #f4f7ee 0%, #d7e4d2 50%, #9ebaa3 100%);
}

.hero-quick-tools .tool-card--base .tool-card__label {
  color: #123f2f;
}

.hero-quick-tools .tool-card--base .tool-card__label::after {
  color: rgba(47, 91, 59, .4);
  text-shadow: 0 1px 0 rgba(244, 232, 190, .75);
}

.hero-quick-tools .tool-card--base::after {
  opacity: .76;
  filter: sepia(.16) saturate(.86) hue-rotate(56deg) contrast(1.04);
}

.hero-quick-tools .tool-card--base::before {
  color: #164d39;
  border-color: rgba(21, 77, 57, .28);
  background: rgba(255, 255, 255, .82);
}
/* Personal fate code: four precise numbers on a quiet geometric formula. */
.hero-quick-tools .tool-card--code {
  background:
    radial-gradient(circle at 72% 48%, rgba(178, 156, 204, .24), transparent 34%),
    linear-gradient(135deg, #fdfbff 0%, #e9e1f2 100%);
}

.hero-quick-tools .tool-card--code::after {
  right: 72px;
  width: 62%;
  background-image: url("tool-art/fate-code-formula.webp?v=20260822-fate-code-formula-1");
  background-size: auto 126%;
  background-position: right center;
  mix-blend-mode: multiply;
  opacity: .66;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 24%, #000 54%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 24%, #000 54%, #000 88%, transparent 100%);
}

.hero-quick-tools .tool-card--code .tool-card__formula {
  position: absolute;
  z-index: 1;
  right: 78px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: translateY(-50%);
}

.hero-quick-tools .tool-card--code .tool-card__formula::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 13px;
  right: 13px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(170, 133, 61, .3), rgba(25, 86, 63, .54), rgba(170, 133, 61, .3));
}

.hero-quick-tools .tool-card--code .tool-card__formula i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 92, 65, .45);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  color: #174e39;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  font-style: normal;
  font-weight: 700;
  box-shadow: 0 3px 9px rgba(73, 53, 95, .11);
}

.hero-quick-tools .tool-card--code .tool-card__formula i:nth-child(1),
.hero-quick-tools .tool-card--code .tool-card__formula i:nth-child(3) {
  transform: translateY(7px);
}

.hero-quick-tools .tool-card--code .tool-card__formula i:nth-child(2),
.hero-quick-tools .tool-card--code .tool-card__formula i:nth-child(4) {
  transform: translateY(-6px);
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--code::after {
    right: 92px;
    width: 60%;
    background-size: auto 142%;
  }

  .hero-quick-tools .tool-card--code .tool-card__formula {
    right: 104px;
    gap: 7px;
  }

  .hero-quick-tools .tool-card--code .tool-card__formula i {
    width: 42px;
    height: 42px;
    font-size: 1.58rem;
  }
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--code .tool-card__formula {
    right: 63px;
    gap: 2px;
  }

  .hero-quick-tools .tool-card--code .tool-card__formula i {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }
}
/* Transparent painted figures: no source-canvas stripe, only the illustration itself. */
.hero-quick-tools .tool-card--man::after {
  right: 70px;
  width: 53%;
  background-image: url("tool-art/man-red-flag-soft.webp?v=20260822-red-flag-painted-1");
  background-size: auto 98%;
  background-position: right center;
  mix-blend-mode: normal;
  opacity: .94;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-quick-tools .tool-card--woman {
  min-height: 126px;
}

.hero-quick-tools .tool-card--woman::after {
  right: 72px;
  width: 55%;
  background-image: url("tool-art/woman-bowl-soft.webp?v=20260822-woman-painted-1");
  background-size: auto 96%;
  background-position: right center;
  mix-blend-mode: normal;
  opacity: .96;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--man::after {
    right: 88px;
    width: 50%;
    background-size: auto 106%;
  }

  .hero-quick-tools .tool-card--woman {
    min-height: 142px;
  }

  .hero-quick-tools .tool-card--woman::after {
    right: 92px;
    width: 52%;
    background-size: auto 104%;
  }
}
/* Daily reading: one clear day-to-night clock composition. */
.hero-quick-tools .tool-card--day {
  min-height: 126px;
  background:
    radial-gradient(circle at 72% 50%, rgba(231, 193, 93, .19), transparent 34%),
    linear-gradient(135deg, #fffdf7 0%, #f8edc6 100%);
}

.hero-quick-tools .tool-card--day::after {
  right: 70px;
  width: 56%;
  background-image: url("tool-art/day-sun-moon.webp?v=20260822-day-sun-moon-1");
  background-size: auto 103%;
  background-position: right center;
  mix-blend-mode: normal;
  opacity: .94;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--day {
    min-height: 142px;
  }

  .hero-quick-tools .tool-card--day::after {
    right: 88px;
    width: 52%;
    background-size: auto 112%;
  }
}
/* Daily reading returns to the same light, hand-painted scale as the other cards. */
.hero-quick-tools .tool-card--day {
  min-height: 98px;
  background:
    radial-gradient(circle at 74% 52%, rgba(235, 197, 92, .15), transparent 29%),
    linear-gradient(135deg, #fffdf7 0%, #fbf2d7 52%, #f3e6b4 100%);
}

.hero-quick-tools .tool-card--day::after {
  right: 74px;
  width: 47%;
  background-size: auto 78%;
  background-position: right center;
  mix-blend-mode: multiply;
  opacity: .52;
  filter: saturate(.72) contrast(.88);
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--day {
    min-height: 124px;
  }

  .hero-quick-tools .tool-card--day::after {
    right: 92px;
    width: 45%;
    background-size: auto 84%;
  }
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--day {
    min-height: 86px;
  }

  .hero-quick-tools .tool-card--day::after {
    right: 66px;
    width: 48%;
    background-size: auto 76%;
  }
}
/* The original watercolour subjects, now without their pale source canvases. */
.hero-quick-tools .tool-card--man {
  min-height: 98px;
}

.hero-quick-tools .tool-card--man::after {
  right: 70px;
  width: 56%;
  background-image: url("tool-art/man-painted-blended.webp?v=20260822-man-watercolor-1");
  background-size: auto 140%;
  background-position: right center;
  mix-blend-mode: normal;
  opacity: .82;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-quick-tools .tool-card--woman {
  min-height: 98px;
}

.hero-quick-tools .tool-card--woman::after {
  right: 72px;
  width: 55%;
  background-image: url("tool-art/woman-painted-blended.webp?v=20260822-woman-watercolor-1");
  background-size: auto 94%;
  background-position: right center;
  mix-blend-mode: normal;
  opacity: .9;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--man,
  .hero-quick-tools .tool-card--woman {
    min-height: 124px;
  }

  .hero-quick-tools .tool-card--man::after {
    right: 88px;
    width: 52%;
    background-size: auto 148%;
  }

  .hero-quick-tools .tool-card--woman::after {
    right: 92px;
    width: 51%;
    background-size: auto 98%;
  }
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card--man,
  .hero-quick-tools .tool-card--woman {
    min-height: 86px;
  }
}
/* Full calculation returns to the regular desktop tool grid. */
@media (min-width: 900px) {
  .hero-quick-tools .tool-card--base {
    grid-column: auto;
    min-height: 124px;
    padding: 22px 106px 22px 30px;
  }

  .hero-quick-tools .tool-card--base .tool-card__label {
    max-width: 14rem;
    font-size: 1.35rem;
  }

  .hero-quick-tools .tool-card--base .tool-card__label::after {
    left: calc(100% + 16px);
    width: 16rem;
    font-size: 1.18rem;
  }

  .hero-quick-tools .tool-card--base::after {
    right: 86px;
    width: 54%;
    background-size: auto 118%;
  }
}
/* Unified painted-card system: illustrations belong to the gradient, never sit on a rectangle. */
.hero-quick-tools .tool-card,
.hero-quick-tools .tool-card--base,
.hero-quick-tools .tool-card--man,
.hero-quick-tools .tool-card--woman,
.hero-quick-tools .tool-card--code,
.hero-quick-tools .tool-card--day,
.hero-quick-tools .tool-card--year,
.hero-quick-tools .tool-card--children,
.hero-quick-tools .tool-card--money,
.hero-quick-tools .tool-card--love,
.hero-quick-tools .tool-card--horary {
  min-height: 98px;
}

.hero-quick-tools .tool-card::after {
  right: 68px;
  width: 56%;
  background-position: right center;
  background-size: auto 122%;
  background-repeat: no-repeat;
  mix-blend-mode: normal;
  opacity: .76;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-quick-tools .tool-card--base::after { background-image: url("tool-art/full-painted.webp?v=20260822-painted-set-1"); }
.hero-quick-tools .tool-card--man::after { background-image: url("tool-art/man-painted-blended.webp?v=20260822-painted-set-1"); }
.hero-quick-tools .tool-card--woman::after { background-image: url("tool-art/woman-painted-blended.webp?v=20260822-painted-set-1"); }
.hero-quick-tools .tool-card--code::after { background-image: url("tool-art/code-painted.webp?v=20260822-painted-set-1"); }
.hero-quick-tools .tool-card--day::after { background-image: url("tool-art/day-painted.webp?v=20260822-painted-set-1"); }
.hero-quick-tools .tool-card--year::after { background-image: url("tool-art/year-painted.webp?v=20260822-painted-set-1"); }
.hero-quick-tools .tool-card--money::after { background-image: url("tool-art/money-painted.webp?v=20260822-painted-set-1"); }
.hero-quick-tools .tool-card--love::after { background-image: url("tool-art/compatibility-painted.webp?v=20260822-painted-set-1"); }
.hero-quick-tools .tool-card--horary::after { background-image: url("tool-art/horary-painted.webp?v=20260822-painted-set-1"); }

.hero-quick-tools .tool-card--year .tool-card__label {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-quick-tools .tool-card--base .tool-card__label {
  max-width: 15rem;
  font-size: 1.03rem;
}

.hero-quick-tools .tool-card--base .tool-card__label::after {
  opacity: .62;
}

.hero-quick-tools .tool-card--code .tool-card__formula {
  opacity: .84;
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card,
  .hero-quick-tools .tool-card--base,
  .hero-quick-tools .tool-card--man,
  .hero-quick-tools .tool-card--woman,
  .hero-quick-tools .tool-card--code,
  .hero-quick-tools .tool-card--day,
  .hero-quick-tools .tool-card--year,
  .hero-quick-tools .tool-card--children,
  .hero-quick-tools .tool-card--money,
  .hero-quick-tools .tool-card--love,
  .hero-quick-tools .tool-card--horary {
    min-height: 124px;
  }

  .hero-quick-tools .tool-card::after {
    right: 86px;
    width: 53%;
    background-size: auto 132%;
  }
}

@media (max-width: 640px) {
  .hero-quick-tools .tool-card,
  .hero-quick-tools .tool-card--base,
  .hero-quick-tools .tool-card--man,
  .hero-quick-tools .tool-card--woman,
  .hero-quick-tools .tool-card--code,
  .hero-quick-tools .tool-card--day,
  .hero-quick-tools .tool-card--year,
  .hero-quick-tools .tool-card--children,
  .hero-quick-tools .tool-card--money,
  .hero-quick-tools .tool-card--love,
  .hero-quick-tools .tool-card--horary {
    min-height: 86px;
  }

  .hero-quick-tools .tool-card::after {
    right: 62px;
    width: 57%;
    background-size: auto 112%;
  }
}
/* Final edge treatment: painted subjects gently disappear into their own gradients. */
.hero-quick-tools .tool-card--woman::after {
  transform: translateY(5px);
}

.hero-quick-tools .tool-card--man::after {
  background-image: url("tool-art/man-painted-seamless.webp?v=20260822-man-seamless-1");
  opacity: .8;
  -webkit-mask-image: radial-gradient(ellipse 78% 104% at 69% 50%, #000 0%, rgba(0, 0, 0, .9) 48%, rgba(0, 0, 0, .42) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 104% at 69% 50%, #000 0%, rgba(0, 0, 0, .9) 48%, rgba(0, 0, 0, .42) 72%, transparent 100%);
}

.hero-quick-tools .tool-card--base::after {
  background-image: url("tool-art/full-painted-seamless.webp?v=20260822-full-seamless-1");
  opacity: .7;
  -webkit-mask-image: radial-gradient(ellipse 82% 106% at 69% 50%, #000 0%, rgba(0, 0, 0, .88) 50%, rgba(0, 0, 0, .35) 74%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 106% at 69% 50%, #000 0%, rgba(0, 0, 0, .88) 50%, rgba(0, 0, 0, .35) 74%, transparent 100%);
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--woman::after { transform: translateY(7px); }
}
/* White paper in the watercolours now melts into every card gradient. */
.hero-quick-tools .tool-card--base::after,
.hero-quick-tools .tool-card--man::after,
.hero-quick-tools .tool-card--code::after,
.hero-quick-tools .tool-card--day::after,
.hero-quick-tools .tool-card--year::after,
.hero-quick-tools .tool-card--money::after,
.hero-quick-tools .tool-card--love::after,
.hero-quick-tools .tool-card--horary::after {
  mix-blend-mode: multiply;
  opacity: .58;
  filter: saturate(.84) contrast(.92);
}

.hero-quick-tools .tool-card--base::after,
.hero-quick-tools .tool-card--man::after {
  opacity: .64;
}

.hero-quick-tools .tool-card--code::after {
  opacity: .48;
}
/* Red Flag contains only painted subject strokes — no sky layer or picture rectangle. */
.hero-quick-tools .tool-card--man::after {
  right: 72px;
  width: 54%;
  background-image: url("tool-art/man-painted-ink.webp?v=20260822-red-flag-brush-1");
  background-size: auto 138%;
  background-position: right center;
  mix-blend-mode: normal;
  opacity: .84;
  filter: saturate(.9);
  -webkit-mask-image: none;
  mask-image: none;
}

@media (min-width: 900px) {
  .hero-quick-tools .tool-card--man::after {
    right: 90px;
    width: 51%;
    background-size: auto 146%;
  }
}
/* One painted canvas: Red Flag is part of the card itself, never an overlay. */
.hero-quick-tools .tool-card--man {
  border-color: rgba(122, 77, 86, .24);
  background: #dbe8eb url("tool-art/man-red-flag-card.webp?v=20260822-man-card-canvas-1") center / cover no-repeat;
}

.hero-quick-tools .tool-card--man::after {
  display: none;
}
/* Red Flag: a single opaque watercolor canvas, painted into the card — no overlay or inset panel. */
.hero-quick-tools .tool-card--man {
  border-color: rgba(93, 121, 132, .34);
  background: #dbe8eb url("tool-art/man-red-flag-separated-canvas-lite.webp?v=20260823-lite-art-1") center center / cover no-repeat;
}

.hero-quick-tools .tool-card--man::after {
  display: none;
}
/* Woman card: a single painted pink canvas with breathing room above the head. */
.hero-quick-tools .tool-card--woman {
  border-color: rgba(181, 116, 132, .26);
  background: #f5dde2 url("tool-art/woman-bowl-painted-canvas-lite.webp?v=20260823-lite-art-1") center 27% / cover no-repeat;
}

.hero-quick-tools .tool-card--woman::after {
  display: none;
}
/* Red Flag: the man stands to the right of the pole, never under the flag. */
.hero-quick-tools .tool-card--man {
  background-image: url("tool-art/man-red-flag-separated-canvas-lite.webp?v=20260823-lite-art-1");
}
/* Unified quiet-watercolor cards: one whole canvas per card, never pasted art layers. */
.hero-quick-tools .tool-card--base { background: #eef1e7 url("tool-art/base-muted-canvas-lite.webp?v=20260823-lite-art-1") center 42% / cover no-repeat; }
.hero-quick-tools .tool-card--code { background: #f2eef7 url("tool-art/code-muted-canvas-lite.webp?v=20260823-lite-art-1") center 42% / cover no-repeat; }
.hero-quick-tools .tool-card--day { background: #fbf5e6 url("tool-art/day-muted-canvas-lite.webp?v=20260823-lite-art-1") center 42% / cover no-repeat; }
.hero-quick-tools .tool-card--year { background: #eff5ef url("tool-art/year-muted-canvas-lite.webp?v=20260823-lite-art-1") center 43% / cover no-repeat; }
.hero-quick-tools .tool-card--children { background: #eef5f4 url("tool-art/children-muted-canvas-lite.webp?v=20260823-lite-art-1") center 35% / cover no-repeat; }
.hero-quick-tools .tool-card--money { background: #f4f5eb url("tool-art/money-muted-canvas-lite.webp?v=20260823-lite-art-1") center 43% / cover no-repeat; }
.hero-quick-tools .tool-card--love { background: #f8edf1 url("tool-art/compatibility-swans-clear-canvas-lite.webp?v=20260823-lite-art-1") center 39% / cover no-repeat; }
.hero-quick-tools .tool-card--horary { background: #edf2f3 url("tool-art/horary-muted-canvas-lite.webp?v=20260823-lite-art-1") center 42% / cover no-repeat; }

.hero-quick-tools .tool-card--base::after,
.hero-quick-tools .tool-card--code::after,
.hero-quick-tools .tool-card--day::after,
.hero-quick-tools .tool-card--year::after,
.hero-quick-tools .tool-card--children::after,
.hero-quick-tools .tool-card--money::after,
.hero-quick-tools .tool-card--love::after,
.hero-quick-tools .tool-card--horary::after { display: none; }
/* Compatibility: keep the same pale canvas; make only the swans a touch clearer. */
.hero-quick-tools .tool-card--love {
  background-image: url("tool-art/compatibility-swans-clear-canvas-lite.webp?v=20260823-lite-art-1");
}
/* Lift the painted motifs within their cards so they are not cut off at the lower edge. */
.hero-quick-tools .tool-card--base { background-position: center 58%; }
.hero-quick-tools .tool-card--code { background-position: center 58%; }
.hero-quick-tools .tool-card--day { background-position: center 60%; }
.hero-quick-tools .tool-card--year { background-position: center 61%; }
.hero-quick-tools .tool-card--children { background-position: center 59%; }
.hero-quick-tools .tool-card--money { background-position: center 60%; }
.hero-quick-tools .tool-card--love { background-position: center 60%; }
.hero-quick-tools .tool-card--horary { background-position: center 59%; }
/* Children: keep the mother’s full head visible by lowering only this painting. */
.hero-quick-tools .tool-card--children { background-position: center 34%; }
/* Mobile daily forecast: keep the modal above the landing cards and keep all form taps inside it. */
@media (max-width: 680px) {
  body.modal-open .hero-quick-tools,
  body.modal-open .hero,
  body.modal-open .site-header {
    pointer-events: none;
  }

  #daily-forecast-modal.is-open {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    pointer-events: auto !important;
    touch-action: pan-y;
  }

  #daily-forecast-modal.is-open .modal-card,
  #daily-forecast-modal.is-open input,
  #daily-forecast-modal.is-open button,
  #daily-forecast-modal.is-open label {
    pointer-events: auto;
  }

  #daily-forecast-modal.is-open #daily-forecast-date {
    position: relative;
    z-index: 3;
    touch-action: manipulation;
  }

  .hero-copy > h1,
  .hero-copy > h1 .hero-title-line {
    width: 100%;
    text-align: center !important;
  }
}

/* The main booking action belongs to the same quiet card system as calculations. */
:root {
  --hero-action-section-gap: clamp(18px, 2vw, 24px);
}

.hero {
  padding-bottom: 0;
}

.hero-spotlight-action.hero-spotlight-action--below-tools {
  position: static;
  width: min(100%, 680px);
  margin: var(--hero-action-section-gap) auto 0;
  filter: none;
}

.hero-spotlight-action--below-tools::before,
.hero-spotlight-action--below-tools::after,
.hero-spotlight-action--below-tools .btn-primary--hero-spotlight::before,
.hero-spotlight-action--below-tools .btn-primary--hero-spotlight::after {
  display: none;
}

.hero-spotlight-action--below-tools .btn-primary--hero-spotlight {
  position: relative;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 124px;
  padding: 22px 30px;
  overflow: hidden;
  border: 1px solid rgba(97, 82, 52, 0.15);
  border-radius: 22px;
  isolation: isolate;
  background: #eef1e7 url("tool-art/booking-cta-destiny-cover-v2.jpg?v=20260830-1") center 68% / cover no-repeat;
  color: #164d39;
  text-align: center;
  text-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.025em;
  box-shadow: 0 14px 26px rgba(73, 55, 27, 0.08);
  transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-spotlight-action--below-tools .btn-primary--hero-spotlight::before {
  content: "";
  position: absolute;
  inset: 5px 20px;
  width: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='124' viewBox='0 0 440 124'%3E%3Cg fill='none' stroke='%23a77a2c' stroke-opacity='.3'%3E%3Cpath d='M12 27h416M12 97h416M42 12v100M398 12v100' stroke-dasharray='2 8'/%3E%3Cpath d='M55 91 112 25l62 70 64-67 67 66 77-64'/%3E%3Ccircle cx='55' cy='91' r='4'/%3E%3Ccircle cx='112' cy='25' r='4'/%3E%3Ccircle cx='174' cy='95' r='4'/%3E%3Ccircle cx='238' cy='28' r='4'/%3E%3Ccircle cx='305' cy='94' r='4'/%3E%3Ccircle cx='382' cy='30' r='4'/%3E%3C/g%3E%3Cg fill='%23164d39' fill-opacity='.46' font-family='Georgia,serif' font-size='17' font-weight='700'%3E%3Ctext x='20' y='23'%3E1%3C/text%3E%3Ctext x='67' y='54'%3E2%3C/text%3E%3Ctext x='104' y='115'%3E3%3C/text%3E%3Ctext x='145' y='43'%3E4%3C/text%3E%3Ctext x='183' y='82'%3E5%3C/text%3E%3Ctext x='218' y='117'%3E6%3C/text%3E%3Ctext x='258' y='47'%3E7%3C/text%3E%3Ctext x='296' y='79'%3E8%3C/text%3E%3Ctext x='333' y='116'%3E9%3C/text%3E%3Ctext x='357' y='59'%3E11%3C/text%3E%3Ctext x='403' y='112'%3E22%3C/text%3E%3C/g%3E%3Cg fill='%23bf8b2f' fill-opacity='.58'%3E%3Cpath d='m134 8 2 5 5 2-5 2-2 5-2-5-5-2 5-2zM327 8l2 5 5 2-5 2-2 5-2-5-5-2 5-2zM414 67l2 5 5 2-5 2-2 5-2-5-5-2 5-2z'/%3E%3C/g%3E%3C/svg%3E") center / 100% 100% no-repeat;
  box-shadow: none;
  opacity: 0.86;
  -webkit-mask-image: radial-gradient(ellipse 42% 70% at center, transparent 0 42%, rgba(0, 0, 0, 0.28) 64%, #000 100%);
  mask-image: radial-gradient(ellipse 42% 70% at center, transparent 0 42%, rgba(0, 0, 0, 0.28) 64%, #000 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-spotlight-action--below-tools .btn-primary--hero-spotlight::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 286px;
  height: 152px;
  display: block;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='330' height='152' viewBox='0 0 330 152'%3E%3Cg fill='none' stroke='%23a77a2c' stroke-opacity='.5'%3E%3Ccircle cx='218' cy='76' r='62'/%3E%3Ccircle cx='218' cy='76' r='43'/%3E%3Ccircle cx='218' cy='76' r='22'/%3E%3Ccircle cx='218' cy='76' r='8'/%3E%3Cpath d='M218 7v138M149 76h138M169 27l98 98M267 27l-98 98'/%3E%3Cpath d='M52 76h97M287 76h35M88 34l61 42-61 42z' stroke-dasharray='2 6'/%3E%3Ccircle cx='88' cy='34' r='5'/%3E%3Ccircle cx='88' cy='118' r='5'/%3E%3Ccircle cx='52' cy='76' r='5'/%3E%3C/g%3E%3Cg fill='%23164d39' fill-opacity='.58' font-family='Georgia,serif' font-size='17' font-weight='700'%3E%3Ctext x='211' y='22'%3E1%3C/text%3E%3Ctext x='270' y='50'%3E2%3C/text%3E%3Ctext x='278' y='82'%3E3%3C/text%3E%3Ctext x='261' y='124'%3E4%3C/text%3E%3Ctext x='213' y='83'%3E5%3C/text%3E%3Ctext x='181' y='126'%3E6%3C/text%3E%3Ctext x='211' y='143'%3E7%3C/text%3E%3Ctext x='157' y='50'%3E8%3C/text%3E%3Ctext x='153' y='82'%3E9%3C/text%3E%3Ctext x='77' y='31'%3E11%3C/text%3E%3Ctext x='76' y='139'%3E22%3C/text%3E%3Ctext x='33' y='82'%3E14%3C/text%3E%3C/g%3E%3Cg fill='%23bf8b2f' fill-opacity='.68'%3E%3Cpath d='m302 18 3 7 7 3-7 3-3 7-3-7-7-3 7-3zM116 8l2 5 5 2-5 2-2 5-2-5-5-2 5-2z'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.58;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero-spotlight-label {
  position: relative;
  max-width: 72%;
  text-align: center;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94),
    0 0 22px rgba(246, 247, 239, 0.98),
    0 0 42px rgba(246, 247, 239, 0.92);
  z-index: 2;
}

.hero-spotlight-action--below-tools .btn-primary--hero-spotlight::before {
  inset: 0;
  width: auto;
  display: block;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(248, 247, 239, 0.08) 0%,
    rgba(248, 247, 239, 0.26) 24%,
    rgba(248, 247, 239, 0.62) 39%,
    rgba(248, 247, 239, 0.66) 61%,
    rgba(248, 247, 239, 0.28) 78%,
    rgba(248, 247, 239, 0.08) 100%
  );
  opacity: 1;
  -webkit-backdrop-filter: blur(0.7px) saturate(0.9);
  backdrop-filter: blur(0.7px) saturate(0.9);
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-spotlight-action--below-tools .btn-primary--hero-spotlight::after {
  display: block;
  opacity: 0.72;
  mix-blend-mode: normal;
  filter: blur(0.15px) saturate(0.88);
}

.hero-spotlight-action--below-tools .btn-primary--hero-spotlight:hover,
.hero-spotlight-action--below-tools .btn-primary--hero-spotlight:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 77, 57, 0.24);
  box-shadow: 0 20px 32px rgba(73, 55, 27, 0.13);
}

.metrics {
  margin-top: var(--hero-action-section-gap);
  margin-bottom: 0;
}

#life-map {
  padding-top: 0;
}

#life-map .life-map-options {
  margin-top: var(--hero-action-section-gap);
}

/* Personal reading: a larger editorial card from the calculation-card family. */
.life-map-option--personal {
  isolation: isolate;
  padding: clamp(30px, 4.4vw, 56px);
  border-color: rgba(96, 117, 91, 0.2);
  background:
    radial-gradient(ellipse 42% 34% at 9% 4%, rgba(255, 255, 255, 0.96), transparent 72%),
    radial-gradient(ellipse 48% 38% at 92% 14%, rgba(218, 231, 239, 0.68), transparent 72%),
    radial-gradient(ellipse 44% 34% at 76% 88%, rgba(238, 224, 239, 0.58), transparent 74%),
    radial-gradient(ellipse 48% 36% at 18% 84%, rgba(230, 239, 221, 0.72), transparent 76%),
    linear-gradient(135deg, #fffdf8 0%, #f2f5e9 47%, #edf2ee 100%);
  box-shadow:
    0 22px 46px rgba(73, 55, 27, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.life-map-option--personal::before {
  content: "";
  position: absolute;
  inset: -5% -3%;
  z-index: 0;
  background:
    radial-gradient(ellipse 24% 15% at 3% 16%, rgba(255, 255, 255, 0.98) 0 30%, rgba(201, 224, 233, 0.76) 53%, transparent 78%),
    radial-gradient(ellipse 30% 18% at 25% 5%, rgba(255, 255, 255, 0.96) 0 30%, rgba(213, 231, 209, 0.76) 55%, transparent 80%),
    radial-gradient(ellipse 28% 17% at 53% 17%, rgba(255, 255, 255, 0.94) 0 28%, rgba(205, 226, 236, 0.7) 54%, transparent 80%),
    radial-gradient(ellipse 34% 20% at 87% 7%, rgba(255, 255, 255, 0.96) 0 30%, rgba(201, 222, 234, 0.8) 56%, transparent 81%),
    radial-gradient(ellipse 31% 19% at 101% 39%, rgba(255, 255, 255, 0.94) 0 28%, rgba(220, 207, 232, 0.74) 56%, transparent 81%),
    radial-gradient(ellipse 36% 21% at 77% 70%, rgba(255, 255, 255, 0.92) 0 29%, rgba(225, 210, 233, 0.72) 58%, transparent 82%),
    radial-gradient(ellipse 31% 19% at 47% 98%, rgba(255, 255, 255, 0.94) 0 30%, rgba(212, 230, 204, 0.76) 58%, transparent 82%),
    radial-gradient(ellipse 35% 21% at 7% 80%, rgba(255, 255, 255, 0.96) 0 31%, rgba(205, 229, 213, 0.78) 58%, transparent 82%),
    linear-gradient(112deg, rgba(223, 235, 229, 0.22), rgba(255, 255, 255, 0.46) 49%, rgba(216, 227, 239, 0.24));
  opacity: 1;
  filter: blur(2.5px) saturate(0.98);
  transform: scale(1.02);
  pointer-events: none;
}

.life-map-option--personal::after {
  content: "1   3   6\A 8   11   22\A 4   7   9";
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 0;
  white-space: pre;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: 0.16em;
  color: rgba(22, 77, 57, 0.075);
  transform: rotate(-5deg);
}

.life-map-option--personal > * {
  position: relative;
  z-index: 1;
}

.life-map-option--personal .life-map-option__topline {
  padding-bottom: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(22, 77, 57, 0.12);
}

.life-map-option--personal h3 {
  max-width: 18ch;
  font-size: clamp(2.65rem, 4.7vw, 4.85rem);
  line-height: 0.95;
}

.life-map-option--personal .life-map-question-list {
  gap: 12px;
}

.life-map-option--personal .life-map-question-list li {
  min-height: 74px;
  padding: 17px 18px 17px 48px;
  border: 1px solid rgba(96, 117, 91, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(223, 235, 231, 0.62), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(250, 247, 239, 0.72));
  box-shadow:
    0 10px 22px rgba(73, 55, 27, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.life-map-option--personal .life-map-question-list li::before {
  left: 20px;
  top: 19px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.life-map-option--personal .life-map-option__note {
  background:
    radial-gradient(ellipse at top right, rgba(218, 231, 239, 0.48), transparent 42%),
    rgba(255, 255, 255, 0.72);
  border-color: rgba(22, 77, 57, 0.12);
}

.life-map-option--personal .life-map-option__btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 52rem);
  min-height: clamp(96px, 8vw, 116px);
  padding: 22px 34px;
  border: 1px solid rgba(97, 82, 52, 0.15);
  border-radius: 22px;
  background: #eef1e7 url("tool-art/booking-cta-destiny-cover-v2.jpg?v=20260830-1") center 68% / cover no-repeat;
  color: #164d39;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.42rem, 2.25vw, 2.08rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.028em;
  text-align: center;
  text-shadow: none;
  box-shadow: 0 14px 28px rgba(73, 55, 27, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.life-map-option--personal .life-map-option__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 247, 239, 0.08) 0%,
    rgba(248, 247, 239, 0.3) 24%,
    rgba(248, 247, 239, 0.72) 39%,
    rgba(248, 247, 239, 0.75) 61%,
    rgba(248, 247, 239, 0.3) 78%,
    rgba(248, 247, 239, 0.08) 100%
  );
  pointer-events: none;
}

.life-map-option--personal .life-map-option__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.36);
  pointer-events: none;
}

.life-map-option__btn-label {
  position: relative;
  z-index: 1;
  max-width: 72%;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 24px rgba(246, 247, 239, 0.98),
    0 0 44px rgba(246, 247, 239, 0.92);
}

.life-map-option--personal .life-map-option__btn:hover,
.life-map-option--personal .life-map-option__btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 77, 57, 0.25);
  box-shadow: 0 20px 34px rgba(73, 55, 27, 0.14);
}

.metrics article {
  min-height: 116px;
  padding: 20px 64px 18px 20px;
  justify-content: flex-start;
  gap: 8px;
}

.metric-icon {
  top: 16px;
  right: 16px;
  left: auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(203, 154, 54, 0.26);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.78);
  font-size: 1.2rem;
}

.metrics strong {
  margin: 0;
  line-height: 1;
}

.metrics span:last-child {
  margin-top: 0;
}

@media (max-width: 640px) {
  .life-map-option--personal {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .life-map-option--personal h3 {
    max-width: 100%;
    font-size: 2.05rem;
  }

  .life-map-option--personal .life-map-question-list li {
    min-height: 0;
    padding: 15px 15px 15px 43px;
    border-radius: 17px;
  }

  .life-map-option--personal .life-map-question-list li::before {
    left: 16px;
    top: 17px;
  }

  .life-map-option--personal .life-map-option__btn {
    min-height: 92px;
    padding: 16px 18px;
    border-radius: 19px;
    background-position: center 68%;
    font-size: 1.32rem;
  }

  .life-map-option__btn-label {
    max-width: 76%;
  }

  .hero-spotlight-action--below-tools .btn-primary--hero-spotlight {
    min-height: 104px;
    padding: 15px 18px;
    border-radius: 19px;
    background-position: center, 66% 52%;
    background-size: cover, auto 150%;
    font-size: 1.38rem;
  }

  .hero-spotlight-action--below-tools .btn-primary--hero-spotlight::before {
    inset: 4px 10px;
    width: auto;
    background-size: 150% 100%;
  }

  .hero-spotlight-action--below-tools .btn-primary--hero-spotlight::after {
    right: -28px;
    width: 190px;
    height: 112px;
    opacity: 0.64;
  }

  .hero-spotlight-label {
    max-width: 78%;
  }

  .metrics {
    margin-top: var(--hero-action-section-gap);
  }

  .metrics article {
    min-height: 104px;
    padding: 16px 48px 14px 14px;
    gap: 6px;
  }

  .metric-icon {
    top: 12px;
    right: 12px;
    left: auto;
    width: 32px;
    height: 32px;
    font-size: 1.05rem;
  }

  .metrics strong {
    font-size: 1.48rem;
  }
}
