@font-face {
  font-family: "Sturkopf Grotesk";
  src: url("../fonts/SturkopfGrotesk.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPQ.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPQ.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --black-100: #0f0f0f;
  --white-100: #edece2;
  --white-70: rgba(237, 236, 226, 0.7);
  --white-40: rgba(237, 236, 226, 0.4);
  --white-20: rgba(237, 236, 226, 0.2);
  --black-70: rgba(15, 15, 15, 0.7);
  --black-40: rgba(15, 15, 15, 0.4);
  --black-20: rgba(15, 15, 15, 0.2);
  --font-display: "Sturkopf Grotesk", "Bebas Neue", "Oswald", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", monospace;
  --font-body: "Inter", "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--black-100);
  color: var(--white-100);
  font-family: var(--font-body);
  margin: 0;
  --header-bg-alpha: 0;
}

.page-shell {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(
      1200px 600px at 70% -10%,
      rgba(237, 236, 226, 0.08),
      transparent 60%
    ),
    radial-gradient(
      800px 400px at 10% 10%,
      rgba(237, 236, 226, 0.08),
      transparent 55%
    ),
    var(--black-100);
}

.noise-layer::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../assets/7f9d0170-dab4-427e-a4f3-5e26c9c73619.webp");
  background-size: 300px 300px;
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.section {
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 80px;
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(96px, 12vw, 210px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.display-l {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.display-m {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.display-s {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.caps-xs {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.caps-s {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.caps-m {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.caps-l {
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.body-s {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.02em;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 16px;
  text-decoration: none;
  color: var(--white-100);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

.link-button img {
  height: 42px;
  object-fit: contain;
}

.link-button img:first-child {
  width: 9px;
}

.link-button img:last-child {
  width: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 15, var(--header-bg-alpha));
  transition: background-color 0.2s ease;
}

.site-header.scrolled,
.site-header.is-scrolled {
  background: rgba(15, 15, 15, var(--header-bg-alpha));
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0;
}

.nav-icon {
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 16px;
  border: 0;
  background: transparent;
  color: var(--white-100);
  cursor: pointer;
}

.nav-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  width: 30px;
  height: 30px;
  display: block;
  visibility: visible;
  opacity: 1;
  flex-shrink: 0;
}

.menu-lines {
  position: relative;
  display: block;
  height: 56px;
  width: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.menu-lines:hover {
  opacity: 0.7;
}

.menu-lines span {
  display: block;
  position: absolute;
  left: 16px;
  width: 24px;
  height: 2.5645px;
  background: var(--white-100);
  transition: all 0.3s ease;
}

.menu-lines span:nth-child(1) {
  top: 18px;
}

.menu-lines span:nth-child(2) {
  top: 26.7178px;
}

.menu-lines span:nth-child(3) {
  top: 35.4355px;
}

/* ========== SIDEBAR MENU ========== */

.sidebar-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--black-100);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  will-change: opacity, visibility;
  border-radius: 0;
}

.sidebar-menu.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-inner {
  position: relative;
  width: calc(100% - var(--menu-scrollbar-width, 0px));
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.sidebar-menu.active .sidebar-inner {
  opacity: 1;
}

/* Sidebar Header */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  height: 56px;
  flex-shrink: 0;
}

.menu-close {
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.3s ease;
}

.menu-close:hover {
  opacity: 0.7;
}

.menu-close span {
  position: absolute;
  width: 24px;
  height: 2.5645px;
  background: var(--white-100);
  transition: all 0.3s ease;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.sidebar-logo {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transform: scaleY(1);
  opacity: 1;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.sidebar-menu:not(.active) .sidebar-logo {
  opacity: 0.5;
  transform: scaleY(0.95);
}

.menu-search {
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.3s ease;
}

.menu-search:hover {
  opacity: 0.7;
}

.menu-search svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Sidebar Content */
.sidebar-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 64px 0;
  overflow: visible;
  justify-content: flex-start;
  min-height: 0;
}

/* Sidebar Navigation */
.sidebar-nav {
  flex: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  width: 640px;
  min-width: 0;
}

.sidebar-nav-item {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white-100);
  opacity: 0.9;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0;
}

.sidebar-nav-item:hover {
  opacity: 1;
  transform: translateX(8px);
}

/* Film Slider Card */
.film-slider-card {
  position: absolute;
  width: 686px;
  height: 392px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  left: auto;
  right: 64px;
  top: 396px;
  bottom: auto;
}

.film-slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.film-slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 16px;
  padding: 16px;
  z-index: 2;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(237, 236, 226, 0.2);
  border-radius: 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--white-100);
  transition: width 0.3s ease;
}

.film-title {
  position: absolute;
  bottom: 76px;
  right: 50%;
  transform: translateX(100%) translateY(100%);
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--white-100);
  white-space: nowrap;
  mix-blend-mode: difference;
  z-index: 2;
}

.film-watch-button {
  position: absolute;
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  color: var(--white-100);
  white-space: nowrap;
  mix-blend-mode: hard-light;
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.film-watch-button:hover {
  opacity: 0.7;
}

/* Sidebar Footer */
.sidebar-footer {
  position: absolute;
  left: 64px;
  bottom: 32px;
  width: 322px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  color: rgba(237, 236, 226, 0.5);
  z-index: 3;
}

.sidebar-footer p {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .film-slider-card {
    width: 686px;
    height: 392px;
  }

  .film-title {
    font-size: 60px;
    bottom: 76px;
  }

  .film-watch-button {
    top: 118px;
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .sidebar-header {
    padding-left: 48px;
    padding-right: 48px;
  }

  .sidebar-nav-item {
    font-size: 80px;
  }

  .sidebar-content {
    flex-direction: column;
    gap: 32px;
    padding: 56px 48px;
    justify-content: space-between;
  }

  .sidebar-footer {
    left: 48px;
    bottom: 56px;
    width: 360px;
  }

  .film-slider-card {
    width: 500px;
    height: 300px;
    flex-shrink: 0;
    right: 48px;
    bottom: 56px;
  }

  .film-title {
    font-size: 40px;
    bottom: 50px;
  }
}

@media (max-width: 768px) {
  .sidebar-menu {
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
  }

  .sidebar-inner {
    width: 100%;
    max-width: none;
  }

  .sidebar-header {
    height: 48px;
    padding: 0;
  }

  .sidebar-content {
    flex-direction: column;
    gap: 0;
    padding: 32px 16px 0;
    justify-content: flex-start;
  }

  .sidebar-nav-item {
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.96px;
    padding: 0;
  }

  .sidebar-nav {
    width: 100%;
  }

  .sidebar-footer {
    left: 16px;
    right: 16px;
    bottom: 404px;
    width: auto;
    padding: 0;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .film-slider-card {
    width: calc(100% - 32px);
    max-width: 343px;
    height: 196px;
    flex-shrink: 0;
    left: 16px;
    right: auto;
    top: auto;
    bottom: 16px;
  }

  .film-title {
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.96px;
    bottom: 16px;
    right: 16px;
    transform: none;
    white-space: nowrap;
  }

  .film-watch-button {
    display: none;
  }
}

.hero {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-content {
  position: relative;
  min-height: 560px;
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero-title {
  text-align: center;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(237, 236, 226, 0.3) 0%,
    rgba(237, 236, 226, 0.9) 50%,
    rgba(237, 236, 226, 0.3) 100%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  mix-blend-mode: difference;
  animation: gradientFlow 6s ease-in-out infinite;
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
}

.hero-subtitle {
  text-align: center;
  color: var(--white-40);
}

.hero-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-quote {
  max-width: 280px;
  color: var(--white-70);
  animation: float 6s ease-in-out infinite;
}

.hero-quote--right-top {
  animation: float-right-top 7s ease-in-out infinite;
}

.hero-quote--left {
  animation: float-left 8s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-quote--right-bottom {
  animation: float-right-bottom 6.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes float-right-top {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float-left {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes float-right-bottom {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

.author-pill {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.author-pill img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  animation: floatAuthor 7s ease-in-out infinite;
  animation-delay: 2.5s;
}

@keyframes floatAuthor {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.section-light {
  background: var(--white-100);
  color: var(--black-100);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  position: relative;
}

.about-slides-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
}

.about-slide.active {
  opacity: 1;
  visibility: visible;
}

.about-image {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-content {
  display: grid;
  gap: 18px;
}

.about-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.about-texts {
  display: grid;
  gap: 18px;
}

.button-outline {
  border: 2px solid var(--black-100);
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 20px;
  text-transform: uppercase;
  background: transparent;
  color: var(--black-100);
}

.progress-bars {
  display: grid;
  gap: 16px;
}

.progress-item {
  display: grid;
  gap: 8px;
}

.progress-line {
  height: 4px;
  background: var(--black-20);
  position: relative;
}

.progress-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 35%;
  background: rgba(15, 15, 15, 0.8);
}

.progress-item--muted .caps-s {
  color: var(--black-40);
}

.progress-bars {
  display: flex;
  gap: 48px;
}

.progress-item {
  flex: 1;
}

.progress-item .caps-s {
  margin-bottom: 12px;
  display: block;
}

.progress-line {
  position: relative;
  height: 4px;
  background: rgba(15, 15, 15, 0.2);
  overflow: visible;
}

.progress-line span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 5px;
  background: rgba(15, 15, 15, 0.8);
  animation: progressFill 5s linear forwards;
}

.about-progress .progress-line span {
  width: 170px;
  height: 5px;
  position: relative;
  animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: 170px;
  }
}

.progress-line.filled {
  background: rgba(15, 15, 15, 0.8);
  height: 4px;
}

.about-progress .progress-line.filled {
  background: rgba(15, 15, 15, 0.8);
  height: 4px;
}

.about-progress .progress-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-progress .progress-item:hover .caps-s {
  color: var(--black-100);
}

.about-progress .progress-line span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 5px;
  background: var(--black-100);
}

.progress-item--light .caps-s {
  color: var(--white-40);
}

.progress-item--light .progress-line {
  background: var(--white-20);
}

.progress-item--light .progress-line span {
  display: none;
}

.text-white-100 {
  color: var(--white-100);
}

.text-white-70 {
  color: var(--white-70);
}

.text-white-50 {
  color: rgba(237, 236, 226, 0.5);
}

.text-white-40 {
  color: var(--white-40);
}

.text-white-20 {
  color: var(--white-20);
}

.creativity-section {
  position: relative;
  z-index: 5;
  background: var(--black-100);
  overflow: hidden;
  min-height: 100vh;
  height: 100vh;
}

.creativity-section .section-inner {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: 100vh;
}

.creativity-layout {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.creativity-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 88px;
  overflow: hidden;
}

.creativity-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}

.creativity-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.creativity-slide .creativity-word,
.creativity-slide .creativity-count,
.creativity-slide .creativity-subtitle {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.creativity-slide.active .creativity-word,
.creativity-slide.active .creativity-count,
.creativity-slide.active .creativity-subtitle {
  opacity: 1;
}

.creativity-header {
  margin: 0;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white-100);
}

.creativity-link {
  position: absolute;
  top: 32px;
  right: 32px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  text-decoration: none;
}

.creativity-link::before {
  content: "( ";
  opacity: 0.7;
}

.creativity-link::after {
  content: " )";
  opacity: 0.7;
}

.creativity-link:hover {
  color: #d2b23d;
}

.creativity-words {
  position: absolute;
  left: 0;
  right: 0;
  top: 380px;
}

.creativity-group {
  position: absolute;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.creativity-count {
  position: absolute;
  top: -24px;
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white-20);
}

.creativity-word {
  color: var(--white-100);
}

.creativity-subtitle {
  position: absolute;
  top: 132px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-40);
}

.progress-link {
  color: inherit;
  text-decoration: none;
}

.progress-link:hover {
  color: #d2b23d;
}

.creativity-images {
  position: absolute;
  inset: 0;
  height: 100%;
  pointer-events: none;
}

.creativity-img {
  position: absolute;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

.creativity-img-float-1 {
  animation: creativityFloat1 6s ease-in-out infinite;
}

.creativity-img-float-2 {
  animation: creativityFloat2 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.creativity-img-float-3 {
  animation: creativityFloat3 6.5s ease-in-out infinite;
  animation-delay: 1s;
}

.creativity-img-float-4 {
  animation: creativityFloat4 7.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.creativity-img-float-5 {
  animation: creativityFloat5 6s ease-in-out infinite;
  animation-delay: 0.7s;
}

.creativity-img-float-6 {
  animation: creativityFloat6 7.2s ease-in-out infinite;
  animation-delay: 1.2s;
}

.creativity-img-float-7 {
  animation: creativityFloat7 6.8s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes creativityFloat1 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes creativityFloat2 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes creativityFloat3 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes creativityFloat4 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes creativityFloat5 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes creativityFloat6 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes creativityFloat7 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-11px);
  }
}

.creativity-words--cinema .creativity-group--films {
  left: 135px;
  top: 0;
}

.creativity-words--cinema .creativity-group--ideas {
  left: 839px;
  top: 0;
}

.creativity-words--cinema .creativity-group--films .creativity-count {
  left: 173px;
}

.creativity-words--cinema .creativity-group--ideas .creativity-count {
  left: 177px;
}

.creativity-words--theatre .creativity-group--projects {
  left: 195px;
  top: 0;
}

.creativity-words--theatre .creativity-group--plays {
  left: 899px;
  top: 0;
}

.creativity-words--theatre .creativity-group--projects .creativity-count {
  left: 156px;
}

.creativity-words--theatre .creativity-group--plays .creativity-count {
  left: 200px;
}

.creativity-words--texts .creativity-group--books {
  left: 85px;
  top: 0;
}

.creativity-words--texts .creativity-group--articles {
  left: 570px;
  top: 0;
}

.creativity-words--texts .creativity-group--interviews {
  left: 1042px;
  top: 0;
}

.creativity-words--texts .creativity-group--books .creativity-count {
  left: 126px;
}

.creativity-words--texts .creativity-group--articles .creativity-count {
  left: 129px;
}

.creativity-words--texts .creativity-group--interviews .creativity-count {
  left: 178px;
}

.creativity-words--graphics .creativity-group--albums {
  left: 195px;
  top: 0;
}

.creativity-words--graphics .creativity-group--exhibitions {
  left: 899px;
  top: 0;
}

.creativity-words--graphics .creativity-group--albums .creativity-count {
  left: 175px;
}

.creativity-words--graphics .creativity-group--exhibitions .creativity-count {
  left: 182px;
}

.creativity-words--pedagogy .creativity-group--training {
  left: 195px;
  top: 0;
}

.creativity-words--pedagogy .creativity-group--lectures {
  left: 899px;
  top: 0;
}

.creativity-words--pedagogy .creativity-group--training .creativity-count {
  left: 170px;
}

.creativity-words--pedagogy .creativity-group--lectures .creativity-count {
  left: 149px;
}

.creativity-img--cinema-1 {
  left: 261px;
  top: 237px;
  width: 76px;
  height: 110px;
}

.creativity-img--cinema-2 {
  left: 1040px;
  top: 253px;
  width: 81px;
  height: 119px;
}

.creativity-img--cinema-3 {
  left: 1164px;
  top: 491px;
  width: 64px;
  height: 91px;
}

.creativity-img--cinema-4 {
  left: 809px;
  top: 543px;
  width: 83px;
  height: 105px;
}

.creativity-img--cinema-5 {
  left: 93px;
  top: 533px;
  width: 71px;
  height: 90px;
}

.creativity-img--cinema-6 {
  left: 456px;
  top: 455px;
  width: 69px;
  height: 88px;
}

.creativity-img--cinema-7 {
  left: 322px;
  top: 571px;
  width: 68px;
  height: 104px;
}

.creativity-img--theatre-1 {
  left: 193px;
  top: 284px;
  width: 64px;
  height: 96px;
  transform: rotate(4.55deg);
}

.creativity-img--theatre-2 {
  left: 420px;
  top: 513px;
  width: 78px;
  height: 56px;
  transform: rotate(-25.26deg);
}

.creativity-img--theatre-3 {
  left: 861px;
  top: 288px;
  width: 67px;
  height: 88px;
  transform: rotate(-12.87deg);
}

.creativity-img--theatre-4 {
  left: 1166px;
  top: 520px;
  width: 67px;
  height: 88px;
  transform: rotate(10.18deg);
}

.creativity-img--texts-1 {
  left: 598px;
  top: 301px;
  width: 116px;
  height: 71px;
}

.creativity-img--texts-2 {
  left: 1222px;
  top: 294px;
  width: 116px;
  height: 71px;
}

.creativity-img--texts-3 {
  left: 247px;
  top: 278px;
  width: 82px;
  height: 59px;
  transform: rotate(165deg);
}

.creativity-img--texts-4 {
  left: 109px;
  top: 526px;
  width: 105px;
  height: 75px;
  transform: rotate(-7.19deg);
}

.creativity-img--texts-5 {
  left: 700px;
  top: 528px;
  width: 154px;
  height: 93px;
  transform: rotate(-4.88deg);
}

.creativity-img--texts-6 {
  left: 1007px;
  top: 526px;
  width: 128px;
  height: 78px;
  transform: rotate(-4.88deg);
}

.creativity-img--graphics-1 {
  left: 153px;
  top: 533px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.creativity-img--graphics-2 {
  left: 1217px;
  top: 499px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.creativity-img--graphics-3 {
  left: 294px;
  top: 282px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.creativity-img--graphics-4 {
  left: 953px;
  top: 266px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.creativity-img--graphics-5 {
  left: 947px;
  top: 559px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.creativity-img--graphics-6 {
  left: 498px;
  top: 486px;
  width: 77px;
  height: 77px;
  border-radius: 50%;
}

.creativity-img--pedagogy-1 {
  left: 169px;
  top: 273px;
  width: 64px;
  height: 96px;
  transform: rotate(4.55deg);
}

.creativity-img--pedagogy-2 {
  left: 431px;
  top: 517px;
  width: 61px;
  height: 56px;
  transform: rotate(-25.26deg);
}

.creativity-img--pedagogy-3 {
  left: 887px;
  top: 270px;
  width: 67px;
  height: 88px;
  transform: rotate(-12.87deg);
}

.creativity-img--pedagogy-4 {
  left: 1145px;
  top: 529px;
  width: 67px;
  height: 88px;
  transform: rotate(10.18deg);
}

.creativity-progress {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  width: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  background: transparent;
  margin: 0;
  z-index: 50;
  pointer-events: auto;
  visibility: visible !important;
  opacity: 1 !important;
}

.creativity-progress .progress-line {
  background: var(--white-20);
  height: 4px;
  position: relative;
  overflow: hidden;
}

.creativity-progress .progress-line span {
  background: var(--white-100);
  height: 100%;
  /* Animation removed - controlled by JS */
  animation: none !important;
  transition: width 0.1s ease-out;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
}

.creativity-progress .progress-line span::after {
  background: var(--white-100);
}

.creativity-progress .progress-line.filled {
  background: var(--white-100);
}

.creativity-progress .progress-item .caps-s {
  color: var(--white-40);
}

.creativity-progress .progress-item.active .caps-s,
.creativity-progress .progress-item.completed .caps-s {
  color: var(--white-100);
}

.photo-grid {
  position: relative;
  min-height: 640px;
}

.photo-card {
  position: absolute;
  width: 240px;
  height: 240px;
  opacity: 0.4;
  transform: rotate(var(--angle));
  transition:
    transform 0.4s ease-in-out,
    opacity 0.4s ease-in-out;
}

.photo-card.photo-grid-active {
  transform: rotate(0deg) !important;
  opacity: 1 !important;
}

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

.photo-label {
  position: absolute;
  width: 240px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

.photo-label.photo-grid-active {
  transform: translateX(-50%) rotate(0deg) !important;
}

.creativity-header {
  margin: 0;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-align: center;
  color: var(--white-100);
}

@media (max-width: 1200px) {
  .creativity-header {
    font-size: 100px;
  }
}

@media (max-width: 768px) {
  .creativity-header {
    font-size: 72px;
  }
}

.creativity-words {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  text-align: center;
  gap: 12px;
}

.creativity-word {
  color: var(--white-100);
}

.creativity-count {
  color: var(--white-20);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
}

.creativity-images {
  position: relative;
  min-height: 240px;
}

.creativity-images img {
  position: absolute;
  object-fit: cover;
}

.progress-item--active .caps-s {
  color: var(--white-100);
}

.progress-item--active .progress-line {
  background: var(--white-20);
}

.progress-item--active .progress-line span {
  width: 1px;
  height: 4px;
  left: 61px;
  background: var(--white-100);
}

.all-cinema {
  position: absolute;
  right: 64px;
  top: 32px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  text-decoration: none;
}

.all-cinema::before {
  content: "( ";
  opacity: 0.7;
}

.all-cinema::after {
  content: " )";
  opacity: 0.7;
}

.feature-photo {
  position: relative;
  height: 900px;
}

.feature-photo__video {
  width: 100%;
  height: 900px;
  object-fit: cover;
  opacity: 0.7;
  display: block;
}

.photo-title {
  margin-bottom: 32px;
}

.about-footnotes {
  display: grid;
  gap: 24px;
}

.news-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.news-grid::-webkit-scrollbar {
  display: none;
}

.news-card {
  display: flex;
  flex: 0 0 320px;
  flex-direction: column;
  gap: 16px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 336 / 258;
  height: auto;
  object-fit: cover;
  display: block;
}

.news-card > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: var(--white-100);
  margin: 0;
}

.news-card .caps-s {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  margin: 0;
}

@media (min-width: 769px) {
  .news-section {
    display: none !important;
  }
}

.video-section {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.video-section .section-inner {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 100%;
}

.video-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  --video-crop-zoom: 1.32;
}

.video-player {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0;
  object-fit: cover;
  background: #000;
  display: block;
  transform: scale(var(--video-crop-zoom));
  transform-origin: center center;
}

.nav-hero {
  display: grid;
  place-items: center;
  min-height: 640px;
}

.nav-card {
  max-width: 580px;
  transform: rotate(-12deg);
  background: var(--black-100);
  overflow: hidden;
}

.nav-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.footer {
  background: var(--white-100);
  color: var(--black-100);
}

.footer-section {
  position: relative;
  overflow: visible;
}

.footer-section .section-inner {
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.footer-signature {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 108%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.footer-links h5 {
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--black-40);
}

.footer-links a {
  color: var(--black-100);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-note {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--black-40);
}

/* Utility Classes */
.text-black-70 {
  color: var(--black-70);
}

.text-black-40 {
  color: var(--black-40);
}

@media (max-width: 1200px) {
  .section-inner {
    padding: 56px 48px;
  }

  .hero-quotes {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    min-height: 520px;
  }
}

@media (min-width: 1200px) {
  .sidebar-menu {
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
  }

  .nav-bar {
    height: 56px;
    padding: 0;
  }

  .section-inner {
    padding: 0;
  }

  .hero-section {
    height: 800px;
    padding: 0;
  }

  .hero-stage {
    position: relative;
    width: 1176px;
    height: 594px;
    margin: 200px auto 0;
  }

  .hero-author {
    position: absolute;
    left: 116px;
    top: 0;
  }

  .hero-author span {
    width: 111px;
  }

  .hero-titles {
    position: relative;
    height: 520px;
  }

  .hero-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
  }

  .hero-title--first {
    top: 70px;
  }

  .hero-title--second {
    top: 226px;
  }

  .hero-subtitle {
    position: absolute;
    top: 420px;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
  }

  .hero-quote {
    position: absolute;
    max-width: 300px;
  }

  .hero-quote--left {
    left: 0;
    bottom: 0;
  }

  .hero-quote--right-top {
    right: 0;
    top: 0;
  }

  .hero-quote--right-bottom {
    right: 0;
    bottom: 0;
  }

  .about-section {
    height: 900px;
  }

  .about-section .about-layout {
    position: relative;
    width: 1440px;
    height: 900px;
    margin: 0 auto;
    display: block;
  }

  .about-slides-container {
    position: absolute;
    inset: 0;
    width: 1440px;
    height: 900px;
  }

  .about-slide {
    position: absolute;
    inset: 0;
    width: 1440px;
    height: 900px;
    display: block;
  }

  .about-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 704px;
    height: 900px;
  }

  .about-copy,
  .about-content {
    position: absolute;
    left: 736px;
    top: 40px;
    width: 640px;
    height: 900px;
    display: block;
  }

  .about-copy .body-s,
  .about-content .body-s {
    max-width: 640px;
  }

  .about-progress {
    position: absolute;
    left: 736px;
    bottom: 32px;
    width: 639px;
  }

  .about-footnotes {
    position: absolute;
    left: 0;
    top: 560px;
    width: 640px;
    height: 200px;
  }

  .about-footnotes p {
    position: absolute;
    width: 304px;
  }

  .about-footnotes p:first-child {
    left: 0;
    top: 99px;
  }

  .about-footnotes p:last-child {
    left: 336px;
    top: 14px;
  }

  .photo-section {
    height: 1056px;
    /*height: 956px;*/
  }

  .photo-section .section-inner {
    position: relative;
    /*height: 1056px;*/
  }

  .photo-title {
    position: absolute;
    /*top: 48px;*/
    top: 148px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .photo-grid {
    position: absolute;
    left: 0;
    /*top: 200px;*/
    top: 93px;
    width: 1440px;
    height: 700px;
  }

  .creativity-section {
    height: 100vh;
  }

  .creativity-section .section-inner {
    position: relative;
    height: 100vh;
    padding: 0 32px;
  }

  .creativity-section .creativity-header {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
  }

  .creativity-words--cinema .creativity-group--films .creativity-count {
    left: 306px;
  }

  .creativity-words--cinema .creativity-group--ideas .creativity-count {
    left: 310px;
  }

  .creativity-words--theatre .creativity-group--projects .creativity-count {
    left: 289px;
  }

  .creativity-words--theatre .creativity-group--plays .creativity-count {
    left: 333px;
  }

  .creativity-words--texts .creativity-group--books .creativity-count {
    left: 259px;
  }

  .creativity-words--texts .creativity-group--articles .creativity-count {
    left: 262px;
  }

  .creativity-words--texts .creativity-group--interviews .creativity-count {
    left: 311px;
  }

  .creativity-words--graphics .creativity-group--albums .creativity-count {
    left: 308px;
  }

  .creativity-words--graphics .creativity-group--exhibitions .creativity-count {
    left: 315px;
  }

  .creativity-words--pedagogy .creativity-group--training .creativity-count {
    left: 303px;
  }

  .creativity-words--pedagogy .creativity-group--lectures .creativity-count {
    left: 282px;
  }

  .creativity-img--cinema-1 {
    left: 261px;
    top: 237px;
    width: 76px;
    height: 110px;
  }

  .creativity-img--cinema-2 {
    left: 1040px;
    top: 253px;
    width: 81px;
    height: 119px;
  }

  .creativity-img--cinema-3 {
    left: 1164px;
    top: 491px;
    width: 64px;
    height: 91px;
  }

  .creativity-img--cinema-4 {
    left: 809px;
    top: 543px;
    width: 83px;
    height: 105px;
  }

  .creativity-img--cinema-5 {
    left: 93px;
    top: 533px;
    width: 71px;
    height: 90px;
  }

  .creativity-img--cinema-6 {
    left: 456px;
    top: 455px;
    width: 69px;
    height: 88px;
  }

  .creativity-img--cinema-7 {
    left: 322px;
    top: 571px;
    width: 68px;
    height: 104px;
  }

  .creativity-img--theatre-1 {
    left: 193px;
    top: 284px;
    width: 64px;
    height: 96px;
    transform: rotate(4.55deg);
  }

  .creativity-img--theatre-2 {
    left: 420px;
    top: 513px;
    width: 78px;
    height: 56px;
    transform: rotate(-25.26deg);
  }

  .creativity-img--theatre-3 {
    left: 861px;
    top: 288px;
    width: 67px;
    height: 88px;
    transform: rotate(-12.87deg);
  }

  .creativity-img--theatre-4 {
    left: 1166px;
    top: 520px;
    width: 67px;
    height: 88px;
    transform: rotate(10.18deg);
  }

  .creativity-img--texts-1 {
    left: 598px;
    top: 301px;
    width: 116px;
    height: 71px;
  }

  .creativity-img--texts-2 {
    left: 1222px;
    top: 294px;
    width: 116px;
    height: 71px;
  }

  .creativity-img--texts-3 {
    left: 247px;
    top: 278px;
    width: 82px;
    height: 59px;
    transform: rotate(165deg);
  }

  .creativity-img--texts-4 {
    left: 109px;
    top: 526px;
    width: 105px;
    height: 75px;
    transform: rotate(-7.19deg);
  }

  .creativity-img--texts-5 {
    left: 700px;
    top: 528px;
    width: 154px;
    height: 93px;
    transform: rotate(-4.88deg);
  }

  .creativity-img--texts-6 {
    left: 1007px;
    top: 526px;
    width: 128px;
    height: 78px;
    transform: rotate(-4.88deg);
  }

  .creativity-img--graphics-1 {
    left: 153px;
    top: 533px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
  }

  .creativity-img--graphics-2 {
    left: 1217px;
    top: 499px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
  }

  .creativity-img--graphics-3 {
    left: 294px;
    top: 282px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
  }

  .creativity-img--graphics-4 {
    left: 953px;
    top: 266px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
  }

  .creativity-img--graphics-5 {
    left: 947px;
    top: 559px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
  }

  .creativity-img--graphics-6 {
    left: 498px;
    top: 486px;
    width: 77px;
    height: 77px;
    border-radius: 50%;
  }

  .creativity-img--pedagogy-1 {
    left: 169px;
    top: 273px;
    width: 64px;
    height: 96px;
    transform: rotate(4.55deg);
  }

  .creativity-img--pedagogy-2 {
    left: 431px;
    top: 517px;
    width: 61px;
    height: 56px;
    transform: rotate(-25.26deg);
  }

  .creativity-img--pedagogy-3 {
    left: 887px;
    top: 270px;
    width: 67px;
    height: 88px;
    transform: rotate(-12.87deg);
  }

  .creativity-img--pedagogy-4 {
    left: 1145px;
    top: 529px;
    width: 67px;
    height: 88px;
    transform: rotate(10.18deg);
  }

  .creativity-progress {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    width: auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0;
  }

  .news-section .section-inner,
  .conference-section .section-inner {
    padding: 48px 64px 80px;
  }

  .video-section {
    height: 900px;
  }

  .video-section .section-inner {
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .video-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .news-section {
    /*height: 1022px;*/
    height: 900px;
  }

  .conference-section {
    height: 1084px;
  }

  .nav-section {
    height: 780px;
  }

  .nav-section .section-inner {
    height: 780px;
    display: grid;
    place-items: center;
  }

  .footer-section {
    /*height: 639px;*/
    height: 563px;
  }

  .footer-section .section-inner {
    padding: 64px;
  }
}

/* ========== NEW ABOUT PROFILES SECTION ========== */

.about-profiles-section {
  height: 100vh;
  min-height: 100vh;
  background: var(--black-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
}

.about-profiles-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

.profiles-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: auto;
  max-width: 100%;
}

.profile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.profile-circle {
  width: 272px;
  height: 272px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0.2;
  transition: opacity 0.3s ease;
  position: relative;
  cursor: pointer;
}

.profile-circle:hover {
  opacity: 1;
}

.profile-circle:hover .profile-image {
  filter: grayscale(0%);
  opacity: 1;
}

.profile-circle:hover .profile-button {
  opacity: 1;
}

.profile-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.8;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.profile-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(15, 15, 15, 0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white-100);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-label {
  text-align: center;
}

.profile-text {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
}

@media (max-width: 1200px) {
  .profiles-container {
    gap: 30px;
  }

  .profile-circle {
    width: 240px;
    height: 240px;
  }

  .profile-text {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .section-inner {
    padding: 48px 24px;
  }

  .nav-bar {
    height: 48px !important;
    padding: 0 16px !important;
  }

  .sidebar-header {
    height: 48px !important;
    padding: 0 16px !important;
  }

  .hero-content {
    min-height: 420px;
  }

  .photo-card,
  .photo-label {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
  }

  .photo-grid {
    display: grid;
    gap: 16px;
  }

  .nav-card {
    transform: none;
  }
}

/* Figma-aligned header and sidebar overrides */
@media (max-width: 768px) {
  .nav-bar {
    height: 48px;
    padding: 0;
  }

  .nav-icon {
    margin: 12px;
  }

  .menu-lines {
    width: 48px;
    height: 48px;
  }

  .menu-lines span {
    left: 12px;
  }

  .menu-lines span:nth-child(1) {
    top: 14px;
  }

  .menu-lines span:nth-child(2) {
    top: 22.7178px;
  }

  .menu-lines span:nth-child(3) {
    top: 31.4355px;
  }

  .sidebar-header {
    height: 48px;
    padding: 0;
  }

  .menu-close {
    width: 48px;
    height: 48px;
  }

  .menu-close span {
    width: 24px;
    height: 2.5px;
  }

  .sidebar-logo {
    width: 30px;
    height: 30px;
  }

  .menu-search {
    width: 48px;
    height: 48px;
  }

  .menu-search svg {
    width: 24px;
    height: 24px;
  }
}

/* Figma tablet menu overrides. Keep this isolated from mobile (<768) and desktop (>=1200). */
@media (min-width: 768px) and (max-width: 1199px) {
  .site-header .nav-bar {
    width: 100%;
    max-width: none;
    height: 56px !important;
    margin: 0 auto;
    padding: 0 !important;
  }

  .nav-icon,
  .menu-lines,
  .menu-close,
  .menu-search {
    width: 56px !important;
    height: 56px !important;
    padding: 16px !important;
    margin: 0 !important;
  }

  .nav-icon svg,
  .menu-search svg {
    width: 24px !important;
    height: 24px !important;
  }

  .nav-logo,
  .sidebar-logo {
    width: 30px !important;
    height: 30px !important;
  }

  .menu-lines span {
    left: 16px !important;
    width: 24px !important;
    height: 2.5645px !important;
  }

  .menu-lines span:nth-child(1) {
    top: 18px !important;
  }

  .menu-lines span:nth-child(2) {
    top: 26.7178px !important;
  }

  .menu-lines span:nth-child(3) {
    top: 35.4355px !important;
  }

  .menu-close span {
    width: 24px !important;
    height: 2.5645px !important;
  }

  .sidebar-inner {
    width: 100% !important;
    max-width: none !important;
  }

  .sidebar-header {
    height: 56px !important;
    padding: 0 !important;
  }

  .sidebar-content {
    padding: 45px 32px 0 !important;
    gap: 0 !important;
    justify-content: flex-start !important;
  }

  .sidebar-nav {
    width: 704px !important;
    max-width: 100% !important;
  }

  .sidebar-nav-item {
    font-size: 80px !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
    opacity: 0.9 !important;
  }

  .film-slider-card {
    width: calc(100% - 64px) !important;
    height: 396px !important;
    left: 32px !important;
    right: 32px !important;
    top: 590px !important;
    bottom: auto !important;
  }

  .film-slider-progress {
    gap: 8px !important;
    padding: 16px !important;
  }

  .film-title {
    right: 32px !important;
    left: auto !important;
    bottom: 26px !important;
    transform: none !important;
    font-size: 60px !important;
    line-height: 1 !important;
    letter-spacing: -1.2px !important;
  }

  .film-watch-button {
    display: none !important;
  }

  .sidebar-footer {
    left: 32px !important;
    top: 444px !important;
    bottom: auto !important;
    width: calc(100% - 64px) !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    column-gap: 16px !important;
    row-gap: 8px !important;
  }

  .sidebar-footer p {
    display: inline !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: -0.28px !important;
  }

  .sidebar-footer p:not(:first-child)::before {
    content: "•";
    display: inline-block;
    margin-right: 16px;
    color: rgba(237, 236, 226, 0.5);
  }
}

/* ========== NAVIGATION SLIDER SECTION ========== */
.nav-image-mobile {
  display: none;
}
.nav-title-br {
  display: none;
}
.nav-slider-section {
  position: relative;
  min-height: 100vh;
  background-color: var(--black-100);
  overflow: hidden;
}

.nav-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.nav-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.nav-slide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 80px;
  gap: 64px;
}

/* Title Screen */
.nav-slide-title-screen {
  background-color: var(--black-100);
  cursor: pointer;
  position: relative;
}

.nav-title-container {
  text-align: center;
  max-width: 800px;
}

.nav-subtitle {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 24px;
}

.nav-title-main {
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  margin: 0;
}

.nav-title-display {
  font-family: var(--font-display);
  font-size: clamp(60px, 9.72vw, 140px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white-100);
  margin: 0;
  max-width: 720px;
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
}

/* Image Container */
.nav-image-container {
  position: relative;
  flex-shrink: 0;
  width: 580px;
  height: 460px;
  opacity: 0.6;
}

.nav-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-image {
  position: absolute;
  width: 520px;
  height: 346px;
  object-fit: cover;
  transform: rotate(-12deg);
  left: 50%;
  top: 50%;
  margin-left: -260px;
  margin-top: -173px;
}

.nav-image-secondary,
.nav-image-tertiary,
.nav-image-quaternary,
.nav-image-quinary {
  position: absolute !important;
  transform: none !important;
  margin: 0 !important;
  left: auto !important;
  top: auto !important;
  width: 520px;
  height: 346px;
}

/* Multi-image layouts */
.nav-image-wrapper-2 .nav-image-secondary {
  transform: rotate(-6deg) !important;
  bottom: auto;
  top: 19.4px;
  left: 4px;
}

.nav-image-wrapper-3 .nav-image-secondary {
  transform: rotate(-6deg) !important;
  top: 34px;
  left: 4px;
}

.nav-image-wrapper-3 .nav-image-tertiary {
  bottom: 17px;
  left: 14px;
}

.nav-image-wrapper-4 .nav-image-secondary {
  transform: rotate(-6deg) !important;
  top: 34px;
  left: 4px;
}

.nav-image-wrapper-4 .nav-image-tertiary {
  bottom: 25px;
  left: 14px;
}

.nav-image-wrapper-4 .nav-image-quaternary {
  transform: rotate(6deg) !important;
  top: 32px;
  right: 0;
}

.nav-image-wrapper-5 .nav-image-secondary {
  transform: rotate(-6deg) !important;
  top: 34px;
  left: 4px;
}

.nav-image-wrapper-5 .nav-image-tertiary {
  bottom: 25px;
  left: 14px;
  mix-blend-mode: plus-lighter;
  opacity: 0.5;
}

.nav-image-wrapper-5 .nav-image-quaternary {
  transform: rotate(6deg) !important;
  top: 32px;
  right: 0;
}

.nav-image-wrapper-5 .nav-image-quinary {
  transform: rotate(12deg) !important;
  bottom: 20px;
  right: 32px;
}

.nav-image-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 346px;
  margin-left: -260px;
  margin-top: -173px;
  transform: rotate(-12deg);
  background-color: rgba(15, 15, 15, 0.2);
  pointer-events: none;
}

.nav-image-gradient {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 346px;
  margin-left: -260px;
  margin-top: -173px;
  transform: rotate(-12deg);
  background:
    linear-gradient(
      to right,
      #0f0f0f 0%,
      rgba(15, 15, 15, 0.92) 22%,
      rgba(15, 15, 15, 0.35) 42%,
      rgba(15, 15, 15, 0) 56%
    ),
    linear-gradient(
      to right,
      #0f0f0f 0%,
      rgba(15, 15, 15, 0.65) 34%,
      rgba(15, 15, 15, 0) 52%
    );
  pointer-events: none;
  opacity: 1;
}

.nav-slide-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-70);
  white-space: nowrap;
}

/* Text Container */
.nav-text-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  flex: 1;
}

.nav-slide-title {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  margin: 0;
}

.nav-slide-description {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-40);
  margin: 0;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  color: var(--white-100);
  transition: opacity 0.3s ease;
  width: fit-content;
}

.nav-button:hover {
  opacity: 0.8;
}

.nav-button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.nav-button-arrow svg {
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}

.nav-button-arrow svg path {
  stroke-opacity: 0.5;
}

.nav-button:hover .nav-button-arrow-left svg {
  transform: translateX(-4px);
}

.nav-button:hover .nav-button-arrow-right svg {
  transform: translateX(4px);
}

.nav-button-text {
  display: inline-block;
}

/* Arrow Navigation */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-100);
  transition: opacity 0.3s ease;
  opacity: 0.6;
}

.nav-arrow:hover {
  opacity: 1;
}

.nav-arrow-prev {
  left: 32px;
}

.nav-arrow-next {
  right: 32px;
}

.nav-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-slide-content {
    flex-direction: column;
    padding: 40px;
    gap: 40px;
  }

  .nav-image-container {
    width: 100%;
    max-width: 500px;
  }

  .nav-text-container {
    max-width: 100%;
  }

  .nav-title-main {
    font-size: 100px;
  }

  .nav-slide-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .nav-slider-section {
    min-height: auto;
  }

  .nav-slider-wrapper {
    height: auto;
    min-height: 100vh;
  }

  .nav-slide-content {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 80px;
  }

  .nav-image-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .nav-image {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
  }

  .nav-image-secondary,
  .nav-image-tertiary,
  .nav-image-quaternary,
  .nav-image-quinary {
    display: none;
  }

  .nav-slide-counter {
    bottom: -40px;
    font-size: 14px;
  }

  .nav-title-main {
    font-size: 72px;
  }

  .nav-slide-title {
    font-size: 36px;
  }

  .nav-button {
    font-size: 16px;
    padding: 5px 12px;
  }

  .nav-arrow {
    padding: 12px;
  }

  .nav-arrow-prev {
    left: 16px;
  }

  .nav-arrow-next {
    right: 16px;
  }
}

/* ========== SECTION 1: HERO + CARDS ========== */
.section-1 {
  position: relative;
  height: 1120px;
  overflow: hidden;
  background: var(--black-100);
}

.section-1::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 520px;
  height: 460px;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0) 0%,
    rgba(15, 15, 15, 0.58) 36%,
    rgba(15, 15, 15, 0.9) 72%,
    #0f0f0f 100%
  );
  pointer-events: none;
  z-index: 1;
}

.s1-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 820px;
  z-index: 0;
}

.s1-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 500px;
  height: 420px;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0) 0%,
    rgba(15, 15, 15, 0.45) 38%,
    rgba(15, 15, 15, 0.84) 70%,
    #0f0f0f 100%
  );
  pointer-events: none;
}

.s1-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.s1-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(15, 15, 15, 0.25) 0%,
      rgba(15, 15, 15, 0.85) 100%
    ),
    linear-gradient(
      162deg,
      rgba(217, 217, 217, 0) 0%,
      rgba(217, 217, 217, 0.24) 42%,
      rgba(217, 217, 217, 0) 93%
    );
}

.s1-bg-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.s1-main-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 258px;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}

.s1-author-name {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.7vw, 125px);
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(
    102deg,
    rgba(237, 236, 226, 0.3) 0%,
    rgba(237, 236, 226, 0.8) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}

.s1-main-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 14.6vw, 210px);
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(
    102deg,
    rgba(237, 236, 226, 0.8) 0%,
    rgba(237, 236, 226, 0.3) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}

.s1-cards-row {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 734px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: min(108px, calc((91.67vw - 880px) / 3));
  z-index: 2;
}

.s1-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 220px;
}

.s1-card-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.s1-card--inactive .s1-card-circle {
  opacity: 0.2;
}

.s1-card--active .s1-card-circle {
  opacity: 1;
}

.s1-card-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.s1-card-ring {
  position: absolute;
  width: 239px;
  height: 239px;
  top: -9.5px;
  left: -9.5px;
  border-radius: 50%;
  border: 2px solid #edece2;
  pointer-events: none;
}

.s1-card-label {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  text-align: center;
}

.s1-card--inactive .s1-card-label {
  opacity: 0.2;
}

/* Hover: неактивные карточки светлеют */
.s1-card--inactive:hover .s1-card-circle {
  opacity: 1;
}

.s1-card--inactive:hover .s1-card-label {
  opacity: 1;
}

/* ====== ПЛАНШЕТ (769–1100px) ====== */
@media (min-width: 769px) and (max-width: 1100px) {
  .section-1 {
    height: 1182px;
  }

  .s1-bg {
    height: 900px;
  }

  .s1-cards-row {
    top: 820px;
    left: 24px;
    gap: 24px;
  }

  .s1-card {
    width: 160px;
    gap: 24px;
  }

  .s1-card-circle {
    width: 160px;
    height: 160px;
  }

  .s1-card-img {
    width: 160px;
    height: 160px;
  }

  .s1-card-ring {
    width: 174px;
    height: 174px;
    top: -7px;
    left: -7px;
  }
}

/* ====== МОБИЛКА (≤768px) ====== */
@media (max-width: 768px) {
  html,
  body,
  .page-shell {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overscroll-behavior-x: none !important;
  }

  .news-section {
    height: 720px !important;
    min-height: 720px !important;
    overflow: hidden !important;
    background: var(--black-100) !important;
  }

  .news-section .section-inner {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    padding: 0 !important;
    text-align: left !important;
  }

  .news-section .caps-l {
    position: absolute !important;
    top: 48px !important;
    left: 50% !important;
    width: min(343px, calc(100vw - 32px)) !important;
    transform: translateX(-50%) !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.32px !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .news-section .display-l {
    position: absolute !important;
    top: 72px !important;
    left: 50% !important;
    width: min(343px, calc(100vw - 32px)) !important;
    transform: translateX(-50%) !important;
    font-size: 80px !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
    text-align: center !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  .news-section .news-grid {
    position: absolute !important;
    top: 192px !important;
    left: 50% !important;
    width: 375px !important;
    max-width: 100vw !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 16px !important;
    overflow-x: auto !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .news-section .news-card {
    flex: 0 0 320px !important;
    width: 320px !important;
    gap: 16px !important;
    scroll-snap-align: start !important;
  }

  .news-section .news-card img {
    width: 320px !important;
    height: auto !important;
    aspect-ratio: 336 / 258 !important;
  }

  .news-section .news-title {
    font-family: var(--font-mono) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: -0.4px !important;
  }

  .news-section .news-card .caps-s {
    font-size: 16px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.32px !important;
  }

  .news-section .mt-1 {
    position: absolute !important;
    left: calc(50% + 1px) !important;
    top: 648px !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
  }

  .news-section .link-button {
    font-size: 16px !important;
    line-height: 1.4 !important;
    letter-spacing: -0.32px !important;
    white-space: nowrap !important;
  }

  .s-divider-wrap {
    padding: 100px 16px 110px !important;
  }

  .section-1 {
    height: auto;
    overflow: hidden;
    padding-bottom: 64px;
  }

  .s1-bg {
    height: 700px;
    z-index: 0;
  }

  .s1-bg,
  .s1-bg-image,
  .s1-bg-dark,
  .s1-bg-overlay {
    pointer-events: none;
  }

  .s1-bg-overlay {
    z-index: 1;
  }

  .s1-main-info {
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    text-align: center;
  }

  .s1-author-name {
    position: absolute;
    left: 50%;
    top: 395px;
    transform: translateX(-50%);
    font-size: 60px;
    white-space: nowrap;
  }

  .s1-main-title {
    position: absolute;
    left: 50%;
    top: 310px;
    transform: translateX(-50%);
    font-size: 100px;
    white-space: nowrap;
  }

  .s1-cards-row {
    position: static;
    margin-top: 720px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 8px 17px;
    gap: 26px;
    transform: none;
    left: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 17px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: pointer;
    position: relative;
    z-index: 20;
  }

  .s1-card {
    position: relative;
    z-index: 21;
  }

  .s1-cards-row::-webkit-scrollbar {
    display: none;
  }

  .s1-card {
    flex-shrink: 0;
    width: 140px;
    gap: 12px;
    scroll-snap-align: start;
    cursor: pointer;
  }

  .s1-card-circle {
    width: 140px;
    height: 140px;
  }

  .s1-card-img {
    width: 140px;
    height: 140px;
  }

  .s1-card-ring {
    width: 153px;
    height: 153px;
    top: -6.5px;
    left: -6.5px;
  }

  .s1-card-label {
    font-size: 28px;
  }
}

/* Figma tablet hero overrides. Isolated from mobile (<768) and desktop (>=1200). */
@media (min-width: 768px) and (max-width: 1199px) {
  .section-1 {
    height: 1182px !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
  }

  .s1-bg {
    height: 1024px !important;
  }

  .s1-bg-image {
    inset: auto !important;
    top: 0 !important;
    left: calc(50% + 76.12px) !important;
    width: 1798.244px !important;
    height: 1024px !important;
    transform: translateX(-50%) !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  .s1-main-info {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .s1-main-title {
    position: absolute !important;
    top: 408px !important;
    left: calc(50% - 7px) !important;
    transform: translateX(-50%) !important;
    font-size: 140px !important;
    line-height: 1 !important;
    letter-spacing: -2.8px !important;
    white-space: nowrap !important;
  }

  .s1-author-name {
    position: absolute !important;
    top: 527px !important;
    left: calc(50% - 7px) !important;
    transform: translateX(-50%) !important;
    font-size: 85px !important;
    line-height: 1 !important;
    letter-spacing: -1.7px !important;
    white-space: nowrap !important;
  }

  .s1-cards-row {
    position: absolute !important;
    top: 886px !important;
    left: 50% !important;
    width: min(100%, 768px) !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 32px !important;
    padding: 0 24px !important;
    margin: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  .s1-card {
    flex: 1 0 0 !important;
    min-width: 0 !important;
    width: auto !important;
    gap: 24px !important;
  }

  .s1-card-circle,
  .s1-card-img {
    width: 160px !important;
    height: 160px !important;
  }

  .s1-card-ring {
    width: 174px !important;
    height: 174px !important;
    top: -7px !important;
    left: -7px !important;
  }

  .s1-card-label {
    font-size: 40px !important;
    line-height: 1 !important;
    letter-spacing: -0.8px !important;
    white-space: nowrap !important;
  }
}

/* ========== SECTION 2: ТВОРЧЕСТВО СМЭ v2 ========== */
.s2-section {
  position: relative;
  height: 820px;
  overflow: hidden;
  background: var(--black-100);
  z-index: 5;
}

/* Убираем дефолтный padding section-inner */
.s2-section .section-inner {
  padding: 0;
  position: relative;
  height: 100%;
}

.s2-inner {
  position: relative;
  height: 100%;
}

/* Title */
.s2-title {
  position: absolute;
  top: 48px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(60px, 9.72vw, 140px);
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  margin: 0;
  white-space: nowrap;
}

/* Tabs */
.s2-tabs {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #353535;
  border-radius: 14px;
}

.s2-tab {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(237, 236, 226, 0.7);
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
  padding: 0 6px;
}

.s2-tab--active {
  background: var(--white-100);
  color: var(--black-100);
}

.s2-tab:not(.s2-tab--active):hover {
  color: var(--white-100);
}

/* Slides */
.s2-slides-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none; /* не перекрываем клики на табах */
}

.s2-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  pointer-events: none;
}

.s2-slide--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Word & Count — общие стили */
a.s2-word {
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a.s2-word:hover {
  opacity: 0.7;
}

.s2-word {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.94vw, 100px);
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
}

.s2-count {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.17vw, 60px);
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(237, 236, 226, 0.2);
}

/* Позиции для двух групп (лево/право) — из Figma */
.s2-word--left {
  left: 239px;
  top: 509px;
}
.s2-count--left {
  left: 449px;
  top: 466px;
}
.s2-word--right {
  left: 934px;
  top: 509px;
}
.s2-count--right {
  left: 1162px;
  top: 475px;
}

/* Средняя группа (для вкладки Теория/3 слова) */
.s2-word--mid {
  left: 590px;
  top: 509px;
}
.s2-count--mid {
  left: 750px;
  top: 466px;
}

/* Word group wrapper — прозрачен на десктопе, flex на мобильном */
.s2-word-group {
  display: contents;
}
.s2-subheading {
  display: none;
}

/* CTA-ссылка */
.s2-link {
  position: absolute;
  bottom: 56px;
  left: 239px;
}

/* Картинки */
.s2-img {
  position: absolute;
  object-fit: cover;
}

/* Позиции картинок — вкладка КИНО (из Figma 544-3250) */
.s2-img--c1 {
  left: 239px;
  top: 382px;
  width: 76px;
  height: 110px;
}
.s2-img--c2 {
  left: 482px;
  top: 531px;
  width: 69px;
  height: 88px;
}
.s2-img--c3 {
  left: 401px;
  top: 629px;
  width: 68px;
  height: 104px;
}
.s2-img--c4 {
  left: 152px;
  top: 609px;
  width: 71px;
  height: 90px;
}
.s2-img--c5 {
  left: 997px;
  top: 368px;
  width: 81px;
  height: 119px;
}
.s2-img--c6 {
  left: 1223px;
  top: 567px;
  width: 64px;
  height: 91px;
}
.s2-img--c7 {
  left: 868px;
  top: 619px;
  width: 83px;
  height: 105px;
}

/* Позиции картинок — остальные вкладки (приближённые) */
.s2-img--t1 {
  left: 180px;
  top: 390px;
  width: 76px;
  height: 110px;
}
.s2-img--t2 {
  left: 460px;
  top: 540px;
  width: 69px;
  height: 88px;
}
.s2-img--t3 {
  left: 380px;
  top: 630px;
  width: 68px;
  height: 104px;
}
.s2-img--t4 {
  left: 1000px;
  top: 380px;
  width: 80px;
  height: 115px;
}

.s2-tablet-list {
  display: none;
}

/* Figma tablet creativity section. Isolated from mobile (<768) and desktop (>=1200). */
@media (min-width: 768px) and (max-width: 1199px) {
  .s2-section {
    height: 2332px !important;
    margin-top: 189px !important;
    overflow: hidden !important;
    background: #0f0f0f !important;
  }

  .s2-section .section-inner,
  .s2-inner {
    height: 100% !important;
    padding: 0 !important;
  }

  .s2-title {
    top: 32px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 80px !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .s2-tabs,
  .s2-slides-wrap {
    display: none !important;
  }

  .s2-tablet-list {
    position: absolute;
    top: 212px;
    left: 32px;
    width: calc(100% - 64px);
    max-width: 704px;
    display: flex;
    flex-direction: column;
    gap: 120px;
  }

  .s2-tablet-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
  }

  .s2-tablet-images {
    position: relative;
    width: 218px;
    height: 80px;
    flex: 0 0 218px;
  }

  .s2-tablet-images img {
    position: absolute;
    width: auto;
    height: 82px;
    object-fit: cover;
    display: block;
  }

  .s2-tablet-images img:nth-child(1) {
    left: 46px;
    top: -7px;
    transform: rotate(-12.7deg);
  }

  .s2-tablet-images img:nth-child(2) {
    left: 115px;
    top: -4px;
    transform: rotate(10deg);
  }

  .s2-tablet-images--left img:nth-child(1) {
    left: 38px;
  }

  .s2-tablet-images--right img:nth-child(1) {
    left: 58px;
  }

  .s2-tablet-images--round img {
    width: 90px;
    height: 90px;
    border-radius: 70px;
  }

  .s2-tablet-info {
    position: relative;
    width: 220px;
    height: 72px;
    flex: 0 0 220px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .s2-tablet-info a,
  .s2-tablet-word {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1.6px;
    color: var(--white-100);
    text-decoration: none;
  }

  .s2-tablet-info > span:not(.s2-tablet-word) {
    position: absolute;
    top: -24px;
    left: calc(100% - 4px);
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.96px;
    color: rgba(237, 236, 226, 0.2);
  }

  .s2-tablet-info em {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.32px;
    color: rgba(237, 236, 226, 0.4);
    white-space: nowrap;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .s2-section {
    height: auto;
    padding-bottom: 60px;
  }
  .s2-section .section-inner {
    height: auto !important;
  }
  .s2-inner {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .s2-title {
    position: static !important;
    transform: none !important;
    font-size: 80px !important;
    margin: 0 0 40px 0 !important;
    text-align: center !important;
    width: 100% !important;
  }
  .s2-tabs {
    display: none !important;
  }
  .s2-tab {
    display: none !important;
  }
  /* Обёртка — вертикальный список слайдов */
  .s2-slides-wrap {
    position: static !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 64px !important;
    padding: 0 16px 40px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Каждый слайд — сетка: название | число рядом */
  .s2-slide {
    position: static !important;
    display: grid !important;
    grid-template-columns: auto auto !important;
    column-gap: 0 !important;
    row-gap: 64px !important;
    justify-content: center !important;
    align-items: start !important;
    opacity: 1 !important;
    visibility: visible !important;
    inset: auto !important;
  }
  .s2-slide--active {
    position: static !important;
    display: grid !important;
    grid-template-columns: auto auto !important;
    column-gap: 0 !important;
    row-gap: 64px !important;
    justify-content: center !important;
    align-items: start !important;
  }
  .s2-word {
    font-size: 60px !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    margin: 0 !important;
    flex: unset !important;
    text-align: left !important;
    grid-column: 1 !important;
    align-self: end !important;
    line-height: 1 !important;
    z-index: 2 !important;
    pointer-events: auto !important;
  }

  a.s2-word {
    display: block !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  .s2-slide {
    pointer-events: auto !important;
  }
  .s2-count {
    font-size: 48px !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    margin: 0 !important;
    text-align: left !important;
    color: rgba(237, 236, 226, 0.2) !important;
    grid-column: 2 !important;
    align-self: start !important;
    line-height: 1 !important;
    transform: translateY(-16px) !important;
  }
  .s2-word--left,
  .s2-word--right,
  .s2-word--mid {
    position: static !important;
  }
  .s2-count--left,
  .s2-count--right,
  .s2-count--mid {
    position: static !important;
    transform: translateY(-16px) !important;
  }
  .s2-link {
    display: none !important;
  }
  .s2-img {
    display: none !important;
  }
  /* Word group with subheading (Программы/Лекции) */
  .s2-word-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    grid-column: 1 !important;
    align-self: end !important;
  }
  .s2-word-group .s2-word {
    grid-column: unset !important;
    align-self: auto !important;
  }
  .s2-subheading {
    display: block !important;
    font-family: var(--font-mono) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 150% !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    color: rgba(237, 236, 226, 0.4) !important;
    margin-top: 2px !important;
  }
  /* Video section: 150px padding top/bottom per Figma */
  .video-section {
    padding: 150px 0 !important;
  }
}

/* ========== ОБ СМЭ SECTION (s3) ========== */
.s3-subtitle {
  display: none;
}
.s3-section {
  background: var(--black-100);
  padding: 48px 0 80px;
}
.s3-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 65px;
}
.s3-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9.72vw, 140px);
  font-weight: 400;
  line-height: 1;
  color: var(--white-100);
  text-align: center;
  margin-bottom: 48px;
}
.s3-grid {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.s3-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--white-100);
}
.s3-card:hover {
  color: var(--white-100);
}
.s3-card-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 4px;
}
.s3-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.s3-card:hover .s3-card-img img {
  transform: scale(1.04);
}
.s3-card-title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
}
.s3-card-sub {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  color: rgba(237, 236, 226, 0.7);
  margin: 0;
}
.s3-link-wrap {
  margin-top: 48px;
  text-align: center;
}

@media (min-width: 1440px) {
  .video-section + .news-section + .s3-section {
    margin-top: 200px;
  }
}

@media (max-width: 900px) {
  .s3-inner {
    padding: 0 24px;
  }
  .s3-grid {
    flex-wrap: wrap;
    gap: 24px;
  }
  .s3-card {
    flex: 1 1 calc(50% - 12px);
  }
  .s3-card-img {
    height: 220px;
  }
}
@media (max-width: 600px) {
  .s3-card {
    flex: 1 1 100%;
  }
  .s3-card-img {
    height: 180px;
  }
}

/* ========== КИНОВЕДЧЕСКИЕ ЗАПИСКИ SECTION (s4) ========== */
.s4-section {
  background: var(--black-100);
  height: 1066px;
  position: relative;
  overflow: hidden;
}
.s4-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.s4-header {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s4-supertitle {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(237, 236, 226, 0.4);
  text-align: center;
  margin: 0;
}
.s4-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9.72vw, 140px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  text-align: center;
  white-space: nowrap;
  margin: 0;
}
.s4-title span {
  display: inline;
}
.s4-cover-wrap {
  position: absolute;
  top: 280px;
  left: 50%;
  transform: translateX(-50%);
  width: 292px;
  height: 453px;
}
.s4-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s4-issue {
  position: absolute;
  top: 757px;
  left: 50%;
  transform: translateX(-50%);
  width: 948px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.17vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  text-align: center;
  margin: 0;
}
.s4-footer {
  position: absolute;
  top: 881px;
  left: 64px;
  right: 64px;
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.s4-footer-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 8px;
  background: #1e1b19;
  text-decoration: none;
  color: var(--white-100);
  transition: opacity 0.2s;
}
.s4-footer-item:hover {
  opacity: 0.8;
  color: var(--white-100);
}
.s4-icon-box {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  background: #353535;
  position: relative;
  overflow: hidden;
}
.s4-footer-text {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
/* Book covers stacked */
.s4-book {
  position: absolute;
  object-fit: cover;
}
.s4-book--1 {
  left: 4px;
  top: 20px;
  width: 64px;
  height: 93px;
}
.s4-book--2 {
  left: 20px;
  top: 23px;
  width: 64px;
  height: 93px;
}
.s4-book--3 {
  left: 14px;
  top: 10px;
  width: 57px;
  height: 88px;
}
/* Search icon */
.s4-search-icon {
  width: 88px;
  height: 88px;
  display: block;
}
/* Author/colleague circles */
.s4-author {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
}
.s4-author--1 {
  left: 47px;
  top: 10px;
  width: 28px;
  height: 28px;
}
.s4-author--2 {
  left: 10px;
  top: 38px;
  width: 34px;
  height: 34px;
}
.s4-author--3 {
  left: 50px;
  top: 57px;
  width: 34px;
  height: 34px;
}
.s4-author--4 {
  left: 3px;
  top: 0;
  width: 28px;
  height: 28px;
}

@media (max-width: 1100px) {
  .s4-section {
    height: auto;
    padding-bottom: 60px;
  }
  .s4-inner {
    position: static;
    height: auto;
  }
  .s4-header {
    position: static;
    transform: none;
    width: 100%;
    padding: 48px 24px 0;
  }
  .s4-title {
    white-space: normal;
    font-size: clamp(40px, 8vw, 100px);
  }
  .s4-cover-wrap {
    position: static;
    transform: none;
    margin: 40px auto;
  }
  .s4-issue {
    position: static;
    transform: none;
    width: 100%;
    padding: 0 24px;
    text-align: center;
    display: block;
  }
  .s4-footer {
    position: static;
    margin-top: 40px;
    padding: 0 24px;
    flex-wrap: wrap;
    left: auto;
    right: auto;
  }
  .s4-footer-item {
    flex: 1 1 calc(50% - 16px);
  }
}
@media (max-width: 600px) {
  .s4-footer-item {
    flex: 1 1 100%;
  }
}

/* ========== DIVIDER ========== */
.s-divider-wrap {
  background: var(--black-100);
  padding: 100px 64px;
}
.s-divider {
  border: none;
  border-top: 1px solid rgba(237, 236, 226, 0.2);
  margin: 0;
}

#conference + .s-divider-wrap,
#reach-us + .s-divider-wrap {
  display: block;
}

#conference + .s-divider-wrap .s-divider,
#reach-us + .s-divider-wrap .s-divider {
  display: none;
}

/* ========== ЛЕНТА НОВОСТЕЙ (s5) ========== */
.s5-section {
  background: var(--black-100);
  padding-bottom: 0;
}
.s5-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.s5-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.s5-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.17vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  margin: 0;
  flex: 1;
}
.s5-arrows {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.s5-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.s5-arrow:hover {
  opacity: 0.7;
}
.s5-arrow img {
  width: 56px;
  height: 56px;
  display: block;
}
.s5-cards {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.s5-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s5-card-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.s5-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.s5-card:hover .s5-card-img img {
  transform: scale(1.04);
}
.s5-card-text {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.s5-card-heading {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  margin: 0;
}
.s5-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.s5-card-tag {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
}
.s5-card-date {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(237, 236, 226, 0.7);
}

@media (max-width: 900px) {
  .s-divider-wrap {
    padding: 80px 24px;
  }
  .s5-inner {
    padding: 0 24px;
  }
  .s5-cards {
    flex-wrap: wrap;
  }
  .s5-card {
    flex: 1 1 calc(50% - 16px);
  }
  .s5-card-text {
    height: auto;
    min-height: 160px;
  }
}
@media (max-width: 600px) {
  .s5-card {
    flex: 1 1 100%;
  }
}

/* ========== СВЯЗАТЬСЯ С НАМИ (s6) ========== */
.s6-section {
  background: var(--black-100);
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 64px;
}
.s6-book {
  position: absolute;
  pointer-events: none;
  border: 4px solid var(--white-100);
  overflow: hidden;
}
.s6-book img {
  display: block;
  object-fit: cover;
}
.s6-book--right {
  left: min(calc(100% - 270px), calc(50% - 600px + 987px));
  top: -46px;
  width: 187px;
  height: 246px;
  opacity: 0.7;
  transform: rotate(5.84deg);
}
.s6-book--right img {
  width: 100%;
  height: 100%;
}
.s6-book--left {
  left: max(48px, calc(50% - 600px + 94px));
  top: 86px;
  width: 180px;
  height: 237px;
  opacity: 0.6;
  transform: rotate(-11.13deg);
}
.s6-book--left img {
  width: 100%;
  height: 100%;
}
.s6-content {
  position: relative;
  z-index: 1;
  width: 640px;
  max-width: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.s6-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.17vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  text-align: center;
  margin: 0;
}
.s6-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.s6-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--white-100);
  transition: opacity 0.2s;
}
.s6-btn:hover {
  opacity: 0.7;
  color: var(--white-100);
}
.s6-btn-icon {
  width: 64px;
  height: 64px;
  background: rgba(237, 236, 226, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s6-btn-text {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 700px) {
  .s6-section {
    padding: 0 24px 60px;
  }
  .s6-content {
    width: 100%;
    padding: 16px;
    gap: 40px;
  }
  .s6-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .s6-book {
    display: none;
  }
}

/* ========== FOOTER (updated) ========== */
.footer-new {
  background: var(--white-100);
  color: var(--black-100);
  position: relative;
  overflow: hidden;
  height: 750px;
  min-height: 750px;
}
.footer-body {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0;
}
.footer-body .footer-logo {
  position: absolute;
  top: 64px;
  left: 64px;
  width: 56px;
  height: 56px;
  display: block;
  margin: 0;
}
.footer-body .footer-links {
  position: absolute;
  top: 160px;
  left: 64px;
  width: 1088px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 0;
}
.footer-body .footer-links h5 {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.5);
  margin: 0 0 8px;
}
.footer-body .footer-links a {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black-100);
  text-decoration: none;
  line-height: 1.43;
}
.footer-body .footer-links a:hover {
  opacity: 0.6;
}
.footer-body .footer-links .footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-sep {
  display: none;
}
.footer-body .footer-note {
  position: absolute;
  top: 344px;
  left: 64px;
  width: 1312px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  margin: 0;
  white-space: nowrap;
}
.footer-body .footer-note span {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.5);
}
.footer-watermark {
  position: absolute;
  top: 420px;
  left: -1px;
  width: calc(100% + 2px);
  height: 403px;
  transform: none;
  pointer-events: none;
}

@media (max-width: 900px) {
  .footer-new {
    height: auto;
    min-height: 640px;
  }
  .footer-body {
    height: auto;
    padding: 40px 24px 0;
  }
  .footer-body .footer-logo,
  .footer-body .footer-links,
  .footer-body .footer-note {
    position: static;
    width: auto;
    top: auto;
    left: auto;
  }
  .footer-body .footer-logo {
    margin-bottom: 40px;
  }
  .footer-body .footer-links {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
  }
  .footer-body .footer-note {
    flex-wrap: wrap;
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .footer-new {
    height: 712px !important;
    min-height: 712px !important;
    overflow: hidden !important;
  }

  .footer-body {
    position: relative !important;
    height: 100% !important;
    padding: 0 !important;
  }

  .footer-body .footer-logo {
    position: absolute !important;
    top: 32px !important;
    left: 16px !important;
    width: 56px !important;
    height: 56px !important;
    margin: 0 !important;
  }

  .footer-body .footer-links {
    position: absolute !important;
    top: 128px !important;
    left: 16px !important;
    transform: none !important;
    width: calc(100vw - 32px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    margin: 0 !important;
  }

  .footer-body .footer-links > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 100% !important;
  }

  .footer-body .footer-links h5 {
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 20px !important;
    letter-spacing: -0.28px !important;
  }

  .footer-body .footer-links .footer-nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 4px 0 !important;
    width: 100% !important;
    align-items: flex-start !important;
  }

  .footer-sep {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 8px !important;
    font-family: var(--font-mono) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    color: rgba(15, 15, 15, 0.4) !important;
  }

  .footer-body .footer-links a {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    letter-spacing: -0.28px !important;
    white-space: nowrap !important;
  }

  .footer-body .footer-links a::after {
    content: none !important;
  }

  .footer-body .footer-note {
    position: absolute !important;
    top: 516px !important;
    left: 16px !important;
    transform: none !important;
    width: calc(100vw - 32px) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px 32px !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  .footer-body .footer-note span {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    letter-spacing: -0.28px !important;
  }

  .footer-watermark {
    top: auto !important;
    bottom: -44px !important;
    left: 50% !important;
    width: 417px !important;
    height: 161px !important;
    transform: translateX(-50%) !important;
  }
}

/* ========== PHOTO SECTION (updated) ========== */
.photo-section {
  background: var(--black-100);
  position: relative;
  height: 956px;
  overflow: hidden;
}
.photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.photo-inner .photo-title {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(60px, 9.72vw, 140px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  text-align: center;
  white-space: nowrap;
  margin: 0;
}
.photo-inner .photo-grid {
  position: absolute;
  inset: 0;
  min-height: unset;
}
.photo-inner .photo-card {
  position: absolute;
  border-radius: 0 !important;
  overflow: hidden;
  transform: rotate(var(--angle, 0deg));
  opacity: 0.4;
  transition: opacity 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.photo-inner .photo-card:hover {
  opacity: 0.85;
}
.photo-inner .photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  display: block;
}
.photo-inner .photo-label {
  position: absolute;
  width: auto;
  max-width: 320px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.78vw, 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100);
  text-align: center;
  transform: translateX(-50%);
  text-decoration: none;
  cursor: pointer;
}
.photo-link {
  position: absolute;
  left: 50%;
  top: 860px;
  transform: translateX(-50%);
}

@media (max-width: 1100px) {
  .photo-section {
    height: auto !important;
    padding-bottom: 60px;
    overflow: hidden;
  }
  .photo-inner {
    height: auto !important;
    position: static !important;
  }
  .photo-inner .photo-title {
    position: static !important;
    transform: none !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 48px 24px 0 !important;
    display: block !important;
    font-size: 40px !important;
  }
  .photo-inner .photo-grid {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    padding: 40px 24px !important;
    width: auto !important;
    height: auto !important;
    inset: auto !important;
  }
  .photo-inner .photo-card {
    position: static !important;
    width: 100% !important;
    height: 200px !important;
    border-radius: 0 !important;
    transform: none !important;
    opacity: 0.8 !important;
    left: auto !important;
    top: auto !important;
  }
  .photo-inner .photo-card img {
    border-radius: 0 !important;
  }
  .photo-inner .photo-label {
    display: block !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 16px auto !important;
    padding: 0 16px !important;
    font-family: "Sturkopf Grotesk";
    font-size: 28px !important;
    font-weight: 500 !important;
    line-height: 100%;
    letter-spacing: -0.56px;
    text-transform: uppercase;
    color: var(--white-100);
    text-align: center !important;
    left: auto !important;
    top: auto !important;
  }
  .photo-link {
    position: static !important;
    transform: none !important;
    display: block !important;
    text-align: center !important;
    margin: 0 auto 40px !important;
    width: fit-content !important;
    top: auto !important;
    left: auto !important;
  }
}

/* Figma tablet biography/photo section. Isolated from mobile (<768) and desktop (>=1200). */
@media (min-width: 768px) and (max-width: 1199px) {
  .page-shell {
    background: #0f0f0f !important;
  }

  .photo-section {
    height: 1024px !important;
    margin-top: 200px !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    background: #0f0f0f !important;
  }

  .photo-inner {
    position: relative !important;
    width: 768px !important;
    max-width: 100% !important;
    height: 1024px !important;
    margin: 0 auto !important;
  }

  .photo-inner .photo-title {
    position: absolute !important;
    top: 40px !important;
    left: calc(50% + 0.5px) !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    padding: 0 !important;
    display: block !important;
    font-size: 80px !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .photo-inner .photo-grid {
    position: absolute !important;
    display: block !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    gap: 0 !important;
    grid-template-columns: none !important;
  }

  .photo-inner .photo-card {
    position: absolute !important;
    width: 200px !important;
    height: 200px !important;
    opacity: 0.4 !important;
    border-radius: 0 !important;
    transform: rotate(var(--angle, 0deg)) !important;
  }

  .photo-inner .photo-card:nth-child(1) {
    left: 61px !important;
    top: 217px !important;
  }

  .photo-inner .photo-card:nth-child(2) {
    left: 284px !important;
    top: 424px !important;
  }

  .photo-inner .photo-card:nth-child(3) {
    left: 493px !important;
    top: 616px !important;
  }

  .photo-inner .photo-card:nth-child(4) {
    left: 61px !important;
    top: 672px !important;
  }

  .photo-inner .photo-card:nth-child(5) {
    left: 501px !important;
    top: 201px !important;
  }

  .photo-inner .photo-label {
    display: block !important;
    position: absolute !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: var(--font-display) !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: -0.56px !important;
    text-transform: uppercase !important;
    color: var(--white-100) !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .photo-inner .photo-label:nth-child(6) {
    left: 99px !important;
    top: 366px !important;
    width: 121px !important;
    transform: translateX(-50%) rotate(1.05deg) !important;
  }

  .photo-inner .photo-label:nth-child(7) {
    left: 331px !important;
    top: 599px !important;
    width: 122px !important;
    transform: translateX(-50%) rotate(3.92deg) !important;
  }

  .photo-inner .photo-label:nth-child(8) {
    left: 129px !important;
    top: 832px !important;
    width: 214px !important;
    transform: translateX(-50%) rotate(3.92deg) !important;
  }

  .photo-inner .photo-label:nth-child(9) {
    left: 532px !important;
    top: 796px !important;
    width: 241px !important;
    transform: translateX(-50%) rotate(3.92deg) !important;
  }

  .photo-inner .photo-label:nth-child(10) {
    left: 623px !important;
    top: 350px !important;
    width: 197px !important;
    transform: translateX(-50%) rotate(-7.54deg) !important;
  }

  .photo-link {
    position: absolute !important;
    left: 50% !important;
    top: auto !important;
    bottom: 40px !important;
    transform: translateX(-50%) !important;
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    letter-spacing: -0.32px !important;
  }

  .photo-section::before,
  .photo-section::after {
    content: "" !important;
    display: none !important;
  }

  .photo-section + .s2-section {
    margin-top: 157px !important;
  }

  .photo-section + .s2-section .s2-title {
    top: 32px !important;
    font-size: 80px !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
  }
}

/* Tablet creativity overrides are repeated here to win over the <=768 mobile block. */
@media (min-width: 768px) and (max-width: 1439px) {
  .s2-section {
    height: 2404px !important;
    overflow: hidden !important;
    background: #0f0f0f !important;
  }

  .s2-section .section-inner,
  .s2-inner {
    position: relative !important;
    height: 100% !important;
    padding: 0 !important;
    display: block !important;
  }

  .s2-title {
    position: absolute !important;
    top: 32px !important;
    left: 50% !important;
    width: auto !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    font-size: 80px !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .s2-tabs,
  .s2-tab,
  .s2-slides-wrap {
    display: none !important;
  }

  .s2-tablet-list {
    position: absolute !important;
    top: 212px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    width: 704px !important;
    max-width: 704px !important;
    flex-direction: column !important;
    gap: 120px !important;
    padding: 0 !important;
  }

  .s2-tablet-images img {
    max-width: none !important;
    object-fit: cover !important;
  }

  .s2-tablet-row:nth-child(1) .s2-tablet-images--left img:nth-child(1) {
    left: 17.81px !important;
    top: -40px !important;
    width: 71.059px !important;
    height: 90px !important;
    transform: rotate(-12.96deg) !important;
  }

  .s2-tablet-row:nth-child(1) .s2-tablet-images--left img:nth-child(2) {
    left: 114px !important;
    top: -16.86px !important;
    width: 60px !important;
    height: 92px !important;
    transform: rotate(10.94deg) !important;
  }

  .s2-tablet-row:nth-child(1) .s2-tablet-images--right img:nth-child(1),
  .s2-tablet-row:nth-child(2) .s2-tablet-images--right img:nth-child(1) {
    left: 117.52px !important;
    top: -4.87px !important;
    width: 63px !important;
    height: 80px !important;
    transform: rotate(10.02deg) !important;
  }

  .s2-tablet-row:nth-child(1) .s2-tablet-images--right img:nth-child(2),
  .s2-tablet-row:nth-child(2) .s2-tablet-images--right img:nth-child(2) {
    left: 45.88px !important;
    top: -27.07px !important;
    width: 55px !important;
    height: 80px !important;
    transform: rotate(-12.7deg) !important;
  }

  .s2-tablet-row:nth-child(2) .s2-tablet-images--left img {
    left: 50px !important;
    top: -16.86px !important;
    width: 60px !important;
    height: 92px !important;
    transform: rotate(10.94deg) !important;
  }

  .s2-tablet-row:nth-child(3) .s2-tablet-images--left img {
    left: 77px !important;
    top: -8px !important;
    width: 64px !important;
    height: 96px !important;
    transform: rotate(4.55deg) !important;
  }

  .s2-tablet-row:nth-child(3) .s2-tablet-images--right img {
    left: 70px !important;
    top: 7px !important;
    width: 77.977px !important;
    height: 56.224px !important;
    transform: rotate(-25.26deg) !important;
  }

  .s2-tablet-row:nth-child(4) .s2-tablet-images--left img {
    left: 75px !important;
    top: -4px !important;
    width: 67px !important;
    height: 88px !important;
    transform: rotate(-12.87deg) !important;
  }

  .s2-tablet-row:nth-child(4) .s2-tablet-images--right img {
    left: 76px !important;
    top: -4px !important;
    width: 67px !important;
    height: 88px !important;
    transform: rotate(10.18deg) !important;
  }

  .s2-tablet-row:nth-child(5) .s2-tablet-images--left img {
    left: 56px !important;
    top: 2px !important;
    width: 105.07px !important;
    height: 75.16px !important;
    transform: rotate(-7.19deg) !important;
  }

  .s2-tablet-row:nth-child(5) .s2-tablet-images--right img {
    left: 68px !important;
    top: 10px !important;
    width: 82.289px !important;
    height: 59.123px !important;
    transform: rotate(165deg) !important;
  }

  .s2-tablet-row:nth-child(6) .s2-tablet-images--left img {
    left: 46.05px !important;
    top: -4.86px !important;
    width: 116px !important;
    height: 71px !important;
    transform: rotate(9.25deg) !important;
  }

  .s2-tablet-row:nth-child(6) .s2-tablet-images--right img {
    left: 43px !important;
    top: 0 !important;
    width: 132.62px !important;
    height: 80.089px !important;
    transform: rotate(-4.88deg) !important;
  }

  .s2-tablet-row:nth-child(7) .s2-tablet-images--left img {
    left: 45px !important;
    top: 1px !important;
    width: 128.365px !important;
    height: 77.519px !important;
    transform: rotate(-4.88deg) !important;
  }

  .s2-tablet-row:nth-child(7) .s2-tablet-images--right img {
    left: 63px !important;
    top: -4.04px !important;
    width: 116px !important;
    height: 71px !important;
    transform: rotate(8.34deg) !important;
  }

  .s2-tablet-row:nth-child(8) .s2-tablet-images--left img,
  .s2-tablet-row:nth-child(10) .s2-tablet-images--left img {
    left: 34px !important;
    top: -10px !important;
    width: 90px !important;
    height: 90px !important;
    transform: none !important;
  }

  .s2-tablet-row:nth-child(8) .s2-tablet-images--right img,
  .s2-tablet-row:nth-child(10) .s2-tablet-images--right img {
    left: 109px !important;
    top: 1px !important;
    width: 77px !important;
    height: 77px !important;
    transform: none !important;
  }

  .s2-tablet-row:nth-child(9) .s2-tablet-images--left img,
  .s2-tablet-row:nth-child(11) .s2-tablet-images--left img {
    left: 64px !important;
    top: 0 !important;
    width: 90px !important;
    height: 90px !important;
    transform: none !important;
  }

  .s2-tablet-row:nth-child(9) .s2-tablet-images--right img,
  .s2-tablet-row:nth-child(11) .s2-tablet-images--right img {
    left: 50px !important;
    top: -5px !important;
    width: 90px !important;
    height: 90px !important;
    transform: none !important;
  }

  .video-section {
    min-height: 414px !important;
    padding: 0 !important;
    background: #0f0f0f !important;
    overflow: hidden !important;
  }

  .video-section .section-inner {
    width: 100% !important;
    max-width: 768px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .video-layout {
    width: 110% !important;
    max-width: none !important;
    height: 414px !important;
    margin: 0 0 0 50% !important;
    transform: translateX(-50%) !important;
    overflow: hidden !important;
    --video-crop-zoom: 1.32 !important;
  }

  .video-player {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    transform: scale(var(--video-crop-zoom)) !important;
    object-fit: cover !important;
    opacity: 0.35 !important;
  }

  .s3-section {
    display: block !important;
    height: 742px !important;
    padding: 0 !important;
    background: #0f0f0f !important;
    overflow: hidden !important;
  }

  .s3-inner {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .s3-title {
    position: absolute !important;
    top: 148px !important;
    left: 50% !important;
    width: 640px !important;
    padding: 0 !important;
    transform: translateX(-50%) !important;
    font-size: 80px !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .s3-subtitle {
    display: none !important;
  }

  .s3-grid {
    position: absolute !important;
    top: 276px !important;
    left: 32px !important;
    display: flex !important;
    width: calc(100% - 64px) !important;
    gap: 24px !important;
    padding: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    transform: none !important;
  }

  .s3-grid::-webkit-scrollbar {
    display: none !important;
  }

  .s3-card {
    flex: 0 0 320px !important;
    width: 320px !important;
    gap: 16px !important;
    scroll-snap-align: start !important;
  }

  .s3-card:nth-child(n + 4) {
    display: none !important;
  }

  .s3-card-img {
    width: 320px !important;
    height: 245.71px !important;
    border-radius: 0 !important;
  }

  .s3-card-title {
    font-size: 20px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.4px !important;
    margin: 0 !important;
  }

  .s3-card-sub {
    font-size: 16px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.32px !important;
    margin: -12px 0 0 !important;
    color: rgba(237, 236, 226, 0.7) !important;
  }

  .s3-link-wrap {
    position: absolute !important;
    top: 666px !important;
    left: 50% !important;
    bottom: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
  }

  .s3-link-wrap .link-button {
    font-size: 16px !important;
    line-height: 1.4 !important;
    letter-spacing: -0.32px !important;
  }
}

/* ====== PHOTO SECTION — MOBILE (≤768px) Figma node 233:13788 ====== */
@media (max-width: 768px) {
  .photo-section {
    height: auto !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    background: var(--black-100) !important;
  }

  .photo-inner {
    position: relative !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: 1632px !important;
    overflow: hidden !important;
  }

  /* Title: Figma x:16 y:40, 343×160, centered */
  .photo-inner .photo-title {
    position: absolute !important;
    left: 16px !important;
    top: 40px !important;
    width: calc(100% - 32px) !important;
    height: 160px !important;
    font-size: 80px !important;
    line-height: 1em !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    color: var(--white-100) !important;
  }

  /* Photo grid: absolute overlay, full section height */
  .photo-inner .photo-grid {
    position: absolute !important;
    display: block !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    gap: 0 !important;
    grid-template-columns: none !important;
  }

  /* All photo cards: square, centered, opacity 0.4 */
  .photo-inner .photo-card {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 200px !important;
    height: 200px !important;
    opacity: 0.4 !important;
    border-radius: 0 !important;
  }
  .photo-inner .photo-card:nth-child(1) {
    top: 240px !important;
  }
  .photo-inner .photo-card:nth-child(2) {
    top: 464px !important;
  }
  .photo-inner .photo-card:nth-child(3) {
    top: 688px !important;
  }
  .photo-inner .photo-card:nth-child(4) {
    top: 912px !important;
  }
  .photo-inner .photo-card:nth-child(5) {
    top: 1136px !important;
  }

  .photo-inner .photo-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }

  /* Labels: absolute, Display/XS-Extra style, white, alternating LEFT/RIGHT per Figma */
  .photo-inner .photo-label {
    display: block !important;
    position: absolute !important;
    z-index: 10 !important;
    font-family: "Sturkopf Grotesk" !important;
    font-weight: 500 !important;
    font-size: 28px !important;
    line-height: 100% !important;
    letter-spacing: -0.56px !important;
    text-transform: uppercase !important;
    color: var(--white-100) !important;
    white-space: nowrap !important;
    height: 28px !important;
    max-width: calc(100vw - 32px) !important;
  }
  /* Летопись жизни и творчества — RIGHT side, overlaid on photo 1 */
  .photo-inner .photo-label:nth-child(6) {
    left: 210px !important;
    top: 358px !important;
    width: 144px !important;
    text-align: right !important;
    white-space: normal !important;
    height: auto !important;
  }
  /* Фото- и кинохроника — LEFT side, overlaid on photo 2 */
  .photo-inner .photo-label:nth-child(7) {
    left: 16px !important;
    top: 613px !important;
    width: 147px !important;
    text-align: left !important;
  }
  /* Переписка — RIGHT side, overlaid on photo 3 area */
  .photo-inner .photo-label:nth-child(9) {
    left: 200px !important;
    right: 16px !important;
    top: 836px !important;
    width: 70px !important;
    text-align: right !important;
  }
  /* Свидетельства и воспоминания современников — CENTER, overlaid on photo 4 */
  .photo-inner .photo-label:nth-child(8) {
    left: 32% !important;
    transform: translateX(-50%) !important;
    top: 1030px !important;
    width: 231px !important;
    text-align: center !important;
    white-space: normal !important;
    height: auto !important;
  }

  /* Сам о себе — RIGHT side, overlaid on photo 5 area */
  .photo-inner .photo-label:nth-child(10) {
    left: 200px !important;
    right: 16px !important;
    top: 1282px !important;
    width: 70px !important;
    text-align: right !important;
  }
  /* ПОДРОБНЕЕ button: visible in mobile, under last (Сам о себе) card */
  .photo-link {
    display: inline-flex !important;
    position: absolute !important;
    left: 50% !important;
    top: 1393px !important;
    transform: translateX(-50%) !important;
  }

  /* ========== ОБ СМЭ (s3) — mobile horizontal scroll ========== */
  .s3-section {
    padding: 40px 0 !important;
  }
  .s3-inner {
    padding: 0 !important;
  }
  .s3-subtitle {
    display: block !important;
    font-family: var(--font-mono) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 150% !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: rgba(237, 236, 226, 0.4) !important;
    padding: 0 16px !important;
    margin: 0 0 8px 0 !important;
  }
  .s3-title {
    font-size: 80px !important;
    padding: 0 16px !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    white-space: normal !important;
  }
  .s3-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding: 0 16px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .s3-grid::-webkit-scrollbar {
    display: none;
  }
  .s3-card {
    flex: 0 0 320px !important;
    min-width: 320px !important;
    scroll-snap-align: start !important;
  }
  .s3-card-img {
    height: 246px !important;
  }
  .s3-link-wrap {
    margin-top: 32px !important;
    padding: 0 16px !important;
    text-align: center !important;
  }
}

/* Final mobile hero guard: keep the round cards above the gradient and inside the first section. */
@media (max-width: 768px) {
  .section-1 {
    height: auto !important;
    min-height: 964px !important;
    padding-bottom: 64px !important;
    overflow: hidden !important;
  }

  .section-1::before {
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .s1-bg {
    height: 700px !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }

  .s1-bg::after,
  .s1-bg-image,
  .s1-bg-dark,
  .s1-bg-overlay {
    pointer-events: none !important;
  }

  .s1-main-info {
    z-index: 3 !important;
  }

  .s1-cards-row {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: flex !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 720px 0 0 !important;
    padding: 8px 17px !important;
    gap: 26px !important;
    z-index: 30 !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    box-sizing: border-box !important;
  }

  .s1-card {
    position: relative !important;
    z-index: 31 !important;
    flex: 0 0 140px !important;
    width: 140px !important;
  }
}

/* ====== ABOUT MODAL ====== */
.about-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white-100);
}

.about-modal.is-open {
  display: block;
}

body.modal-open {
  overflow: hidden;
}

.about-modal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 72px 16px 48px;
}

.about-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--white-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(15, 15, 15, 0.12);
  padding: 0;
}

.about-modal-slides {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

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

.abt-slide-img {
  width: 100%;
  height: 434px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.abt-slide-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abt-slide-header {
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.abt-slide-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 80px;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black-100);
  white-space: nowrap;
}

.abt-slide-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black-40);
  align-self: flex-start;
  flex-shrink: 0;
}

.abt-slide-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43em;
  letter-spacing: -0.02em;
  color: var(--black-70);
  text-align: center;
  margin: 0;
}

.abt-slide-btn {
  width: 100%;
  padding: 14px 24px;
  border: 2px solid var(--black-100);
  background: transparent;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black-100);
  cursor: pointer;
  text-align: center;
  margin-top: 4px;
}

.abt-slide-btn:hover {
  background: var(--black-100);
  color: var(--white-100);
}

/* ========== MOBILE CONTINUED (≤768px) ========== */
@media (max-width: 768px) {

  /* Hide desktop-only creativity slider */
  .creativity-section {
    display: none !important;
  }

  /* ========== ОБ СМЭ (s3) — hidden on mobile in this Figma flow ========== */
  .s3-section {
    display: none !important;
  }
  .s3-inner {
    padding: 0 !important;
  }
  .s3-title {
    font-size: 80px !important;
    padding: 0 16px !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    white-space: normal !important;
  }
  .s3-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding: 0 16px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .s3-grid::-webkit-scrollbar {
    display: none;
  }
  .s3-card {
    flex: 0 0 260px !important;
    min-width: 260px !important;
    scroll-snap-align: start !important;
  }
  .s3-card-img {
    height: 200px !important;
  }
  .s3-link-wrap {
    margin-top: 32px !important;
    padding: 0 16px !important;
    text-align: center !important;
  }

  /* ========== НАСЛЕДИЕ СМЭ (nav-slider) — vertical list ========== */
  .nav-slider-section {
    margin-top: 182px !important;
    min-height: auto !important;
    overflow: visible !important;
    padding-bottom: 174px !important;
  }
  .nav-slider-wrapper {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  .nav-slide {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    height: auto !important;
    z-index: auto !important;
    transition: none !important;
  }
  .nav-slide-title-screen {
    background: transparent !important;
  }
  .nav-title-br {
    display: block !important;
  }
  .nav-title-display {
    position: static !important;
    transform: none !important;
    font-size: 60px !important;
    line-height: 1 !important;
    letter-spacing: -1.2px !important;
    text-align: center !important;
    max-width: calc(100vw - 32px) !important;
    top: auto !important;
    left: auto !important;
    width: min(343px, calc(100vw - 32px)) !important;
    line-height: 1 !important;
    white-space: normal !important;
  }
  .nav-slide-content {
    flex-direction: column !important;
    padding: 0 16px 64px !important;
    min-height: auto !important;
    height: auto !important;
    gap: 32px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 0 !important;
  }
  .nav-slide[data-slide="0"] .nav-slide-content {
    padding: 40px 16px 64px !important;
  }
  .nav-image-container {
    width: 290px !important;
    height: 230px !important;
    max-width: 100% !important;
    opacity: 0.6 !important;
    aspect-ratio: auto !important;
    flex-shrink: 0 !important;
  }
  .nav-image-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    overflow: hidden !important;
  }
  .nav-image {
    display: none !important;
  }
  .nav-image-mobile {
    display: block !important;
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    margin: 0 !important;
    object-fit: cover !important;
  }
  .nav-slide[data-slide="1"] .nav-image {
    transform: rotate(-12deg) !important;
  }
  .nav-slide[data-slide="2"] .nav-image {
    transform: rotate(-6deg) !important;
  }
  .nav-slide[data-slide="3"] .nav-image {
    transform: rotate(0deg) !important;
  }
  .nav-slide[data-slide="4"] .nav-image {
    transform: rotate(6deg) !important;
  }
  .nav-slide[data-slide="5"] .nav-image {
    transform: rotate(12deg) !important;
  }
  .nav-image-secondary,
  .nav-image-tertiary,
  .nav-image-quaternary,
  .nav-image-quinary {
    display: none !important;
  }
  .nav-image-overlay,
  .nav-image-gradient {
    display: none !important;
  }
  .nav-text-container {
    max-width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  .nav-slide-title {
    font-size: 48px !important;
    text-align: center !important;
    font-family: var(--font-display) !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
  }
  .nav-slide-description {
    font-size: 14px !important;
    line-height: 20px !important;
    text-align: center !important;
    color: rgba(237, 236, 226, 0.4) !important;
    text-transform: uppercase !important;
    letter-spacing: -0.02em !important;
  }
  .nav-button {
    display: none !important;
  }
  .nav-arrow {
    display: none !important;
  }
  .nav-slide-counter {
    display: none !important;
  }
  /* ========== КИНОВЕДЧЕСКИЕ ЗАПИСКИ (s4) ========== */
  .s4-section {
    padding-top: 0 !important;
    padding-bottom: 98px !important;
    height: auto !important;
    overflow: visible !important;
  }
  .s4-inner {
    position: static !important;
    height: auto !important;
  }
  .s4-header {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    padding: 48px 16px 0 !important;
    margin-bottom: 0 !important;
  }
  .s4-supertitle {
    font-size: 16px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.32px !important;
  }
  .s4-title {
    font-size: 60px !important;
    white-space: normal !important;
    text-align: center !important;
  }
  .s4-title span {
    display: block !important;
  }
  .s4-cover-wrap {
    position: static !important;
    transform: none !important;
    width: 292px !important;
    height: 453px !important;
    max-width: calc(100% - 32px) !important;
    margin: 84px auto 0 !important;
  }
  .s4-issue {
    position: static !important;
    transform: none !important;
    font-size: 48px !important;
    padding: 0 16px !important;
    width: auto !important;
    text-align: center !important;
    margin-top: 24px !important;
  }
  .s4-footer {
    position: static !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 16px !important;
    margin-top: 40px !important;
  }
  .s4-footer-item {
    flex: 1 1 100% !important;
    width: 100% !important;
  }
  .s4-footer-text {
    font-size: 14px !important;
  }
  .s4-icon-box {
    width: 64px !important;
    height: 64px !important;
    flex-shrink: 0 !important;
  }
  /* Book covers for 64px icon box */
  .s4-book--1 {
    left: 3px !important;
    top: 15px !important;
    width: 47px !important;
    height: 67px !important;
  }
  .s4-book--2 {
    left: 15px !important;
    top: 16px !important;
    width: 47px !important;
    height: 67px !important;
  }
  .s4-book--3 {
    left: 10px !important;
    top: 7px !important;
    width: 42px !important;
    height: 64px !important;
  }
  /* Author circles for 64px icon box */
  .s4-author--1 {
    left: 2px !important;
    top: 0 !important;
    width: 20px !important;
    height: 20px !important;
  }
  .s4-author--2 {
    left: 36px !important;
    top: 41px !important;
    width: 25px !important;
    height: 25px !important;
  }
  .s4-author--3 {
    left: 7px !important;
    top: 28px !important;
    width: 25px !important;
    height: 25px !important;
  }
  .s4-author--4 {
    left: 34px !important;
    top: 7px !important;
    width: 20px !important;
    height: 20px !important;
  }

  /* ========== ЛЕНТА НОВОСТЕЙ / КОНФЕРЕНЦХОЛЛ (s5) ========== */
  .s5-inner {
    padding: 40px 0 !important;
    gap: 40px !important;
  }
  .s5-header {
    padding: 0 16px !important;
  }
  .s5-title {
    font-size: 48px !important;
    text-align: center !important;
  }
  .s5-arrows {
    display: none !important;
  }
  .s5-cards {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 24px !important;
    padding: 0 !important;
    margin-left: 16px !important;
    width: calc(100% - 16px) !important;
    box-sizing: border-box !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .s5-cards::-webkit-scrollbar {
    display: none;
  }
  .s5-card {
    flex: 0 0 311px !important;
    min-width: 311px !important;
    width: 311px !important;
    scroll-snap-align: start !important;
  }
  .s5-card:first-child {
    margin-left: 0 !important;
  }
  .s5-card:last-child {
    margin-right: 16px !important;
  }
  .s5-card-img {
    width: 311px !important;
    height: 239px !important;
  }
  .s5-card-text {
    height: 200px !important;
    min-height: auto !important;
    gap: 28px !important;
    justify-content: flex-start !important;
    padding-left: 0 !important;
    box-sizing: border-box !important;
  }
  .s5-card-heading {
    margin: 0 !important;
  }
  .s5-card-meta {
    gap: 4px !important;
  }
  #news-feed {
    padding-bottom: 110px !important;
  }
  #news-feed + .s-divider-wrap {
    display: none !important;
  }
  #conference .s5-cards {
    padding-left: 0 !important;
  }
  #conference .s5-card-text {
    padding-left: 0 !important;
  }
  #conference {
    padding-bottom: 142px !important;
  }
  #conference + .s-divider-wrap {
    display: none !important;
  }
  .s5-card-heading {
    font-size: 20px !important;
  }

  /* ========== СВЯЗАТЬСЯ С НАМИ (s6) ========== */
  .s6-section {
    padding: 0 24px 282px !important;
  }
  .s6-title {
    font-size: 60px !important;
  }
  .s6-btn {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
  #reach-us + .s-divider-wrap {
    display: none !important;
  }

  /* ========== DIVIDER ========== */
  .s-divider-wrap {
    padding: 100px 16px 110px !important;
  }
}

/* Late tablet nav override: keep 768px tablet as a slider, not as the mobile list. */
@media (min-width: 768px) and (max-width: 1439px) {
  .nav-slider-section {
    margin-top: 200px !important;
    min-height: 1024px !important;
    height: 1024px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #0f0f0f !important;
  }

  .nav-slider-wrapper {
    height: 1024px !important;
    min-height: 1024px !important;
    overflow: hidden !important;
  }

  .nav-slide {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 0 !important;
    transition: opacity 0.6s ease, visibility 0.6s ease !important;
  }

  .nav-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10 !important;
  }

  .nav-slide-title-screen {
    background: #0f0f0f !important;
  }

  .nav-title-br {
    display: block !important;
  }

  .nav-slide[data-slide="0"] .nav-slide-content {
    position: relative !important;
    width: 768px !important;
    max-width: 100% !important;
    height: 1024px !important;
    min-height: 1024px !important;
    padding: 0 !important;
    display: block !important;
  }

  .nav-title-display {
    position: absolute !important;
    top: calc(50% - 80px) !important;
    left: 50% !important;
    width: 720px !important;
    max-width: calc(100% - 48px) !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    font-size: 80px !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
    text-align: center !important;
    white-space: normal !important;
  }
}

/* Final button normalization after all responsive rules. */
.link-button {
  align-items: center !important;
  gap: 4px !important;
  padding: 7px 16px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: -0.32px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.link-button img {
  height: 42px !important;
  object-fit: contain !important;
}

.link-button img:first-child {
  width: 9px !important;
}

.link-button img:last-child {
  width: 12px !important;
}

.nav-button {
  gap: 4px !important;
  padding: 7px 16px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  letter-spacing: -0.32px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.nav-button-arrow svg {
  height: 42px !important;
}

.nav-button-arrow img {
  display: block !important;
  height: 42px !important;
  object-fit: contain !important;
}

.nav-button-arrow-left svg {
  width: 9px !important;
}

.nav-button-arrow-left img {
  width: 9px !important;
}

.nav-button-arrow-right svg {
  width: 12px !important;
}

.nav-button-arrow-right img {
  width: 12px !important;
}

.nav-button-arrow svg path {
  stroke-opacity: 0.5 !important;
}

/* Tablet KZ section, Figma node 545:8608. */
@media (min-width: 768px) and (max-width: 1439px) {
  .s4-section {
    height: 957px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #0f0f0f !important;
  }

  .s4-inner {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .s4-header {
    position: absolute !important;
    top: 48px !important;
    left: 50% !important;
    width: 640px !important;
    max-width: calc(100% - 64px) !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
  }

  .s4-supertitle {
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 28px !important;
    letter-spacing: -0.4px !important;
  }

  .s4-title {
    font-size: 80px !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .s4-title span {
    display: inline !important;
  }

  .s4-cover-wrap {
    position: absolute !important;
    top: 220px !important;
    left: 50% !important;
    width: 292px !important;
    height: 453px !important;
    max-width: none !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
  }

  .s4-issue {
    position: absolute !important;
    top: 697px !important;
    left: calc(50% + 3.5px) !important;
    width: 711px !important;
    max-width: calc(100% - 64px) !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    font-size: 60px !important;
    line-height: 1 !important;
    letter-spacing: -1.2px !important;
    text-align: center !important;
  }

  .s4-footer {
    position: absolute !important;
    top: 821px !important;
    left: 32px !important;
    right: auto !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 32px !important;
    width: calc(100% - 32px) !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .s4-footer::-webkit-scrollbar {
    display: none !important;
  }

  .s4-footer-item {
    flex: 0 0 304px !important;
    width: 304px !important;
    min-width: 304px !important;
    height: 104px !important;
    gap: 16px !important;
    padding: 8px !important;
    scroll-snap-align: start !important;
  }

  .s4-icon-box {
    width: 88px !important;
    height: 88px !important;
  }

  .s4-footer-text {
    width: 176px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    letter-spacing: -0.32px !important;
  }
}

/* Tablet contact widget, Figma node 545:7650. */
@media (min-width: 768px) and (max-width: 1439px) {
  .s6-section {
    height: 390px !important;
    padding: 0 32px 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0f0f0f !important;
  }

  .s6-content {
    width: 560px !important;
    max-width: 560px !important;
    padding: 32px 0 !important;
    gap: 64px !important;
    z-index: 2 !important;
  }

  .s6-title {
    width: 100% !important;
    font-size: 60px !important;
    line-height: 1 !important;
    letter-spacing: -1.2px !important;
    text-align: center !important;
  }

  .s6-buttons {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .s6-btn {
    flex: 1 0 0 !important;
    width: auto !important;
    min-width: 0 !important;
    gap: 16px !important;
  }

  .s6-btn-icon {
    width: 64px !important;
    height: 64px !important;
  }

  .s6-btn-text {
    min-width: 100% !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    letter-spacing: -0.32px !important;
    text-align: center !important;
  }

  .s6-book {
    opacity: 1 !important;
    z-index: 1 !important;
  }

  .s6-book--left {
    left: 14px !important;
    top: 0.4px !important;
    width: 93.321px !important;
    height: 122.848px !important;
    transform: rotate(-11.13deg) !important;
  }

  .s6-book--right {
    left: auto !important;
    right: 7.6px !important;
    top: 2.4px !important;
    width: 96.912px !important;
    height: 127.576px !important;
    transform: rotate(5.84deg) !important;
  }

  .s6-book img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* Tablet footer, Figma node 233:13446. */
@media (min-width: 768px) and (max-width: 1439px) {
  .video-layout {
    width: 135% !important;
    max-width: none !important;
    height: 414px !important;
    margin: 0 0 0 50% !important;
    transform: translateX(-50%) !important;
    overflow: hidden !important;
    --video-crop-zoom: 1.32 !important;
  }

  .footer-new {
    width: 100% !important;
    max-width: 100% !important;
    height: 649px !important;
    min-height: 649px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    background: #edece2 !important;
    color: #0f0f0f !important;
  }

  .footer-body {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 649px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-body .footer-logo {
    position: absolute !important;
    top: 31px !important;
    left: 32px !important;
    width: 56px !important;
    height: 56px !important;
    margin: 0 !important;
  }

  .footer-body .footer-links {
    position: absolute !important;
    top: 127px !important;
    left: 32px !important;
    width: 704px !important;
    max-width: calc(100% - 64px) !important;
    margin: 0 !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    overflow: hidden !important;
  }

  .footer-body .footer-links > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 100% !important;
  }

  .footer-body .footer-links h5 {
    margin: 0 !important;
    color: rgba(15, 15, 15, 0.5) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 20px !important;
    letter-spacing: -0.28px !important;
  }

  .footer-body .footer-links .footer-nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 4px 0 !important;
    width: 100% !important;
  }

  .footer-body .footer-links a {
    display: inline-flex !important;
    align-items: center !important;
    color: #0f0f0f !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    letter-spacing: -0.28px !important;
    white-space: nowrap !important;
  }

  .footer-body .footer-links a::after {
    content: none !important;
  }

  .footer-sep {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 8px !important;
    color: rgba(15, 15, 15, 0.4) !important;
    font-family: var(--font-mono) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
  }

  .footer-body .footer-note {
    position: absolute !important;
    top: 439px !important;
    left: 32px !important;
    width: 704px !important;
    max-width: calc(100% - 64px) !important;
    margin: 0 !important;
    transform: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px 32px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  .footer-body .footer-note span {
    color: rgba(15, 15, 15, 0.5) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    letter-spacing: -0.28px !important;
  }

  .footer-watermark {
    position: absolute !important;
    top: auto !important;
    bottom: -94px !important;
    left: calc(50% - 0.35px) !important;
    width: 990px !important;
    height: 340px !important;
    transform: translateX(-50%) !important;
  }
}

/* Clickable shared logos: header, opened menu, footer. */
.nav-logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 30px;
  height: 30px;
  display: block;
  color: inherit;
  text-decoration: none;
}

.nav-logo-link .nav-logo {
  position: static !important;
  left: auto !important;
  transform: none !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}

.sidebar-logo-link {
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}

.sidebar-logo-link .sidebar-logo {
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}

.footer-body .footer-logo-link {
  position: absolute;
  top: 64px;
  left: 64px;
  z-index: 2;
  display: block;
  width: 56px;
  height: 56px;
  color: inherit;
  text-decoration: none;
}

.footer-body .footer-logo-link .footer-logo {
  position: static !important;
  top: auto !important;
  left: auto !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 1100px) {
  .footer-body .footer-logo-link {
    position: static;
    width: 56px;
    height: 56px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .footer-body .footer-logo-link {
    position: absolute !important;
    top: 31px !important;
    left: 32px !important;
    width: 56px !important;
    height: 56px !important;
    margin: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .footer-body .footer-logo-link {
    position: absolute !important;
    top: 32px !important;
    left: 32px !important;
    width: 56px !important;
    height: 56px !important;
    margin: 0 !important;
  }
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0F0F0F;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow: hidden;
}

.search-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Шапка оверлея ---- */
.search-ol-nav {
  flex-shrink: 0;
  width: 100%;
}

/* Гамбургер декоративный — сброс интерактивности */
.search-ol-hamburger {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

/* Кнопка закрыть наследует стили .nav-icon */
.search-ol-close {
  flex-shrink: 0;
}

/* ---- Тело оверлея ---- */

/* Mobile: title at y=254 in 812px frame, header=48px → padding-top=206px */
.search-ol-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 206px 16px 48px;
  gap: 48px;
}

.search-ol-title {
  font-family: 'Sturkopf Grotesk', 'Bebas Neue', sans-serif;
  font-size: 48px; /* Display/S-Extra */
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EDECE2;
  text-align: center;
  margin: 0;
  width: 100%;
}

/* ---- Строка поиска ---- */
.search-ol-form {
  width: 100%;
}

/* Mobile: column — поле сверху, кнопка снизу */
.search-ol-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-ol-field {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(237, 236, 226, 0.5);
  padding-bottom: 8px;
  transition: border-color 0.2s ease;
}

.search-ol-row:focus-within .search-ol-field {
  border-color: #EDECE2;
}

.search-ol-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #EDECE2;
}

.search-ol-input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; /* Caps/S */
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #EDECE2;
  caret-color: #EDECE2;
  padding: 4px 0;
}

.search-ol-input::placeholder {
  color: rgba(237, 236, 226, 0.5);
}

.search-ol-input::-webkit-search-cancel-button,
.search-ol-input::-webkit-search-decoration {
  display: none;
}

/* Кнопка НАЙТИ */
.search-ol-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%; /* fill на мобиле */
  padding: 14px 24px;
  background: #EDECE2;
  color: #0F0F0F;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; /* Button/M */
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.search-ol-btn:hover {
  opacity: 0.85;
}

.search-ol-enter {
  font-weight: 400;
}

/* ---- Tablet (768px+) ---- */
/* title at y=360, header=56px → padding-top = 304px */
/* search width = 704px (768px frame - 32px*2) */
@media (min-width: 768px) {
  .search-ol-body {
    padding: 304px 0 48px;
    align-items: center;
  }

  /* Title и форма — фиксированная ширина 704px, центрированы через align-items */
  .search-ol-title,
  .search-ol-form {
    width: min(704px, calc(100% - 64px));
  }

  .search-ol-title {
    font-size: 60px; /* Display/S */
  }

  /* Всё в одну строку: поле (flex:1) + кнопка (hug) */
  .search-ol-row {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(237, 236, 226, 0.5);
    padding-bottom: 20px;
    transition: border-color 0.2s ease;
  }

  /* Убираем border-bottom с поля — он теперь на row */
  .search-ol-field {
    flex: 1;
    min-width: 0;
    border-bottom: none;
    padding-bottom: 0;
    gap: 16px;
  }

  /* focus-within переезжает на row */
  .search-ol-row:focus-within {
    border-color: #EDECE2;
  }
  .search-ol-row:focus-within .search-ol-field {
    border-color: transparent;
  }

  .search-ol-icon {
    width: 32px;
    height: 32px;
  }

  .search-ol-input {
    font-size: 16px; /* Caps/M */
    padding: 0;
  }

  .search-ol-btn {
    width: auto;
    height: 40px;
    padding: 0 24px;
    flex-shrink: 0;
    align-self: center;
  }
}

/* ---- Desktop (1440px+) ---- */
/* title at y=298, header=56px → padding-top = 242px */
/* search width = 864px (1440px frame - 288px*2) */
@media (min-width: 1440px) {
  .search-ol-body {
    padding: 242px 0 48px;
  }

  /* Title и форма — фиксированная ширина 864px, центрированы */
  .search-ol-title,
  .search-ol-form {
    width: min(864px, calc(100% - 576px));
  }

  .search-ol-title {
    font-size: 60px; /* Display/S */
  }
}

/* ==========================================================================
   BIOGRAPHY PAGE
   ========================================================================== */

/* Back link */
.bio-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white-70, rgba(237, 236, 226, 0.7));
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s;
}
.bio-back-link:hover {
  color: var(--white-100, #EDECE2);
}
.bio-back-link svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* Heading block */
.bio-heading-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Page title — mobile: 60px */
.bio-title {
  font-family: "Sturkopf Grotesk", "Bebas Neue", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100, #EDECE2);
  margin: 0;
}

/* Main section — mobile: 50px снизу (по Figma-аннотации) */
.bio-main {
  padding-top: 48px;
  padding-bottom: 50px;
}

/* Layout wrapper */
.bio-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Card grid — mobile: 2 columns */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

/* Card */
.bio-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  color: inherit;
  text-decoration: none;
}

/* Card image area */
.bio-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background-color: #0F0F0F;
}
.bio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  display: block;
  transition: opacity 0.3s ease;
}
.bio-card:hover .bio-card-img img {
  opacity: 0.65;
}

/* Card text */
.bio-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Card title — Caps/L */
.bio-card-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-100, #EDECE2);
  margin: 0;
}

/* Card subtitle — Caps/S */
.bio-card-subtitle {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white-70, rgba(237, 236, 226, 0.7));
  margin: 0;
}

/* Card 9 — АДРЕСА: чёрно-белое фото */
.bio-card-img--grayscale img {
  filter: grayscale(100%);
}
.bio-card:hover .bio-card-img--grayscale img {
  filter: grayscale(60%);
}

/* Card 2 — ПОЛНАЯ ЛЕТОПИСЬ: кроп по Figma (scaleY=0.527, ty=0.032)
   Показываем верхнюю часть изображения с лицами.
   object-position ~7% соответствует cropTransform из Figma */
.bio-card-img--faces img {
  object-position: center 7%;
}

/* ── Tablet ──────────────────────────────────────────── */
@media (min-width: 768px) {
  .bio-title {
    font-size: 80px;
  }
  .bio-back-link svg {
    width: 32px;
    height: 32px;
  }
  /* tablet: 64px снизу (по Figma-аннотации) */
  .bio-main {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .bio-layout {
    padding-left: 32px;
    padding-right: 32px;
    gap: 64px;
  }
  /* 3 columns on tablet: (704 - 32×2) / 3 ≈ 213px */
  .bio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
  }
  .bio-card-img {
    height: 213px;
  }
  .bio-card-title {
    font-size: 16px;
  }
  .bio-card-subtitle {
    font-size: 12px;
  }
  .bio-card {
    gap: 16px;
  }
}

/* ── Desktop ─────────────────────────────────────────── */
@media (min-width: 1440px) {
  .bio-title {
    font-size: 140px;
  }
  .bio-main {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .bio-layout {
    padding-left: 64px;
    padding-right: 64px;
    gap: 100px;
  }
  /* 3 columns on desktop: (1312 - 32×2) / 3 = 416px */
  .bio-grid {
    gap: 64px 32px;
  }
  .bio-card-img {
    height: 333px;
  }
  .bio-card-title {
    font-size: 20px;
  }
  .bio-card-subtitle {
    font-size: 14px;
  }
}
