﻿:root {
  --bg: #f4f2fa;
  --card: rgba(255, 255, 255, 0.92);
  --text: #1e1b4b;
  --muted: #5b587c;
  --accent: #4338ca;
  --accent-soft: rgba(67, 56, 202, 0.12);
  --gold: #4f46e5;
  --gold-soft: rgba(79, 70, 229, 0.14);
  --border: rgba(30, 27, 75, 0.12);
  --shadow: 0 10px 28px rgba(30, 27, 75, 0.08);
  --radius: 16px;
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --tab-h: 68px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  overflow-x: clip;
  overflow-wrap: break-word;
}

body {
  padding-bottom: calc(var(--safe-bottom) + 16px);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(127, 212, 203, 0.18), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(168, 132, 72, 0.12), transparent 40%),
    linear-gradient(180deg, #fff 0%, var(--bg) 40%);
  background-attachment: fixed;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  padding-top: max(14px, env(safe-area-inset-top));
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex: 1 1 auto;
}

.brand__mark {
  flex: 0 0 auto;
  height: 48px;
  background: transparent;
}

.brand__mark img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(140px, 36vw);
  object-fit: contain;
  background: transparent;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.brand__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-phone {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3em;
  height: 24px;
  padding: 0 7px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none;
  font-family: var(--font-body, inherit);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: inherit;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lang-switch__btn:hover,
.lang-switch__btn:focus-visible {
  opacity: 1;
  outline: none;
  border-color: rgba(168, 122, 42, 0.45);
}

.lang-switch__btn.is-active {
  opacity: 1;
  border-color: var(--gold, #c9a227);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25);
  background: rgba(201, 162, 39, 0.08);
}

.header-site {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(67, 56, 202, 0.28);
  background: var(--accent-soft);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.header-site--primary {
  font-weight: 800;
}

/* ── Dropdown menu (replaces bottom tab-bar) ── */
.menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 9px 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
  flex-shrink: 0;
}
.menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.menu-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 6px;
  left: auto;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: min(320px, calc(100vw - 12px));
  padding: 8px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(30, 27, 75, 0.18);
  backdrop-filter: blur(14px);
  animation: menu-drop 0.18s ease;
}
@keyframes menu-drop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-dropdown[hidden] { display: none; }

.menu-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.menu-dropdown__btn:active { background: var(--accent-soft); }
.menu-dropdown__btn.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}
.menu-dropdown__ico {
  flex: 0 0 auto;
  width: 22px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1;
}

.screen {
  display: none;
  padding: 18px 16px 24px;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: clip;
}

.screen.is-active {
  display: block;
}

.hero {
  text-align: center;
  padding: 22px 8px 14px;
}

.hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.hero__subtitle {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 12px;
}

.hero__logo {
  width: 112px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(47, 111, 106, 0.2));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6vw, 2rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.hero__lead {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 28em;
  margin: 0 auto 22px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 6px 0 10px;
}

.section-lead {
  margin-bottom: 14px;
}

.sessions-strip {
  margin: 0 0 16px;
  width: 100%;
  height: 112px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #1a1c24;
}

.sessions-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.screen-back {
  margin-bottom: 10px;
}

.label-note {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.feature-card {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  overflow: hidden;
}

.feature-card--evening {
  min-height: 118px;
  padding-top: 18px;
}

.feature-card__waves {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 92px;
  height: 92px;
  margin-left: -46px;
  pointer-events: none;
}

.feature-card__wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(120, 120, 120, 0.5);
  opacity: 0;
  transform: scale(0.72);
  animation: feature-wave-out 4.8s ease-out infinite;
}

.feature-card__wave:nth-child(2) {
  animation-delay: 1.2s;
}

.feature-card__marquee {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin: 0 auto 12px;
  width: 92px;
  height: 92px;
  align-items: center;
  pointer-events: none;
}

.feature-card__marquee-viewport {
  width: 88%;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.feature-card__marquee-track {
  display: flex;
  width: max-content;
  animation: feature-marquee 9s linear infinite;
}

.feature-card__marquee-text {
  flex: 0 0 auto;
  display: inline-block;
  padding: 0 0.65em;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 2.05;
  white-space: nowrap;
  color: rgba(30, 27, 75, 0.9);
  transform: scaleY(1.24);
  transform-origin: center center;
}

.feature-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.feature-card__meta,
.feature-card__price {
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-card__meta {
  color: var(--muted);
  min-width: 0;
  overflow-wrap: anywhere;
}

.feature-card__price {
  color: var(--text);
}

.feature-card--club {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 16px 18px;
  margin: 0 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius, 16px);
  background: #fff;
  cursor: pointer;
}

.feature-card--club .feature-card__body {
  display: block;
}

.meeting-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(96px, 28vw);
  gap: 6px;
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
}

.meeting-collage__item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: rgba(20, 32, 51, 0.06);
  -webkit-tap-highlight-color: transparent;
}

.meeting-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meeting-collage__item--wide {
  grid-column: span 2;
}

.meeting-collage__item--tall {
  grid-row: span 1;
}

.feature-card__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.feature-card--club .feature-card__meta {
  display: block;
}

.feature-card__desc {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

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

.facts-grid--three {
  grid-template-columns: 1fr 1fr;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  gap: 10px 12px;
}
.facts-grid--three .facts-grid__item:first-child {
  grid-column: 1 / -1;
}

.evening-dates {
  margin: 0 0 14px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.evening-dates__eyebrow {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.evening-dates__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  padding: 4px 0 2px;
}

.evening-dates__item {
  flex: 1 1 calc(50% - 10px);
  min-width: 148px;
  max-width: 220px;
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: center;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  overflow: hidden;
}

.evening-dates__item.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.evening-dates__weekday {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2px;
  white-space: nowrap;
}

.evening-dates__day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.evening-dates__month {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.8;
}

.evening-dates__master-hint {
  display: block;
  margin-top: 4px;
  font-size: 0.66rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Seat indicator: separate row below the dates track, 8 squares (filled = taken) */
.evening-dates__seats-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(67, 56, 202, 0.06);
  border: 1px solid rgba(67, 56, 202, 0.16);
}

.evening-dates__seats-bar-label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.evening-dates__seats-summary {
  flex: 0 0 auto;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.evening-dates__seats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4px;
  flex: 1 1 100%;
  min-width: 0;
  margin-top: 2px;
}

.evening-dates__seat {
  flex: 1 1 0;
  min-width: 0;
  max-width: 20px;
  aspect-ratio: 1;
  border-radius: 2px;
  border: 1.5px solid rgba(30, 27, 75, 0.35);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.evening-dates__seat.is-taken {
  background: var(--accent);
  border-color: var(--accent);
}

.evening-dates__seats-summary strong {
  font-family: var(--font-display);
  color: var(--accent);
}

.evening-dates__seats-summary.muted {
  color: var(--muted);
  font-weight: 500;
}

.evening-dates__meta {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.program-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.9rem;
  display: grid;
  gap: 14px;
}

.program-list > li {
  margin: 0;
}

.credentials-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
}

.credentials-list li {
  position: relative;
  margin: 0;
  padding: 8px 12px 8px 28px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  line-height: 1.45;
}

.credentials-list li::before {
  content: '✦';
  position: absolute;
  left: 10px;
  top: 8px;
  font-size: 0.7rem;
  color: var(--accent);
}

.evening-page__program-title {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--accent);
}

.evening-page__program-body {
  display: grid;
  gap: 10px;
}

.evening-page__program-lead {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.evening-page__review-body {
  display: grid;
  gap: 10px;
}
.evening-page__review-body[hidden],
.evening-page__review-videos[hidden] {
  display: none !important;
}

.evening-page__creds {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.evening-page__creds-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.evening-page__creds-toggle::after {
  content: '';
  width: 0.45em;
  height: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.evening-page__creds-toggle.is-open::after {
  transform: rotate(-135deg) translateY(-1px);
}

.evening-page__creds-panel {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.evening-page__creds-panel[hidden] {
  display: none !important;
}

.evening-page__tools-intro {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.evening-page__tools-notes {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.evening-page__tools-block {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
}

.evening-page__tools-label {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.evening-page__tv-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.evening-page__tv-list li {
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.evening-page__tools-highlight {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.evening-page__tools-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text);
}

#evening-tools li::before {
  content: '▸';
}

.evening-page__review-videos {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.evening-page__review-player {
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
}

.evening-page__review-player .person-video__player {
  width: 100%;
  max-width: 320px;
}

.evening-page__program-accent {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-weight: 600;
  line-height: 1.45;
}

.evening-page__program-list-intro {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.evening-page__program-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.evening-page__program-points li {
  position: relative;
  margin: 0;
  padding: 8px 12px 8px 28px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.4;
}

.evening-page__program-points li::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--accent);
}

.evening-page__program-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.4;
}

.evening-page__em {
  font-weight: 700;
  color: var(--text);
}

.evening-page__accent {
  font-weight: 700;
  color: var(--accent);
}

.evening-page__bio {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
}

.evening-page__bio-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.evening-page__bio-p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.form-stack {
  margin-top: 12px;
}

.master-card img.is-logo-photo {
  object-fit: contain;
  padding: 18%;
  background: rgba(255, 255, 255, 0.6);
  max-height: 240px;
}

.facts-grid__item {
  padding: 10px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
}

.facts-grid--three .facts-grid__item {
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  min-width: 0;
  overflow-wrap: break-word;
}
.facts-grid--three .facts-grid__item:first-child {
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 2px;
}

.facts-grid__item dt {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.facts-grid__item dd {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.master-card {
  margin: 0 0 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.master-card__media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 8px;
  max-width: 280px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.35);
}

.master-card__photo,
.master-card__video {
  overflow: hidden;
  border-radius: 12px;
  min-width: 0;
  aspect-ratio: 4 / 5;
  background: #0b0d14;
}

.master-card img,
.master-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 18%;
}

.master-card__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b0d14;
}

.master-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
}

.master-card figcaption strong {
  font-family: var(--font-display);
}

.master-card figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
}

.info-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.choice-fieldset {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.choice-fieldset legend {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 4px;
}

.choice-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
}

.choice-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.choice-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 10px 0 6px;
}
.choice-block__label {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.choice-block .choice-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}
.choice-block .choice-row:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.event-note {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.session-card__event {
  margin-bottom: 10px;
  font-size: 0.82rem;
}

@keyframes feature-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes feature-wave-out {
  0% {
    transform: scale(0.72);
    opacity: 0.72;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card__marquee-track,
  .feature-card__wave {
    animation: none;
  }

  .feature-card__wave {
    opacity: 0.24;
    transform: scale(1);
  }
}

.muted {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(47, 111, 106, 0.25);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(47, 111, 106, 0.35);
  box-shadow: none;
}

.btn--sm {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
}

.sessions-group {
  margin-bottom: 12px;
}

.sessions-group__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
}

.sessions-group__toggle::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  width: 0.45em;
  height: 0.45em;
  margin-top: -0.22em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.sessions-group__toggle.is-open::after {
  transform: rotate(-135deg);
}

.sessions-group__panel {
  padding-top: 10px;
}

.sessions-group__panel[hidden] {
  display: none !important;
}

.session-card,
.booking-card,
.info-card,
.price-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 12px;
}

.requisites-card__line {
  display: grid;
  gap: 2px;
  margin-top: 10px;
  font-size: 0.86rem;
  line-height: 1.4;
}

.requisites-card__line span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group--promo .label-note {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
}

.promo-hint {
  margin: 6px 0 0;
  font-size: 0.84rem;
  line-height: 1.4;
}

.promo-hint.is-ok { color: #2f6f6a; }
.promo-hint.is-bad { color: #b42318; }

.session-card__cat {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.session-card__title,
.booking-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.screen[data-screen="booking"] .section-title,
.screen[data-screen="booking"] #booking-meta,
.screen[data-screen="booking"] #booking-desc {
  overflow-wrap: anywhere;
  max-width: 100%;
}

.screen[data-screen="booking"] #booking-form,
.screen[data-screen="booking"] #booking-form-wrap {
  max-width: 100%;
  min-width: 0;
}

.screen[data-screen="booking"] .check-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.session-card__site-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold-glow);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.session-card__desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.session-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.session-card__row .btn {
  flex: 0 0 auto;
}

.session-card__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.session-card__price {
  font-weight: 800;
  color: var(--text);
}

.session-card__price--duo {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.session-card__price-note {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.feature-card__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.feature-card__price--duo {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
}

.booking-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.booking-card__meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.badge--pending_confirm {
  background: var(--gold-soft);
  color: #7a5e28;
}

.badge--awaiting_payment {
  background: rgba(47, 111, 106, 0.16);
  color: var(--accent);
}

.badge--paid {
  background: rgba(46, 125, 50, 0.14);
  color: #2e7d32;
}

.badge--cancelled {
  background: rgba(120, 120, 120, 0.14);
  color: #666;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  font-size: 16px;
  color: var(--text);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666666' d='M1.1 1.1L6 6l4.9-4.9L12 2.2 6 8.2 0 2.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group textarea {
  min-height: 96px;
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: var(--accent-soft);
  margin: 8px 0 14px;
}

.check-row input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-box__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.success-panel {
  text-align: center;
  padding: 28px 12px;
}

.success-panel__icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.tab-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  min-height: var(--tab-h);
  padding: 8px 6px calc(8px + var(--safe-bottom));
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.tab-bar__btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  border-radius: 12px;
  padding: 6px 2px;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.1;
  text-overflow: ellipsis;
}

.tab-bar__btn.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}

.tab-bar__ico {
  font-size: 1.05rem;
  line-height: 1;
}

.install-card {
  margin-top: 12px;
}

.install-card .btn {
  margin-top: 12px;
}

/* ── Narrow screens: keep header & tab-bar clean ── */
@media (max-width: 400px) {
  .app-header {
    padding: 12px 12px;
    padding-top: max(12px, env(safe-area-inset-top));
    gap: 8px;
  }
  .brand__mark,
  .brand__mark img { height: 42px; }
  .brand__mark img { max-width: min(120px, 32vw); }
  .brand__name { font-size: 1rem; }
  .header-actions { gap: 6px; }
  .header-site { font-size: 0.78rem; }
  .header-phone { font-size: 0.84rem; }
  .lang-switch__btn {
    min-width: 2.1em;
    height: 22px;
    padding: 0 6px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .header-phone { display: none; }
}

@media (max-width: 428px) {
  .header-phone { display: none; }
}

@media (max-width: 360px) {
  .brand__eyebrow { display: none; }
  .brand__name { font-size: 0.96rem; }
  .header-actions { gap: 5px; }
  .header-site { font-size: 0.72rem; }
  .lang-switch { gap: 3px; }
  .lang-switch__btn {
    min-width: 2em;
    height: 20px;
    padding: 0 5px;
    font-size: 0.66rem;
  }
  .tab-bar__btn { font-size: 0.56rem; padding: 6px 1px; }
  .tab-bar__ico { font-size: 0.98rem; }
}

/* Very tall screens: give hero a touch more air */
@media (min-height: 820px) {
  .hero { padding: 28px 8px 16px; }
}

/* Person (Основа) screen */
.person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 18px 16px 22px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.person-card__photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.person-card__photo:active {
  transform: scale(0.98);
}
.person-card__name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text);
}
.person-card__deg {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 6px;
}
.person-card__role {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}
.person-card__lead {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.person-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 8px;
}
.person-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.person-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.person-video {
  text-align: center;
  margin: 14px 0;
}
.person-video .ornament { margin-bottom: 12px; }
.person-video__player {
  display: block;
  width: min(100%, 420px);
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: min(82dvh, 880px);
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: transparent;
  object-fit: contain;
}
.person-video__player.is-landscape {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  max-height: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(16px, env(safe-area-inset-top, 0px))
    14px
    max(16px, env(safe-area-inset-bottom, 0px));
  background: rgba(10, 12, 20, 0.85);
  animation: lightbox-in 0.25s ease;
  box-sizing: border-box;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(94vw, 100%);
  max-height: min(82dvh, 82vh);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation: lightbox-zoom 0.3s ease;
}
.lightbox__close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top, 0px));
  right: max(14px, env(safe-area-inset-right, 0px));
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox--photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  align-content: center;
  justify-items: center;
  gap: 10px 16px;
  animation: none;
  background: rgba(10, 12, 20, 0);
  transition: background 0.35s ease;
}

.lightbox--photos.is-open {
  background: rgba(10, 12, 20, 0.85);
}

.lightbox--photos .lightbox__img {
  animation: none;
  transform: scale(0.86);
  opacity: 0;
  filter: blur(8px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, filter 0.4s ease;
}

.lightbox--photos.is-open .lightbox__img {
  transform: none;
  opacity: 1;
  filter: none;
}

.lightbox--photos .lightbox__img.is-fresh {
  animation: lightbox-photo-in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightbox-photo-in {
  from { opacity: 0; transform: scale(0.94); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}

.lightbox--photos .lightbox__img {
  grid-column: 1 / -1;
  grid-row: 2;
  max-height: min(62dvh, 62vh);
}
.lightbox--photos .lightbox__close {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  position: relative;
  top: auto;
  right: auto;
}
.lightbox__nav {
  position: relative;
  top: auto;
  transform: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox__nav--prev {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
}
.lightbox__nav--next {
  grid-column: 2;
  grid-row: 3;
  justify-self: start;
}
.lightbox__counter {
  grid-column: 1 / -1;
  grid-row: 4;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
}
@keyframes lightbox-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightbox-zoom { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.map-card {
  text-align: center;
  margin-bottom: 14px;
}
.ornament {
  display: flex;
  justify-content: center;
  margin: 0 0 12px;
}
.ornament__svg {
  width: min(260px, 72vw);
  height: auto;
  display: block;
}
.map-card__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.map-card__hint {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-promo {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  pointer-events: none;
}
.home-promo.is-open {
  display: flex !important;
  pointer-events: auto;
}
.home-promo[hidden] {
  display: none !important;
}
.home-promo__backdrop,
.home-promo__dialog,
.home-promo__close,
.home-promo__cta {
  pointer-events: auto;
}
.home-promo__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(560px, 100%);
  transform: translateX(-50%);
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(18, 16, 36, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.home-promo.is-open .home-promo__backdrop {
  opacity: 1;
}
.home-promo__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(536px, calc(100% - 8px));
  height: auto;
  max-height: min(86dvh, 100%);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(232, 205, 134, 0.38);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(247, 239, 220, 0.96));
  box-shadow: 0 18px 48px rgba(8, 10, 28, 0.28);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}
.home-promo--poster .home-promo__dialog {
  width: min(900px, calc(100% - 8px));
  max-height: calc(100dvh - 16px);
  overflow: auto;
  background: #f4ead4;
}
.home-promo--poster .home-promo__photo {
  flex: 0 0 auto;
  min-height: 0;
  display: block;
  background: #f4ead4;
}
.home-promo--poster .home-promo__photo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.home-promo--poster .home-promo__body {
  position: sticky;
  bottom: 0;
  z-index: 1;
  flex: 0 0 auto;
  padding: 8px 10px 10px;
  background: linear-gradient(180deg, rgba(244, 234, 212, 0), #f4ead4 28%);
}
.home-promo--poster .home-promo__cta {
  text-decoration: none;
}
.home-promo.is-open .home-promo__dialog {
  transform: none;
  opacity: 1;
}
.home-promo__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1408;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.home-promo__photo {
  flex: 0 0 auto;
  min-height: 0;
  background: transparent;
}
.home-promo__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}
.home-promo__body {
  flex: 0 0 auto;
  overflow: visible;
  padding: 12px 14px 14px;
  min-width: 0;
}
.home-promo__banner {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8cd86, #c9a24a);
  color: #1a1408;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}
.home-promo__eyebrow {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6a28;
}
.home-promo__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1408;
  overflow-wrap: anywhere;
}
.home-promo__theme {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: #4338ca;
  overflow-wrap: anywhere;
}
.home-promo__meta {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5c5344;
  overflow-wrap: anywhere;
}
.home-promo__text {
  margin: 0 0 12px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #3b3428;
  overflow-wrap: anywhere;
}
.home-promo__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8cd86, #c9a24a);
  color: #1a1408;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .home-promo__backdrop,
  .home-promo__dialog {
    transition: none;
  }
}
