:root {
  --bg-dark: #0f0f0f;
  --bg-dark-soft: #1a1a1a;
  --bg-surface: #161616;
  --raspberry: #c2185b;
  --raspberry-light: #e91e63;
  --text-white: #f5f5f5;
  --text-muted: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --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;
}

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

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

/* =========================================
   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(15, 15, 15, 0.92);
  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__cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 0.5rem 1.35rem;
  transition: border-color var(--transition), background var(--transition);
}

.header__cta:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

/* =========================================
   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;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(15, 15, 15, 1) 100%
  );
}

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

.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__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: var(--text-white);
  background: var(--raspberry);
  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(--raspberry-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194, 24, 91, 0.3);
}

.btn:focus-visible {
  outline: 2px solid var(--raspberry-light);
  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(--raspberry);
}

.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(--raspberry), 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(194, 24, 91, 0.15) 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(--raspberry);
  line-height: 1;
  text-shadow: 0 0 40px rgba(194, 24, 91, 0.25);
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.reasons {
  background: linear-gradient(to bottom, var(--bg-dark) 0px, #2d151c 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__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;
}

.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: var(--text-white);
  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;
}

.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, #2d151c 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: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.info__item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 8px 30px rgba(194, 24, 91, 0.08),
    0 0 0 1px rgba(194, 24, 91, 0.1);
}

.info__term {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--raspberry);
  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: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-top: 3px solid var(--raspberry);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.audience__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 12px 40px rgba(194, 24, 91, 0.12),
    0 0 0 1px rgba(194, 24, 91, 0.15);
}

.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(--raspberry);
  text-shadow:
    0 0 60px rgba(194, 24, 91, 0.35),
    0 0 120px rgba(194, 24, 91, 0.15);
}

.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: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-top: 3px solid var(--raspberry);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.timeline__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 12px 40px rgba(194, 24, 91, 0.12),
    0 0 0 1px rgba(194, 24, 91, 0.15);
}

.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(255, 255, 255, 0.035);
  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: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-top: 3px solid var(--raspberry);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.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(--raspberry);
  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%, rgba(15, 15, 15, 0.45) 20%, rgba(15, 15, 15, 0.45) 80%, var(--bg-dark) 100%),
    rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
}

.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 {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.dates__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 40px rgba(194, 24, 91, 0.15),
    0 0 0 1px rgba(194, 24, 91, 0.2);
}

.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__period {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--raspberry);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.dates__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}

.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: rgba(255, 255, 255, 0.025);
  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;
}

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

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

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

/* =========================================
   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(--raspberry);
  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__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 {
  background: var(--bg-dark);
  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-muted);
  opacity: 0.5;
}

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

/* =========================================
   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;
  }

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

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

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

  .header__logo {
    font-size: 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__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;
  }
}
