:root {
  --primary: #dd7687;
  --secondary: #74c174;
  --gold: #d0a055;
  --sage: #7b9444;
  --mist: #a9c0d1;
  --powder: #e0e0ea;
  --sand: #6f5242;
  --sea: #7fa0a6;
  --olive: #b2b789;
  --forest: #416252;
  --bubble-left-inner: color-mix(in srgb, var(--secondary) 85%, white);
  --bubble-left-outer: var(--secondary);
  --bubble-right-inner: color-mix(in srgb, var(--primary) 85%, white);
  --bubble-right-outer: var(--primary);
  --bg: #FFFFFF;
  --text: #515151;
  --muted: rgba(81, 81, 81, 0.7);
  --surface: #FFFFFF;
  --surface-muted: #f8f9fb;
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition-curve: cubic-bezier(0.65, 0, 0.35, 1);
  --header-height: 76px;
  font-size: 16px;
}

html {
  scroll-behavior: auto;
  overflow: auto;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.is-hidden {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(61, 189, 239, 0.18), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(169, 192, 209, 0.22), transparent 65%);
  filter: blur(4px);
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
  animation: bgFloatSoft1 42s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 30%, rgba(221, 118, 135, 0.16), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(178, 183, 137, 0.18), transparent 65%);
  filter: blur(6px);
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
  animation: bgFloatSoft2 52s ease-in-out infinite alternate;
}

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

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.98);
  filter: blur(18px);
  transition:
    opacity 0.9s var(--transition-curve),
    transform 0.9s var(--transition-curve),
    filter 0.9s var(--transition-curve);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] {
  transform: translate3d(40px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(-40px, 0, 0);
}

[data-reveal="down"] {
  transform: translate3d(0, -40px, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
/* Стартовое состояние: снизу и прозрачный */
[data-reveal="up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Когда блок виден — поднимается и проявляется */
[data-reveal="up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-shell {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: calc(2.5rem + var(--header-height)) clamp(1.5rem, 3vw, 4rem) 3rem;
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 120px 8% auto;
  height: 60vh;
  background-image:
    linear-gradient(to right, rgba(224, 224, 234, 0.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(224, 224, 234, 0.6) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

.site-shell::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  width: 280px;
  height: 130px;
  border-radius: 999px;
  background: linear-gradient(140deg,
      rgba(61, 189, 239, 0.18),
      rgba(127, 160, 166, 0.14),
      rgba(221, 118, 135, 0.18));
  opacity: 0.35;
  filter: blur(2px);
  transform: rotate(-6deg);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  width: 100%;
  padding: 0.75rem clamp(1.5rem, 3vw, 4rem);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(63, 125, 142, 0.15);
  backdrop-filter: blur(14px);
  z-index: 20;
}

.header-inner {
  width: min(1600px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.15rem;
  color: var(--forest);
}

.logo-img {
  display: block;
  max-height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--secondary);
}

.nav-cta {
  border: 1px solid var(--secondary);
  background: rgba(248, 248, 248, 0.08); 
  color: var(--secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  border-color: var(--secondary);
  background: rgb(238, 255, 242); 
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.3rem;
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  /* padding: 5rem 0 3rem; */
  position: relative;
  background: transparent;
  border-radius: 36px;
  /* padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem); */
  box-shadow: none;
  margin-top: -74px;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  margin: 0.25rem 0 1rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.hero-date-line {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.75rem;
}

.hero-meta {
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--muted);
}

.hero-comment {
  color: var(--text);
  max-width: 55ch;
  margin-bottom: 0.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02rem;
  transition: transform 0.2s ease;
}

.primary-btn {
  background: var(--secondary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.primary-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--transition-curve);
}

.primary-btn:hover::after {
  transform: translateX(0);
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  /* background: rgba(61, 189, 239, 0.05); */
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-3px);
}

.hero-visual {
  --bubble-main: clamp(220px, 45vw, 380px);
  --bubble-secondary: clamp(150px, 32vw, 267px);
  --bubble-shift-x: clamp(50px, 16vw, 137px);
  --bubble-shift-left-y: clamp(12px, 4vw, 61px);
  --bubble-shift-right-y: clamp(-84px, -6vw, -12px);
  --bubble-secondary-inner: rgba(224, 224, 234, 0.9);
  --bubble-secondary-outer: rgba(169, 192, 209, 0.6);
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: calc(var(--bubble-main) * 1.05);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: transparent;
}

.hero-bubbles {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(224, 224, 234, 0.7));
}

.bubble-main {
  width: var(--bubble-main);
  height: var(--bubble-main);
  background-image: url("img/banner.jpg");
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.bubble-secondary {
  width: var(--bubble-secondary);
  height: var(--bubble-secondary);
  background: radial-gradient(
      circle at 35% 35%,
      var(--bubble-secondary-inner, rgba(224, 224, 234, 0.9)),
      var(--bubble-secondary-outer, rgba(169, 192, 209, 0.6))
  );
  z-index: 1;
}


.bubble-left {
  transform: translate(calc(-1 * var(--bubble-shift-x)), var(--bubble-shift-left-y));
  background: radial-gradient(circle at 35% 35%, var(--bubble-left-inner), var(--bubble-left-outer));
}

.bubble-right {
  transform: translate(var(--bubble-shift-x), var(--bubble-shift-right-y));
  background: radial-gradient(circle at 35% 35%, var(--bubble-right-inner), var(--bubble-right-outer));
}

@keyframes bubble-left-float {
  0%   { transform: translate(calc(-1 * var(--bubble-shift-x)), var(--bubble-shift-left-y)); }
  50%  { transform: translate(calc(-1 * var(--bubble-shift-x)), calc(var(--bubble-shift-left-y) - 30px)); }
  100% { transform: translate(calc(-1 * var(--bubble-shift-x)), var(--bubble-shift-left-y)); }
}

@keyframes bubble-right-float {
  0%   { transform: translate(var(--bubble-shift-x), var(--bubble-shift-right-y)); }
  50%  { transform: translate(var(--bubble-shift-x), calc(var(--bubble-shift-right-y) - 30px)); }
  100% { transform: translate(var(--bubble-shift-x), var(--bubble-shift-right-y)); }
}

/* навешиваем несинхронную анимацию только на боковые */
.hero-bubbles .bubble-left {
  animation: bubble-left-float 5s ease-in-out infinite;
}

.hero-bubbles .bubble-right {
  animation: bubble-right-float 6s ease-in-out infinite 0.8s;
}



@keyframes auroraFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 40%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes glowDrift {
  from {
    transform: translate3d(-5%, 0, 0);
  }

  to {
    transform: translate3d(10%, 10%, 0);
  }
}

@keyframes pulseHalo {
  from {
    opacity: 0.25;
    transform: scale(0.9);
  }

  to {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes bgFloatSoft1 {
  from {
    transform: translate3d(-12px, 0, 0) scale(1);
  }

  to {
    transform: translate3d(10px, 8px, 0) scale(1.06);
  }
}

@keyframes bgFloatSoft2 {
  from {
    transform: translate3d(8px, 10px, 0) scale(1);
  }

  to {
    transform: translate3d(-6px, -6px, 0) scale(1.05);
  }
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 600;
  font-family: var(--font-sans);
}

.info-section {
  /* margin-top: 4rem; */
  position: relative;
}

.info-section::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 160, 166, 0.15), transparent 70%);
  filter: blur(4px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.info-section::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178, 184, 137, 0.18), transparent 70%);
  filter: blur(3px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.info-strip {
  position: relative;
  border-radius: 32px;
  /* padding: 2.2rem 0 2.2rem; */
  background: transparent;
  overflow: visible;
}

.info-strip::before {
  display: none;
}

.info-strip::after {
  display: none;
}

.info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 2.4rem;
}

.info-grid article {
  position: relative;
  padding: 1.6rem 1.6rem 1.6rem 1.9rem;
  border: 1px solid rgba(116, 193, 116, 0.45);
  border-radius: 20px;
  background: transparent;
  overflow: hidden;
}
/* 
.info-grid article::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 1.85rem;
  width: 83px;
  height: 4px;
  border-radius: 999px;
  background: radial-gradient(circle, white, var(--primary));
} */

.info-btn {
  margin-top: 1rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.25rem;
  max-width: 720px;
  width: min(720px, calc(100% - 2rem));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.modal-dialog h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
}

.modal-body p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(224, 224, 234, 0.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: rgba(224, 224, 234, 1);
  transform: scale(1.04);
}

@media (max-width: 720px) {
  .modal-dialog {
    padding: 1.25rem 1.1rem 1rem;
  }

  .modal-body p {
    font-size: 0.95rem;
  }
}

.info-title {
  margin: 0.15rem 0 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.info-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.schedule {
  margin-top: 5rem;
  position: relative;
}

.schedule::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 118, 135, 0.15), transparent 70%);
  filter: blur(8px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.schedule::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 160, 166, 0.12), transparent 70%);
  filter: blur(6px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.section-head {
  display: flex;
  flex-direction: column;
/*   gap: 0.5rem;
margin-bottom: 2rem; */
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.schedule-cards {
  margin-top: 1.5rem;
  border-radius: 20px;
  padding: 1.75rem 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(224, 224, 234, 0.9);
}

.schedule-note {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}


.schedule-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 0.75rem;
}

.schedule-tabs {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.35rem;
  background: rgba(224, 224, 234, 0.45);
  border-radius: 999px;
}

.schedule-toggle {
  border: none;
  background: transparent;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.schedule-toggle.is-active {
  background: #fff;
  color: var(--secondary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.schedule-pdf {
  padding: 0.55rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 999px;
}

.schedule-day {
  display: none;
}

.schedule-day.is-active {
  display: block;
}

.schedule-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.75rem 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(224, 224, 234, 0.9);
}

.schedule-row:last-child {
  border-bottom: none;
}

.time {
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.schedule-row-main h4 {
  margin: 0;
  font-size: 0.98rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary)
}

.schedule-row-main p {
  margin: 0.1rem 0 0.1rem;
  font-size: 0.92rem;
}

.schedule-row-main p:last-child {
  margin-bottom: 0.15rem;
}

.registration {
  margin-top: 5rem;
  position: relative;
}

.registration::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 148, 68, 0.14), transparent 70%);
  filter: blur(6px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.registration::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 160, 85, 0.13), transparent 70%);
  filter: blur(10px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.registration-lead {
  max-width: 60ch;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.registration-note {
  max-width: 60ch;
  font-size: 0.9rem;
  color: var(--forest);
  margin: -0.75rem 0 1.6rem;
}

.registration-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.registration-options article {
  border-radius: 24px;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid rgba(127, 160, 166, 0.25);
  min-height: 260px;
}

.stretched {
  margin-top: 1rem;
}

.faq {
  margin-top: 5rem;
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: -3rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 160, 166, 0.16), transparent 70%);
  filter: blur(5px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.faq::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178, 184, 137, 0.14), transparent 70%);
  filter: blur(7px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(169, 192, 209, 0.6);
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.faq-question {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem 1rem 1.5rem;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 0.98rem;
  font-weight: 600;
}

.faq-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(61, 189, 239, 0.7);
  font-size: 0.9rem;
  line-height: 1;
  color: var(--secondary);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-item.is-open .faq-toggle-icon {
  transform: rotate(45deg);
  background-color: rgba(61, 189, 239, 0.1);
}

.faq-answer {
  padding: 0 1.5rem 0;
  border-top: 1px solid rgba(224, 224, 234, 0.0);
  font-size: 0.95rem;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding-top 0.25s ease,
    padding-bottom 0.25s ease,
    border-top-color 0.25s ease;
}

.faq-item.is-open .faq-answer {
  padding: 0.4rem 1.5rem 1.2rem;
  border-top-color: rgba(224, 224, 234, 0.9);
  max-height: 260px;
  opacity: 1;
}

.partners {
  margin-top: 5rem;
  position: relative;
}

.partners::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 160, 85, 0.12), transparent 70%);
  filter: blur(9px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.partners::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 148, 68, 0.13), transparent 70%);
  filter: blur(7px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.partners-row.simple-logos img {
  max-height: 80px;
  height: auto;
  width: auto;
  filter: grayscale(0.1);
  opacity: 0.9;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

.partners-row.simple-logos img:hover {
  transform: translateY(-2px);
  filter: grayscale(0);
  opacity: 1;
}

.venue-map {
  margin-top: 5rem;
  position: relative;
}

.venue-map::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 118, 135, 0.14), transparent 70%);
  filter: blur(6px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.venue-map::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 148, 68, 0.16), transparent 70%);
  filter: blur(5px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.venue-map-layout {
  display: block; /* вместо grid */
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(169, 192, 209, 0.8);
  padding: 1.8rem 1.8rem 1.8rem 2.1rem;
  margin-top: 1.5rem;
}

.venue-map-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.venue-map-info h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.venue-map-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.venue-map-frame {
  border-radius: 20px;
  overflow: hidden;
  background: var(--powder);
  position: relative;
}

.venue-map-frame::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto auto;
  width: 120px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.venue-map-frame::after {
  content: "Яндекс Карты";
  position: absolute;
  right: 30px;
  top: 18px;
  transform: translate(50%, -50%);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  pointer-events: none;
}

.venue-map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  overflow: hidden;
}

.site-footer {
  width: 100%;
  margin-top: 4rem;
/*   padding: 3rem clamp(1.5rem, 4vw, 4rem);
border-top: 1px solid rgba(127, 160, 166, 0.35);
background: linear-gradient(120deg, rgba(224, 224, 234, 0.6), rgba(255, 255, 255, 0.9)); */
  backdrop-filter: blur(10px);
  color: var(--text);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 160, 85, 0.08), transparent 70%);
  filter: blur(8px);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 189, 239, 0.09), transparent 70%);
  filter: blur(7px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.1fr) auto;
  gap: 2rem;
  align-items: flex-start;
}

.footer-col p {
  margin: 0.15rem 0;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.footer-copy {
  font-size: 0.9rem;
}

.footer-col--nav a {
  display: block;
  font-size: 0.9rem;
  margin: 0.1rem 0;
}

.footer-col--contacts a {
  color: var(--secondary);
  text-decoration: underline;
}

.footer-top-link {
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer-partners {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(127, 160, 166, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-partners-logos {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-partners-logos img {
  max-height: 100px;
  opacity: 0.95;
  filter: grayscale(0.08);
}

@media (prefers-reduced-motion: reduce) {
  body,
  body::before,
  body::after,
  .hero-orb,
  .hero-visual img,
  .hero::after,
  .primary-btn::after,
  .site-shell::before,
  .site-shell::after,
  .info-strip::before,
  .info-strip::after,
  .schedule::before,
  .schedule::after,
  .registration::before,
  .registration::after,
  .faq::before,
  .faq::after,
  .partners::before,
  .partners::after,
  .hero::before,
  .info-section::before,
  .info-section::after,
  .venue-map::before,
  .venue-map::after,
  .site-footer::before,
  .site-footer::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 900px) {
  .info-strip {
    padding: 2rem 1.5rem;
    border-radius: 26px;
  }

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

  .venue-map-layout {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.5rem;
  }

  .venue-map-frame {
    min-height: 260px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    row-gap: 1.5rem;
  }

  .footer-col--top {
    grid-column: 1 / -1;
    text-align: right;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(63, 125, 142, 0.16);
    display: none;
    flex-direction: column;
    gap: 0.6rem;
  }

  .header-inner {
    width: 100%;
    gap: 0.5rem;
  }

  .hero {
    margin-top: -40px;
    padding: 4rem 1.25rem 2.5rem;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
    word-break: break-word;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav-cta {
    display: none;
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .site-header.is-open .nav-cta {
    display: inline-flex;
    margin-left: 1.25rem;
    margin-top: 0.6rem;
  }

  .schedule-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    width: 100%;
  }

  .hero-visual {
    min-height: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
  }

}

@media (max-width: 480px) {
  .hero-visual {
    min-height: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

}

@media (max-width: 449px) {
  .hero-visual {
    min-height: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }
}
.schedule-row {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.schedule-day.is-active .schedule-row {
  opacity: 1;
  transform: translateY(0);
}

.schedule-row {
  opacity: 0;
  transform: translateY(30px);
}

.schedule-day:not(.is-active) .schedule-row {
  display: none;
}

/* Контейнер для placeholder */
.schedule-placeholder-container {
  margin-top: 2rem;
}

/* Блок с кнопкой PDF */
.schedule-pdf-block {
  text-align: left;
}

.schedule-placeholder-text {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.schedule-pdf-block .btn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02rem;
  transition: transform 0.2s ease;
}

.schedule-pdf-block .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Placeholder текст */
.schedule-placeholder {
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 1.25rem;
  color: #666;
  background: #f5f5f5;
  border-radius: 8px;
}
.template {
  margin-top: 5rem;
  position: relative;
}

.template::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 193, 116, 0.15), transparent 70%);
  filter: blur(6px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.template::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 160, 166, 0.12), transparent 70%);
  filter: blur(8px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.template-lead {
  max-width: 60ch;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.template-box {
  border-radius: 24px;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid rgba(127, 160, 166, 0.25);
}

.template-box h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.template-box p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
}


/* ============================================
   СЕКЦИЯ ПАРТНЕРЫ
   ============================================ */

.partners {
  margin-top: 5rem;
  position: relative;
}

.partners::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 193, 116, 0.15), transparent 70%);
  filter: blur(6px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.partners::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 160, 166, 0.12), transparent 70%);
  filter: blur(8px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.partners-lead {
  max-width: 60ch;
  color: var(--text);
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
}

/* Обертка для ленты */
.partners-wrapper {
  width: 100%;
  max-width: 1200px; /* Ограничиваем ширину */
  margin: 0 auto; /* Центрируем */
  overflow: hidden;
  padding: 2.5rem 0;
  background: var(--surface);
  /* border-radius: 24px;
  border: 1px solid rgba(127, 160, 166, 0.25); */
  position: relative;
}

/* Лента с логотипами */
.partners-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
}

/* Статичное расположение */
.partners-track.is-static {
  justify-content: center;
}

/* Анимированная лента */
.partners-track.is-animated {
  width: max-content;
}

/* Логотип партнера */
.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  padding: 1rem;
  background: #fff;
  /* border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05); */
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Градиенты по краям (только для анимированной) */
.partners-wrapper.has-scroll::before,
.partners-wrapper.has-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.partners-wrapper.has-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}

.partners-wrapper.has-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

/* Responsive */
@media (max-width: 768px) {
  .partners {
    margin-top: 3rem;
  }

  .partners-track {
    gap: 2.5rem;
  }

  .partner-logo {
    width: 160px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .schedule-cards[data-reveal],
  .schedule-cards[data-reveal] * {
    opacity: 1 !important;
    transform: none !important;
    filter: blur(0px);
  }
}
.bubble-left {
  background: radial-gradient(circle at 30% 30%, 
    color-mix(in srgb, var(--bubble-left-inner) 40%, transparent) 0%, 
    var(--bubble-left-inner) 50%, 
    var(--bubble-left-outer) 100%);
}

.bubble-right {
  background: radial-gradient(circle at 70% 70%, 
    color-mix(in srgb, var(--bubble-right-inner) 40%, transparent) 0%, 
    var(--bubble-right-inner) 50%, 
    var(--bubble-right-outer) 100%);
}
