:root {
  --v2-ink: #100608;
  --v2-wine: #16090b;
  --v2-wine-soft: #211012;
  --v2-wine-raised: #2a1516;
  --v2-gold: #d8ad63;
  --v2-gold-bright: #efc579;
  --v2-paper: #fbf6ec;
  --v2-muted: #c8baaa;
  --v2-line: rgba(216, 173, 99, 0.22);
  --v2-line-soft: rgba(251, 246, 236, 0.1);
  --v2-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  --v2-radius: 18px;
  --v2-header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--v2-ink);
}

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

body.v2-page {
  margin: 0;
  color: var(--v2-paper);
  background: var(--v2-wine);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.v2-page img,
body.v2-page svg {
  display: block;
  max-width: 100%;
}

body.v2-page a {
  color: inherit;
}

body.v2-page h1,
body.v2-page h2,
body.v2-page h3,
body.v2-page p,
body.v2-page dl,
body.v2-page dd,
body.v2-page figure,
body.v2-page blockquote {
  margin: 0;
}

body.v2-page h1,
body.v2-page h2,
body.v2-page h3,
.v2-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-wrap: balance;
}

body.v2-page h2 {
  max-width: 820px;
  font-size: clamp(2.15rem, 5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

body.v2-page h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.v2-container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.v2-skip {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--v2-ink);
  background: var(--v2-gold-bright);
  transform: translateY(-160%);
}

.v2-skip:focus {
  transform: translateY(0);
}

.v2-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--v2-header);
  border-bottom: 1px solid var(--v2-line-soft);
  background: rgba(16, 6, 8, 0.94);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.v2-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--v2-header);
  gap: 22px;
}

.v2-brand {
  flex: none;
  color: var(--v2-gold) !important;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.11em;
  text-decoration: none;
}

.v2-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.v2-nav a {
  padding: 11px 10px;
  color: rgba(251, 246, 236, 0.72) !important;
  font-size: 0.82rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease;
}

.v2-nav a:hover,
.v2-nav a:focus-visible,
.v2-nav a[aria-current="page"] {
  color: var(--v2-paper) !important;
  background: rgba(216, 173, 99, 0.1);
}

.v2-header__contacts {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-header__mail {
  color: rgba(251, 246, 236, 0.7) !important;
  font-size: 0.78rem;
  text-decoration: none;
}

.v2-social {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--v2-line);
  border-radius: 10px;
  color: var(--v2-gold) !important;
  background: rgba(216, 173, 99, 0.06);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.v2-social:hover,
.v2-social:focus-visible {
  border-color: rgba(216, 173, 99, 0.65);
  background: rgba(216, 173, 99, 0.12);
}

.v2-social svg {
  width: 22px;
  height: 22px;
}

.v2-social--max {
  width: 50px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.v2-menu {
  display: none;
}

.v2-hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background: var(--v2-wine);
}

.v2-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 150px;
  background: linear-gradient(transparent, var(--v2-wine));
  pointer-events: none;
}

.v2-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 6, 8, 0.97) 0%, rgba(16, 6, 8, 0.88) 43%, rgba(16, 6, 8, 0.52) 72%, rgba(16, 6, 8, 0.82) 100%),
    linear-gradient(180deg, rgba(16, 6, 8, 0.18), rgba(16, 6, 8, 0.7)),
    url("/images/afisha-hero-impressionist.webp") center / cover no-repeat;
  opacity: 0.92;
}

.v2-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  min-height: 700px;
  padding-block: 64px 78px;
}

.v2-eyebrow {
  margin-bottom: 18px !important;
  color: var(--v2-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.v2-hero h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 6.4vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.v2-hero h1 span {
  display: block;
  margin-top: 0.13em;
  color: var(--v2-gold-bright);
  font-size: 0.62em;
  letter-spacing: -0.025em;
}

.v2-hero__lead {
  max-width: 690px;
  margin-top: 28px !important;
  color: rgba(251, 246, 236, 0.8);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.v2-button {
  display: inline-flex;
  min-height: 48px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.v2-button:hover,
.v2-button:focus-visible {
  transform: translateY(-1px);
}

.v2-button--primary {
  color: var(--v2-ink) !important;
  background: linear-gradient(180deg, var(--v2-gold-bright), var(--v2-gold));
  box-shadow: 0 16px 34px rgba(216, 173, 99, 0.16);
}

.v2-button--primary:hover,
.v2-button--primary:focus-visible {
  background: linear-gradient(180deg, #f5d28f, #e2b565);
  box-shadow: 0 18px 40px rgba(216, 173, 99, 0.22);
}

.v2-button--secondary {
  color: var(--v2-gold-bright) !important;
  border-color: var(--v2-line);
  background: rgba(42, 21, 22, 0.72);
}

.v2-button--secondary:hover,
.v2-button--secondary:focus-visible {
  border-color: rgba(216, 173, 99, 0.6);
  background: rgba(55, 27, 28, 0.92);
}

.v2-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px !important;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.v2-proof div {
  padding: 16px 18px 17px 0;
}

.v2-proof div + div {
  padding-left: 18px;
  border-left: 1px solid var(--v2-line-soft);
}

.v2-proof dt {
  color: rgba(251, 246, 236, 0.52);
  font-size: 0.7rem;
  line-height: 1.4;
}

.v2-proof dd {
  margin-top: 5px !important;
  color: var(--v2-paper);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
}

.v2-hero__portrait {
  position: relative;
  align-self: center;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: 24px 24px 80px 24px;
  box-shadow: var(--v2-shadow);
}

.v2-hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(16, 6, 8, 0.94));
  pointer-events: none;
}

.v2-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 48%;
}

.v2-hero__portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.v2-hero__portrait figcaption span {
  display: block;
  color: var(--v2-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.v2-hero__portrait figcaption strong {
  display: block;
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.25;
}

.v2-section {
  padding-block: clamp(72px, 9vw, 118px);
}

.v2-section__header {
  max-width: 870px;
  margin-bottom: 46px;
}

.v2-section__header > p:last-child:not(.v2-eyebrow) {
  max-width: 720px;
  margin-top: 22px !important;
  color: rgba(251, 246, 236, 0.68);
  font-size: 1.06rem;
}

.v2-section__header--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 48px;
}

.v2-section__header--split > p {
  padding-bottom: 6px;
  color: rgba(251, 246, 236, 0.68);
  font-size: 1.02rem;
}

.v2-events {
  position: relative;
  background:
    radial-gradient(circle at 85% 0%, rgba(216, 173, 99, 0.08), transparent 32rem),
    #110708;
}

.v2-events__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.7fr);
  gap: 22px;
}

.v2-event {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(57, 27, 29, 0.92), rgba(27, 12, 14, 0.96));
  box-shadow: var(--v2-shadow);
}

.v2-event--featured {
  padding: clamp(24px, 4vw, 42px);
  border-top: 2px solid var(--v2-gold);
  border-radius: var(--v2-radius) 48px var(--v2-radius) var(--v2-radius);
}

.v2-event--next {
  grid-template-columns: 1fr;
  align-content: start;
  padding: 26px;
  border-radius: var(--v2-radius);
}

.v2-event__date {
  display: flex;
  width: 92px;
  height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 173, 99, 0.35);
  border-radius: 16px;
  color: var(--v2-gold-bright);
  background: rgba(16, 6, 8, 0.42);
}

.v2-event--next .v2-event__date {
  width: 76px;
  height: 94px;
}

.v2-event__date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 0.85;
}

.v2-event--next .v2-event__date strong {
  font-size: 2.25rem;
}

.v2-event__date span {
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-event__date small {
  margin-top: 7px;
  color: rgba(251, 246, 236, 0.62);
  font-size: 0.65rem;
  font-weight: 700;
}

.v2-event__label {
  margin-bottom: 11px !important;
  color: var(--v2-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.v2-event h3 a {
  color: var(--v2-paper) !important;
  text-decoration: none;
}

.v2-event h3 a:hover,
.v2-event h3 a:focus-visible {
  color: var(--v2-gold-bright) !important;
}

.v2-event__description {
  max-width: 650px;
  margin-top: 16px !important;
  color: rgba(251, 246, 236, 0.7);
}

.v2-event__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 28px;
  margin-top: 26px !important;
  padding-top: 24px;
  border-top: 1px solid var(--v2-line-soft);
}

.v2-event__facts dt {
  color: rgba(251, 246, 236, 0.46);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.v2-event__facts dd {
  margin-top: 3px !important;
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.4;
}

.v2-event__actions {
  margin-top: 28px;
}

.v2-event__compact {
  margin-top: 18px !important;
  color: rgba(251, 246, 236, 0.7);
  font-size: 0.92rem;
}

.v2-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--v2-gold-bright) !important;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-color: rgba(216, 173, 99, 0.38);
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.v2-text-link:hover,
.v2-text-link:focus-visible {
  text-decoration-color: var(--v2-gold-bright);
}

.v2-event--next .v2-text-link {
  margin-top: 20px;
}

.v2-events__all {
  margin-top: 24px;
}

.v2-formats {
  background: var(--v2-wine);
}

.v2-formats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--v2-line);
  border-left: 1px solid var(--v2-line-soft);
}

.v2-format {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--v2-line-soft);
  border-bottom: 1px solid var(--v2-line-soft);
  background: rgba(33, 16, 18, 0.3);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.v2-format:hover,
.v2-format:focus-visible {
  z-index: 1;
  background: rgba(57, 27, 29, 0.56);
  transform: translateY(-2px);
}

.v2-format__number {
  color: var(--v2-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.v2-format h3 {
  margin-top: 18px !important;
}

.v2-format p {
  max-width: 510px;
  margin-top: 18px !important;
  color: rgba(251, 246, 236, 0.68);
}

.v2-format strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--v2-gold-bright);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-consultation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 26px 28px;
  border-left: 3px solid var(--v2-gold);
  background: linear-gradient(90deg, rgba(216, 173, 99, 0.08), transparent 72%);
}

.v2-consultation strong,
.v2-consultation span {
  display: block;
}

.v2-consultation strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.v2-consultation span {
  margin-top: 4px;
  color: rgba(251, 246, 236, 0.65);
}

.v2-approach {
  background:
    linear-gradient(90deg, rgba(16, 6, 8, 0.92), rgba(16, 6, 8, 0.68)),
    url("/images/home-academic-depth-20260809.webp") center / cover no-repeat;
}

.v2-approach__grid,
.v2-topics__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.v2-approach__copy {
  padding-top: 36px;
  border-top: 1px solid var(--v2-line);
}

.v2-approach__copy p {
  color: rgba(251, 246, 236, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.v2-approach__copy p + p {
  margin-top: 20px !important;
}

.v2-approach__copy .v2-text-link {
  margin-top: 24px;
}

.v2-reviews {
  background: #100708;
}

.v2-reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 22px;
}

.v2-review {
  padding: 30px;
  border-top: 1px solid var(--v2-line);
  background: linear-gradient(145deg, rgba(57, 27, 29, 0.65), rgba(31, 14, 16, 0.72));
}

.v2-review--featured {
  min-height: 360px;
  padding: clamp(32px, 5vw, 60px);
}

.v2-review p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.8vw, 2rem);
  line-height: 1.36;
}

.v2-review--featured p {
  font-size: clamp(1.65rem, 3.5vw, 2.75rem);
  line-height: 1.26;
}

.v2-review footer {
  margin-top: 28px;
  color: var(--v2-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-reviews__short {
  display: grid;
  gap: 22px;
}

.v2-topics {
  background: var(--v2-wine);
}

.v2-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 20px;
  padding: 0;
  list-style: none;
}

.v2-topic-list li {
  padding: 10px 14px;
  border-bottom: 1px solid var(--v2-line);
  color: rgba(251, 246, 236, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.v2-faq {
  background: #120709;
}

.v2-faq__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .v2-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.45rem;
  }
}

.v2-faq details {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 99, 0.2);
  border-radius: 0.64rem;
  background:
    radial-gradient(ellipse at 82% 4%, rgba(216, 173, 99, 0.045), transparent 40%),
    radial-gradient(ellipse at 16% -18%, rgba(122, 34, 50, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(19, 6, 8, 0.98), rgba(7, 2, 4, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(246, 234, 215, 0.035),
    inset 0 0 28px rgba(216, 173, 99, 0.02),
    0 18px 52px rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.v2-faq details::before,
.v2-faq details::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.v2-faq details::before {
  inset: -1px;
  background:
    linear-gradient(90deg, rgba(216, 173, 99, 0.62) 0 1.45rem, transparent 1.45rem calc(100% - 1.45rem), rgba(216, 173, 99, 0.62) calc(100% - 1.45rem)) top / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(216, 173, 99, 0.46) 0 1.45rem, transparent 1.45rem calc(100% - 1.45rem), rgba(216, 173, 99, 0.46) calc(100% - 1.45rem)) bottom / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(216, 173, 99, 0.62) 0 1.45rem, transparent 1.45rem calc(100% - 1.45rem), rgba(216, 173, 99, 0.62) calc(100% - 1.45rem)) left / 1px 100% no-repeat,
    linear-gradient(180deg, rgba(216, 173, 99, 0.46) 0 1.45rem, transparent 1.45rem calc(100% - 1.45rem), rgba(216, 173, 99, 0.46) calc(100% - 1.45rem)) right / 1px 100% no-repeat;
}

.v2-faq details::after {
  background:
    linear-gradient(180deg, rgba(246, 234, 215, 0.018), transparent 46%),
    radial-gradient(ellipse at 72% 5%, rgba(216, 173, 99, 0.065), transparent 40%);
  opacity: 0.48;
}

.v2-faq details:hover {
  border-color: rgba(216, 173, 99, 0.38);
}

.v2-faq details[open] {
  border-color: rgba(216, 173, 99, 0.32);
  background:
    radial-gradient(ellipse at 30% -16%, rgba(216, 120, 82, 0.075), transparent 34%),
    radial-gradient(ellipse at 42% 8%, rgba(232, 194, 135, 0.055), transparent 42%),
    radial-gradient(ellipse at 14% 18%, rgba(122, 34, 50, 0.24), transparent 48%),
    linear-gradient(145deg, rgba(28, 8, 11, 0.99), rgba(8, 2, 4, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(246, 234, 215, 0.075),
    inset 0 0 28px rgba(216, 173, 99, 0.028),
    0 0 0 1px rgba(216, 173, 99, 0.055),
    0 0 18px rgba(216, 173, 99, 0.03),
    0 20px 54px rgba(0, 0, 0, 0.32);
}

.v2-faq details[open]::after {
  background:
    linear-gradient(180deg, rgba(246, 234, 215, 0.018), transparent 45%),
    radial-gradient(ellipse at 36% 0%, rgba(255, 214, 159, 0.065), transparent 44%);
  opacity: 0.55;
}

.v2-faq summary {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border-radius: inherit;
  color: rgba(232, 194, 135, 0.94);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.28;
  list-style: none;
  text-shadow: 0 0 10px rgba(216, 173, 99, 0.1);
}

.v2-faq details[open] summary {
  min-height: 44px;
}

body.v2-page .v2-faq summary:focus-visible {
  outline-offset: -3px;
}

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

.v2-faq summary span {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
  color: rgba(232, 194, 135, 0.96);
}

.v2-faq summary span::before,
.v2-faq summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.86rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.v2-faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.v2-faq details[open] summary span::after {
  opacity: 0;
}

.v2-faq details > p {
  position: relative;
  z-index: 1;
  margin: 0 12px 14px;
  padding-top: 12px;
  color: rgba(246, 234, 215, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.v2-faq details > p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(70%, 24rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 99, 0.58), rgba(216, 173, 99, 0.18), transparent);
}

.v2-faq details > p::after {
  content: "";
  position: absolute;
  top: -2px;
  left: min(34%, 12rem);
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(232, 194, 135, 0.82);
  box-shadow: 0 0 0 4px rgba(216, 173, 99, 0.08);
}

.v2-signup {
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 173, 99, 0.08), transparent 28rem),
    var(--v2-wine);
}

.v2-signup__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: start;
}

.v2-signup__copy > p:not(.v2-eyebrow):not(.v2-signup__note) {
  margin-top: 24px !important;
  color: rgba(251, 246, 236, 0.7);
  font-size: 1.08rem;
}

.v2-signup__note {
  margin-top: 28px !important;
  padding: 18px 20px;
  border-left: 3px solid var(--v2-gold);
  color: var(--v2-gold-bright);
  background: rgba(216, 173, 99, 0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.4;
}

.v2-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: rgba(42, 21, 22, 0.74);
  box-shadow: var(--v2-shadow);
}

.v2-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.v2-form label {
  display: block;
  color: rgba(251, 246, 236, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
}

.v2-form label + label,
.v2-form__row + label {
  margin-top: 18px;
}

.v2-form__row label + label {
  margin-top: 0;
}

.v2-form input,
.v2-form select,
.v2-form textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 173, 99, 0.2);
  border-radius: 10px;
  outline: none;
  color: var(--v2-paper);
  background: rgba(16, 6, 8, 0.54);
  font: inherit;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.v2-form textarea {
  min-height: 132px;
  resize: vertical;
}

.v2-form input::placeholder,
.v2-form textarea::placeholder {
  color: rgba(251, 246, 236, 0.38);
}

.v2-form input:focus,
.v2-form select:focus,
.v2-form textarea:focus {
  border-color: var(--v2-gold);
  box-shadow: 0 0 0 3px rgba(216, 173, 99, 0.12);
}

.v2-consent {
  display: flex !important;
  min-height: 48px;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px !important;
  cursor: pointer;
  color: rgba(251, 246, 236, 0.62) !important;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
}

.v2-consent input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--v2-gold);
}

.v2-consent a {
  color: rgba(251, 246, 236, 0.82) !important;
  text-underline-offset: 3px;
}

.v2-form__submit {
  width: 100%;
  margin-top: 18px;
  cursor: pointer;
}

.v2-form__submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.v2-form__status {
  min-height: 24px;
  margin-top: 10px !important;
  color: var(--v2-gold-bright);
  font-size: 0.88rem;
}

.v2-form__status[data-error="true"] {
  color: #f1b4b0;
}

/* Event detail pages */
.v2-event-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 34px 82px;
  background: var(--v2-ink);
}

.v2-event-hero__backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 6, 8, 0.97) 0%, rgba(16, 6, 8, 0.9) 48%, rgba(16, 6, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(16, 6, 8, 0.12) 0%, var(--v2-ink) 100%),
    url("/images/afisha-hero-impressionist.webp") 65% center / cover no-repeat;
  opacity: 0.96;
}

.v2-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  margin-bottom: 42px;
  color: rgba(251, 246, 236, 0.55);
  font-size: 0.78rem;
}

.v2-breadcrumbs a {
  color: rgba(251, 246, 236, 0.72) !important;
  text-decoration: none;
}

.v2-breadcrumbs a:hover,
.v2-breadcrumbs a:focus-visible {
  color: var(--v2-gold-bright) !important;
}

.v2-event-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(44px, 8vw, 108px);
  align-items: end;
}

.v2-event-hero h1 {
  max-width: 770px;
  font-size: clamp(3.4rem, 7.5vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.v2-event-hero h1 span {
  display: block;
  margin-top: 14px;
  color: var(--v2-gold-bright);
  font-size: 0.44em;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.v2-event-hero__lead {
  max-width: 690px;
  margin-top: 28px !important;
  color: rgba(251, 246, 236, 0.75);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.58;
}

.v2-event-hero .v2-button {
  margin-top: 34px;
}

.v2-event-summary {
  padding: 8px 0;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.v2-event-summary > div {
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 18px;
  padding-block: 17px;
}

.v2-event-summary > div + div {
  border-top: 1px solid var(--v2-line-soft);
}

.v2-event-summary dt {
  color: var(--v2-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v2-event-summary dd {
  color: rgba(251, 246, 236, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

.v2-event-content {
  background: var(--v2-paper);
  color: #2b1917;
}

.v2-event-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.62fr);
  gap: clamp(44px, 9vw, 120px);
  align-items: start;
}

.v2-event-content .v2-eyebrow {
  color: #89642e;
}

.v2-event-content h2 {
  max-width: 650px;
  color: #241311;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.v2-event-content__copy {
  padding-top: 42px;
  color: #5f4b45;
  font-size: 1.05rem;
}

.v2-event-content__copy p + p {
  margin-top: 20px !important;
}

.v2-event-content__copy .v2-text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #6d4d1d !important;
}

.v2-footer {
  padding-block: 52px;
  border-top: 1px solid var(--v2-line-soft);
  background: #0d0506;
}

.v2-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 48px;
}

.v2-footer p {
  margin-top: 14px !important;
  color: rgba(251, 246, 236, 0.48);
  font-size: 0.9rem;
}

.v2-footer nav,
.v2-footer__contacts {
  display: grid;
  align-content: start;
  gap: 8px;
}

.v2-footer nav a,
.v2-footer__contacts a {
  min-height: 30px;
  color: rgba(251, 246, 236, 0.64) !important;
  font-size: 0.88rem;
  text-decoration: none;
}

.v2-footer nav a:hover,
.v2-footer nav a:focus-visible,
.v2-footer__contacts a:hover,
.v2-footer__contacts a:focus-visible {
  color: var(--v2-gold-bright) !important;
}

body.v2-page :focus-visible {
  outline: 2px solid var(--v2-gold-bright);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .v2-header__mail { display: none; }
  .v2-nav a { padding-inline: 7px; font-size: 0.76rem; }
  .v2-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr); }
}

@media (max-width: 920px) {
  :root { --v2-header: 68px; }
  .v2-nav--desktop { display: none; }
  .v2-header__contacts { margin-left: auto; padding-right: 58px; }
  .v2-header__contacts .v2-social--max { display: none; }
  .v2-menu { display: block; position: absolute; right: 0; top: 10px; }
  .v2-menu > summary {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--v2-line);
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
    background: rgba(42, 21, 22, 0.82);
  }
  .v2-menu > summary::-webkit-details-marker { display: none; }
  .v2-menu > summary span { display: block; width: 21px; height: 2px; background: var(--v2-gold); transition: transform 180ms ease, opacity 180ms ease; }
  .v2-menu[open] > summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .v2-menu[open] > summary span:nth-child(2) { opacity: 0; }
  .v2-menu[open] > summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .v2-menu nav {
    position: fixed;
    top: var(--v2-header);
    right: 0;
    left: 0;
    display: grid;
    padding: 16px;
    border-top: 1px solid var(--v2-line-soft);
    background: rgba(16, 6, 8, 0.98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  }
  .v2-menu nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 9px 14px;
    border-bottom: 1px solid var(--v2-line-soft);
    color: rgba(251, 246, 236, 0.82) !important;
    text-decoration: none;
  }
  .v2-menu nav a[aria-current="page"] { color: var(--v2-gold-bright) !important; }
  .v2-hero__grid { grid-template-columns: 1fr 0.68fr; gap: 34px; }
  .v2-hero h1 { font-size: clamp(3.1rem, 7.6vw, 4.8rem); }
  .v2-proof { grid-template-columns: 1fr; }
  .v2-proof div { padding: 12px 0; }
  .v2-proof div + div { padding-left: 0; border-top: 1px solid var(--v2-line-soft); border-left: 0; }
  .v2-events__grid { grid-template-columns: 1fr; }
  .v2-event--next { grid-template-columns: auto 1fr; }
  .v2-event--next .v2-event__date { width: 86px; }
  .v2-signup__grid { grid-template-columns: 1fr; }
  .v2-event-hero__grid { grid-template-columns: 1fr; gap: 46px; }
  .v2-event-summary { max-width: 620px; }
  .v2-event-content__grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 720px) {
  .v2-container { width: min(100% - 28px, 1180px); }
  .v2-header__inner { justify-content: center; }
  .v2-header__contacts { position: absolute; left: 0; margin: 0; padding: 0; }
  .v2-header__contacts .v2-social { width: 48px; height: 48px; }
  .v2-brand { font-size: 1.18rem; letter-spacing: 0.08em; }
  .v2-hero { min-height: 0; }
  .v2-hero__backdrop {
    background:
      linear-gradient(180deg, rgba(16, 6, 8, 0.93) 0%, rgba(16, 6, 8, 0.78) 42%, rgba(16, 6, 8, 0.96) 100%),
      url("/images/afisha-hero-impressionist.webp") 62% center / cover no-repeat;
  }
  .v2-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding-block: 46px 58px;
  }
  .v2-eyebrow { margin-bottom: 14px !important; font-size: 0.69rem; letter-spacing: 0.22em; }
  .v2-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); line-height: 0.98; }
  .v2-hero h1 span { font-size: 0.56em; line-height: 1.08; }
  .v2-hero__lead { margin-top: 20px !important; font-size: 1.05rem; line-height: 1.58; }
  .v2-actions { display: grid; margin-top: 24px; }
  .v2-button { width: 100%; min-height: 52px; padding-inline: 18px; }
  .v2-hero__portrait { grid-row: 2; width: 100%; max-height: none; aspect-ratio: 1 / 0.84; border-radius: 18px 18px 44px 18px; }
  .v2-hero__portrait img { object-position: 57% 42%; }
  .v2-hero__portrait figcaption { right: 18px; bottom: 16px; left: 18px; }
  .v2-hero__portrait figcaption strong { font-size: 1.05rem; }
  .v2-proof { margin-top: 22px !important; }
  .v2-proof div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; align-items: baseline; }
  .v2-proof dt { font-size: 0.72rem; }
  .v2-proof dd { font-size: 0.88rem; }
  .v2-section { padding-block: 66px; }
  .v2-section__header { margin-bottom: 30px; }
  .v2-section__header--split { grid-template-columns: 1fr; gap: 16px; }
  .v2-section__header--split > p { padding: 0; }
  body.v2-page h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .v2-events__grid { gap: 16px; }
  .v2-event,
  .v2-event--next { grid-template-columns: 1fr; gap: 18px; }
  .v2-event--featured { padding: 22px; border-radius: 16px 34px 16px 16px; }
  .v2-event--next { padding: 22px; }
  .v2-event__date,
  .v2-event--next .v2-event__date { width: 82px; height: 96px; }
  .v2-event__date strong { font-size: 2.25rem; }
  .v2-event__facts { grid-template-columns: 1fr; gap: 12px; margin-top: 20px !important; padding-top: 18px; }
  .v2-event__actions .v2-button { width: 100%; }
  .v2-formats__grid { grid-template-columns: 1fr; border-left: 0; }
  .v2-format { min-height: 0; padding: 28px 2px; border-right: 0; background: transparent; }
  .v2-format p { margin-top: 12px !important; }
  .v2-format strong { padding-top: 20px; }
  .v2-consultation { display: grid; padding: 22px 18px; }
  .v2-approach__grid,
  .v2-topics__grid { grid-template-columns: 1fr; gap: 30px; }
  .v2-approach__copy { padding-top: 24px; }
  .v2-reviews__grid { grid-template-columns: 1fr; }
  .v2-review,
  .v2-review--featured { min-height: 0; padding: 28px 22px; }
  .v2-review--featured p { font-size: 1.65rem; }
  .v2-review p { font-size: 1.28rem; }
  .v2-reviews__short { gap: 14px; }
  .v2-topic-list { gap: 6px 10px; }
  .v2-topic-list li { padding-inline: 0; margin-right: 10px; }
  .v2-form { padding: 22px 16px; }
  .v2-form__row { grid-template-columns: 1fr; gap: 18px; }
  .v2-form__row label + label { margin-top: 0; }
  .v2-form input,
  .v2-form select,
  .v2-form textarea { font-size: 16px; }
  .v2-event-hero { padding-block: 18px 58px; }
  .v2-event-hero__backdrop {
    background:
      linear-gradient(180deg, rgba(16, 6, 8, 0.9) 0%, rgba(16, 6, 8, 0.78) 34%, var(--v2-ink) 100%),
      url("/images/afisha-hero-impressionist.webp") 64% center / cover no-repeat;
  }
  .v2-breadcrumbs { margin-bottom: 26px; font-size: 0.72rem; }
  .v2-event-hero__grid { gap: 38px; }
  .v2-event-hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .v2-event-hero h1 span { margin-top: 10px; font-size: 0.5em; }
  .v2-event-hero__lead { margin-top: 22px !important; font-size: 1rem; }
  .v2-event-hero .v2-button { margin-top: 26px; }
  .v2-event-summary > div { grid-template-columns: 92px 1fr; gap: 14px; padding-block: 15px; }
  .v2-event-content__grid { gap: 8px; }
  .v2-event-content__copy { padding-top: 18px; font-size: 1rem; }
  .v2-footer { padding-block: 42px; }
  .v2-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .v2-footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 380px) {
  .v2-brand { font-size: 1.02rem; }
  .v2-hero h1 { font-size: 2.42rem; }
  .v2-footer__grid { grid-template-columns: 1fr; }
  .v2-footer__grid > div:first-child { grid-column: auto; }
}
