:root {
  --bg-dark: #f0f0f0;
  --bg-dark-soft: #e8e8e8;
  --bg-surface: #ffffff;
  --accent: #006fff;
  --accent-hover: #0060e6;
  --raspberry: #006fff;
  --raspberry-light: #0060e6;
  --text-white: #1a1a1a;
  --text-muted: rgba(0, 0, 0, 0.55);
  --border: rgba(0, 0, 0, 0.08);
  --text-on-dark: #f5f5f5;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-white);
  background: var(--bg-dark);
}

/* Страницы программ: футер внизу экрана при коротком контенте */
.page-program {
  min-height: 100vh;
  min-height: 100dvh; /* мобильные браузеры с динамическим UI */
  display: flex;
  flex-direction: column;
}
.page-program .hero,
.page-program .hero--program-full {
  flex: 1 0 auto;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden; /* параллакс видео не вылезает под футер */
}
.page-program .footer {
  flex-shrink: 0;
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================
   LOADER
   ========================================= */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-top-color: var(--accent);
  animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

body.is-loading {
  overflow: hidden;
}

/* =========================================
   HEADER
   ========================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(240, 240, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 72px;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.01em;
  transition: opacity var(--transition);
}

.header__logo:hover {
  opacity: 0.75;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.header__link:hover {
  color: var(--accent);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-white);
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.header__burger:hover {
  background: rgba(0, 0, 0, 0.06);
}

.header__burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 0.5rem 1.35rem;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.header__cta:hover {
  background: var(--accent);
  color: #fff;
}

/* =========================================
   HERO
   ========================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240, 240, 240, 0.55) 0%,
    rgba(240, 240, 240, 0.7) 50%,
    #f0f0f0 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 clamp(1.25rem, 8vw, 6rem) clamp(3rem, 8vh, 6rem);
}

/* Hero entrance: animate in after load */
.hero .hero__title,
.hero .hero__sub,
.hero__content > .btn {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .hero__title { transition-delay: 0.1s; }
.hero .hero__sub { transition-delay: 0.28s; }
.hero__content > .btn { transition-delay: 0.45s; }

.hero--ready .hero__title,
.hero--ready .hero__sub,
.hero--ready .hero__content > .btn {
  opacity: 1;
  transform: translateY(0);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.hero--multi .hero__title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  white-space: nowrap;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* =========================================
   CTA BUTTON
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  background: #006fff;
  border: none;
  border-radius: 100px;
  padding: 0.9rem 2.25rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 111, 255, 0.4);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================
   INTRO
   ========================================= */

.intro {
  position: relative;
  background: var(--bg-dark);
  padding: clamp(5rem, 12vh, 9rem) 0;
  text-align: center;
  overflow: hidden;
}

.intro__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 1.75rem;
}

.intro__title .accent {
  color: var(--accent);
}

.intro__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.intro__meta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.intro__divider {
  border: none;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 2.5rem;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro__divider.visible {
  width: 80px;
}

.intro__price-wrap {
  position: relative;
  display: inline-block;
}

.intro__price-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 111, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.intro__price {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 40px rgba(0, 111, 255, 0.2);
}

/* =========================================
   SCROLL REVEAL
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Кнопка с .reveal: hover не перекрывать */
.btn.reveal.visible:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 111, 255, 0.4);
}

/* =========================================
   REASONS (4 причины)
   ========================================= */

.reasons {
  background: linear-gradient(to bottom, var(--bg-dark) 0px, var(--bg-dark-soft) clamp(80px, 15vh, 140px));
  padding: clamp(2rem, 4vh, 3.5rem) 0;
}

.reasons__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  line-height: 1.2;
  margin: 0 auto clamp(2rem, 4vh, 3rem);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.reason {
  display: flex;
  flex-direction: column;
}

/* Поочерёдное появление карточек при скролле */
.reason.reveal:nth-child(1) { transition-delay: 0s; }
.reason.reveal:nth-child(2) { transition-delay: 0.08s; }
.reason.reveal:nth-child(3) { transition-delay: 0.16s; }
.reason.reveal:nth-child(4) { transition-delay: 0.24s; }

.reason__media {
  position: relative;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 12px;
}

.reason__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.reason:hover .reason__media::after {
  opacity: 0.25;
}

.reason__media-num {
  position: absolute;
  left: 0.75rem;
  bottom: 0.5rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.reason__media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  animation: reason-photo-loop 5s ease-in-out infinite;
}

.reason:nth-child(1) .reason__media img { animation-delay: 0s; }
.reason:nth-child(2) .reason__media img { animation-delay: 2s; }
.reason:nth-child(3) .reason__media img { animation-delay: 4s; }
.reason:nth-child(4) .reason__media img { animation-delay: 6s; }

.reason:hover .reason__media img {
  transform: scale(1.06);
  animation-play-state: paused;
}

@keyframes reason-photo-loop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.reason__content {
  padding: 0;
}

.reason__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.reason__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================
   INFO (Важная информация)
   ========================================= */

.info {
  background: linear-gradient(to bottom, var(--bg-dark-soft) 0px, var(--bg-dark) clamp(80px, 18vh, 160px));
  padding: clamp(3rem, 6vh, 5rem) 0;
}

.info__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 auto clamp(2rem, 4vh, 3rem);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.info__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.info__item {
  padding: 1.5rem 1.35rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.info__item:hover {
  transform: translateY(-4px) scale(1.01);
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 111, 255, 0.14), 0 0 0 1px var(--border);
}

.info__term {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.info__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =========================================
   RETREAT
   ========================================= */

.retreat {
  background: linear-gradient(to bottom, var(--bg-dark) 0px, var(--bg-dark-soft) clamp(80px, 12vh, 120px));
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.retreat__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 auto 1rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.retreat__lead {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 auto clamp(3.5rem, 7vh, 6rem);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* Audience — для кого */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.6rem, 1vw, 0.85rem);
  max-width: 1200px;
  margin: 0 auto clamp(4rem, 8vh, 6rem);
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.audience__card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.5rem 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.audience__card:hover {
  transform: translateY(-6px) scale(1.02);
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 111, 255, 0.18), 0 0 0 1px var(--border);
}

.audience__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.audience__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* «6 дней ретрита» */
.retreat__plan-hero {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.retreat__big-six {
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 0.85;
  color: var(--accent);
  text-shadow:
    0 0 60px rgba(0, 111, 255, 0.25),
    0 0 120px rgba(0, 111, 255, 0.1);
}

.retreat__plan-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.retreat__plan-days {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.retreat__plan-accent {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Timeline — glass cards */
.timeline {
  max-width: 1200px;
  margin: 0 auto clamp(4rem, 8vh, 6rem);
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.timeline__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.6rem, 1vw, 0.85rem);
}

.timeline__card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.25rem 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.timeline__card:hover {
  transform: translateY(-6px) scale(1.01);
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 111, 255, 0.18), 0 0 0 1px var(--border);
}

.timeline__watermark {
  position: absolute;
  top: -0.15rem;
  right: 0.35rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
}

.timeline__name {
  position: relative;
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}

.timeline__card p {
  position: relative;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Включено / Не включено */
.retreat__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.6rem, 1vw, 0.85rem);
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.retreat__col {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 2rem 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
}

.retreat__col--muted {
  border-top-color: var(--border);
}

.retreat__col-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.retreat__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.retreat__col-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.retreat__col-list li:last-child {
  margin-bottom: 0;
}

.retreat__col-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.retreat__col-list--cross li::before {
  content: "—";
  color: var(--text-muted);
  font-weight: 400;
}

/* =========================================
   DATES (Даты туров)
   ========================================= */

.dates {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) 0;
  overflow: hidden;
}

.dates__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dates__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-dark-soft) 0%,
    var(--bg-dark-soft) clamp(40px, 8vh, 80px),
    rgba(240, 240, 240, 0.72) 30%,
    rgba(240, 240, 240, 0.68) 75%,
    var(--bg-dark) 100%
  );
}

.dates__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.dates__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.dates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.6rem, 1vw, 0.85rem);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.dates__card {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.dates__card:hover {
  transform: translateY(-6px) scale(1.02);
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 111, 255, 0.18), 0 0 0 1px var(--border);
}

.dates__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.dates__format {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.dates__period {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.dates__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.dates__more {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}

.dates__more:hover {
  color: var(--accent-hover);
}

.dates__cta {
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.dates__cta .btn {
  width: 100%;
}

/* =========================================
   AUTHOR (Кто сопровождает тур)
   ========================================= */

.author {
  background: linear-gradient(to bottom, var(--bg-dark) 0px, var(--bg-dark-soft) clamp(80px, 12vh, 120px));
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.author__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.author__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.author__card {
  display: flex;
  align-items: stretch;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.author__photo {
  flex: 0 0 38%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.author__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: reason-photo-loop 5s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.author__card:hover .author__photo img {
  transform: scale(1.06);
  animation-play-state: paused;
}

.author__body {
  flex: 1;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.author__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.author__bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.author__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.author__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.85rem;
}

.author__list li:last-child {
  margin-bottom: 0;
}

.author__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.author__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.author__hl {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author__hl-accent {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.author__hl-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================
   FAQ
   ========================================= */

.faq {
  padding: clamp(4rem, 10vh, 6rem) 0;
  background: linear-gradient(to bottom, var(--bg-dark-soft) 0px, var(--bg-dark) clamp(80px, 15vh, 140px), var(--bg-dark-soft) 100%);
}

.faq__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.faq__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq__item {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  background: var(--bg-surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.faq__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-hover));
  border-radius: 16px 0 0 16px;
}

.faq__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(0, 111, 255, 0.15);
}

.faq__q {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 0.75rem;
  line-height: 1.5;
  padding-left: 0.25rem;
  letter-spacing: 0.01em;
}

.faq__a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  padding-left: 0.25rem;
}

.faq__a p {
  margin: 0 0 0.75rem;
}

.faq__a p:last-of-type {
  margin-bottom: 0.5rem;
}

.faq__a ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.faq__a ul:last-child {
  margin-bottom: 0;
}

.faq__a li {
  margin-bottom: 0.4rem;
  position: relative;
}

.faq__a li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.faq__a li:last-child {
  margin-bottom: 0;
}

/* =========================================
   CTA FINAL (Остались вопросы)
   ========================================= */

.cta-final {
  background: linear-gradient(to bottom, var(--bg-dark-soft) 0px, var(--bg-dark) clamp(80px, 12vh, 120px));
  padding: clamp(5rem, 12vh, 9rem) 0;
  text-align: center;
}

.cta-final__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.cta-final__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cta-final__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.cta-final__btn {
  margin-bottom: 2.5rem;
  padding: 1.1rem 3rem;
  font-size: 1rem;
}

.cta-final__contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.8;
  margin: 0 0 0.5rem;
}

.cta-final__contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-final__contacts a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.cta-final__contacts a:hover {
  color: var(--text-white);
}

.cta-final__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  position: relative;
  z-index: 10;
  background: #f0f0f0;
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  opacity: 0.7;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: flex-end;
}

.footer__links a {
  color: var(--accent);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent-hover);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.85;
  margin: 0;
}

.footer__offer {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 500;
  transition: opacity var(--transition), color var(--transition);
}

.footer__offer:hover {
  opacity: 1;
  color: var(--accent-hover);
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .hero__content {
    max-width: 600px;
    padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(2.5rem, 6vh, 5rem);
  }

  .audience {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

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

@media (max-width: 768px) {
  .header__inner {
    height: 60px;
  }

  .header__logo {
    font-size: 1.1rem;
  }

  .header__burger {
    display: flex;
    order: 1;
  }

  .header__nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    background: rgba(240, 240, 240, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .header--open .header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__link {
    font-size: 1rem;
    padding: 0.85rem clamp(1.25rem, 4vw, 2rem);
    color: var(--text-white);
    border-bottom: 1px solid var(--border);
  }

  .header__link:last-child {
    border-bottom: none;
  }

  .header__link:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--accent);
  }

  .hero {
    min-height: 100svh;
    justify-content: center;
  }

  .page-program .hero,
  .page-program .hero--program-full {
    min-height: 0 !important;
    height: auto !important;
  }

  .hero__content {
    padding: 0 1.5rem 2.5rem;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero--multi .hero__title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  .hero__sub {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 32ch;
  }

  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .intro {
    padding: 4rem 0;
  }

  .intro__desc {
    margin-bottom: 1.75rem;
  }

  .intro__meta {
    margin-bottom: 1.75rem;
  }

  .intro__divider {
    margin-bottom: 1.75rem;
  }

  .intro__price-wrap::before {
    width: 140px;
    height: 140px;
  }

  .reasons {
    padding: 2.5rem 0;
  }

  .reasons__title {
    margin-bottom: 1.75rem;
  }

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

  .info {
    padding: 2.5rem 0;
  }

  .info__title {
    margin-bottom: 1.75rem;
  }

  .info__inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .info__item {
    padding: 1.35rem 1.25rem;
  }

  .retreat {
    padding: 3.5rem 0;
  }

  .timeline__watermark {
    font-size: 4.5rem;
  }

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

  .dates {
    padding: 3.5rem 0;
  }

  .dates__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .author {
    padding: 3.5rem 0;
  }

  .author__card {
    flex-direction: column;
  }

  .author__photo {
    flex: none;
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .author__body {
    padding: 2rem 1.5rem 2.25rem;
  }

  .cta-final {
    padding: 3.5rem 0;
  }

  .cta-final__btn {
    width: 100%;
    max-width: 320px;
  }

  .cta-final__contacts {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-final__dot {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer__legal {
    align-items: center;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .header__inner {
    padding: 0 1rem;
  }

  .header__logo {
    font-size: 1rem;
  }

  .header__link {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .header__cta {
    font-size: 0.8rem;
    padding: 0.45rem 1.1rem;
  }

  .hero__content {
    padding: 0 1rem 2rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero--multi .hero__title {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
    white-space: nowrap;
  }

  @media (max-width: 380px) {
    .hero--multi .hero__title {
      white-space: normal;
    }
  }

  .hero__sub {
    font-size: 0.9rem;
  }

  .intro {
    padding: 3rem 0;
  }

  .intro__inner {
    padding: 0 1rem;
  }

  .intro__title {
    font-size: 1.5rem;
  }

  .reasons {
    padding: 2rem 0;
  }

  .reasons__title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }

  .reasons__grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .reason__title {
    font-size: 1rem;
  }

  .info {
    padding: 2rem 0;
  }

  .info__title {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
  }

  .info__inner {
    padding: 0 1rem;
    gap: 0.9rem;
  }

  .info__item {
    padding: 1.2rem 1rem;
  }

  .info__desc {
    font-size: 0.9rem;
  }

  .retreat {
    padding: 2.5rem 0;
  }

  .retreat__heading {
    font-size: 1.3rem;
  }

  .retreat__big-six {
    font-size: 5.5rem;
  }

  .retreat__plan-days {
    font-size: 1.4rem;
  }

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

  .timeline__card {
    padding: 1.75rem 1rem 1.4rem;
  }

  .timeline__watermark {
    font-size: 3.5rem;
  }

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

  .retreat__col {
    padding: 1.75rem 1.25rem;
  }

  .dates {
    padding: 2.5rem 0;
  }

  .dates__heading {
    font-size: 1.3rem;
  }

  .dates__card {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .author {
    padding: 2.5rem 0;
  }

  .author__heading {
    font-size: 1.3rem;
  }

  .author__photo {
    aspect-ratio: 3 / 2;
  }

  .author__body {
    padding: 1.75rem 1.25rem 2rem;
  }

  .cta-final {
    padding: 2.5rem 0;
  }

  .cta-final__heading {
    font-size: 1.75rem;
  }
}

@media (min-width: 1600px) {
  .hero__content {
    max-width: 800px;
    padding-left: 8%;
    padding-bottom: 7vh;
  }

  .hero__title {
    font-size: 6.5rem;
  }

  .hero__sub {
    font-size: 1.25rem;
  }
}

/* =========================================
   PROGRAM PAGE (Программа туров)
   ========================================= */

.hero--program {
  min-height: 50vh;
}

/* Hero с программой внутри (program-santorini) */
.hero--program-full {
  min-height: 100vh;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: calc(72px + clamp(2rem, 6vh, 4rem)) 0 clamp(2rem, 6vh, 4rem);
  overflow: visible;
}

/* Оверлей через псевдоэлемент — всегда на всю высоту hero до футера */
.hero--program-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.88) 40%,
    #f0f0f0 100%
  );
  pointer-events: none;
}

/* Видео под оверлеем на всю высоту hero */
.hero--program-full .hero__bg {
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

/* Скрыть div-оверлей на программах — используем ::before */
.hero--program-full .hero__overlay--strong {
  display: none;
}

.hero__content--program {
  max-width: 1400px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
}

.hero-program__lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0.75rem 0 0;
  max-width: 540px;
}

.hero-program {
  margin-top: 1.5rem;
}

.hero-program__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-program__day {
  display: flex;
  gap: 1rem;
  min-width: 0;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), border-color var(--transition);
}

.hero-program__day:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
}

.hero-program__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--accent);
  border-radius: 50%;
  line-height: 1;
}

.hero-program__body {
  min-width: 0;
}

.hero-program__body p {
  font-size: 0.875rem;
  color: var(--text-white);
  line-height: 1.6;
  margin: 0;
}

.hero-program__body p + p {
  margin-top: 0.5rem;
}

.hero-program__day-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
  margin: 0 0 0.5rem;
}

.hero-program__section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 1rem 0 0.5rem;
}

.hero-program__day-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-white);
  line-height: 1.6;
}

.hero-program__day-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.hero-program__day-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 500;
}

.hero-program__price {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.hero-program__price-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.hero-program__price-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  line-height: 1.2;
}

.hero-program__price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.hero-program__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.hero-program__group {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.hero-program__group-term {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.hero-program__group-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.hero-program__group-desc:last-child {
  margin-bottom: 0;
}

.hero-program__actions .btn {
  margin: 0;
}

.hero-program__back {
  font-size: 0.9rem;
  color: var(--accent);
  transition: color var(--transition);
}

.hero-program__back:hover {
  color: var(--accent-hover);
}

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

.hero-program__included {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.hero-program__included-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.hero-program__included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-program__included-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.hero-program__included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 900px) {
  .hero-program__grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-program__grid,
  .hero-program__grid--three {
    grid-template-columns: 1fr;
  }
}

/* Страницы программ: адаптивность */
@media (max-width: 768px) {
  .hero--program-full {
    padding-top: calc(60px + clamp(2rem, 6vh, 4rem));
  }
  .page-program .hero,
  .page-program .hero--program-full {
    min-height: 0 !important;
    height: auto !important;
  }

  .hero__content--program {
    text-align: left;
    padding: 0 clamp(1.25rem, 4vw, 2rem) clamp(2rem, 5vh, 3rem);
  }

  .hero--program-full .hero__title {
    font-size: clamp(2.25rem, 8vw, 3.25rem);
  }

  .hero--program-full .hero__sub {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-program__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-program__actions .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .hero__content--program {
    padding: 0 1rem clamp(1.5rem, 4vh, 2rem);
  }

  .hero-program__day {
    padding: 1rem 1rem 1rem 0.85rem;
  }

  .hero-program__num {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .hero-program__body p {
    font-size: 0.8125rem;
  }

  .hero-program__lead {
    font-size: 0.85rem;
  }

  .hero-program__included-title {
    font-size: 0.75rem;
  }

  .hero-program__included-list {
    font-size: 0.8rem;
  }
}

.program {
  padding: clamp(3rem, 8vh, 5rem) 0 clamp(4rem, 10vh, 6rem);
}

.program__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.program__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--text-white);
}

.program__section {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.program__section:last-of-type {
  border-bottom: none;
}

.program__heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.program__meta {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.program__days {
  margin-bottom: 1.5rem;
}

.program__day {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.program__day:last-child {
  border-bottom: none;
}

.program__day-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.program__day-name {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.program__day p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.program__day p + p {
  margin-top: 0.6rem;
}

.program__lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.program__lead + .program__lead {
  margin-top: 0.75rem;
}

.program__included {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.program__included-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.program__included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.program__included-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
}

.program__included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.program__placeholder {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.program__cta {
  display: inline-block;
  margin-top: 1.5rem;
}

.program__back {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.program__back a {
  color: var(--accent);
  transition: color var(--transition);
}

.program__back a:hover {
  color: var(--accent-hover);
}
