/* =============================================================
   СВОЯ ОПОРА · ЖЕНСКАЯ ЭКСПЕДИЦИЯ · /women/
   styles.css v3 — крупные заголовки, фон-фото, мужская структура форм
   Mobile-first.
   ============================================================= */

/* ━━━ ТОКЕНЫ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --canvas:       #F5F1EA;
  --canvas-2:     #EBE4D6;
  --ink:          #2A2823;
  --ink-2:        #524A40;
  --stone:        #847A6E;
  --stone-2:      #A39682;
  --taiga:        #4A5A4C;
  --terracotta:   #B86B4A;
  --terracotta-2: #9A553A;
  --glacier:      #8FA8B0;
  --night:        #1E1B17;
  --paper:        #EBE4D6;
  --paper-2:      #BCAF94;
  --paper-glass:  rgba(245, 241, 234, 0.86);
  --shadow-faint: rgba(42, 40, 35, 0.04);
  --line:         rgba(42, 40, 35, 0.16);
  --line-soft:    rgba(42, 40, 35, 0.08);
  --line-dark:    rgba(235, 228, 214, 0.20);

  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, 'Helvetica Neue', sans-serif;

  /* Типографика — крупнее и с большим контрастом */
  --fs-h1:    clamp(48px, 11vw, 124px);
  --fs-h2:    clamp(36px, 7vw, 76px);
  --fs-h2-sm: clamp(32px, 5.5vw, 56px);
  --fs-h3:    clamp(22px, 2.8vw, 32px);
  --fs-lead:  clamp(17px, 1.9vw, 21px);
  --fs-body:  16px;
  --fs-small: 14px;
  --fs-meta:  12px;
  --fs-num:   11px;

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px;
  --s-4: 16px; --s-5: 24px; --s-6: 32px;
  --s-7: 48px; --s-8: 64px; --s-9: 96px;
  --s-10: 128px; --s-11: 160px;

  --container-max: 1240px;
  --container-pad: 20px;

  --focus:        var(--terracotta);
  --radius:       2px;
  --radius-md:    10px;
  --radius-pill:  999px;
  --ease:         cubic-bezier(.2, .65, .25, 1);
  --duration:     420ms;
  --duration-fast: 220ms;
  --duration-slow: 700ms;
}

@media (min-width: 720px) {
  :root { --container-pad: 32px; }
}
@media (min-width: 1100px) {
  :root { --container-pad: 48px; --fs-body: 17px; }
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  font-weight: 400;
  font-feature-settings: 'kern', 'liga', 'calt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--terracotta); color: var(--canvas); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ━━━ ТИПОГРАФИКА ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p { line-height: 1.65; }

em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

/* ━━━ КОНТЕЙНЕР ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ━━━ КНОПКИ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease);
  text-align: center;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { transition: transform var(--duration-fast) var(--ease); }
.btn:hover svg { transform: translateX(2px); }

.btn--primary {
  background: var(--terracotta);
  color: var(--canvas);
}
.btn--primary:hover { background: var(--terracotta-2); }
.btn--primary:active { transform: translateY(1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--canvas); }

.btn--mini {
  padding: 10px 18px;
  font-size: 13px;
  min-height: 38px;
}

/* ━━━ ШАПКА ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--duration) var(--ease),
              padding var(--duration) var(--ease);
}
.site-header[data-state="top"] { background: transparent; }
.site-header[data-state="top"] .brand-name,
.site-header[data-state="top"] .brand-meta,
.site-header[data-state="top"] .nav a {
  color: var(--canvas);
  text-shadow: 0 1px 12px rgba(0,0,0,0.18);
}
.site-header[data-state="top"] .nav-toggle span { background: var(--canvas); }

.site-header[data-state="scrolled"] {
  background: var(--paper-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-dot {
  color: var(--terracotta);
  font-style: italic;
}
.brand-meta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.nav { display: none; gap: var(--s-6); font-size: 14px; color: var(--ink); }
.nav a { padding: 6px 0; transition: color var(--duration-fast) var(--ease); }
.nav a:hover { color: var(--terracotta); }
/* Ссылка «← Все направления» — акцент (на скролле; при top остаётся белой над фото) */
.nav a.nav-home { color: var(--terracotta); }
.mobile-menu-nav a.mobile-menu-home { color: var(--terracotta); font-weight: 600; }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--duration-fast) var(--ease),
              opacity var(--duration-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ━━━ МОБИЛЬНОЕ МЕНЮ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--canvas);
  padding: 90px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
}
.mobile-menu-nav a {
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu-cta { margin-top: auto; width: 100%; }

body.is-menu-open { overflow: hidden; }

/* ━━━ HERO ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
  color: var(--canvas);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 17, 13, 0.86) 0%,
    rgba(20, 17, 13, 0.74) 50%,
    rgba(20, 17, 13, 0.90) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-meta);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.hero__eyebrow {
  color: var(--canvas);
  opacity: 0.86;
  margin-bottom: var(--s-6);
}
.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero__title {
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--canvas);
  margin-bottom: var(--s-6);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: #E69570;
}

.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--canvas);
  opacity: 0.92;
  max-width: 680px;
  margin-bottom: var(--s-7);
}

.hero__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4) var(--s-5);
  margin-bottom: var(--s-7);
  max-width: 600px;
}
.hero__pillars span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--canvas);
  opacity: 0.92;
  padding-left: 14px;
  border-left: 1px solid rgba(235, 228, 214, 0.35);
}
.hero__pillars em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #E69570;
  opacity: 0.9;
}
@media (min-width: 720px) {
  .hero__pillars { grid-template-columns: repeat(4, 1fr); }
}

.hero__cta-btn {
  display: inline-flex;
  font-size: 16px;
}
.hero__cta-note {
  margin-top: var(--s-3);
  font-size: 13px;
  color: var(--canvas);
  opacity: 0.78;
}

.hero__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--canvas);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--canvas);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (min-width: 900px) {
  .hero__scroll-hint { display: inline-flex; }
}

/* ━━━ STICKY CTA ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  padding: 14px 24px;
  background: var(--terracotta);
  color: var(--canvas);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(42, 40, 35, 0.22);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ━━━ COOKIES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  padding: 18px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(42, 40, 35, 0.30);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  font-size: var(--fs-small);
  line-height: 1.5;
}
.cookie-banner__text a { color: var(--terracotta); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: var(--s-3);
  justify-content: flex-end;
}
.cookie-banner__btn {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 13px;
}
.cookie-banner__btn.btn--ghost {
  color: var(--paper);
  border-color: var(--paper);
}
.cookie-banner__btn.btn--ghost:hover { background: var(--paper); color: var(--ink); }
@media (min-width: 720px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    left: auto;
    right: 24px;
    bottom: 24px;
    max-width: 560px;
  }
}

/* ━━━ СЕКЦИИ — общие ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section {
  padding: 80px 0;
  position: relative;
}
@media (min-width: 720px) { .section { padding: 110px 0; } }
@media (min-width: 1100px) { .section { padding: 140px 0; } }

.section--photo {
  color: var(--canvas);
  overflow: hidden;
}
.section--photo .stone,
.section--photo .eyebrow,
.section--photo .sec-num,
.section--photo .sec-label { color: var(--canvas); opacity: 0.86; }
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}
.section-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(30, 27, 23, 0.78) 0%,
    rgba(30, 27, 23, 0.66) 50%,
    rgba(30, 27, 23, 0.82) 100%);
}
.section--photo .container { position: relative; z-index: 1; }

/* Header секции (sec-num + sec-label по образцу мужского) */
.sec-head {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sec-num {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--terracotta);
  font-size: var(--fs-meta);
}
.sec-label {
  color: var(--stone);
}

.section__title {
  font-size: var(--fs-h2-sm);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: var(--s-6);
  max-width: 900px;
}
.section__title--lg {
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.018em;
}
.section__title--light { color: var(--canvas); }
.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}
.section__title--light em { color: #E69570; }

.section__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  max-width: 760px;
  margin-bottom: var(--s-6);
}
.section--photo .section__lead { color: var(--canvas); opacity: 0.92; }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--duration-slow) var(--ease),
              transform var(--duration-slow) var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━ AUDIENCE — 5 карточек в строку на ПК ━━━━━━━━━━━━━━━━━ */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
@media (min-width: 720px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4);
  }
}
@media (min-width: 1100px) {
  .audience-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s-4);
  }
}
.audience-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5) var(--s-4);
  background: var(--canvas-2);
  border-radius: var(--radius-md);
  min-height: 160px;
}
.audience-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--terracotta);
  line-height: 1;
}
.audience-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
@media (min-width: 1100px) {
  .audience-card { min-height: 200px; padding: var(--s-5); }
  .audience-card p { font-size: 15px; }
}

/* ━━━ COMPARE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.compare {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-top: var(--s-6);
}
.compare__col {
  padding: var(--s-6) var(--s-5);
  background: rgba(245, 241, 234, 0.10);
  border: 1px solid rgba(235, 228, 214, 0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
}
.section:not(.section--photo) .compare__col {
  background: var(--canvas-2);
  border-color: transparent;
}
.section:not(.section--photo) .compare__col--after {
  background: var(--canvas);
  border-color: var(--ink);
}
.compare__col--after {
  background: rgba(184, 107, 74, 0.15);
  border-color: rgba(230, 149, 112, 0.4);
}
.compare__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  margin-bottom: var(--s-4);
  color: inherit;
}
.compare__col ul li {
  font-size: 16px;
  line-height: 1.55;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(235, 228, 214, 0.15);
}
.compare__col ul li:last-child { border-bottom: 0; }
.section:not(.section--photo) .compare__col ul li {
  border-bottom-color: var(--line-soft);
}

.compare__arrow {
  width: 60px;
  margin: 0 auto;
  color: var(--canvas);
  opacity: 0.6;
}
.section:not(.section--photo) .compare__arrow { color: var(--stone); opacity: 1; }

@media (min-width: 900px) {
  .compare {
    flex-direction: row;
    align-items: stretch;
    gap: var(--s-5);
  }
  .compare__col { flex: 1; padding: var(--s-7) var(--s-6); }
  .compare__arrow {
    align-self: center;
    width: 80px;
  }
}

/* ━━━ PILLARS (формат) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin: var(--s-6) 0 var(--s-6);
}
@media (min-width: 720px) {
  .pillars { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}
@media (min-width: 1100px) {
  .pillars { grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }
}
.pillar {
  padding: var(--s-5) 0 0;
  border-top: 1px solid var(--ink);
  transition: padding-left var(--duration-fast) var(--ease);
}
.pillar:hover { padding-left: 4px; }
.pillar__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--stone);
  display: block;
  margin-bottom: var(--s-3);
}
.pillar__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: var(--s-3);
  color: var(--ink);
}
.pillar__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.pillar-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--stone);
  max-width: 720px;
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-soft);
}

.pillar-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: var(--s-7);
}
@media (min-width: 720px) {
  .pillar-photos { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
}
.pillar-photos figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.pillar-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}
.pillar-photos figure:hover img { transform: scale(1.03); }

.format-cta {
  margin-top: var(--s-7);
  text-align: center;
}

/* ━━━ ROUTE — карточки дней ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.days {
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
}
.day-card {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.day-card[open] { background: var(--canvas-2); }

.day-card__head {
  list-style: none;
  display: grid;
  grid-template-columns: 90px 1fr 28px;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-3);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease);
}
.day-card__head::-webkit-details-marker { display: none; }
.day-card__head:hover { background: var(--shadow-faint); }
.day-card[open] .day-card__head { background: transparent; }

.day-card--simple {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-3);
  opacity: 0.7;
}

.day-card__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.day-card__head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.day-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.15;
  color: var(--ink);
}
.day-card__hint {
  font-size: 14px;
  color: var(--stone);
  font-weight: 400;
}

/* Кнопка «Раскрыть» (вместо плюсика) — стиль мужского btn--mini */
.day-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  justify-self: end;
  white-space: nowrap;
  transition: background var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease);
}
.day-card__btn svg { transition: transform var(--duration) var(--ease); }
.day-card__head:hover .day-card__btn { background: var(--ink); color: var(--canvas); }
.day-card[open] .day-card__btn { background: var(--ink); color: var(--canvas); }
.day-card[open] .day-card__btn svg { transform: rotate(180deg); }
.day-card[open] .day-card__btn-text::after {
  content: '';
}
.day-card[open] .day-card__btn-text {
  /* "Раскрыть" → "Свернуть" не переключаем — оставляем единое слово */
}

/* Маленький экран — кнопка компактнее */
@media (max-width: 540px) {
  .day-card__btn { padding: 6px 10px; font-size: 11px; }
  .day-card__btn-text { display: none; }
  .day-card__btn { padding: 8px; min-width: 36px; justify-content: center; }
}

/* Подсказка над списком дней */
.days-hint {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin: var(--s-5) 0 0;
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--stone);
  background: var(--canvas-2);
  border-radius: var(--radius-pill);
}
.days-hint svg { color: var(--terracotta); flex-shrink: 0; }
.days-hint em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.day-card__body {
  padding: var(--s-4) var(--s-3) var(--s-7);
  animation: dayIn var(--duration) var(--ease);
}
@keyframes dayIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 3 фото на день — snap-scroll на мобильном, grid на десктопе */
.day-card__photos {
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.day-card__photos img {
  flex: 0 0 84%;
  scroll-snap-align: start;
  width: auto;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
@media (min-width: 720px) {
  .day-card__photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: var(--s-3);
  }
  .day-card__photos img {
    flex: none;
    width: 100%;
    height: 220px;
  }
}
@media (min-width: 1100px) {
  .day-card__photos img { height: 260px; }
}

/* Секции Факт / Смысл внутри карточки дня */
.day-card__section {
  margin-bottom: var(--s-5);
  max-width: 820px;
}
.day-card__section:last-child { margin-bottom: 0; }

.day-card__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s-3);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.day-card__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 80px;
}

/* «Факт» и «Смысл» — один и тот же гарнитурный стиль (Cormorant italic) */
.day-card__fact,
.day-card__sense {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.45;
  color: var(--ink-2);
}

.day-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.day-card__list li {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.4;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
}
.day-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 1px;
  background: var(--terracotta);
}

/* Day-card name — поддерживаем em (для дня 4 «Одна из самых...») */
.day-card__name em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

/* Плашка: группа + конфиденциальность + связь */
.route-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-top: var(--s-9);
  padding: var(--s-7) var(--s-5);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
}
@media (min-width: 900px) {
  .route-info {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-7);
    padding: var(--s-8) var(--s-7);
  }
}
.route-info__col {
  border-top: 1px solid var(--line-dark);
  padding-top: var(--s-4);
}
.route-info__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: var(--s-3);
  color: var(--paper);
}
.route-info__title::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  margin-bottom: var(--s-3);
}
.route-info__col p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.86;
}

.route-cta {
  margin-top: var(--s-7);
  text-align: center;
}

/* ━━━ PSYCHOLOGIST ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section--psy { background: var(--canvas-2); }

.psy {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 900px) {
  .psy { grid-template-columns: 5fr 7fr; gap: var(--s-9); align-items: start; }
}

.psy__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--canvas);
}
.psy__photo img { width: 100%; height: 100%; object-fit: cover; }

.psy__text { max-width: 700px; }

.psy__creds {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin: var(--s-5) 0 var(--s-6);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.psy__creds li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
  color: var(--ink);
}
.psy__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--terracotta);
}

.psy__bio {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: var(--s-5);
  color: var(--ink);
}

.psy__quote {
  border-left: 2px solid var(--terracotta);
  padding-left: var(--s-5);
  margin-top: var(--s-6);
}
.psy__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.psy__quote cite {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--stone);
  font-style: normal;
}

/* ━━━ INCLUDES (на тёмном фоне с фото) ━━━━━━━━━━━━━━━━━━━━━ */
.includes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-top: var(--s-6);
}
@media (min-width: 900px) {
  .includes { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.includes__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid currentColor;
  color: var(--canvas);
}
.includes__col--out .includes__title {
  color: rgba(235, 228, 214, 0.65);
  border-bottom-color: rgba(235, 228, 214, 0.30);
}
.includes__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.includes__list li {
  font-size: 15px;
  line-height: 1.5;
  padding: var(--s-2) 0;
  border-bottom: 1px solid rgba(235, 228, 214, 0.14);
  position: relative;
  padding-left: 22px;
  color: var(--canvas);
}
.includes__list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--terracotta);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
.includes__col--out .includes__list li {
  color: rgba(235, 228, 214, 0.78);
}
.includes__col--out .includes__list li::before {
  content: '−';
  color: rgba(235, 228, 214, 0.5);
}

/* ━━━ NOT-FOR — 5 карточек в строку как блок 4 ━━━━━━━━━━━━━ */
.not-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
@media (min-width: 720px) {
  .not-for-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .not-for-grid { grid-template-columns: repeat(5, 1fr); }
}
.not-for-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5) var(--s-4);
  background: var(--canvas-2);
  border-radius: var(--radius-md);
  min-height: 160px;
}
.not-for-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  color: var(--stone);
  line-height: 1;
}
.not-for-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}
@media (min-width: 1100px) {
  .not-for-card { min-height: 200px; padding: var(--s-5); }
}

.not-for-frame {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--stone);
  margin-top: var(--s-6);
  max-width: 600px;
}

/* ━━━ PRICE (фон-фото) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.price-card {
  max-width: 760px;
  margin-top: var(--s-6);
  background: var(--canvas);
  border-radius: var(--radius-md);
  padding: var(--s-7) var(--s-6);
  border: 1px solid var(--line-soft);
  color: var(--ink);
}
.price-card * { color: inherit; }
@media (min-width: 720px) {
  .price-card { padding: var(--s-8) var(--s-7); }
}

.price-card__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
@media (min-width: 720px) {
  .price-card__details { grid-template-columns: 1fr 1fr; gap: var(--s-5) var(--s-7); }
}
.price-card__details > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line-soft);
}
.price-card__details dt {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.price-card__details dd {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
}
.price-card__price dd {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
}
.price-card__price dd strong { font-weight: 400; }
@media (min-width: 720px) {
  .price-card__price { grid-column: 1 / -1; }
  .price-card__price dd { font-size: 56px; }
}

.price-card__frame {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: var(--s-4);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--line-soft);
}
.price-card__installment {
  font-size: 14px;
  line-height: 1.55;
  color: var(--stone);
  margin-bottom: var(--s-6);
}
.price-card__installment strong { color: var(--ink); font-weight: 600; }
.price-card__cta { width: 100%; }

/* ━━━ ФОРМА (мужской стиль) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section--form {
  background: var(--canvas-2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 900px) {
  .form-grid { grid-template-columns: 5fr 7fr; gap: var(--s-9); align-items: start; }
}

.form-intro__text {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-2);
  margin: var(--s-5) 0 var(--s-6);
  max-width: 460px;
}

.contact-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.contact-icons li { list-style: none; flex: 0 0 auto; }
.contact-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--line);
  transition: background var(--duration-fast) var(--ease),
              color var(--duration-fast) var(--ease),
              transform var(--duration-fast) var(--ease),
              border-color var(--duration-fast) var(--ease);
}
.contact-icons a:hover {
  background: var(--terracotta);
  color: var(--canvas);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.contact-icons--dark {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  margin-top: 0;
}
.contact-icons--dark a {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-dark);
}
.contact-icons--dark a:hover {
  background: var(--terracotta);
  color: var(--canvas);
  border-color: var(--terracotta);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.field label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.req { color: var(--terracotta); margin-left: 2px; }

.field input[type="text"],
.field input[type="number"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease);
  border-radius: 0;
}
.field input:focus { border-bottom-color: var(--terracotta); border-bottom-width: 2px; padding-bottom: 11px; }

.select-wrap {
  position: relative;
}
.select-wrap select {
  width: 100%;
  padding: 12px 28px 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--duration-fast) var(--ease);
  border-radius: 0;
  cursor: pointer;
}
.select-wrap select:focus { border-bottom-color: var(--terracotta); border-bottom-width: 2px; padding-bottom: 11px; }
.select-wrap select option { color: var(--ink); }
.select-chev {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone);
  pointer-events: none;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 540px) {
  .row-2 { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  cursor: pointer;
  margin-top: var(--s-2);
}
.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--terracotta);
  margin-top: 2px;
}
.consent a { color: var(--terracotta); text-decoration: underline; }

.form-submit {
  margin-top: var(--s-3);
  align-self: flex-start;
}

.form-note {
  font-size: 13px;
  color: var(--stone);
  min-height: 1.5em;
  line-height: 1.5;
}
.form-note.is-error { color: var(--terracotta-2); }
.form-note.is-success { color: var(--taiga); }

/* Если форма успешно отправлена — скрываем поля декларативно через класс */
.lead-form.is-submitted .field,
.lead-form.is-submitted .row-2,
.lead-form.is-submitted .consent,
.lead-form.is-submitted .form-submit,
.lead-form.is-submitted .form-note {
  display: none;
}

/* Большой success-блок после отправки */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-4);
  padding: var(--s-7) var(--s-5);
  background: var(--canvas);
  border: 1px solid var(--taiga);
  border-radius: var(--radius-md);
  color: var(--taiga);
  animation: successIn var(--duration-slow) var(--ease);
}
.form-success[hidden] { display: none; }
@keyframes successIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.form-success h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  color: var(--ink);
}
.form-success p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 360px;
}

/* ━━━ ПОДВАЛ (мужской стиль) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--night);
  color: var(--paper);
  padding: var(--s-8) 0 var(--s-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-6); }
}
.footer-brand { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--paper);
}
.footer-brand-meta {
  font-size: 13px;
  color: var(--paper-2);
  line-height: 1.5;
}
.footer-brand-meta a { color: var(--terracotta); }
.dot-sep { color: var(--paper-2); opacity: 0.5; margin: 0 4px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-2);
  margin-bottom: var(--s-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col ul li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--paper);
}
.footer-col ul li a {
  color: var(--paper);
  transition: color var(--duration-fast) var(--ease);
}
.footer-col ul li a:hover { color: var(--terracotta); }

.footer-legal {
  margin-top: var(--s-3);
  font-size: 12px;
  line-height: 1.5;
  color: var(--paper-2);
}
.footer-bridge {
  margin-top: var(--s-3);
  font-size: 14px;
  line-height: 1.55;
  color: var(--paper-2);
}
.footer-bridge a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

.footer-bottom {
  padding-top: var(--s-5);
  font-size: 12px;
  color: var(--paper-2);
}
