/* ==========================================================================
   V6 — hero по макету Мари: «Выбери настроение» + лист-список + синий штамп,
   счётчик, олива-строка, блок «виртуальный проводник».
   Плюс START-блок на бумажной подложке, фото Мари, галерея.
   ========================================================================== */

/* ---------- hero заголовок ---------- */
.hero-head {
  margin: 0 0 .2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
}
.hero-choose {
  font-family: "Neucha", cursive;
  color: var(--c-terracotta);
  font-size: clamp(2rem, 6.4vw, 3.4rem);
  line-height: .96;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: .15em;
}
.hero-choose span:last-child { align-self: flex-end; margin-right: -.3em; }
.hero-and {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: clamp(.66rem, 2vw, .95rem);
  color: var(--c-cream);
  margin-bottom: .1em;
}
.hero-city {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--c-cream);
  font-size: clamp(3.2rem, 13vw, 6.4rem);
  line-height: .92;
  letter-spacing: .01em;
}

/* ---------- лист со списком ---------- */
.sheet__list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: clamp(2rem, 6vw, 3rem) clamp(2rem, 7vw, 3.6rem);
  padding-left: clamp(3.6rem, 13%, 6rem);
  display: flex;
  flex-direction: column;
  gap: clamp(.55rem, 2vw, 1rem);
  align-items: center;
}
.sheet__list li {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: var(--c-dark);
  font-size: clamp(.95rem, 2.6vw, 1.2rem);
  letter-spacing: .01em;
}
.sheet__list li::before { content: "• "; color: var(--c-terracotta); }
.sheet__list li::after { content: " •"; color: var(--c-terracotta); }

.sheet__stamp {
  position: absolute;
  z-index: 3;
  top: clamp(-24px, -3vw, -14px);
  right: clamp(-6px, 1vw, 24px);
  width: clamp(80px, 12vw, 118px);
  transform: rotate(9deg);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .3));
  pointer-events: none;
}

/* ---------- счётчик + телеграм ---------- */
.hero-count {
  color: var(--c-cream);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.4;
  max-width: 30ch;
  margin: .4rem auto .3rem;
}
.hero-tg {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(.8rem, 2vw, .98rem);
  color: #a8a24a; /* фирменная олива, читаемая на тёмном */
  margin: 0 0 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.hero-tg::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  background: no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8a24a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

/* ---------- блок «виртуальный проводник» (справа) ---------- */
.hero-guide {
  align-self: flex-end;
  text-align: right;
  display: flex;
  flex-direction: column;
  margin-top: .4rem;
}
.hero-guide__hand {
  font-family: "Neucha", cursive;
  color: var(--c-terracotta);
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.05;
}
.hero-guide__plain {
  font-family: "Manrope", sans-serif;
  color: var(--c-cream);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  line-height: 1.2;
  margin-top: .15em;
}

.hero--center .hero__scroll { margin-top: 2.2rem; align-self: center; }

@media (max-width: 560px) {
  .hero-choose span:last-child { margin-right: 0; }
  .sheet__list { padding-left: clamp(3rem, 16%, 4rem); }
}

/* ==========================================================================
   START-блок как заметка на бумажной подложке
   ========================================================================== */
#how { position: relative; }
.note-strip {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 3.4rem) clamp(2rem, 7vw, 4rem);
  padding-left: clamp(4.5rem, 12%, 7rem);
}
.note-strip::before {
  content: "";
  position: absolute;
  inset: -6% -3%;
  background: url("../assets/photos/note-strip.png") no-repeat center/100% 100%;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .35));
  z-index: 0;
}
.note-strip .statement { position: relative; z-index: 2; max-width: none; }
.note-strip .eyebrow { position: relative; z-index: 2; justify-content: center; display: flex; margin-bottom: 1.2rem; color: var(--c-terracotta); }
.note-strip .statement__line { color: var(--c-dark); }
.note-strip .statement__line span { color: var(--c-terracotta); }

/* ---------- фото Мари в блоке «кто ведёт» ---------- */
.author-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(1.6rem, 4vw, 2.8rem);
  align-items: start;
}
.author-photo {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: 0 14px 34px -10px rgba(0,0,0,.4);
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-photo::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../assets/paper/grain-overlay-light.png");
  background-size: 340px;
  mix-blend-mode: overlay;
  opacity: .5;
  pointer-events: none;
}
.author-secret {
  font-family: "Neucha", cursive;
  color: var(--c-terracotta);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  line-height: 1.35;
  margin: 1.2rem 0;
}
@media (max-width: 720px) {
  .author-grid { grid-template-columns: 1fr; }
  .author-photo { max-width: 320px; aspect-ratio: 4/5; margin-bottom: .4rem; }
}

/* ---------- меньше воздуха между секциями ---------- */
.section { padding: clamp(2.8rem, 6vw, 5rem) 0; }

/* ---------- подписи к снимкам галереи ---------- */
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .7rem .8rem .55rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .64rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-cream);
  background: linear-gradient(to top, rgba(28,24,20,.82), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s, transform .35s;
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 720px) {
  .gallery__item figcaption { opacity: 1; transform: none; font-size: .6rem; }
}

/* ==========================================================================
   V6.1 — правки по макету: выравнивание, рукописный порядок буллетов,
   штамп на бумаге, блок проводника в 4 строки, фото Мари без обрезки,
   меньше шрифт в заметке START.
   ========================================================================== */

/* «и открой свой персональный» слева, от кромки «Бангкок» */
.hero-cityblock {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-and { align-self: flex-start; margin-left: .06em; }

/* буллеты — рукописный порядок (лёгкий разброс и наклон) */
.sheet__list { align-items: center; }
.sheet__list li { transition: none; }
.sheet__list .pos1 { transform: translateX(-9%) rotate(-1.6deg); }
.sheet__list .pos2 { transform: translateX(11%) rotate(1.1deg); }
.sheet__list .pos3 { transform: translateX(-3%) rotate(-.6deg); }
.sheet__list .pos4 { transform: translateX(7%) rotate(1.4deg); }

/* штамп лежит прямо на бумаге (внутри листа) */
.sheet__stamp {
  top: clamp(14px, 3vw, 30px);
  right: clamp(10px, 3vw, 34px);
  transform: rotate(9deg);
}

/* блок «виртуальный проводник» — 4 строки */
.hero-guide__hand { line-height: 1.02; }
.hero-guide__plain { line-height: 1.15; }

/* фото Мари — без обрезки, в исходном формате */
.author-grid { grid-template-columns: 1fr; max-width: 640px; }
.author-photo {
  aspect-ratio: auto;
  width: 100%;
  max-width: 600px;
}
.author-photo img { height: auto; display: block; }
@media (max-width: 720px) {
  .author-photo { max-width: 100%; aspect-ratio: auto; }
}

/* заметка START — чуть меньше кегль, чтобы текст не выбивался */
.note-strip .statement__line { font-size: clamp(1.35rem, 3.6vw, 2.2rem); }

/* ==========================================================================
   V6.2 — буллеты Neucha и чуть левее, «Выбери» левее центра, штамп ниже/крупнее
   ========================================================================== */
.sheet__list {
  align-items: center;
  transform: translateX(-4%);
}
.sheet__list li {
  font-family: "Neucha", cursive;
  font-weight: 400;
  font-size: clamp(1.15rem, 3.1vw, 1.55rem);
  letter-spacing: .01em;
}

/* «Выбери» сдвигаем левее центра */
.hero-choose span:first-child { align-self: flex-start; margin-left: -.6em; }

/* штамп — ниже и крупнее */
.sheet__stamp {
  top: clamp(30px, 6vw, 62px);
  right: clamp(8px, 2.5vw, 30px);
  width: clamp(96px, 14vw, 140px);
}

/* штамп на узких экранах — меньше и в самый угол, чтобы не задевать буллеты */
@media (max-width: 560px) {
  .sheet__stamp { width: 78px; top: 20px; right: 4px; }
  .sheet__list { transform: none; }
}
