: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;
  --shadow: 0 18px 42px rgba(68, 46, 18, 0.12);
  --shadow-soft: 0 12px 28px rgba(68, 46, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
}

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::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
  border-radius: 999px;
  opacity: 0.5;
}

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

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

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

body {
  position: relative;
}

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

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

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

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

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

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

.site-header {
  position: relative;
  z-index: 30;
  padding-top: 18px;
  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%;
}

.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-size: 0.8rem;
  letter-spacing: 0.02em;
  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: 10px 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;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 2px;
  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: 14px 0 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 {
  color: var(--muted);
}

.hero-lead {
  margin: 14px 0 0;
  max-width: calc(100% - 8px);
  font-size: 0.98rem;
  line-height: 1.52;
  text-wrap: pretty;
}

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

.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: 700;
  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: 1rem;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}

.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.34;
  z-index: 0;
}

.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.62rem;
  line-height: 1;
}

.metrics span:last-child {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  line-height: 1.34;
}

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

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

  .site-header__inner {
    gap: 12px;
  }

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

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

  .site-role {
    font-size: 0.72rem;
  }

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

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

  .hero {
    padding: 6px 0 0;
  }

  .hero-layout {
    gap: 8px;
  }

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

  .hero-topline {
    margin-top: 6px;
  }

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

  h1 {
    margin-top: 18px;
    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;
    font-size: 0.9rem;
    line-height: 1.42;
  }

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

  .btn-primary--hero {
    min-height: 52px;
    border-radius: 16px;
    font-size: 0.92rem;
    padding: 12px 18px;
  }

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

  .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: 12px 12px 10px;
    border-radius: 18px;
  }

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

  .metrics strong {
    font-size: 1.4rem;
  }

  .metrics span:last-child {
    margin-top: 4px;
    font-size: 0.74rem;
    line-height: 1.22;
  }
}

.section {
  padding: 22px 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 {
  display: grid;
  justify-items: start;
}

.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 10vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

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

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

.sub {
  margin: 18px 0 0;
  max-width: 32rem;
  font-size: 1.03rem;
  line-height: 1.62;
}

.cards {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.card {
  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-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
}

.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 {
  font-size: 1.72rem;
  line-height: 1.02;
  font-weight: 800;
}

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

.card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  line-height: 1.55;
}

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

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

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

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

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

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

blockquote p {
  font-size: 1rem;
  line-height: 1.62;
}

cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--green-deep);
  font-weight: 700;
}

.faq details {
  border-radius: 20px;
  padding: 16px 18px;
}

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

.faq summary {
  cursor: pointer;
  color: var(--green-deep);
  font-weight: 800;
}

.booking {
  margin: 26px auto 14px;
  border-radius: 30px;
  padding: 22px 18px;
  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 h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 10vw, 4rem);
  line-height: 0.94;
}

.booking-stepper {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.booking-picker {
  border-radius: 22px;
  padding: 16px;
  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: 4px;
  margin-bottom: 14px;
}

.picker-head h3 {
  color: var(--green-deep);
  font-size: 1.08rem;
}

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

.slot-option {
  border: 1px solid rgba(15, 90, 64, 0.12);
  background: #fffdf9;
  color: var(--text);
  border-radius: 16px;
  padding: 12px 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.slot-option:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 90, 64, 0.28);
}

.slot-option.is-selected {
  background: linear-gradient(180deg, #136646 0%, #0f5a40 100%);
  border-color: transparent;
  color: #fff;
}

.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: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: inherit;
}

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

.booking-launch {
  width: 100%;
}

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

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

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

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

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

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

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

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

.form-message {
  margin: 0;
  color: var(--green);
  font-weight: 600;
}

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

.money-reading-hint {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.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 {
  padding: 18px 0 34px;
  color: var(--muted);
  text-align: center;
}

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

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

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

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

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 12, 0.42);
  backdrop-filter: blur(8px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.calculator-form small {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.daily-forecast-intro {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.52;
}

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

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

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

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

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

.daily-forecast-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

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

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

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

.daily-question-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.52;
}

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

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

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

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

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

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

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

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

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

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

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

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

.love-scale p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

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

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

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

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

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

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

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

.calculator-card__label {
  display: block;
  margin-top: 8px;
  color: var(--green-deep);
  font-size: 0.84rem;
  line-height: 1.42;
}

.calculator-card__meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

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

.calculator-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

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

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

.calculator-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.love-reading-disclaimer {
  margin-top: 10px !important;
  color: var(--green-deep) !important;
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
}

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

@media (max-width: 640px) {
  .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: 20px;
  }

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

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

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

  .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;
    font-size: 0.8rem;
    line-height: 1.34;
  }

  .calculator-card__meta {
    margin-top: 6px;
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .calculator-card p {
    font-size: 0.85rem;
    line-height: 1.36;
  }

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

  .calculator-note p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .love-reading-disclaimer {
    margin-top: 8px !important;
    font-size: 0.76rem !important;
    line-height: 1.36 !important;
  }

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

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

  .daily-forecast-hero {
    padding: 14px;
    border-radius: 18px;
  }

  .daily-forecast-number {
    font-size: 1.8rem;
  }

  .daily-forecast-intro {
    font-size: 0.88rem;
    line-height: 1.42;
  }

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

  .daily-forecast-panel {
    padding: 14px;
    border-radius: 18px;
  }

  .daily-forecast-panel h5 {
    font-size: 0.94rem;
  }

  .daily-forecast-list {
    margin-top: 8px;
    padding-left: 16px;
    font-size: 0.86rem;
    line-height: 1.4;
  }

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

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

  .daily-question-text {
    margin-top: 8px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .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;
    font-size: 0.84rem;
    line-height: 1.4;
  }

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

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

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

  .love-scale p {
    font-size: 0.8rem;
    line-height: 1.36;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .site-header__inner {
    align-items: center;
    padding: 8px 0 10px;
    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;
  }

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

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

  .site-role {
    font-size: 0.92rem;
  }

  .site-header--scrolled .site-role {
    color: var(--green-deep);
    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: 40px;
  }

  .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;
    font-size: 1.14rem;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    width: min(920px, calc(100vw - 56px));
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }

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

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

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

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