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

* {
  box-sizing: border-box;
}

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

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

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

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

body {
  position: relative;
}

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

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

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

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

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

html.ios-safe,
html.ios-safe body {
  background: #f8f3eb;
  overflow-x: hidden;
}

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

html.ios-safe .hero::before,
html.ios-safe .hero::after,
html.ios-safe .heroDecor,
html.ios-safe .hero-visual {
  display: none;
}

html.ios-safe .menu-toggle,
html.ios-safe .site-header--scrolled .site-header__inner {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

html.ios-safe .hero,
html.ios-safe .hero-layout,
html.ios-safe .hero-copy {
  isolation: auto;
  transform: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: clamp(18px, 2.6vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.process-showcase {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq details[open] .faq-answer {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-message {
  margin: 0;
}

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

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

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

.contact-method {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .support-fab__label {
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .calculator-form {
    gap: 10px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .process-showcase__layout {
    gap: 14px;
  }

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

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

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

  .sub {
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .decorPen,
  .decorCoffee {
    display: none;
  }

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

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

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

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

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

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

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

  .decorPen,
  .decorCoffee {
    display: none;
  }

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

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

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

  .decorSparkles {
    opacity: 0.24;
  }
}

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

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

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

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

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

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

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

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

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

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

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

  .menu-toggle {
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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