: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;
  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;
}

html.ios-safe body::before,
html.ios-safe body::after,
html.ios-safe .ambient {
  display: none;
}

html.ios-safe .site-header__inner,
html.ios-safe .menu-toggle,
html.ios-safe .site-nav,
html.ios-safe .support-fab,
html.ios-safe .modal-backdrop,
html.ios-safe .site-header--scrolled .site-header__inner {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.ios-safe .heroDecorItem,
html.ios-safe .hero-paper,
html.ios-safe .hero-orbit {
  filter: none !important;
}

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

html.ios-safe .modal-backdrop {
  background: rgba(26, 18, 12, 0.5);
}

html.ios-safe .modal-card {
  width: min(760px, calc(100vw - 20px));
  max-height: calc(100svh - max(8px, env(safe-area-inset-top)) - max(8px, env(safe-area-inset-bottom)));
  margin-top: 0;
}

html.ios-safe #daily-forecast-modal.modal-shell {
  padding: 0 6px max(4px, env(safe-area-inset-bottom));
}

html.ios-safe #daily-forecast-modal .modal-card--daily {
  max-height: calc(100svh - max(6px, env(safe-area-inset-top)) - max(4px, env(safe-area-inset-bottom)));
}

html.ios-safe #woman-check-modal.modal-shell {
  padding: 0 6px max(4px, env(safe-area-inset-bottom));
}

html.ios-safe #woman-check-modal .modal-card--daily {
  width: calc(100vw - 12px);
  max-height: calc(100svh - max(6px, env(safe-area-inset-top)) - max(4px, env(safe-area-inset-bottom)));
  padding: 10px 10px 12px;
  border-radius: 18px;
}

body.nav-open {
  overflow: hidden;
}

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

body.base-report-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--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-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);
}

.hero-lead {
  margin: 0;
  max-width: 36rem;
  text-wrap: pretty;
}

.hero-lead-row {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  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-sub {
  max-width: 54rem;
}

.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: 20px;
}

.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-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 {
    margin-top: 8px;
    max-width: min(89vw, 15.2ch);
    font-size: clamp(1.86rem, 6.25vw, 2.52rem);
    line-height: 0.88;
    letter-spacing: -0.028em;
  }

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

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

  .ornament {
    margin-top: 12px;
  }

  .hero-lead {
    margin-top: 12px;
    max-width: calc(100% - 2px);
    padding-right: 0;
  }

  .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: 20px;
  display: grid;
  gap: 18px;
}

.life-map-option {
  position: relative;
  overflow: clip;
  padding: 24px;
  border-radius: 30px;
  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: 14px 0 0;
  color: var(--green-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.life-map-option__subtitle,
.life-map-option__lead {
  margin: 12px 0 0;
  max-width: 48rem;
  text-wrap: pretty;
}

.life-map-question-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.life-map-question-list li {
  position: relative;
  padding-left: 28px;
  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: 18px 0 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(203, 154, 54, 0.14);
  text-wrap: pretty;
}

.life-map-option__btn {
  margin-top: 18px;
  width: 100%;
  min-height: 62px;
  border-radius: 22px;
  font-size: 1.08rem;
}

.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 {
  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;
}

.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;
}

.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;
}

.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::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;
}

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

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 50;
  isolation: isolate;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-shell.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(248, 243, 235, 0.92);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  border-radius: 28px;
  padding: 22px;
  max-height: min(calc(100dvh - 40px), 920px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 18px;
  width: 88px;
  height: 88px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23cb9a36' stroke-opacity='.56'%3E%3Ccircle cx='70' cy='70' r='48'/%3E%3Ccircle cx='70' cy='70' r='28'/%3E%3C/g%3E%3Cg fill='%230f5a40' fill-opacity='.4' font-family='Georgia' font-size='18'%3E%3Ctext x='20' y='38'%3E6%3C/text%3E%3Ctext x='100' y='112'%3E15%3C/text%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.modal-card--success {
  width: min(420px, 100%);
  text-align: center;
  padding: 30px 22px 24px;
}

.modal-card--calculator {
  width: min(760px, 100%);
}

.modal-card--daily {
  width: min(760px, 100%);
}

.modal-card--support {
  width: min(460px, 100%);
}

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

.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;
}

.calculator-form {
  display: grid;
  gap: 12px;
}

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

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

.calculator-form input {
  width: 100%;
  border: 1px solid rgba(15, 90, 64, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  background: #fffdfa;
}

.calculator-form textarea {
  width: 100%;
  min-height: 124px;
  resize: vertical;
  border: 1px solid rgba(15, 90, 64, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  background: #fffdfa;
}

.calculator-form select {
  width: 100%;
  border: 1px solid rgba(15, 90, 64, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--text);
  background: #fffdfa;
}

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

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

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

.calculator-form small {
  display: block;
}

.modal-card--life-map {
  max-width: 980px;
}

.life-map-short-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.life-map-debug {
  margin-top: 14px;
}

.life-map-debug__output {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(15, 90, 64, 0.12);
  border-radius: 18px;
  background: #fffdfa;
  color: var(--text);
  font: 500 0.88rem/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: auto;
  max-height: 420px;
}

.life-map-results__hero {
  background:
    linear-gradient(180deg, rgba(250, 244, 232, 0.94), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.08), transparent 28%);
}

.life-map-quick-nav {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(203, 154, 54, 0.14);
}

.life-map-quick-nav__title {
  margin: 0;
  color: var(--green-deep);
  font-weight: 800;
}

.life-map-quick-nav__links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.life-map-quick-nav__link {
  border: 1px solid rgba(15, 90, 64, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-deep);
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.life-map-quick-nav__link:hover,
.life-map-quick-nav__link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(15, 90, 64, 0.24);
  background: rgba(255, 255, 255, 0.96);
}

.life-map-accordion-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.life-map-accordion {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(249, 244, 235, 0.92)),
    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);
}

.life-map-accordion[open] {
  border-color: rgba(15, 90, 64, 0.2);
  box-shadow:
    0 22px 38px rgba(15, 90, 64, 0.1),
    0 0 0 8px rgba(203, 154, 54, 0.05);
}

.life-map-accordion summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 66px 18px 20px;
}

.life-map-accordion summary::-webkit-details-marker {
  display: none;
}

.life-map-accordion summary::after {
  content: "⌄";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 90, 64, 0.06);
  border: 1px solid rgba(15, 90, 64, 0.08);
  color: var(--green);
  transition: transform 0.2s ease, background 0.2s ease;
}

.life-map-accordion[open] summary::after {
  transform: rotate(180deg);
  background: rgba(15, 90, 64, 0.12);
}

.life-map-accordion__eyebrow {
  margin: 0;
  color: #8d3042;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.life-map-accordion__title {
  margin: 8px 0 0;
  color: var(--green-deep);
  font-size: 1.16rem;
  line-height: 1.18;
  font-weight: 800;
}

.life-map-accordion__lead {
  margin: 8px 0 0;
  max-width: 50rem;
}

.life-map-accordion__body {
  padding: 0 20px 22px;
  display: grid;
  gap: 14px;
}

.life-map-accordion__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.life-map-accordion__card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(237, 226, 204, 0.9);
}

.life-map-accordion__card h5 {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.95rem;
  line-height: 1.26;
}

.life-map-accordion__card p {
  margin: 8px 0 0;
  text-wrap: pretty;
}

.life-map-accordion__columns {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.life-map-accordion__list {
  margin: 0;
  padding-left: 18px;
}

.life-map-accordion__formula {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 90, 64, 0.94), rgba(141, 48, 66, 0.9));
  color: #fffaf5;
}

.life-map-accordion__formula strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.life-map-accordion__formula p {
  margin: 8px 0 0;
  color: inherit;
}

.life-map-accordion__disclaimer {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.8);
  border: 1px solid rgba(203, 154, 54, 0.14);
}

.man-check-shell {
  margin-top: 8px;
  display: grid;
  gap: 16px;
  padding: 0;
  border-radius: 30px;
  max-width: 100%;
  box-sizing: border-box;
}

.man-check-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.man-check-reset-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--green);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.man-check-question-zone {
  display: grid;
  gap: 14px;
}

.man-check-question-zone__head h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.24rem;
}

.man-check-question-zone__head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.man-check-categories {
  display: grid;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
}

.man-check-category {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 90, 64, 0.1);
  box-shadow: 0 10px 24px rgba(68, 46, 18, 0.06);
}

.man-check-category.is-locked {
  opacity: 0.84;
}

.man-check-category.is-open {
  border-color: rgba(15, 90, 64, 0.22);
  box-shadow: 0 18px 30px rgba(68, 46, 18, 0.08);
}

.man-check-category__toggle {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: none;
  text-align: left;
  display: grid;
  gap: 7px;
  cursor: pointer;
}

.man-check-category__toggle strong {
  color: var(--green-deep);
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.man-check-category__toggle small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
  margin-top: 1px;
}

.man-check-category__eyebrow {
  color: #8d3042;
  font-size: 0.71rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.86;
}

.man-check-category__questions {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}

.man-check-category__questions[hidden] {
  display: none;
}

.man-check-question {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(15, 90, 64, 0.1);
  border-radius: 18px;
  background: rgba(248, 243, 233, 0.7);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.man-check-question:hover,
.man-check-question.is-current {
  transform: translateY(-1px);
  border-color: rgba(15, 90, 64, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.man-check-results {
  margin-top: 6px;
  display: grid;
  gap: 14px;
  max-width: 100%;
  min-width: 0;
}

.man-check-results--hidden {
  display: none;
}

.man-check-card {
  position: relative;
  overflow: hidden;
  padding: 14px 14px 12px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(141, 48, 66, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #f7efe3 100%);
  border: 1px solid rgba(203, 154, 54, 0.18);
  box-shadow: 0 14px 28px rgba(68, 46, 18, 0.08);
}

.man-check-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 10px;
}

.man-check-card__date {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 800;
}

.man-check-card__date {
  color: var(--green-deep);
}

.man-check-card__brand {
  color: rgba(79, 74, 67, 0.88);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: right;
}

.man-check-card__question {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.28;
}

.man-check-card__question strong {
  color: var(--green-deep);
}

.man-check-card__verdict {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.34;
  font-weight: 700;
}

.man-check-card__scales {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.man-check-scale {
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 90, 64, 0.08);
}

.man-check-scale--risk {
  border-color: rgba(141, 48, 66, 0.12);
}

.man-check-scale__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.84rem;
}

.man-check-scale__row span {
  color: var(--green-deep);
  font-weight: 700;
}

.man-check-scale__row b {
  color: var(--text);
  font-size: 0.82rem;
}

.man-check-scale i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(15, 90, 64, 0.08);
  overflow: hidden;
}

.man-check-scale i span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.man-check-scale--risk i span {
  background: linear-gradient(90deg, #d07d5a, #8d3042);
}

.man-check-card__facts {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

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

.man-check-card__fact {
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 90, 64, 0.08);
}

.man-check-card__fact--verdict {
  background: linear-gradient(135deg, rgba(15, 90, 64, 0.94), rgba(141, 48, 66, 0.9));
  border-color: transparent;
}

.man-check-card__fact strong {
  color: var(--green-deep);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.man-check-card__fact p,
.man-check-more p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.34;
}

.man-check-card__fact--verdict p {
  color: #fffaf5;
}

.man-check-card__shareline {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.man-check-more-wrap {
  display: grid;
  gap: 10px;
}

.man-check-more-toggle {
  width: 100%;
}

.man-check-more {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(203, 154, 54, 0.16);
}

.man-check-detail,
.man-check-relationship {
  display: grid;
  gap: 12px;
}

.man-check-detail__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
}

.man-check-detail__head h4 {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.98rem;
  line-height: 1.2;
}

.man-check-detail__body {
  display: grid;
  gap: 10px;
}

.man-check-state-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(203, 154, 54, 0.14);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.man-check-placeholder-cta {
  width: 100%;
}

.man-check-relationship__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.38;
}

.man-check-relationship__grid {
  display: grid;
  gap: 10px;
}

.man-check-relationship-card {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 90, 64, 0.09);
}

.man-check-relationship-card h5 {
  margin: 0 0 6px;
  color: var(--green-deep);
  font-size: 0.92rem;
  line-height: 1.28;
}

.man-check-relationship-card__verdict {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 700;
}

.man-check-relationship__summary {
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 90, 64, 0.94), rgba(141, 48, 66, 0.9));
}

.man-check-relationship__summary strong {
  display: block;
  color: #fffaf5;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.man-check-relationship__summary p {
  margin: 6px 0 0;
  color: #fffaf5;
  font-size: 0.86rem;
  line-height: 1.4;
}

#woman-check-sections {
  display: grid;
  gap: 14px;
}

.man-check-actions {
  display: grid;
  gap: 10px;
}

.man-check-input--error {
  border-color: rgba(141, 48, 66, 0.5) !important;
  box-shadow: 0 0 0 4px rgba(141, 48, 66, 0.1) !important;
}

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

.horary-warning-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(203, 154, 54, 0.2);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

#horary-modal,
#horary-modal .modal-card--daily,
#horary-modal .horary-form,
#horary-modal .horary-form > *,
#horary-modal .horary-results,
#horary-modal .horary-card,
#horary-modal .horary-actions,
#horary-modal .horary-card__grid,
#horary-modal .horary-card__fact,
#horary-modal .horary-card__topline,
#horary-modal .horary-card__clarity {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

#horary-modal,
#horary-modal .modal-card--daily,
#horary-modal .horary-form,
#horary-modal .horary-results,
#horary-modal .horary-card {
  overflow-x: hidden;
}

#horary-modal input,
#horary-modal select,
#horary-modal textarea,
#horary-modal button {
  max-width: 100%;
}

#horary-modal .horary-card__question,
#horary-modal .horary-card__verdict,
#horary-modal .horary-card__fact p,
#horary-modal .horary-card__clarity span,
#horary-modal .horary-warning-note,
#horary-modal .money-reading-hint {
  overflow-wrap: anywhere;
}

.horary-results {
  margin-top: 8px;
  display: grid;
  gap: 14px;
}

.horary-results--hidden {
  display: none;
}

.horary-card {
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.12), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #f5efe5 100%);
  border: 1px solid rgba(203, 154, 54, 0.18);
  box-shadow: 0 14px 28px rgba(68, 46, 18, 0.08);
  display: grid;
  gap: 12px;
}

.horary-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 10px;
}

.horary-card__eyebrow {
  color: var(--green-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.horary-card__brand {
  color: rgba(79, 74, 67, 0.88);
  font-size: 0.74rem;
  font-weight: 700;
}

.horary-card__question {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 700;
}

.horary-card__direct-answer {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 90, 64, 0.12);
  color: var(--green-deep);
  font-size: clamp(1.45rem, 4.6vw, 2.1rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: center;
}

.horary-card__verdict {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
}

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

.horary-card__clarity strong {
  color: var(--green-deep);
  font-size: 0.86rem;
}

.horary-card__clarity span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.horary-card__grid {
  display: grid;
  gap: 10px;
}

.horary-card__fact {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 90, 64, 0.08);
}

.horary-card__fact strong {
  display: block;
  color: var(--green-deep);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.horary-card__fact p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.horary-card__fact--final {
  background: linear-gradient(135deg, rgba(15, 90, 64, 0.94), rgba(141, 48, 66, 0.9));
  border-color: transparent;
}

.horary-card__fact--final strong,
.horary-card__fact--final p {
  color: #fffaf5;
}

.horary-actions {
  display: grid;
  gap: 10px;
}

.horary-debug summary {
  cursor: pointer;
  color: var(--green-deep);
  font-weight: 700;
}

.horary-debug pre {
  margin: 8px 0 0;
  padding: 12px;
  overflow: auto;
  border-radius: 14px;
  background: rgba(23, 21, 18, 0.06);
  color: var(--text);
  font-size: 0.78rem;
}

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

.calculator-results--hidden {
  display: none;
}

.analysis-card {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(248, 243, 233, 0.9));
  border: 1px solid rgba(203, 154, 54, 0.18);
  box-shadow: var(--shadow-soft);
}

.analysis-card--hidden {
  display: none;
}

.analysis-orbit {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto 12px;
  border: 1px solid rgba(15, 90, 64, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(243, 232, 205, 0.46) 100%);
  animation: analysisPulse 2.8s ease-in-out infinite;
}

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

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

.analysis-orbit span:nth-child(1) {
  left: 14px;
  top: 14px;
}

.analysis-orbit span:nth-child(2) {
  right: 12px;
  top: 26px;
}

.analysis-orbit span:nth-child(3) {
  left: 28px;
  bottom: 8px;
  color: var(--gold);
}

.analysis-step {
  margin: 0;
  color: var(--green-deep);
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
}

.analysis-progress {
  height: 6px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 90, 64, 0.08);
}

.analysis-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition-property: width;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.analysis-note {
  margin: 10px auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.44;
  text-align: center;
}

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

.daily-forecast-public {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.daily-forecast-hero--public {
  border-color: rgba(15, 90, 64, 0.14);
}

.daily-forecast-grid.daily-forecast-grid--public {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.daily-forecast-panel--public-overview {
  background: rgba(255, 252, 246, 0.92);
}

.daily-public-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.daily-public-split__item {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(237, 226, 204, 0.82);
}

.daily-public-split__item h6 {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.daily-public-split__item p {
  margin: 0;
}

.daily-forecast-panel--public-cta {
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(250, 244, 232, 0.95), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.1), transparent 34%);
  border: 1px solid rgba(203, 154, 54, 0.18);
}

.daily-public-cta-kicker {
  margin: 0 0 6px;
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calculator-form--daily-cta {
  margin-top: 14px;
}

.calculator-form--daily-cta .form-row {
  display: grid;
}

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

.daily-flow-btn {
  width: 100%;
}

.daily-forecast-results--hidden {
  display: none;
}

.daily-forecast-hero {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(250, 244, 232, 0.94), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(203, 154, 54, 0.16);
}

.daily-forecast-today {
  margin: 0;
  color: var(--green-deep);
  font-weight: 700;
}

.daily-forecast-number {
  margin: 8px 0 0;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.96;
}

.daily-forecast-intro {
  margin: 10px 0 0;
}

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

.daily-forecast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.daily-forecast-panel {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(237, 226, 204, 0.9);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: clip;
}

.daily-forecast-panel::before {
  right: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  opacity: 0.08;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Cg fill='none' stroke='%23cb9a36' stroke-opacity='.58'%3E%3Cpath d='M35 8v54M8 35h54'/%3E%3Ccircle cx='35' cy='35' r='18'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.daily-forecast-panel h5 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1rem;
  line-height: 1.3;
}

.daily-forecast-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.daily-forecast-list li + li {
  margin-top: 8px;
}

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

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

.daily-forecast-panel--transition {
  margin-top: 14px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 255, 255, 0.92));
  border-color: rgba(203, 154, 54, 0.2);
}

.daily-forecast-panel--risk-strong {
  background: rgba(255, 248, 239, 0.92);
  border-color: rgba(203, 154, 54, 0.22);
}

.daily-forecast-panel--chance-strong {
  background: rgba(247, 252, 248, 0.9);
  border-color: rgba(15, 90, 64, 0.16);
}

.daily-question-text {
  margin: 10px 0 0;
}

.daily-forecast-risk {
  margin: 10px 0 0;
}

.daily-forecast-risk b {
  color: var(--green-deep);
}

.love-scales {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.love-scale {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid rgba(15, 90, 64, 0.1);
}

.love-scale__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--green-deep);
}

.love-scale__head b {
  font-size: 0.92rem;
  line-height: 1.25;
}

.love-scale__head span {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 800;
}

.love-scale__bar {
  height: 8px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 90, 64, 0.08);
}

.love-scale__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #2d8c67);
}

.love-scale--risk {
  border-color: rgba(203, 154, 54, 0.22);
  background: rgba(255, 248, 236, 0.84);
}

.love-scale--risk .love-scale__head span {
  color: #a56f17;
}

.love-scale--risk .love-scale__bar span {
  background: linear-gradient(90deg, #d0a03a, #b9821f);
}

.love-scale p {
  margin: 8px 0 0;
}

@keyframes analysisPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(15, 90, 64, 0.12);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 12px rgba(15, 90, 64, 0);
  }
}

.calculator-results h4 {
  margin: 0 0 14px;
  color: var(--green-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1;
}

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

.calculator-card {
  min-height: 0;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(237, 226, 204, 0.9);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: clip;
}

.calculator-card::before {
  left: auto;
  right: 12px;
  bottom: 10px;
  width: 54px;
  height: 54px;
  opacity: 0.09;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%230f5a40' stroke-opacity='.28'%3E%3Ccircle cx='42' cy='42' r='22'/%3E%3Ccircle cx='42' cy='42' r='10'/%3E%3C/g%3E%3Cg fill='%23cb9a36' fill-opacity='.66' font-family='Georgia' font-size='12'%3E%3Ctext x='12' y='20'%3E8%3C/text%3E%3Ctext x='58' y='68'%3E3%3C/text%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

.calculator-card h5 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1rem;
  line-height: 1.3;
}

.calculator-card strong {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 0.95;
  word-break: break-word;
}

.calculator-card__label {
  display: block;
  margin-top: 8px;
}

.calculator-card__meta {
  display: block;
  margin-top: 8px;
}

.calculator-card__meta b {
  color: var(--green-deep);
}

.calculator-card p {
  margin: 8px 0 0;
}

.calculator-card--financial strong {
  font-size: clamp(2rem, 4.6vw, 2.8rem);
  line-height: 1;
}

.calculator-note {
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(203, 154, 54, 0.14);
}

.calculator-note p {
  margin: 0;
}

.love-reading-disclaimer {
  margin-top: 10px !important;
  color: var(--muted) !important;
  font-family: var(--hero-lead-font-family) !important;
  font-size: var(--hero-lead-font-size) !important;
  line-height: var(--hero-lead-line-height) !important;
  font-weight: var(--hero-lead-font-weight) !important;
  letter-spacing: var(--hero-lead-letter-spacing) !important;
}

.calculator-cta {
  width: 100%;
  margin-top: 14px;
}

.daily-forecast-actions-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.daily-forecast-actions-row + .form-message {
  margin-top: 10px;
}

.daily-forecast-actions-row--stack {
  grid-template-columns: 1fr;
}

.forecast-stack {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.forecast-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.forecast-summary-card,
.forecast-key-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(15, 90, 64, 0.1);
  box-shadow: var(--shadow-soft);
}

.forecast-summary-card h5,
.forecast-key-card h6 {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.96rem;
  line-height: 1.3;
}

.forecast-summary-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.46;
}

.forecast-key-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

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

.forecast-day-card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(237, 226, 204, 0.9);
  box-shadow: var(--shadow-soft);
}

.forecast-day-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.forecast-day-card__head h5 {
  margin: 4px 0 0;
  color: var(--green-deep);
  font-size: 1rem;
  line-height: 1.28;
}

.forecast-day-card__head strong {
  flex: 0 0 auto;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.96;
}

.forecast-day-card__date {
  margin: 0;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.forecast-day-card__summary {
  margin: 12px 0 0;
}

.forecast-day-card__meta {
  margin: 10px 0 0;
}

.forecast-day-card__meta b {
  color: var(--green-deep);
}

.forecast-day-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.modal-card--download {
  max-width: 520px;
}

@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));
  }

  html.ios-safe .modal-shell {
    padding: max(2px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom));
  }

  html.ios-safe .modal-card {
    width: 100%;
    max-height: calc(100svh - max(4px, env(safe-area-inset-top)) - max(8px, env(safe-area-inset-bottom)));
    margin-top: 0;
    border-radius: 20px;
  }

  html.ios-safe #daily-forecast-modal.modal-shell {
    padding: 0 4px max(4px, env(safe-area-inset-bottom));
  }

  html.ios-safe #daily-forecast-modal .modal-card--daily {
    max-height: calc(100svh - max(6px, env(safe-area-inset-top)) - max(4px, env(safe-area-inset-bottom)));
    padding: 10px 10px 12px;
    border-radius: 18px;
  }

  html.ios-safe #woman-check-modal.modal-shell {
    padding: 0 4px max(4px, env(safe-area-inset-bottom));
  }

  html.ios-safe #woman-check-modal .modal-card--daily {
    width: calc(100vw - 8px);
    max-height: calc(100svh - max(6px, env(safe-area-inset-top)) - max(4px, env(safe-area-inset-bottom)));
    padding: 10px 10px 12px;
    border-radius: 18px;
  }

  .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;
  }

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

  .life-map-question-list {
    gap: 8px;
  }

  .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;
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 90, 64, 0.08);
  color: var(--green-deep);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(32, 23, 15, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.auth-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.auth-modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(233, 211, 167, 0.52), transparent 38%),
    linear-gradient(180deg, #fffaf2 0%, #f7efe2 100%);
  box-shadow: 0 30px 80px rgba(32, 23, 15, 0.28);
}

.auth-modal__close {
  background: rgba(255, 255, 255, 0.78);
}

.auth-view--hidden,
.auth-form--hidden {
  display: none;
}

.auth-eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font: 800 0.78rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-copy {
  color: var(--muted);
}

.auth-tabs {
  display: flex;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.auth-tab {
  flex: 1;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--green-deep);
  font-weight: 800;
  cursor: pointer;
}

.auth-tab.is-active {
  background: var(--green-deep);
  color: #fffaf2;
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.auth-field {
  display: grid;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 800;
}

.auth-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(15, 90, 64, 0.16);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: 700 1rem/1.2 "Manrope", sans-serif;
}

.auth-submit {
  width: 100%;
}

.auth-link-button {
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.auth-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.auth-message.is-error {
  color: #9f2f24;
}

.cabinet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.cabinet-card {
  padding: 14px;
  border: 1px solid rgba(15, 90, 64, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.cabinet-card strong {
  color: var(--green-deep);
  font-size: 1.08rem;
}

.cabinet-muted {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.cabinet-list {
  margin-top: 18px;
}

.cabinet-list h3 {
  margin-bottom: 8px;
  color: var(--green-deep);
}

.cabinet-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cabinet-list li {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 560px) {
  .auth-modal__panel {
    padding: 24px 18px;
  }

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

.success-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(180deg, #136646 0%, #0f5a40 100%);
  box-shadow: 0 16px 30px rgba(15, 90, 64, 0.18);
}

.admin-page {
  min-height: 100vh;
}

.admin-wrap {
  padding: 40px 0;
}

.admin-back-link {
  margin-top: 22px;
}

.admin-v2-wrap {
  padding: 36px 0 56px;
}

.admin-v2-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.admin-v2-hero h1 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.admin-v2-site-link {
  flex: 0 0 auto;
  min-width: 128px;
  text-align: center;
  text-decoration: none;
}

.admin-v2-auth {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: end;
}

.admin-v2-auth label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 800;
}

.admin-v2-auth input,
.admin-v2-table select {
  width: 100%;
  border: 1px solid rgba(15, 90, 64, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: 700 0.95rem/1.2 "Manrope", sans-serif;
}

.admin-v2-token-hint {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-v2-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.admin-v2-summary article {
  border: 1px solid rgba(15, 90, 64, 0.12);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(61, 45, 22, 0.08);
}

.admin-v2-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-v2-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 2rem;
  line-height: 1;
}

.admin-v2-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.admin-v2-tabs button,
.admin-v2-table button {
  border: 1px solid rgba(15, 90, 64, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-deep);
  font: 800 0.84rem/1 "Manrope", sans-serif;
  cursor: pointer;
}

.admin-v2-tabs button.is-active {
  background: var(--green-deep);
  color: #fffaf2;
}

.admin-v2-extra {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.admin-v2-extra h3 {
  margin: 16px 0 0;
  color: var(--green-deep);
}

.admin-v2-table {
  min-width: 980px;
}

.admin-v2-table td {
  max-width: 220px;
}

.panel-admin {
  border-radius: 24px;
  padding: 18px;
  margin-top: 14px;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.admin-filters {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

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

.busy-slots {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th,
td {
  border-bottom: 1px solid rgba(15, 90, 64, 0.12);
  text-align: left;
  padding: 9px 8px;
  font-size: 14px;
  vertical-align: top;
}

th {
  color: var(--green);
}

@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-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .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;
  }
}

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

.base-report-showcase {
  position: relative;
}

.base-report-showcase__sub {
  max-width: 980px;
}

.base-report-showcase__card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(203, 154, 54, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.18), transparent 42%),
    linear-gradient(140deg, rgba(255, 251, 244, 0.96), rgba(246, 239, 226, 0.92));
  box-shadow: 0 22px 54px rgba(15, 90, 64, 0.08);
}

.base-report-showcase__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.base-report-showcase__stamp {
  font: 700 0.82rem/1 Manrope, sans-serif;
  letter-spacing: 0.32em;
  color: rgba(12, 70, 50, 0.68);
}

.base-report-showcase__card h3 {
  margin: 0;
  font: 600 clamp(2rem, 3vw, 3rem) / 0.95 "Cormorant Garamond", serif;
  color: var(--ink);
}

.base-report-showcase__card p {
  margin: 0;
}

.base-report-showcase__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.base-report-showcase__list li {
  position: relative;
  padding-left: 22px;
}

.base-report-showcase__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.base-report-showcase__button {
  justify-self: flex-start;
}

.modal-card--base-report {
  max-width: min(1080px, 95vw);
}

#base-report-modal {
  overscroll-behavior: contain;
}

#base-report-modal .modal-card--base-report,
#base-report-modal .base-report-results,
#base-report-modal .base-report-chart,
#base-report-modal .base-report-chart__card,
#base-report-modal .base-report-chart__layout,
#base-report-modal .base-report-chart__scheme-wrap,
#base-report-modal .base-report-summary-grid,
#base-report-modal .base-report-nav,
#base-report-modal .base-report-sections,
#base-report-modal .base-report-grid,
#base-report-modal .base-report-card,
#base-report-modal .base-report-cover {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

#base-report-modal .base-report-cover__title,
#base-report-modal .base-report-card p,
#base-report-modal .base-report-section__title,
#base-report-modal .base-report-section__lead,
#base-report-modal .base-report-section__disclaimer,
#base-report-modal .base-report-chart__note,
#base-report-modal .base-report-chart__legend-card,
#base-report-modal .base-report-nav__link {
  overflow-wrap: anywhere;
}

.base-report-results {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.base-report-results--hidden {
  display: none;
}

.base-report-cover {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 249, 240, 0.96), rgba(244, 236, 221, 0.92)),
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.16), transparent 40%);
  border: 1px solid rgba(203, 154, 54, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.base-report-cover__meta {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(23, 21, 18, 0.7);
}

.base-report-cover__title {
  margin: 0;
  font: 600 clamp(2.2rem, 3.8vw, 3.6rem) / 0.94 "Cormorant Garamond", serif;
  color: var(--ink);
}

.base-report-cover__intro {
  margin: 14px 0 0;
}

.base-report-cover--reference .base-report-cover__title {
  order: 1;
}

.base-report-cover--reference .base-report-cover__meta {
  order: 2;
}

.base-report-cover__intro[hidden] {
  display: none;
}

.base-report-chart[hidden] {
  display: none;
}

.base-report-chart__card {
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.98), rgba(245, 238, 224, 0.94)),
    radial-gradient(circle at top right, rgba(203, 154, 54, 0.16), transparent 42%);
  border: 1px solid rgba(203, 154, 54, 0.22);
  box-shadow: 0 18px 42px rgba(15, 90, 64, 0.07);
}

.base-report-chart__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.base-report-chart__eyebrow {
  margin: 0 0 8px;
  font: 700 0.78rem/1 Manrope, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12, 70, 50, 0.56);
}

.base-report-chart__head h5 {
  margin: 0;
  font: 600 clamp(1.9rem, 3vw, 2.8rem) / 0.94 "Cormorant Garamond", serif;
  color: var(--ink);
}

.base-report-chart__note {
  margin: 0;
  color: rgba(23, 21, 18, 0.74);
}

.base-report-chart__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.base-report-chart__scheme-wrap {
  min-width: 0;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(12, 70, 50, 0.08);
}

.base-report-chart__scheme {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto;
  overflow: visible;
}

.base-report-chart__frame {
  fill: none;
  stroke: rgba(12, 70, 50, 0.16);
  stroke-width: 1.8;
}

.base-report-chart__line {
  stroke: rgba(12, 70, 50, 0.18);
  stroke-width: 1.5;
}

.base-report-chart__line--gold {
  stroke: rgba(203, 154, 54, 0.55);
}

.base-report-chart__line--soft {
  stroke: rgba(138, 97, 66, 0.28);
}

.base-report-chart__label {
  fill: rgba(12, 70, 50, 0.7);
  font: 700 10px/1 Manrope, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.base-report-chart__label--edge {
  font-size: 8px;
}

.base-report-chart__node circle {
  stroke-width: 1.2;
}

.base-report-chart__node text {
  fill: var(--green);
  font: 700 18px/1 Manrope, sans-serif;
  text-anchor: middle;
  dominant-baseline: middle;
}

.base-report-chart__node--center circle {
  fill: rgba(255, 244, 218, 0.98);
  stroke: rgba(203, 154, 54, 0.42);
}

.base-report-chart__node--center text {
  font-size: 22px;
}

.base-report-chart__node--main circle {
  fill: rgba(241, 249, 244, 0.98);
  stroke: rgba(12, 70, 50, 0.18);
}

.base-report-chart__node--minor circle {
  fill: rgba(255, 253, 248, 0.98);
  stroke: rgba(12, 70, 50, 0.14);
}

.base-report-chart__node--minor text,
.base-report-chart__node--accent text,
.base-report-chart__node--accent-secondary text {
  font-size: 15px;
}

.base-report-chart__node--micro circle {
  fill: rgba(255, 255, 255, 0.98);
  stroke: rgba(12, 70, 50, 0.12);
}

.base-report-chart__node--micro text {
  font-size: 10px;
}

.base-report-chart__node--lineage circle {
  fill: rgba(255, 247, 230, 0.98);
  stroke: rgba(200, 160, 78, 0.34);
}

.base-report-chart__node--lineage text {
  font-size: 11px;
}

.base-report-chart__node--accent circle {
  fill: rgba(236, 247, 239, 0.98);
  stroke: rgba(12, 70, 50, 0.22);
}

.base-report-chart__node--accent-secondary circle {
  fill: rgba(249, 240, 232, 0.98);
  stroke: rgba(138, 97, 66, 0.24);
}

.base-report-chart__legend {
  display: grid;
  gap: 12px;
}

.base-report-chart__legend-card {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.9);
  border: 1px solid rgba(12, 70, 50, 0.08);
}

.base-report-chart__legend-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

.base-report-chart__legend-label {
  display: block;
  font: 700 0.78rem/1.2 Manrope, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(12, 70, 50, 0.58);
}

.base-report-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.base-report-summary-grid[hidden],
.base-report-nav[hidden] {
  display: none;
}

.base-report-summary-card,
.base-report-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid rgba(12, 70, 50, 0.08);
  box-shadow: 0 14px 36px rgba(15, 90, 64, 0.07);
}

.base-report-summary-card h5,
.base-report-card h5 {
  margin: 0 0 8px;
  font: 700 0.92rem/1.2 Manrope, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(12, 70, 50, 0.9);
}

.base-report-summary-card p,
.base-report-card p {
  margin: 0;
}

.base-report-card p + p {
  margin-top: 12px;
}

.base-report-card--full {
  grid-column: 1 / -1;
}

.base-report-card__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.base-report-card p + .base-report-card__list,
.base-report-card__list + p {
  margin-top: 12px;
}

.base-report-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.base-report-nav__link {
  appearance: none;
  border: 1px solid rgba(12, 70, 50, 0.18);
  background: rgba(255, 251, 245, 0.88);
  color: var(--green);
  border-radius: 999px;
  padding: 12px 16px;
  font: 700 0.82rem/1 Manrope, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.base-report-nav__link:hover,
.base-report-nav__link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(203, 154, 54, 0.5);
  box-shadow: 0 12px 26px rgba(15, 90, 64, 0.08);
}

.base-report-sections {
  display: grid;
  gap: 14px;
}

.base-report-section {
  border-radius: 28px;
  border: 1px solid rgba(203, 154, 54, 0.2);
  background: rgba(255, 251, 245, 0.95);
  box-shadow: 0 18px 42px rgba(15, 90, 64, 0.06);
  overflow: hidden;
}

.base-report-section summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: grid;
  gap: 6px;
}

.base-report-section summary::-webkit-details-marker {
  display: none;
}

.base-report-section__eyebrow {
  font: 700 0.78rem/1 Manrope, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12, 70, 50, 0.56);
}

.base-report-section__title {
  font: 600 clamp(1.5rem, 2.2vw, 2.1rem) / 0.98 "Cormorant Garamond", serif;
  color: var(--ink);
}

.base-report-section__body {
  padding: 0 24px 24px;
  display: grid;
  gap: 18px;
}

.base-report-section__lead {
  margin: 0;
}

.base-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.base-report-section__disclaimer {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(138, 97, 66, 0.08);
  color: rgba(23, 21, 18, 0.84);
}

@media (max-width: 920px) {
  .base-report-chart__head,
  .base-report-chart__layout,
  .base-report-summary-grid,
  .base-report-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .base-report-chart__card,
  .base-report-cover,
  .base-report-section summary,
  .base-report-section__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .base-report-chart__card,
  .base-report-showcase__card {
    border-radius: 24px;
  }

  .base-report-cover {
    border-radius: 24px;
  }

  .base-report-chart__scheme-wrap {
    padding: 10px;
    border-radius: 22px;
  }

  .base-report-chart__legend-card {
    padding: 14px;
  }

  .base-report-nav {
    gap: 8px;
  }

  .base-report-nav__link {
    width: 100%;
    text-align: left;
  }

  .base-report-summary-card,
  .base-report-card {
    padding: 18px;
    border-radius: 20px;
  }
}
