:root {
  --blue: #145894;
  --red: #d71920;
  --olive: #7d8d57;
  --rose: #b5666f;
  --ink: #212c3e;
  --graphite: #212c3e;
  --paper: #d9cbc0;
  --cream: #fffaf0;
  --white: #ffffff;
  --line: rgba(21, 21, 21, 0.12);
  --muted: #645f55;
  --shadow: 0 28px 70px rgba(21, 21, 21, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 116px;
}

.brand img.brand__altx {
  width: 104px;
  padding-left: 16px;
  border-left: 1px solid rgba(21, 21, 21, 0.15);
  box-sizing: content-box;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: rgba(21, 21, 21, 0.7);
  font-size: 15px;
  font-weight: 800;
}

.nav a,
.nav__button,
.topbar__cta,
.button {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav a:hover,
.nav__button:hover,
.contact-strip a:hover {
  color: var(--red);
}

.nav__button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.topbar__cta {
  min-width: 118px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
}

.topbar__cta:hover,
.button:hover {
  transform: translateY(-2px);
}

/* Гамбургер и мобильное меню — скрыты на десктопе, включаются в @media ниже */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 220ms ease, opacity 180ms ease;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(810px, calc(100vh - 74px));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: stretch;
  padding: clamp(28px, 4vw, 64px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(115deg, var(--paper) 0 58%, var(--blue) 58% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: var(--ink);
  clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
}

.hero__visual {
  --hero-radius: 34px;
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: min(640px, 100%);
  height: clamp(430px, 58vw, 650px);
  overflow: hidden;
  border-radius: var(--hero-radius);
  box-shadow: var(--shadow);
  transform: rotate(3.5deg);
  animation: floatPhoto 8s ease-in-out infinite;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: var(--hero-radius);
  transform: scale(1.065);
  transition: transform 6800ms ease-out;
}

.hero__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--hero-radius);
  -webkit-clip-path: inset(0 round var(--hero-radius));
  clip-path: inset(0 round var(--hero-radius));
  isolation: isolate;
  opacity: 0;
  transition: opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero__slide.is-active .hero__photo {
  transform: scale(1);
}

.hero__slide:nth-child(2) .hero__photo {
  object-position: center 56%;
}

.hero__slide:nth-child(3) .hero__photo {
  object-position: center 58%;
}

.hero__dots {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  background: rgba(21, 21, 21, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 280ms ease, background 280ms ease, transform 180ms ease;
}

.hero__dots button:hover {
  transform: scale(1.12);
}

.hero__dots button.is-active {
  width: 28px;
  background: #fff;
}

.hero__content {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 790px;
  padding: clamp(36px, 6vw, 82px) 0 0;
  animation: heroTextIn 750ms ease both;
}

.hero__note {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(28px, 4vw, 58px);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 10px;
  width: min(370px, calc(100% - 36px));
  animation: heroTextIn 850ms 180ms ease both;
}

.hero__note span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.16);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

/* Ровное распределение строк в заголовках (переносит по словам, не рвёт слова) */
h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(52px, 7.2vw, 92px);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 20px;
  color: rgba(21, 21, 21, 0.76);
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.25;
  font-weight: 700;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 20px 0 0;
}

.hero__meta div {
  min-height: 82px;
  padding: 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 22px;
}

.hero__meta div:nth-child(2) {
  background: var(--blue);
}

.hero__meta div:nth-child(3) {
  background: var(--red);
}

.hero__meta dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__meta dd {
  margin: 6px 0 0;
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button--primary {
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.button--primary:hover {
  background: var(--red);
}

.button--secondary {
  color: var(--ink);
  background: var(--white);
}

.paint-ticker {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.paint-ticker__track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 14px 0;
  animation: ticker 22s linear infinite;
}

.paint-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.paint-ticker span::before {
  content: "";
  width: 34px;
  height: 14px;
  border-radius: 999px;
  background: var(--blue);
}

.paint-ticker span:nth-child(3n)::before {
  background: var(--red);
}

.paint-ticker span:nth-child(4n)::before {
  background: var(--white);
}

.section {
  padding: clamp(70px, 8vw, 124px) clamp(18px, 5vw, 72px);
}

.section__heading {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.registration .section__heading h2 {
  max-width: 920px;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.02;
}

.registration .split-heading {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 400px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.intro {
  background: var(--cream);
}

.studio-block {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
  align-items: stretch;
}

.studio-block__image {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.studio-block__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(21, 21, 21, 0.58), transparent);
}

.studio-block__image img,
.next-event__image img,
.theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.studio-block__image:hover img,
.next-event:hover .next-event__image img,
.theme-card:hover img {
  transform: scale(1.045);
}

.intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.benefit {
  position: relative;
  min-height: 236px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 12px 35px rgba(21, 21, 21, 0.08);
}

.benefit::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.3;
}

.benefit:nth-child(2)::after {
  background: var(--blue);
}

.benefit:nth-child(3)::after {
  background: var(--red);
}

.benefit:nth-child(4)::after {
  background: var(--olive);
}

.benefit__number {
  display: block;
  margin-bottom: auto;
  color: var(--blue);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.benefit p,
.theme-card p,
.timeline p,
.registration__copy p,
.proof__content p {
  color: var(--muted);
}

.themes {
  overflow: hidden;
  background:
    linear-gradient(112deg, var(--paper) 0 58%, rgba(20, 88, 148, 0.16) 58% 100%);
}

.next-event {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.next-event__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 62px);
}

.next-event__copy .eyebrow {
  color: #7db5ea;
}

.next-event__copy h3 {
  max-width: 640px;
  font-size: clamp(34px, 5vw, 62px);
}

.next-event__copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.next-event__image {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 480px;
  margin: 22px 0 16px;
}

.countdown div {
  min-height: 104px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 24px;
}

.countdown strong {
  display: block;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  font-weight: 900;
}

.event-date {
  margin-bottom: 22px;
  font-weight: 900;
}

.theme-grid--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.event-strip {
  margin-top: 16px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 34px;
  box-shadow: 0 14px 40px rgba(21, 21, 21, 0.08);
}

.event-strip__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.event-strip__head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.event-strip__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.event-strip__nav button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.event-strip__nav button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.event-strip__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.event-strip__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  padding-bottom: 6px;
}

.event-card {
  height: 100%;
  min-width: 0;
  scroll-snap-align: start;
}

.event-card img {
  aspect-ratio: 16 / 10;
  max-height: none;
}

.event-card div {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.event-card span {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
}

.event-card p {
  font-size: 16px;
  line-height: 1.42;
}

.event-card strong {
  margin-top: auto;
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.25;
}

.event-strip__empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: #fff;
  border-radius: 18px;
}

.theme-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 30px;
  box-shadow: 0 14px 40px rgba(21, 21, 21, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(21, 21, 21, 0.14);
}

.theme-card img {
  aspect-ratio: 4 / 3;
}

.theme-card div {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.theme-card strong {
  margin-top: auto;
}

.theme-card.event-card div {
  min-height: 360px;
}

.program {
  color: #fff;
  background: var(--graphite);
}

.program .eyebrow,
.program .timeline span {
  color: #7db5ea;
}

.program .split-heading > p,
.program .timeline p {
  color: rgba(255, 255, 255, 0.68);
}

.program-slider__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}

.program-slider__meta h3 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.6vw, 30px);
}

.program-slider__meta p {
  margin: 0;
  color: #7db5ea;
  font-weight: 900;
}

.program-slider__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.program-slider__nav span {
  font-weight: 900;
  opacity: 0.75;
}

.program-slider__nav button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.program-slider__nav button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.program-slider__viewport {
  overflow: hidden;
}

.program-slider__track {
  display: flex;
  transition: transform 360ms ease;
}

.program-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline li {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  counter-increment: steps;
}

.timeline li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  color: var(--ink);
  background: #7db5ea;
  border-radius: 18px;
  font-size: 34px;
  font-weight: 900;
}

.timeline span {
  display: block;
  margin: 30px 0 10px;
  font-weight: 900;
}

.proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: #fff;
  background: var(--blue);
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 24%, transparent 24% 54%, rgba(0, 0, 0, 0.12) 54% 100%);
}

.proof > * {
  position: relative;
  z-index: 1;
}

.proof .eyebrow {
  color: #a9cdf0;
}

.proof__content h2 {
  margin-bottom: 18px;
}

.proof__content p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
}

.proof__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof__list {
  grid-auto-rows: 1fr;
}

.proof__list li {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  font-weight: 900;
  line-height: 1.3;
}

.proof__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue);
  background: rgba(20, 88, 148, 0.12);
  border-radius: 14px;
  flex-shrink: 0;
}

.proof__icon svg {
  width: 24px;
  height: 24px;
}

.registration {
  background: var(--cream);
}

.solutions {
  background: #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 14px 40px rgba(21, 21, 21, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(21, 21, 21, 0.14);
}

.solution-card__image {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.solution-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.solution-card:hover .solution-card__image img {
  transform: scale(1.045);
}

.solution-card div {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.solution-card span {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card p {
  color: var(--muted);
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.lead-form--steps {
  align-content: start;
}

.lead-step {
  display: grid;
  gap: 16px;
}

.form-step-heading {
  display: grid;
  gap: 8px;
}

.form-step-heading span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--blue);
  background: rgba(20, 88, 148, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-step-heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.form-step-heading p {
  margin: 0;
  color: var(--muted);
}

.audience-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 20px;
  color: var(--ink);
  text-align: left;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.audience-card:hover,
.audience-card--active {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(21, 21, 21, 0.12);
}

.audience-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.audience-card strong {
  font-size: 22px;
  line-height: 1.08;
}

.audience-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.branch-panel {
  display: grid;
  gap: 16px;
}

.branch-note {
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.branch-note strong {
  display: block;
  margin-bottom: 8px;
}

.branch-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-back {
  justify-self: start;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-submit-area {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
}

.lead-form .consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 1px;
  padding: 0;
  flex-shrink: 0;
  accent-color: #145894;
}

.lead-form .consent a {
  color: #145894;
  text-decoration: underline;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.footer img {
  width: 132px;
}

.footer p {
  margin: 0;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 22px;
}

.contact-modal.is-open {
  display: grid;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(8, 10, 14, 0.78);
  border: 0;
  cursor: pointer;
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  background: var(--cream);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.contact-modal__content {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(420px, 1.18fr);
  min-height: 590px;
}

.contact-modal__details {
  padding: clamp(28px, 4vw, 52px);
}

.contact-modal__details h2 {
  margin-bottom: 34px;
  font-size: clamp(42px, 5vw, 68px);
}

.contact-modal__details h3 {
  margin-bottom: 22px;
  font-size: 27px;
}

.contact-list {
  display: grid;
  gap: 17px;
  margin: 0 0 24px;
}

.contact-list div {
  display: grid;
  gap: 4px;
}

.contact-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.contact-list a,
.contact-modal__hotline a {
  color: var(--blue);
}

.contact-list a:hover,
.contact-modal__hotline a:hover {
  color: var(--red);
}

.contact-modal__hotline {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-modal__hotline a {
  font-size: 18px;
  font-weight: 900;
}

.contact-modal__route {
  width: 100%;
}

.contact-modal__map {
  min-height: 590px;
  overflow: hidden;
  background: var(--paper);
}

.contact-modal__map iframe {
  width: 100%;
  height: 100%;
  min-height: 590px;
  border: 0;
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(21, 21, 21, 0.82);
  border: 0;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 22px;
}

.image-modal.is-open {
  display: grid;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(8, 10, 14, 0.78);
  border: 0;
  cursor: zoom-out;
}

.image-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100vh - 44px);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.image-modal__dialog img {
  width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
  background: #050505;
}

.image-modal__dialog p {
  margin: 0;
  padding: 14px 18px 18px;
  font-weight: 900;
}

.image-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(0, 0, 0, 0.68);
  border: 0;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: softRise 420ms ease both;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatPhoto {
  0%,
  100% {
    transform: rotate(3.5deg) translateY(0);
  }
  50% {
    transform: rotate(2.4deg) translateY(-14px);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softRise {
  from {
    opacity: 0.42;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Полноширинная пошаговая форма записи ===== */
.lead-form [hidden] {
  display: none !important;
}

/* Подсветка незаполненного поля при отправке */
.lead-form label.field-invalid > input,
.lead-form label.field-invalid > select {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.16);
}

.lead-form .option-group.field-invalid > legend {
  color: var(--red);
}

.lead-form .option-group.field-invalid .option-grid,
.lead-form .option-group.field-invalid .pill-group {
  outline: 2px solid var(--red);
  outline-offset: 8px;
  border-radius: 18px;
}

.lead-form .consent.field-invalid {
  color: var(--red);
}

.lead-form .consent.field-invalid input {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.lead-form .field-invalid {
  animation: fieldInvalidPulse 420ms ease;
}

@keyframes fieldInvalidPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.lead-form--wizard {
  gap: 24px;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(22px, 4vw, 46px);
}

.wizard-progress {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  margin: 0;
  padding: 0 0 20px;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.wizard-progress li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.wizard-progress li span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: rgba(21, 21, 21, 0.08);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.wizard-progress li em {
  font-style: normal;
}

.wizard-progress li:not(:last-child)::after {
  content: "";
  width: clamp(16px, 4vw, 54px);
  height: 2px;
  background: var(--line);
  border-radius: 2px;
}

.wizard-progress li.is-active {
  color: var(--ink);
}

.wizard-progress li.is-active span {
  color: #fff;
  background: var(--ink);
}

.wizard-progress li.is-done {
  color: var(--blue);
}

.wizard-progress li.is-done span {
  color: #fff;
  background: var(--blue);
}

.lead-step--active {
  animation: stepIn 320ms ease both;
}

.form-success {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 56px);
  text-align: center;
  background: #f4fbf6;
  border: 1px solid rgba(43, 128, 77, 0.22);
  border-radius: 24px;
}

.form-success__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  background: #2b804d;
  border-radius: 50%;
}

.form-success h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.form-success p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead-form--wizard .audience-choice {
  gap: 14px;
}

.lead-form--wizard .audience-card {
  align-content: start;
  min-height: 230px;
  padding: 26px;
  gap: 12px;
}

.audience-card .audience-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--blue);
  background: rgba(20, 88, 148, 0.1);
  border-radius: 16px;
}

.audience-card .audience-card__icon svg {
  width: 28px;
  height: 28px;
}

.audience-card .audience-card__meta {
  margin-top: auto;
  width: fit-content;
  padding: 7px 12px;
  color: var(--ink);
  background: rgba(21, 21, 21, 0.06);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.branch-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
  align-items: stretch;
}

.branch-intro__image {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 26px;
}

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

.event-brief {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
  background: var(--ink);
  border-radius: 26px;
}

.event-brief .eyebrow {
  margin: 0;
  color: #7db5ea;
}

.event-brief h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.02;
}

.event-brief__date {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.event-brief__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.event-brief__tags span {
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 900;
}

.branch-about {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(20px, 3vw, 30px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.branch-about > p {
  margin: 0;
  font-weight: 700;
}

.intro-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-points li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.intro-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.wizard-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lead-form .event-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 2px 0 0;
  padding: 9px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.event-chip svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}

.event-chip span {
  width: auto;
  padding: 0;
  color: inherit;
  background: none;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.event-select-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.event-select-panel label {
  font-size: 16px;
}

.event-select-panel select {
  appearance: none;
  padding-right: 54px;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5' fill='none' stroke='%23222f46' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px 18px;
}

.event-select-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.field-grid label small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lead-form .field-grid > .option-group {
  gap: 14px;
}

.lead-form .field-grid > .option-group legend {
  margin-bottom: 7px;
}

.lead-form .field-grid > .option-group .pill-group {
  min-height: 50px;
  align-items: center;
  gap: 12px;
}

.lead-form .field-grid > .option-group .pill {
  min-height: 50px;
  padding-inline: 20px;
}

.lead-form .option-group {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.lead-form .option-group legend {
  padding: 0;
  font-weight: 900;
}

.lead-form .option-group legend small {
  margin-left: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.option-grid {
  display: grid;
  gap: 10px;
}

.option-grid--half {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-grid--rooms {
  grid-template-columns: repeat(auto-fit, minmax(188px, 1fr));
}

.lead-form .option-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 12px 42px 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form .option-grid--rooms .option-card {
  min-height: 62px;
  padding-right: 48px;
}

.lead-form .option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 88, 148, 0.45);
}

.lead-form .option-card input,
.lead-form .pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.lead-form .option-card svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.lead-form .option-card span {
  min-width: 0;
  font-size: 15px;
  line-height: 1.25;
}

.lead-form .option-card span small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lead-form .option-card::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: transparent;
  background: #fff;
  border: 1.6px solid rgba(21, 21, 21, 0.22);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.lead-form .option-card:has(input:checked) {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(20, 88, 148, 0.14);
}

.lead-form .option-card:has(input:checked)::after {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.lead-form .option-card:has(input:focus-visible),
.lead-form .pill:has(input:focus-visible) {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lead-form .pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.lead-form .pill:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 88, 148, 0.45);
}

.lead-form .pill svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.lead-form .pill:has(input:checked) {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.lead-form .pill:has(input:checked) svg {
  color: #7db5ea;
}

.registration__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  margin-top: 26px;
  text-align: center;
}

@media (max-width: 980px) {
  .registration .split-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .registration .section__heading h2 {
    max-width: 760px;
  }

  .branch-intro,
  .option-grid--half,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .branch-intro__image {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .lead-form--wizard {
    padding: 20px 16px;
  }

  .form-success {
    gap: 14px;
    padding: 30px 16px;
    border-radius: 18px;
  }

  .form-success__icon {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .form-success p {
    font-size: 16px;
  }

  .wizard-progress {
    gap: 8px;
  }

  .wizard-progress li:not(.is-active) em {
    display: none;
  }

  .wizard-progress li:not(:last-child)::after {
    width: 14px;
  }

  .option-grid--rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-strip__nav {
    display: none;
  }

  .event-select-panel {
    padding: 14px;
  }

  /* На узких карточках помещений кружок не помещается — выбор показываем цветом */
  .lead-form .option-grid--rooms .option-card {
    min-height: 54px;
    padding-right: 14px;
  }

  .lead-form .option-grid--rooms .option-card::after {
    display: none;
  }

  .lead-form .option-grid--rooms .option-card:has(input:checked) {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
  }

  .lead-form .option-grid--rooms .option-card:has(input:checked) svg {
    color: #fff;
  }

  .wizard-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .wizard-nav .form-back {
    align-self: center;
    padding: 10px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__slide:not(.is-active) {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero,
  .studio-block,
  .next-event,
  .registration,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    --hero-radius: 22px;
    grid-column: 1;
    width: min(680px, 92%);
    justify-self: end;
    height: 430px;
  }

  .hero__note {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 5;
    width: 100%;
    margin-top: 18px;
  }

  .next-event__image {
    clip-path: none;
  }

  .theme-grid--compact,
  .solutions-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .topbar {
    position: static;
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 110px;
  }

  .brand img.brand__altx {
    width: 88px;
    padding-left: 12px;
  }

  .nav {
    display: none;
  }

  .topbar__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    background: rgba(21, 21, 21, 0.5);
    border: 0;
    opacity: 0;
    transition: opacity 240ms ease;
    cursor: pointer;
  }

  .mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
  }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: min(320px, 82vw);
    height: 100%;
    padding: 78px 22px 28px;
    background: var(--cream);
    box-shadow: -20px 0 60px rgba(21, 21, 21, 0.28);
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }

  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }

  .mobile-menu__panel a {
    padding: 15px 14px;
    color: var(--ink);
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
  }

  .mobile-menu__link {
    padding: 15px 14px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 16px;
    font: inherit;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
  }

  .mobile-menu__link:active {
    background: rgba(20, 88, 148, 0.1);
  }

  .mobile-menu__panel a:active {
    background: rgba(20, 88, 148, 0.1);
  }

  .mobile-menu__panel a.mobile-menu__cta {
    margin-top: 10px;
    justify-content: center;
    color: #fff;
    font-size: 17px;
  }

  .mobile-menu__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 44px;
    height: 44px;
    color: var(--ink);
    background: transparent;
    border: 0;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: auto;
    padding: 22px 16px 20px;
    overflow: visible;
    background: linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
  }

  .hero::before {
    display: none;
  }

  .hero__visual {
    order: 2;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: min(54vw, 250px);
    min-height: 190px;
    align-self: stretch;
    justify-self: auto;
    transform: none;
    animation: none;
    border-radius: var(--hero-radius);
    box-shadow: 0 14px 34px rgba(21, 21, 21, 0.14);
  }

  .hero__dots {
    right: 12px;
    top: 12px;
  }

  .hero__content {
    order: 1;
    grid-column: auto;
    grid-row: auto;
    padding: 8px 0 0;
    max-width: none;
  }

  .hero__note {
    display: none;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(34px, 9.4vw, 46px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(27px, 7.4vw, 34px);
    line-height: 1.04;
  }

  .hero__lead {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.34;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__actions .button {
    min-height: 48px;
    font-size: 16px;
  }

  .hero__actions .button--secondary {
    display: none;
  }

  .hero__meta {
    order: 2;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(21, 21, 21, 0.08);
  }

  .hero__meta div {
    min-height: auto;
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--ink);
    background: transparent !important;
    border-radius: 0;
  }

  .hero__meta div + div {
    border-top: 1px solid rgba(21, 21, 21, 0.1);
  }

  .hero__meta dt {
    color: var(--muted);
    font-size: 11px;
  }

  .hero__meta dd {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
  }

  .paint-ticker__track {
    padding: 11px 0;
  }

  .paint-ticker span {
    font-size: 12px;
  }

  .split-heading,
  .intro__grid,
  .theme-grid--compact,
  .solutions-grid,
  .timeline,
  .proof__list,
  .countdown {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 16px;
  }

  .split-heading {
    gap: 14px;
  }

  .split-heading > p {
    font-size: 16px;
  }

  .studio-block {
    gap: 14px;
  }

  .studio-block__image {
    min-height: 260px;
  }

  .benefit {
    min-height: 190px;
    padding: 20px;
  }

  .benefit__number {
    margin-bottom: 30px;
    font-size: 34px;
  }

  .next-event,
  .studio-block__image,
  .theme-card,
  .benefit,
  .lead-form {
    border-radius: 24px;
  }

  .audience-choice {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

  .next-event__copy {
    padding: 26px;
  }

  .next-event {
    min-height: auto;
  }

  .next-event__copy h3 {
    font-size: clamp(27px, 7.4vw, 34px);
    line-height: 1.06;
  }

  .next-event__image {
    min-height: 260px;
  }

  .countdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .countdown div {
    min-height: 84px;
    padding: 12px;
  }

  .countdown strong {
    font-size: 34px;
  }

  .theme-card div {
    min-height: auto;
  }

  .event-strip {
    padding: 16px;
    border-radius: 24px;
  }

  .event-strip__head {
    align-items: flex-start;
  }

  .event-strip__track {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .event-card div {
    min-height: 360px;
  }

  .theme-card.event-card div {
    min-height: 330px;
  }

  .solution-card div {
    min-height: auto;
  }

  .theme-card img {
    max-height: 220px;
  }

  .solution-card__image img {
    max-height: 240px;
  }

  .image-modal {
    padding: 12px;
  }

  .contact-modal {
    align-items: end;
    padding: 10px;
  }

  .contact-modal__dialog {
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .contact-modal__content {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-modal__details {
    padding: 28px 22px 22px;
  }

  .contact-modal__details h2 {
    margin-bottom: 22px;
    font-size: 38px;
  }

  .contact-modal__details h3 {
    font-size: 23px;
  }

  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .contact-list dd {
    font-size: 15px;
  }

  .contact-modal__map,
  .contact-modal__map iframe {
    min-height: 300px;
  }

  .image-modal__dialog {
    border-radius: 20px;
  }

  .timeline li {
    min-height: 220px;
  }

  .proof {
    gap: 22px;
    padding-top: 52px;
    padding-bottom: 52px;
    color: var(--ink);
    background:
      linear-gradient(180deg, var(--paper), #ffffff);
  }

  .proof::before {
    inset: 16px;
    border-radius: 28px;
    background: var(--blue);
  }

  .proof__content,
  .proof__list {
    padding-inline: 18px;
  }

  .proof__content h2 {
    color: #fff;
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.05;
  }

  .proof__content p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
  }

  .proof__list {
    gap: 8px;
  }

  .proof__list li {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(21, 21, 21, 0.12);
  }

  .proof__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .proof__icon svg {
    width: 21px;
    height: 21px;
  }

  .registration {
    gap: 24px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }
}
