/* ============================================
   УФА ФЛОРА 2026 — лендинг
   Палитра: тёмный лес + тёплая кость + шалфей
   ============================================ */

:root {
  --bg: #0E1511;
  --surface: #182019;
  --fg: #1A1F1B;
  --fg-light: #EDE6D6;
  --muted: #8E8678;
  --muted-light: #9A9A8C;
  --border: #D8CDB7;
  --border-light: #2D362D;
  --cream: #F2EBDB;
  --bone: #ECE3CD;
  --accent: #7A9A78;
  --accent-strong: #5C7E5A;
  --accent-on: #0E1511;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Onest', sans-serif;
  --radius: 0px;
  --space-section: 120px;
  --container: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ============== TOP BAR ============== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 21, 17, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  flex-shrink: 0;
}

.brand__logo {
  height: 64px;
  width: auto;
  display: block;
  background: var(--cream);
  padding: 6px 12px;
}

@media (max-width: 540px) {
  .brand__logo { height: 48px; padding: 4px 8px; }
}

.brand__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand__year {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav a:hover { opacity: 1; }

@media (max-width: 900px) {
  .nav { display: none; }
  .topbar__inner { height: 60px; gap: 12px; }
  .topbar__inner .container,
  .topbar__inner { padding-left: 0; padding-right: 0; }
}

@media (max-width: 540px) {
  .brand { gap: 6px; flex-shrink: 0; }
  .brand__mark { font-size: 13px; letter-spacing: 0.04em; white-space: nowrap; }
  .brand__year { font-size: 11px; }
  .topbar__cta { padding: 8px 12px; font-size: 12px; white-space: nowrap; }
  .topbar__inner { padding: 0 16px; gap: 8px; }
}

@media (max-width: 380px) {
  .brand__year { display: none; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  border-radius: 0;
  text-align: center;
}

.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--large { padding: 18px 30px; font-size: 15px; }

.btn--primary {
  background: var(--accent);
  color: var(--accent-on);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(237, 230, 214, 0.3);
}
.btn--ghost:hover {
  border-color: var(--cream);
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-on);
  border-color: var(--accent);
}
.btn--accent:hover { background: var(--accent-strong); border-color: var(--accent-strong); }

/* ============== HERO ============== */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--fg-light);
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg svg {
  width: 100%;
  height: 100%;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  font-weight: 500;
}

.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.hero__roman {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-right: 4px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: var(--cream);
  max-width: 1100px;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  margin-bottom: 64px;
}

.hero__tags li {
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(237, 230, 214, 0.22);
  color: var(--cream);
  font-weight: 500;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(237, 230, 214, 0.18);
  border-bottom: 1px solid rgba(237, 230, 214, 0.18);
  margin-bottom: 48px;
}

.meta-block {
  padding: 28px 0;
  border-right: 1px solid rgba(237, 230, 214, 0.12);
}
.meta-block:last-child { border-right: none; }

.meta-block__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.meta-block__value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--cream);
  font-weight: 500;
}

.meta-block__value--small {
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.3;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__schedule {
  max-width: 720px;
  margin: 0 auto 48px;
  border: 1px solid rgba(237, 230, 214, 0.18);
  overflow: hidden;
  background: #FAF6EC;
}

.hero__schedule img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__note {
  font-size: 13px;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .hero { padding: 60px 0 80px; }
  .hero__title { margin-bottom: 36px; }
  .hero__meta {
    grid-template-columns: 1fr;
  }
  .meta-block {
    border-right: none;
    border-bottom: 1px solid rgba(237, 230, 214, 0.12);
    padding: 20px 0;
  }
  .meta-block:last-child { border-bottom: none; }
}

/* ============== SECTIONS — общие ============== */
.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section--cream { background: var(--cream); color: var(--fg); }
.section--bone { background: var(--bone); color: var(--fg); }
.section--dark {
  background: var(--bg);
  color: var(--fg-light);
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 32px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 24px;
  border-color: rgba(26, 31, 27, 0.15);
}

.section__head--light {
  border-color: rgba(237, 230, 214, 0.2);
}

.section__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 200;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.section--dark .section__num { color: var(--accent); }

.section__eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.7;
  font-weight: 500;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 1100px;
}

.section__title--light { color: var(--cream); }

.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.section__lede--light { color: var(--cream); opacity: 0.85; }

.section__note {
  margin-top: 32px;
  font-size: 14px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  :root { --space-section: 80px; }
  .section__title { margin-bottom: 40px; }
  .section__head { margin-bottom: 28px; }
}

/* ============== 01 WHY ============== */
.why-list {
  list-style: none;
  counter-reset: why;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(26, 31, 27, 0.15);
  margin-bottom: 48px;
}

.why-list li {
  counter-increment: why;
  padding: 32px 24px 32px 80px;
  border-bottom: 1px solid rgba(26, 31, 27, 0.15);
  border-right: 1px solid rgba(26, 31, 27, 0.15);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.35;
  position: relative;
  min-height: 130px;
  display: flex;
  align-items: center;
}

.why-list li:nth-child(2n) { border-right: none; }

.why-list li::before {
  content: counter(why, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 32px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .why-list { grid-template-columns: 1fr; }
  .why-list li { border-right: none; padding-left: 64px; min-height: 0; padding-top: 24px; padding-bottom: 24px; }
}

/* ============== 02 RESULTS ============== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 31, 27, 0.15);
  border-left: 1px solid rgba(26, 31, 27, 0.15);
  margin-bottom: 48px;
}

.result {
  padding: 40px 32px;
  border-right: 1px solid rgba(26, 31, 27, 0.15);
  border-bottom: 1px solid rgba(26, 31, 27, 0.15);
}

.result__num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 24px;
}

.result__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.result__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(26, 31, 27, 0.75);
}

@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ============== 03 ONE DAY ============== */
.day-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.day-tags li {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 40px);
  padding: 18px 28px;
  border: 1px solid rgba(237, 230, 214, 0.22);
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: all 0.2s;
}

.day-tags li:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============== 04 KEYNOTE ============== */
.keynote {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.keynote__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
}

.keynote__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(0.2) contrast(1.05);
}

.keynote__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--fg);
}

.keynote__name span {
  color: var(--accent);
  font-style: italic;
}

.keynote__role {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(26, 31, 27, 0.6);
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 500;
}

.keynote__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  padding: 0;
  border: none;
  color: var(--fg);
}

.keynote__quote em {
  font-style: italic;
  color: var(--accent);
}

.keynote__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
  color: rgba(26, 31, 27, 0.8);
}

.keynote__plus {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent-strong);
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .keynote { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== 05 SPEAKERS ============== */
.speakers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 31, 27, 0.15);
  margin-bottom: 48px;
}

.speaker {
  padding: 32px 24px;
  border-right: 1px solid rgba(26, 31, 27, 0.15);
  border-bottom: 1px solid rgba(26, 31, 27, 0.15);
  display: flex;
  flex-direction: column;
}

.speaker:nth-child(4n) { border-right: none; }

.speaker--feature {
  grid-column: span 2;
  grid-row: span 2;
  padding: 40px;
}

.speaker--feature .speaker__photo {
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
}

.speaker__photo {
  aspect-ratio: 4 / 5;
  background: var(--surface);
  margin-bottom: 20px;
  overflow: hidden;
}

.speaker__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.15);
  transition: filter 0.3s;
}

.speaker:hover .speaker__photo img { filter: grayscale(0); }

.speaker__num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.speaker__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.speaker--feature .speaker__name { font-size: 32px; }

.speaker__role {
  font-size: 13px;
  color: rgba(26, 31, 27, 0.65);
  margin-bottom: 16px;
  line-height: 1.4;
}

.speaker__talk {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 14px;
  color: var(--fg);
}

.speaker--feature .speaker__talk { font-size: 18px; }

.speaker__about,
.speaker__apply {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: rgba(26, 31, 27, 0.7);
}

.speaker__about strong,
.speaker__apply strong {
  color: var(--fg);
  font-weight: 600;
}

.speaker__bonus {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(122, 154, 120, 0.12);
  border-left: 2px solid var(--accent);
  color: var(--fg);
}

.speaker__bonus strong {
  color: var(--accent-strong);
  font-weight: 600;
}

.speakers__cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 1100px) {
  .speakers { grid-template-columns: repeat(3, 1fr); }
  .speaker--feature { grid-column: span 3; }
  .speaker:nth-child(4n) { border-right: 1px solid rgba(26, 31, 27, 0.15); }
  .speaker:nth-child(3n) { border-right: none; }
}

@media (max-width: 900px) {
  .speakers { grid-template-columns: repeat(2, 1fr); }
  .speaker--feature { grid-column: span 2; }
  .speaker:nth-child(3n) { border-right: 1px solid rgba(26, 31, 27, 0.15); }
  .speaker:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  .speakers { grid-template-columns: 1fr; }
  .speaker--feature { grid-column: span 1; padding: 24px; }
  .speaker--feature .speaker__name { font-size: 26px; }
  .speaker { padding: 24px 18px; border-right: none; }
  .speaker:nth-child(3n) { border-right: none; }
  .speaker:nth-child(2n) { border-right: none; }
}

/* ============== 04 ОРГАНИЗАТОРЫ ============== */
.organizers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(26, 31, 27, 0.15);
  border-left: 1px solid rgba(26, 31, 27, 0.15);
}

.organizer {
  padding: 48px 40px;
  border-right: 1px solid rgba(26, 31, 27, 0.15);
  border-bottom: 1px solid rgba(26, 31, 27, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.organizer__logo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 2 / 1;
  background: #fff;
  border: 1px solid rgba(26, 31, 27, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 20px;
}

.organizer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.organizer__tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--accent-strong);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 31, 27, 0.15);
}

.organizer__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--fg);
}

.organizer__role {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(26, 31, 27, 0.6);
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 500;
}

.organizer__text {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
  color: rgba(26, 31, 27, 0.8);
}

@media (max-width: 900px) {
  .organizers { grid-template-columns: 1fr; }
}

/* ============== 07 PREVIOUS ============== */
.slider {
  position: relative;
  margin-bottom: 80px;
}

.slider__viewport {
  overflow: hidden;
  width: 100%;
}

.slider__track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider__slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
}

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

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(237, 230, 214, 0.3);
  background: rgba(14, 21, 17, 0.5);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
}

.slider__arrow:hover {
  background: rgba(122, 154, 120, 0.7);
  border-color: var(--accent);
}

.slider__arrow--prev { left: 20px; }
.slider__arrow--next { right: 20px; }

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider__dot {
  width: 32px;
  height: 2px;
  background: rgba(237, 230, 214, 0.25);
  transition: background 0.2s, width 0.2s;
  cursor: pointer;
}

.slider__dot.is-active {
  background: var(--accent);
  width: 48px;
}

@media (max-width: 600px) {
  .slider__arrow { width: 44px; height: 44px; font-size: 18px; }
  .slider__arrow--prev { left: 12px; }
  .slider__arrow--next { right: 12px; }
  .slider__slide { aspect-ratio: 4 / 3; }
}

/* Reviews slider */
.reviews__head {
  text-align: center;
  margin-bottom: 32px;
}

.reviews__head .section__eyebrow {
  color: var(--cream);
  opacity: 0.8;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.slider--reviews {
  margin-bottom: 56px;
}

.slider--reviews .slider__viewport {
  padding: 0;
}

.slider__slide--review {
  flex: 0 0 100%;
  aspect-ratio: auto;
  padding: 56px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  text-align: center;
  background: rgba(237, 230, 214, 0.04);
  border-top: 1px solid rgba(237, 230, 214, 0.15);
  border-bottom: 1px solid rgba(237, 230, 214, 0.15);
}

.review__quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 24px;
}

.slider__slide--review blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin: 0 auto 36px;
  max-width: 880px;
}

.slider__slide--review figcaption {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review__name {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--cream);
  font-weight: 500;
}

.review__role {
  font-size: 12px;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

.slider--reviews .slider__arrow {
  background: rgba(14, 21, 17, 0.4);
}

@media (max-width: 600px) {
  .slider__slide--review {
    padding: 36px 24px;
    min-height: 320px;
  }
  .review__quote-mark { font-size: 64px; }
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(237, 230, 214, 0.15);
  border-left: 1px solid rgba(237, 230, 214, 0.15);
  margin-bottom: 56px;
}

.review {
  padding: 36px 28px;
  border-right: 1px solid rgba(237, 230, 214, 0.15);
  border-bottom: 1px solid rgba(237, 230, 214, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--cream);
}

.review figcaption {
  font-size: 12px;
  color: var(--muted-light);
  letter-spacing: 0.04em;
  margin-top: auto;
}

@media (max-width: 900px) {
  .reviews { grid-template-columns: 1fr; }
}

/* ============== 07 AUDIENCE ============== */
.audience {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.audience li {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 20px);
  padding: 14px 22px;
  border: 1px solid rgba(26, 31, 27, 0.2);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}

.audience li:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-on);
}

/* ============== 08 PARTNERS ============== */
.partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 31, 27, 0.15);
  border-left: 1px solid rgba(26, 31, 27, 0.15);
}

.partner {
  padding: 36px 32px;
  border-right: 1px solid rgba(26, 31, 27, 0.15);
  border-bottom: 1px solid rgba(26, 31, 27, 0.15);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}

.partner--feature {
  grid-column: span 2;
  background: rgba(122, 154, 120, 0.08);
}

.partner__logo {
  background: var(--cream);
  border: 1px solid rgba(26, 31, 27, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  min-height: 140px;
}

.partner__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.partner__logo img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partner__placeholder {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 31, 27, 0.4);
}

.partner__meta h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.partner__role {
  font-size: 12px;
  color: var(--accent-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.partner__text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(26, 31, 27, 0.7);
}

@media (max-width: 768px) {
  .partners { grid-template-columns: 1fr; }
  .partner { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .partner--feature { grid-column: span 1; }
}

/* ============== 09 VENUE ============== */
.venue {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.venue__photo {
  aspect-ratio: 16 / 10;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.venue__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.venue__details > div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(26, 31, 27, 0.15);
}

.venue__details > div:first-child { padding-top: 0; }
.venue__details > div:last-child { border-bottom: none; padding-bottom: 0; }

.venue__details dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 31, 27, 0.5);
  margin-bottom: 8px;
  font-weight: 500;
}

.venue__details dd {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
}

@media (max-width: 900px) {
  .venue { grid-template-columns: 1fr; }
}

.venue__extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.venue__extra figure {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
}

.venue__extra img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.venue__extra figure:hover img { transform: scale(1.03); }

.venue__extra figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(14, 21, 17, 0.7);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

@media (max-width: 600px) {
  .venue__extra { grid-template-columns: 1fr; }
}

/* ============== 10 PRICING ============== */
.section--pricing { padding-bottom: 140px; }

.price {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(237, 230, 214, 0.15);
  padding: 56px;
  background: var(--surface);
  position: relative;
}

.price__top {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(237, 230, 214, 0.12);
  margin-bottom: 40px;
}

.price__date {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.price__main {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.price__from {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.03em;
}

.price__to {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 200;
  color: var(--muted-light);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--muted-light);
  letter-spacing: -0.03em;
}

.price__arrow {
  font-size: 28px;
  color: var(--accent);
  font-weight: 300;
}

.price__note {
  font-size: 14px;
  color: var(--muted-light);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.price__lead {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}

.price__includes {
  list-style: none;
  margin-bottom: 56px;
  border-top: 1px solid rgba(237, 230, 214, 0.12);
}

.price__includes li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(237, 230, 214, 0.12);
  display: flex;
  gap: 16px;
  font-size: 15px;
  color: var(--cream);
  align-items: flex-start;
}

.price__includes .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.price__cta {
  margin-bottom: 24px;
}

.price__small {
  font-size: 13px;
  color: var(--muted-light);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.price__team {
  padding-top: 32px;
  border-top: 1px solid rgba(237, 230, 214, 0.12);
}

.price__team-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
}

.price__team p {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .price { padding: 32px 24px; }
  .price__main { gap: 16px; }
}

/* ============== 10b TICKET INFO ============== */
.price__hint {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
  color: var(--muted-light);
}

.ticket-info {
  max-width: 540px;
  margin: 0 auto 48px;
  border-top: 1px solid rgba(237, 230, 214, 0.18);
}

.ticket-info__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(237, 230, 214, 0.12);
  gap: 16px;
}

.ticket-info__label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.ticket-info__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  text-align: right;
}

.ticket-info__sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-light);
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.price__cta-block {
  text-align: center;
  margin-bottom: 64px;
}

.price__cta-text {
  font-size: 15px;
  color: var(--muted-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.price__includes-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.price__includes-wrap .price__lead {
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .ticket-info__value { font-size: 18px; }
}

/* ============== PAY SUCCESS (после заявки) ============== */
.pay-success {
  max-width: 540px;
  margin: 0 auto;
  border: 1px solid var(--accent);
  background: #fff;
  padding: 48px 40px;
  text-align: center;
}

.pay-success__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 16px;
}

.pay-success__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 28px;
}

.pay-success__text strong {
  color: var(--accent-strong);
  font-weight: 600;
}

.pay-success__qr {
  margin: 0 auto 24px;
  width: 280px;
  height: 280px;
  background: var(--bg);
  padding: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-success__qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pay-success__hint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.pay-success__back {
  display: inline-block;
  font-size: 14px;
  color: var(--accent-strong);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.pay-success__back:hover { color: var(--fg); }

@media (max-width: 768px) {
  .pay-success { padding: 32px 24px; }
  .pay-success__qr { width: 220px; height: 220px; }
}

/* ============== 11 FAQ ============== */
.faq {
  border-top: 1px solid rgba(26, 31, 27, 0.15);
}

.faq__item {
  border-bottom: 1px solid rgba(26, 31, 27, 0.15);
}

.faq__item summary {
  padding: 28px 64px 28px 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -0.005em;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--fg);
  transition: color 0.2s;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 200;
  color: var(--accent);
  transition: transform 0.2s;
  font-family: var(--font-display);
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item summary:hover { color: var(--accent-strong); }

.faq__item p {
  padding: 0 64px 28px 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(26, 31, 27, 0.75);
  max-width: 800px;
}
.faq__list {
  list-style: none;
  padding: 4px 64px 28px 0;
  margin: 0;
  max-width: 800px;
}
.faq__list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(26, 31, 27, 0.78);
  border-bottom: 1px dashed rgba(26, 31, 27, 0.12);
}
.faq__list li:last-child { border-bottom: none; }
.faq__list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(95, 138, 108, 0.15);
  border: 1.5px solid #5F8A6C;
}
.faq__list li::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 22px;
  width: 4px;
  height: 8px;
  border: solid #5F8A6C;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.faq__list li b {
  color: var(--fg);
  font-weight: 700;
}

/* ============== 12 FINAL ============== */
.section--final { padding: 140px 0; }

.final__meta {
  margin-bottom: 48px;
}

.final__brand {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.final__date {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 8px;
}

.final__role {
  font-size: 14px;
  color: var(--muted-light);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.final__signoff {
  margin-top: 64px;
  font-size: 14px;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .section--final { padding: 80px 0; }
}

/* ============== ФОРМА ============== */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.form__intro h2 {
  margin-bottom: 24px;
}

.form__intro p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(26, 31, 27, 0.75);
}

.form__price {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--fg);
  padding: 16px 20px;
  border: 1px solid var(--accent);
  display: inline-block;
  max-width: 100%;
}

@media (min-width: 480px) {
  .form__price {
    font-size: 17px;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__field span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 31, 27, 0.6);
  font-weight: 500;
}

.form__field input[type="text"],
.form__field input[type="tel"],
.form__field input[type="email"] {
  padding: 16px 18px;
  border: 1px solid rgba(26, 31, 27, 0.2);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg);
  border-radius: 0;
  transition: border-color 0.2s;
}

.form__field input:focus {
  outline: none;
  border-color: var(--accent);
}

.form__field--check {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form__field--check input { width: 20px; height: 20px; accent-color: var(--accent); }
.form__field--check span { font-size: 14px; text-transform: none; letter-spacing: 0; color: var(--fg); font-weight: 400; }

.form .btn { align-self: flex-start; margin-top: 16px; }

.form__privacy {
  font-size: 12px;
  color: rgba(26, 31, 27, 0.5);
  line-height: 1.5;
  margin-top: 8px;
}

.form__success {
  padding: 40px 0;
  text-align: center;
}

.form__success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--accent-strong);
}

.form__success p {
  font-size: 16px;
  color: rgba(26, 31, 27, 0.75);
}

.form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(95, 138, 108, 0.15);
  color: #5F8A6C;
  font-size: 36px;
  line-height: 64px;
  text-align: center;
  margin: 0 auto 20px;
  font-weight: 700;
}
.form__success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--fg);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.form__success-text {
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg);
  margin: 0 0 24px;
}
.form__success-text b {
  color: var(--accent-strong);
  font-weight: 700;
}
.form__success-qr {
  display: block;
  width: 240px;
  height: 240px;
  margin: 0 auto 20px;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(26, 31, 27, 0.08);
}
.form__success-hint,
.form__success-note {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(26, 31, 27, 0.65);
  margin: 0 auto 12px;
  max-width: 420px;
}
.form__success-note {
  margin-top: 8px;
  color: var(--accent-strong);
  font-weight: 600;
}

@media (max-width: 900px) {
  .form-wrap { grid-template-columns: 1fr; gap: 48px; }
  .form .btn { width: 100%; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bg);
  color: var(--cream);
  padding: 56px 0;
  border-top: 1px solid var(--border-light);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo {
  height: 80px;
  width: auto;
  display: block;
  background: var(--cream);
  padding: 10px 16px;
}

.footer__meta {
  font-size: 13px;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

/* ============== АДАПТИВ — общий ============== */
@media (max-width: 480px) {
  .section__num { font-size: 56px; }
  .hero__cta .btn { width: 100%; }
  .topbar .btn--small { padding: 8px 14px; font-size: 12px; }
}

/* ============== FOCUS ============== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
