/* =========================================================
   Ретрит личной стратегии — визуальный стиль
   Нежный · современный · премиальный
   ========================================================= */

:root {
  /* Фон и поверхности */
  --bg: #FFFCF5;            /* тёплый сливочный с солнечным подтоном */
  --bg-tint: #FFF1FA;       /* нежно-розовый, для секций */
  --surface: #FFFFFF;
  --surface-soft: #FFFAEE;

  /* Фирменный акцент — солнечный жёлтый */
  --accent: #FFD600;
  --accent-ink: #8F6B00;    /* тёмное золото для текста по светлому */
  --accent-soft: #FFF6C2;   /* очень светлый жёлтый фон */

  /* Второй фирменный — нежно-розовый */
  --pink: #FFE1F9;
  --pink-ink: #A1338B;
  --pink-soft: #FFF0FB;

  /* Дополнительная палитра */
  --powder: #FFE4F3;
  --sand: #F3E7C9;
  --greige: #EDE5D3;

  /* Текст */
  --ink: #26200F;           /* тёплый глубокий графит */
  --ink-2: #6E6650;         /* приглушённый */
  --ink-3: #A29B85;         /* совсем светлый */

  /* Линии и тени */
  --line: rgba(38, 32, 15, 0.10);
  --line-soft: rgba(38, 32, 15, 0.06);
  --shadow-sm: 0 2px 10px rgba(122, 100, 30, 0.06);
  --shadow-md: 0 18px 50px -20px rgba(122, 100, 30, 0.25);
  --shadow-accent: 0 14px 34px -12px rgba(224, 178, 0, 0.55);
  --shadow-accent-soft: 0 8px 22px -14px rgba(224, 178, 0, 0.4);

  /* Радиусы */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Типографика — единый бессерифный стек */
  --sans: "Outfit", -apple-system, "Segoe UI", sans-serif;
  --display: var(--sans);  /* заголовки на том же семействе, без засечек */

  --maxw: 1200px;

  /* Motion */
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-fast: 160ms;
  --dur-ui: 240ms;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 860px; }

.section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}
.section--tint { background: var(--bg-tint); }

.section__head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.section__lead {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 18px;
}
.section__cta { text-align: center; margin-top: 56px; }

/* ---------- Eyebrow / метка ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-ink);
  background: var(--pink-soft);
  border: 1px solid rgba(161, 51, 139, 0.16);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  margin-bottom: 20px;
}
.eyebrow--ondark {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease-out-strong), box-shadow var(--dur-fast) var(--ease-out-strong), background var(--dur-fast) ease, color var(--dur-fast) ease;
  white-space: nowrap;
}
.btn--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-accent);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost-ondark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--block { width: 100%; }
.btn:active { transform: scale(0.97); }
.btn--accent:active { box-shadow: var(--shadow-accent-soft); }

/* ---------- Decorative blur blobs ---------- */
.blur-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}
.blob-1 { width: 460px; height: 460px; background: rgba(255,214,0,.16); top: -140px; right: -120px; }
.blob-2 { width: 420px; height: 420px; background: rgba(255,225,249,.55); top: 45%; left: -160px; opacity: .5; }
.blob-3 { width: 380px; height: 380px; background: rgba(255,214,0,.10); bottom: -120px; right: -80px; }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__text { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -0.005em; }
.brand__accent { color: var(--ink-2); font-weight: 400; }
.brand__dates {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  padding-left: 12px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 245, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s ease;
  position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--accent); transition: width .25s ease;
}

.header__cta {
  padding: 10px 20px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  box-shadow: none;
  border: 1px solid rgba(143, 107, 0, 0.22);
}
.hero__actions .btn--accent { padding: 16px 34px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: min(88vh, 820px);
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(20, 16, 6, 0.55) 0%, rgba(20, 16, 6, 0.28) 42%, rgba(20, 16, 6, 0.62) 100%),
    linear-gradient(90deg, rgba(20, 16, 6, 0.45) 0%, rgba(20, 16, 6, 0) 60%),
    url("../images/zumrut-hotel-pool.png");
  background-size: cover;
  background-position: 65% 35%;
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 720px;
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 540px;
  margin-bottom: 34px;
}

/* pills — маленькие «кнопки»-метки */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.carousel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--r-xl) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  z-index: 1;
}
.carousel__track { display: flex; height: 100%; transition: transform 280ms var(--ease-out-strong); }
.slide { flex: 0 0 100%; height: 100%; position: relative; }

.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out-strong);
  z-index: 2;
}
.carousel__arrow--prev { left: 16px; }
.carousel__arrow--next { right: 16px; }
.carousel__arrow:active { transform: translateY(-50%) scale(0.95); }

.carousel__dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.carousel__dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.6);
  transition: width var(--dur-ui) var(--ease-out-strong), background var(--dur-ui) ease;
}
.carousel__dots button.is-active { width: 24px; border-radius: var(--r-pill); background: #fff; }

/* ---------- Photo blocks ---------- */
.photo-ph {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-color: var(--greige);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

/* Brand-tinted overlay + bottom vignette for label legibility */
.photo-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 214, 0, 0.10) 0%, rgba(255, 225, 249, 0.14) 42%, transparent 68%),
    linear-gradient(180deg, rgba(38, 32, 15, 0.04) 0%, rgba(38, 32, 15, 0) 45%, rgba(38, 32, 15, 0.42) 100%);
  pointer-events: none;
}

/* Carousel */
.ph--sea  { background-image: url("../images/zumrut-pool-closeup.png"); background-position: center 40%; }
.ph--pine  { background-image: url("../images/cirali-bay-sunset.png"); background-position: center 45%; }
.ph--fire  { background-image: url("../images/cirali-sunset-sea.png"); background-position: center center; }

.ph__label {
  position: relative;
  z-index: 1;
  margin: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 252, 245, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

.place-hero .ph__label {
  margin: 22px 24px;
  font-size: 12.5px;
}

.ph__label--sm { margin: 12px; font-size: 11.5px; padding: 5px 11px; }

/* ---------- Cards (base) ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-ui) var(--ease-out-strong), box-shadow var(--dur-ui) var(--ease-out-strong);
}

/* ---------- About intro ---------- */
.about-intro {
  max-width: 760px;
  margin: 0 auto 64px;
}
.about-intro__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
  margin-bottom: 28px;
}
.about-intro p {
  color: var(--ink-2);
  font-size: 17px;
  text-align: center;
}
.about-intro p + p { margin-top: 16px; }

.about-bridge {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  position: relative;
  padding-top: 34px;
}
.about-bridge::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px; border-radius: 2px;
  background: var(--accent);
}
.about-bridge strong {
  font-weight: 600;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card { overflow: hidden; }
.team-card__photo {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(38, 32, 15, 0.025) 0 12px, transparent 12px 24px),
    var(--surface-soft);
  border-bottom: 1px solid var(--line-soft);
}
.team-card__ph-hint {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.team-card__body { padding: 26px 26px 30px; }
.team-card__name {
  font-family: var(--display); font-weight: 600;
  font-size: 30px; margin-bottom: 12px;
}
.team-card__body p { color: var(--ink-2); font-size: 15.5px; margin-top: 14px; }

.pull-quote {
  max-width: 820px;
  margin: 64px auto 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(23px, 2.7vw, 33px);
  line-height: 1.42;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  padding-top: 40px;
}
.pull-quote::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 48px; height: 3px; border-radius: 3px; background: var(--accent);
}

/* ---------- Tags ---------- */
.tag {
  display: inline-flex; align-items: center;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}
.tag--accent {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent-ink);
  font-weight: 600;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags--column { flex-direction: column; align-items: flex-start; }

/* ---------- Days / program ---------- */
.days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.day-card {
  padding: 34px 30px 32px;
  display: flex; flex-direction: column;
}
.day-card__head { margin-bottom: 18px; }
.day-card__num {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 10px;
}
.day-card__title {
  font-family: var(--display); font-weight: 600;
  font-size: 31px; line-height: 1.12;
}
.day-card__text { color: var(--ink-2); font-size: 15.5px; }
.day-card__text + .day-card__text { margin-top: 12px; }
.day-card__text--soft { color: var(--ink-3); font-size: 14.5px; }
.outcomes {
  margin-top: auto;
  padding-top: 22px;
}
.outcome-label {
  display: block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

/* ---------- Format ---------- */
.format-intro {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.format-intro p {
  color: var(--ink-2);
  font-size: 16.5px;
}
.format-intro p + p { margin-top: 14px; }

.format-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: start; }
.format-card { padding: 38px 36px; }
.format-card__title {
  font-family: var(--display); font-weight: 600; font-size: 28px; margin-bottom: 22px;
}
.check-list li {
  position: relative;
  padding: 13px 0 13px 34px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  font-size: 16px;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
}
.check-list li::after {
  content: "";
  position: absolute; left: 5px; top: 21px;
  width: 5px; height: 8px;
  border: solid var(--accent-ink);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}
.format-card--rules { background: var(--pink-soft); border-color: transparent; }
.check-list--rules li { color: var(--ink); font-weight: 500; }
.format-card__note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-3);
  font-size: 13.5px;
  font-style: normal;
  text-align: center;
}

/* ---------- Place ---------- */
.place-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.place-intro__text p { color: var(--ink-2); font-size: 16.5px; }
.place-intro__text p + p { margin-top: 18px; }
.place-intro__text strong { color: var(--ink); font-weight: 600; }

.place-carousel {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.place-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.place-card { padding: 34px 30px; }
.place-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-ink);
  font-size: 20px; margin-bottom: 18px;
}
.place-card__title {
  font-family: var(--display); font-weight: 600; font-size: 27px; margin-bottom: 12px;
}
.place-card p { color: var(--ink-2); font-size: 15.5px; }
.place-card p + p { margin-top: 8px; }
.place-card__price {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 600;
  color: var(--ink) !important;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.place-card--price { background: var(--accent-soft); border-color: transparent; }
.muted { color: var(--ink-3); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--dur-ui) var(--ease-out-strong);
}
.faq__item.is-open { border-color: rgba(224, 178, 0, .45); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left;
  padding: 22px 26px;
  font-size: 17px; font-weight: 600; color: var(--ink);
}
.faq__icon {
  position: relative; flex: 0 0 auto;
  width: 18px; height: 18px;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--accent); border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform .3s ease;
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-ui) var(--ease-out-strong);
}
.faq__a p {
  padding: 0 26px 24px;
  color: var(--ink-2);
  font-size: 16px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--dur-fast) var(--ease-out-strong), transform var(--dur-fast) var(--ease-out-strong);
}
.faq__item.is-open .faq__a p {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Apply ---------- */
.apply { padding-bottom: 130px; }
.apply__card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  padding: 52px 50px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,214,0,.12), transparent 45%),
    radial-gradient(circle at 8% 92%, rgba(255,225,249,.5), transparent 40%),
    var(--surface);
  align-items: center;
}
.apply__form { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  width: 100%;
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 14px 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,214,0,.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }

/* ---------- Consent checkbox ---------- */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.consent__text a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note {
  margin-top: 14px; text-align: center;
  color: var(--accent-ink); font-weight: 600; font-size: 15px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 54px 0;
  position: relative; z-index: 1;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer__brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 18px; }
.footer__meta { color: rgba(255,255,255,.6); font-size: 14px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__nav a { color: rgba(255,255,255,.72); font-size: 14.5px; transition: color .2s; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Адаптив
   ========================================================= */
@media (max-width: 1080px) {
  .brand__dates { display: none; }
}

@media (max-width: 980px) {
  .team-grid, .days, .place-grid { grid-template-columns: 1fr 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .apply__card { grid-template-columns: 1fr; padding: 44px 36px; }
  .place-intro { grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
  .place-carousel { max-width: 560px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: rgba(255,252,245,.97);
    backdrop-filter: blur(16px);
    padding: 22px 32px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__link { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 74px 0; }
  .section__head { margin-bottom: 40px; }
  .team-grid, .days, .place-grid { grid-template-columns: 1fr; }
  .place-carousel { aspect-ratio: 4 / 3; }
  .apply__form { grid-template-columns: 1fr; }
  .apply__card { padding: 34px 22px; }
  .hero { min-height: 78vh; padding: 110px 0 80px; }
  .hero__bg { background-position: center 45%; }
  .pill { font-size: 13px; padding: 7px 13px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn--accent { padding: 15px 28px; }
  .format-intro { margin-bottom: 40px; }
  .format-card { padding: 30px 26px; }
}

@media (hover: hover) and (pointer: fine) {
  .btn--accent:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(224,178,0,.55); }
  .btn--ghost:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }

  .nav__link:hover { color: var(--ink); }
  .nav__link:hover::after { width: 100%; }

  .carousel__arrow:hover { background: #fff; }
  .carousel__arrow--prev:hover { transform: translateY(-50%) scale(1.06); }
  .carousel__arrow--next:hover { transform: translateY(-50%) scale(1.06); }

  .team-card:hover,
  .day-card:hover,
  .place-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  .reveal,
  .reveal.is-visible,
  .team-card,
  .day-card,
  .place-card,
  .btn,
  .carousel__track,
  .carousel__arrow,
  .faq__a,
  .faq__a p {
    transition-duration: 1ms !important;
    animation: none !important;
    transform: none !important;
  }
}
