:root {
  --color-bg: #f8f9fc;
  --color-bg-card: #ffffff;
  --color-bg-elevated: #f0f2f7;
  --color-accent: #c41e3a;
  --color-accent-light: #b71c34;
  --color-accent-muted: rgba(196, 30, 58, 0.1);
  --color-text: #1a1d24;
  --color-text-muted: #5c6370;
  --color-border: rgba(0, 0, 0, 0.08);
  --font-heading: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 20px 50px -15px rgba(0, 0, 0, 0.15);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul {
  list-style: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: transform var(--transition), background var(--transition);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  height: 50px;
  width: auto;
}

.nav__list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 1rem;
}

.nav__list a:hover,
.nav__list a:focus-visible {
  color: var(--color-accent);
}

.nav__list a:focus-visible,
.btn:focus-visible,
.apply__emails a:focus-visible,
.organizers__list a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.nav__list a {
  color: var(--color-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2.75rem;
  font-size: 1.15rem;
}

.hero {
  min-height: 100vh;
  height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  text-align: center;
  padding: calc(var(--header-height) + 2rem) 2rem 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 249, 252, 0.97) 0%, var(--color-bg) 100%);
}

.hero__grid {
  display: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__glow--1 {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(196, 30, 58, 0.12) 0%, rgba(196, 30, 58, 0.04) 40%, transparent 70%);
  filter: blur(40px);
  opacity: 1;
}

.hero__glow--2 {
  display: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 1rem;
}

.hero__label {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.hero__logo-wrap {
  margin-bottom: 1.75rem;
}

.hero__logo {
  max-width: 240px;
  height: auto;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.hero__date {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 2.25rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

@media (max-height: 600px) {
  .hero__scroll-hint {
    display: none;
  }
}

@media (max-width: 430px), (max-height: 700px) {
  .hero {
    padding: calc(var(--header-height) + 1rem) 1rem 0;
    min-height: 100vh;
    height: auto;
    max-height: none;
  }

  .hero__content {
    padding-bottom: 0.75rem;
  }

  .hero__label {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.35;
  }

  .hero__logo-wrap {
    margin-bottom: 1rem;
  }

  .hero__logo {
    max-width: 180px;
  }

  .hero__title {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    margin-bottom: 0.35rem;
  }

  .hero__subtitle {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    margin-bottom: 0.75rem;
  }

  .hero__date {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .hero__cta {
    gap: 0.75rem;
  }

  .hero__cta .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero__scroll-hint {
    padding: 0.75rem 0 1rem;
    font-size: 0.65rem;
  }
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }
.animate-in:nth-child(6) { animation-delay: 0.6s; }
.animate-in:nth-child(7) { animation-delay: 0.7s; }
.animate-in:nth-child(8) { animation-delay: 0.8s; }
.animate-in:nth-child(9) { animation-delay: 0.9s; }
.animate-in:nth-child(10) { animation-delay: 1s; }
.animate-in:nth-child(11) { animation-delay: 1.1s; }
.animate-in:nth-child(12) { animation-delay: 1.2s; }

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about__card.animate-on-scroll { transition-delay: 0s; }
.about__card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.about__card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

.organizers__block.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }

.requirements__card.animate-on-scroll { transition-delay: 0s; }
.requirements__card.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.requirements__card.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.requirements__card.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }

.apply__block.animate-on-scroll { transition-delay: 0s; }
.apply__block.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.apply__block.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

.gallery__item.animate-on-scroll { transition-delay: 0s; }
.gallery__item.animate-on-scroll:nth-child(2) { transition-delay: 0.05s; }
.gallery__item.animate-on-scroll:nth-child(3) { transition-delay: 0.1s; }
.gallery__item.animate-on-scroll:nth-child(4) { transition-delay: 0.15s; }
.gallery__item.animate-on-scroll:nth-child(5) { transition-delay: 0.2s; }
.gallery__item.animate-on-scroll:nth-child(6) { transition-delay: 0.25s; }

.media__article.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.media__article.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.25rem;
}

.about__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              border-color var(--transition),
              box-shadow var(--transition);
}

.about__card:hover {
  border-color: rgba(196, 30, 58, 0.25);
  box-shadow: var(--shadow-hover);
}

.about__card-icon {
  margin-bottom: 1.15rem;
  color: var(--color-accent);
  line-height: 0;
}

.about__card-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  display: block;
}

.about__card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  color: var(--color-text);
}

.about__card p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.organizers {
  background: var(--color-bg-elevated);
}

.organizers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
  margin-top: 2.25rem;
}

.organizers__block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.organizers__block-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.35rem;
  color: var(--color-accent);
}

.organizers__list li {
  padding: 0.6rem 0;
  color: var(--color-text);
  font-size: 1.05rem;
}

.organizers__list li + li {
  border-top: 1px solid var(--color-border);
}

.organizers__list a {
  color: var(--color-accent);
}

.organizers__role {
  color: var(--color-text-muted);
  font-weight: 400;
}

.organizers__phone-note {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 0.2rem;
}

.requirements__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.25rem;
  color: var(--color-text-muted);
  font-size: 1.15rem;
}

.requirements__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.requirements__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.requirements__card:hover {
  border-color: rgba(196, 30, 58, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.requirements__num {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-muted);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
}

.requirements__card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.requirements__card p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.apply {
  background: var(--color-bg-elevated);
}

.apply__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.25rem;
  margin-top: 2.25rem;
}

.apply__block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.apply__block h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
  color: var(--color-text);
}

.apply__deadline {
  font-size: 1.3rem;
  color: var(--color-accent);
}

.apply__emails {
  margin-top: 0.5rem;
}

.apply__emails li + li {
  margin-top: 0.25rem;
}

.apply__block ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
}

.apply__block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
}

.apply__cta {
  text-align: center;
  margin-top: 2.75rem;
}

.how-it-was {
  background: var(--color-bg);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.gallery__item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-elevated);
  border: 2px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition);
}

.gallery__item:hover .gallery__placeholder {
  border-color: rgba(196, 30, 58, 0.35);
  background: var(--color-bg-card);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2005;
}

.lightbox__img {
  max-width: 100%;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox__placeholder {
  min-width: 280px;
  min-height: 210px;
  background: var(--color-bg-card);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  z-index: 2010;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background var(--transition);
  padding: 0;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.lightbox__close:hover,
.lightbox__close:active,
.lightbox__prev:hover,
.lightbox__prev:active,
.lightbox__next:hover,
.lightbox__next:active {
  background: rgba(255, 255, 255, 0.35);
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
}

.lightbox__prev {
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .lightbox__content {
    max-height: 70vh;
  }

  .lightbox__prev,
  .lightbox__next {
    top: auto;
    bottom: 1.25rem;
    width: 56px;
    height: 52px;
    min-width: 56px;
    min-height: 52px;
    font-size: 2rem;
    transform: none;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
  }

  .lightbox__prev {
    left: 1rem;
  }

  .lightbox__next {
    right: 1rem;
  }

  .lightbox__prev:hover,
  .lightbox__prev:active,
  .lightbox__next:hover,
  .lightbox__next:active {
    background: rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
  }

  .lightbox__close {
    width: 48px;
    height: 48px;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
  }

  .lightbox__close:hover,
  .lightbox__close:active {
    background: rgba(0, 0, 0, 0.95);
  }

  .lightbox__counter {
    bottom: 4.25rem;
  }
}

.lightbox__counter {
  position: fixed;
  z-index: 2010;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.media {
  background: var(--color-bg-elevated);
}

.media__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  margin-top: 2.25rem;
  align-items: start;
}

.media__video-block {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.media__video-wrap {
  aspect-ratio: 16/9;
  position: relative;
  background: #000;
}

.media__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media__copyright {
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--color-border);
}

.media__copyright a {
  color: var(--color-accent);
}

.media__articles {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.media__article {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.media__article:hover {
  border-color: rgba(196, 30, 58, 0.25);
  box-shadow: var(--shadow-hover);
}

.media__article-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
  line-height: 1.35;
}

.media__article-source {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.media__article-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  color: var(--color-text);
  transition: border-color var(--transition), color var(--transition);
}

.media__article-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .media__layout {
    grid-template-columns: 1fr;
  }
}

.footer {
  padding: 3.5rem 2rem 2.5rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3.5rem;
  margin-bottom: 2.25rem;
}

@media (max-width: 768px) {
  .footer__logo-item:first-child {
    width: 100%;
    flex-basis: 100%;
  }
}

.footer__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo-olymp,
.footer__logo-uni {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.footer__logo-placeholder {
  min-width: 160px;
  min-height: 80px;
  padding: 1.25rem;
  background: var(--color-bg-elevated);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  text-align: center;
}

.footer__logo-placeholder p {
  font-size: 0.75rem;
  opacity: 0.8;
}

.footer__text {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 0.6rem;
}

.footer__copy {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 1.75rem;
}

@media (max-width: 768px) {
  .nav__list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav.is-open .nav__list {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__toggle {
    display: flex;
  }

  .nav.is-open .nav__toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav.is-open .nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .nav__toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .requirements__grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
