@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --header-height: 58px;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

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

/* HEADER */

.header {
  width: 100%;
  height: var(--header-height);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 2px solid #111;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-title {
  height: 33px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav a {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

/* PAGE SCROLL */

.page-scroll {
  margin-top: var(--header-height);
  overflow: visible;
  scroll-snap-type: none;
}

.snap-section {
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  overflow: hidden;
  position: relative;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-button {
  width: 320px;
  height: 70px;
  margin-top: clamp(430px, 55vh, 680px);
  background: rgba(90, 90, 90, 0.72);
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  background: none;
  color: #fff;
  font-size: 76px;
  font-weight: 300;
  cursor: pointer;
}

.hero-arrow-left {
  left: 55px;
}

.hero-arrow-right {
  right: 55px;
}

.hero-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.45;
}

.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* COMMON */

.section-inner {
  width: min(1200px, 92%);
  height: 100%;
  margin: 0 auto;
}

/* ABOUT SCREEN */

.about-section {
  background: #fff;
  padding: clamp(22px, 3.6vh, 42px) 0 clamp(28px, 5vh, 60px);
}

.about-section .section-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-head {
  position: relative;
  width: 100%;
  margin: 0 auto clamp(32px, 5vh, 56px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-title-text {
  text-align: center;
  width: min(980px, 82%);
}

.about-title-text h1 {
  font-size: clamp(27px, 2.3vw, 34px);
  line-height: 1.1;
  text-align: center;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.about-subtitle {
  max-width: 800px;
  margin: clamp(16px, 2.5vh, 24px) auto 0;
  text-align: center;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.4;
  font-weight: 400;
}

/* ABOUT STARS */

.about-stars {
  position: absolute;
  right: -8px;
  top: -34px;
  width: 190px;
  height: 160px;
}

.about-star {
  position: absolute;
  object-fit: contain;
  display: block;
}

.about-star-one {
  width: 132px;
  right: 42px;
  top: 0;
  transform: rotate(5deg);
}

.about-star-two {
  width: 142px;
  right: 0;
  top: 45px;
  transform: rotate(-8deg);
}

/* ABOUT CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.card {
  height: clamp(220px, 25vh, 280px);
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-about {
  background-image: url("../images/About_us_block.png");
}

.card-base {
  background-image: url("../images/base_block.png");
}

.card-concept {
  background-image: url("../images/block_concept.png");
}

.card-mission {
  background-image: url("../images/block mission.png");
}

.card-content {
  width: 74%;
  max-width: 215px;
  margin: 0 auto;
  color: #000;
  text-align: left;
  position: relative;
  z-index: 2;
}

.card-content-center {
  width: 100%;
  max-width: none;
  text-align: center;
}

.card h3 {
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
}

.card p {
  font-size: clamp(11px, 0.9vw, 14px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.15px;
}

.card span {
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 400;
}

/* ABOUT SLOGAN */

.slogan-block {
  width: min(980px, 96%);
  margin: clamp(25px, 5vh, 60px) auto 0;
}

.slogan-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* CONCEPT + INFERNO SCREEN */

.inferno-one-screen {
  background: #fff;
  padding: 8px 0 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
}

/* TOP TEXT */

.one-screen-top {
  width: min(840px, 92%);
  margin: 0 auto 8px;
  text-align: center;
}

.one-screen-top h2 {
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.concept-small-title {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.one-screen-top p {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.25;
}

/* MIDDLE BLOCK */

.one-screen-middle {
  width: min(1280px, 98%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 250px 460px 330px;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.circle-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-left-image {
  width: 145px;
  max-width: 100%;
  height: auto;
  display: block;
  transform: translateX(25px);
}

.circle-center {
  text-align: center;
}

.circle-center h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.inferno-media,
.slider-placeholder {
  width: 460px;
  height: 315px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.inferno-slider,
.inferno-slider .swiper-wrapper,
.inferno-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.inferno-slider .swiper-slide {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inferno-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #000;
  transform-origin: center center;
  will-change: transform;
}

/* Подгонка видео в слайдере INFERNO.
   Сейчас все 9 видео стоят одинаково. Если нужно настроить отдельный слайд,
   можно ниже добавить отдельный класс, например .video-3 { transform: ... } */
.video-1,
.video-2,
.video-3,
.video-4,
.video-5,
.video-6,
.video-7,
.video-8,
.video-9 {
  transform: translateX(0px) translateY(0px) scale(1.45);
}

.slider-controls {
  width: 460px;
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.slider-controls button {
  border: none;
  background: transparent;
  color: #000;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  padding: 4px 0;
}

.slider-controls button:hover {
  opacity: 0.55;
}

.inferno-counter {
  min-width: 36px;
  text-align: center;
}

.circle-right p {
  font-size: 15px;
  line-height: 1.28;
  margin-bottom: 24px;
}

.circle-quote {
  font-size: 13px;
  font-weight: 700;
}

.more-link {
  width: 180px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 400;
}

/* BOTTOM INFERNO */

.one-screen-bottom {
  width: min(1120px, 96%);
  height: 100%;
  min-height: 220px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.ticket-content {
  max-width: 520px;
  text-align: center;
  z-index: 8;
  padding-bottom: 8px;
}

.ticket-content h2 {
  font-family: Georgia, serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 16px;
}

.ticket-content p {
  font-size: 17px;
  line-height: 1.22;
  margin-bottom: 30px;
}

.ticket-button {
  width: 360px;
  height: 44px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}

/* LEFT CHARACTER + STAR */

.bottom-left-decor {
  position: absolute;
  left: -35px;
  bottom: 0;
  width: 285px;
  height: 390px;
  z-index: 30;
  pointer-events: none;
}

.bottom-character-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  height: 380px;
  max-height: none;
  object-fit: contain;
  z-index: 3;
}

.bottom-star-left {
  position: absolute;
  left: 130px;
  top: -18px;
  width: 72px;
  height: auto;
  object-fit: contain;
  z-index: 50;
  display: block;
  transform: rotate(-8deg);
}

/* RIGHT CHARACTER GROUP */

.bottom-character-group {
  position: absolute;
  right: -25px;
  bottom: 0;
  width: 390px;
  height: 400px;
  z-index: 3;
}

.bottom-pink {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 390px;
  z-index: 7;
}

.bottom-sitting {
  position: absolute;
  right: 125px;
  bottom: 0;
  height: 145px;
  z-index: 4;
}


/* FALLING STARS ON SCROLL */

.falling-stars-scroll {
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 280px;
  height: calc(100vh - var(--header-height));
  z-index: 25;
  pointer-events: none;
  overflow: hidden;
}

.falling-star {
  position: absolute;
  top: -160px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.12));
  will-change: transform;
}

.falling-star-1 {
  right: 34px;
  width: 58px;
}

.falling-star-2 {
  right: 128px;
  width: 42px;
}

.falling-star-3 {
  right: 72px;
  width: 68px;
}

.falling-star-4 {
  right: 180px;
  width: 36px;
}

.falling-star-5 {
  right: 16px;
  width: 46px;
}

.falling-star-6 {
  right: 104px;
  width: 52px;
}


.falling-stars-left {
  left: 0;
  right: auto;
}

.falling-star-left-1 {
  left: 34px;
  width: 58px;
}

.falling-star-left-2 {
  left: 128px;
  width: 42px;
}

.falling-star-left-3 {
  left: 72px;
  width: 68px;
}

.falling-star-left-4 {
  left: 180px;
  width: 36px;
}

.falling-star-left-5 {
  left: 16px;
  width: 46px;
}

.falling-star-left-6 {
  left: 104px;
  width: 52px;
}


/* FOOTER */

.footer {
  background: #141414;
  color: #fff;
  padding: clamp(18px, 2.7vh, 30px) 0 8px;
}

.footer-inner {
  width: min(1200px, 94%);
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.footer-title {
  margin-bottom: 14px;
}

.footer-title h2 {
  font-size: clamp(28px, 2.7vw, 36px);
  font-weight: 900;
  margin-bottom: 5px;
}

.footer-title p {
  font-size: 15px;
}

.contact-form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 18px;
  margin-bottom: 16px;
}

.form-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #3d3b49;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 0 20px;
}

.contact-form input {
  height: 42px;
}

.contact-form textarea {
  height: clamp(110px, 15vh, 150px);
  padding-top: 16px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #1f1f26;
}

.form-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 160px;
  align-items: center;
  gap: 20px;
  margin-top: -2px;
}

.form-bottom p {
  font-size: 11px;
  color: #9c9ca4;
}

.form-bottom a {
  color: #fff;
  text-decoration: underline;
}

.form-bottom button {
  height: 42px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

/* WHITE VIDEO / SLIDER BLOCK */

.footer-video-block {
  width: 100%;
  height: clamp(150px, 22vh, 230px);
  background: #fff;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

/* FOOTER MAIN */

.footer-main {
  width: 100%;
  flex: 1;
  min-height: 250px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -80px;
  z-index: 3;
}

/* LEFT FOOTER IMAGES */

.footer-white {
  position: absolute;
  left: -55px;
  bottom: 0;
  height: clamp(300px, 45vh, 480px);
  z-index: 5;
}

.footer-face {
  position: absolute;
  left: 105px;
  bottom: 0;
  height: clamp(150px, 24vh, 260px);
  z-index: 8;
}

/* CENTER CONTACTS */

.footer-info {
  width: 450px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding-bottom: clamp(50px, 9vh, 95px);
  z-index: 9;
}

.footer-col h4 {
  font-size: 13px;
  margin-bottom: 14px;
  font-weight: 900;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 10px;
}

/* RIGHT FOOTER IMAGES */

.footer-right-images {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 440px;
  height: clamp(280px, 38vh, 390px);
  z-index: 6;
}

.footer-green {
  position: absolute;
  right: 0;
  bottom: 60px;
  height: clamp(300px, 38vh, 405px);
  z-index: 6;
}

.footer-dark {
  position: absolute;
  left: 0;
  bottom: 0;
  height: clamp(300px, 38vh, 405px);
  z-index: 8;
}

.footer-star {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 160px;
  z-index: 10;
}

.copyright {
  text-align: center;
  font-size: 10px;
  color: #fff;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 11;
}

/* TABLET */

@media (max-width: 1100px) {
  .header {
    padding: 0 28px;
  }

  .brand-title {
    height: 28px;
  }

  .nav {
    gap: 24px;
  }

  .about-title-text {
    width: min(760px, 76%);
  }

  .about-stars {
    width: 170px;
    height: 155px;
    right: -10px;
    top: -30px;
  }

  .about-star-one {
    width: 118px;
    right: 35px;
    top: 0;
  }

  .about-star-two {
    width: 128px;
    right: 0;
    top: 38px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .one-screen-middle {
    width: 92%;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .circle-left {
    display: none;
  }

  .circle-right {
    max-width: 520px;
    margin: 0 auto;
  }

  .inferno-media,
  .slider-placeholder,
  .slider-controls {
    width: 360px;
  }

  .inferno-media,
  .slider-placeholder {
    height: 240px;
    margin: 0 auto;
  }

  .bottom-left-decor,
  .bottom-character-group {
    opacity: 0.8;
  }

  .footer-white,
  .footer-face,
  .footer-right-images,
  .footer-star {
    opacity: 0.45;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header {
    height: auto;
    padding: 16px 20px;
    flex-direction: column;
    gap: 14px;
  }

  .page-scroll {
    height: auto;
    margin-top: 112px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .snap-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    scroll-snap-align: none;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    font-size: 13px;
  }

  .hero {
    height: calc(100vh - 112px);
    min-height: 560px;
  }

  .hero-button {
    width: min(250px, 72vw);
    height: 54px;
    margin-top: clamp(390px, 62vh, 600px);
    font-size: 17px;
  }

  .about-section {
    padding: 40px 0 64px;
  }

  .about-head {
    display: block;
    margin-bottom: 42px;
  }

  .about-title-text {
    width: 100%;
  }

  .about-title-text h1 {
    font-size: 25px;
    line-height: 1.18;
  }

  .about-subtitle {
    font-size: 15px;
    margin-top: 22px;
  }

  .about-stars {
    position: relative;
    width: 170px;
    height: 130px;
    margin: 18px auto 0;
    right: auto;
    top: auto;
  }

  .about-star-one {
    width: 105px;
    right: 40px;
    top: 0;
  }

  .about-star-two {
    width: 115px;
    right: 0;
    top: 34px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card {
    height: 230px;
  }

  .card-content {
    width: 68%;
    max-width: 240px;
  }

  .card h3 {
    font-size: 22px;
  }

  .card p {
    font-size: 15px;
    line-height: 1.3;
  }

  .card span {
    font-size: 27px;
  }

  .slogan-block {
    width: min(100%, 96%);
    margin: 70px auto 0;
  }

  .inferno-one-screen {
    display: block;
    padding: 50px 0 60px;
  }

  .one-screen-middle {
    width: 92%;
    display: block;
  }

  .inferno-media,
  .slider-placeholder,
  .slider-controls {
    width: 300px;
  }

  .inferno-media,
  .slider-placeholder {
    height: 300px;
    margin: 0 auto;
  }

  .one-screen-bottom {
    height: auto;
    min-height: 260px;
    margin-top: 40px;
  }

  .bottom-left-decor,
  .bottom-character-group {
    display: none;
  }

  .ticket-content {
    max-width: 92%;
  }

  .ticket-content h2 {
    font-size: 46px;
  }

  .ticket-button {
    width: min(250px, 100%);
  }

  .footer {
    padding: 40px 0 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-bottom {
    grid-template-columns: 1fr;
  }

  .footer-video-block {
    height: 220px;
  }

  .footer-main {
    margin-top: 0;
    height: auto;
    min-height: auto;
  }

  .footer-info {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 35px 0;
  }

  .footer-white,
  .footer-face,
  .footer-right-images,
  .footer-star {
    display: none;
  }

  .falling-stars-scroll {
    display: none;
  }

}

/* CATALOG PAGE */

.catalog-body {
  background: #fff;
}

.catalog-page {
  background: #fff;
}

.catalog-section {
  width: 100%;
  background: #fff;
  padding: clamp(28px, 5vh, 58px) 0 clamp(34px, 6vh, 72px);
}

.catalog-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.catalog-title {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.4px;
  margin-bottom: clamp(32px, 5vh, 58px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(46px, 7vw, 95px);
  row-gap: clamp(44px, 7vh, 72px);
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(210px, 275px) minmax(150px, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.catalog-image-box {
  width: 100%;
  min-height: 360px;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.catalog-info {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.catalog-info h2 {
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 4px;
}

.catalog-price {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 34px;
}

.catalog-description {
  font-size: clamp(11px, 0.86vw, 13px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.1px;
  max-width: 210px;
}

.catalog-button {
  width: 140px;
  height: 32px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  text-transform: lowercase;
  margin-top: 20px;
}

.catalog-button:hover {
  opacity: 0.82;
}

/* Catalog page footer should not be locked to one screen */
.catalog-page .footer.snap-section {
  height: auto;
  min-height: auto;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .catalog-grid {
    column-gap: 34px;
  }

  .catalog-card {
    grid-template-columns: 210px 1fr;
  }

  .catalog-image-box,
  .catalog-image,
  .catalog-info {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    width: min(560px, 100%);
    margin: 0 auto;
    grid-template-columns: minmax(180px, 260px) minmax(140px, 1fr);
  }
}

@media (max-width: 560px) {
  .catalog-section {
    padding-top: 32px;
  }

  .catalog-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .catalog-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-image-box,
  .catalog-image {
    min-height: 360px;
  }

  .catalog-info {
    min-height: auto;
  }

  .catalog-description {
    max-width: none;
  }

  .catalog-price {
    margin-bottom: 16px;
  }

  .catalog-button {
    width: 100%;
    height: 40px;
  }
}


/* CATALOG PAGE — ONE SCREEN CATALOG + ONE SCREEN FOOTER
   Первый блок: весь каталог помещается в один экран.
   Второй блок: футер отдельным экраном ниже.
*/

.catalog-page .catalog-section {
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  padding: clamp(10px, 1.6vh, 18px) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.catalog-page .catalog-inner {
  width: min(1180px, 94%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.catalog-page .catalog-title {
  flex: 0 0 auto;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1;
  margin-bottom: clamp(10px, 1.8vh, 18px);
}

.catalog-page .catalog-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  column-gap: clamp(24px, 5vw, 70px);
  row-gap: clamp(10px, 1.8vh, 18px);
}

.catalog-page .catalog-card {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(130px, 190px) minmax(120px, 1fr);
  gap: clamp(10px, 1.2vw, 18px);
  align-items: stretch;
}

.catalog-page .catalog-image-box {
  height: 100%;
  min-height: 0;
  max-height: 100%;
  background: #111;
}

.catalog-page .catalog-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  background: #111;
}

.catalog-page .catalog-info {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-page .catalog-info h2 {
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.08;
  margin-bottom: 3px;
}

.catalog-page .catalog-price {
  font-size: 11px;
  line-height: 1.1;
  margin-bottom: clamp(4px, 0.9vh, 10px);
}

.catalog-page .catalog-description {
  font-size: clamp(8.5px, 0.67vw, 11px);
  line-height: 1.14;
  max-width: 190px;
}

.catalog-page .catalog-button {
  width: 112px;
  height: 24px;
  font-size: 9px;
  margin-top: 8px;
  flex: 0 0 auto;
}

.catalog-page .footer.snap-section {
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

/* На планшете и телефоне оставляем нормальную прокрутку,
   потому что 6 карточек с текстом физически не помещаются удобно в один экран. */
@media (max-width: 860px) {
  .catalog-page .catalog-section {
    height: auto;
    min-height: auto;
    padding: 32px 0 56px;
    display: block;
    overflow: visible;
  }

  .catalog-page .catalog-inner {
    height: auto;
    display: block;
  }

  .catalog-page .catalog-title {
    margin-bottom: 30px;
  }

  .catalog-page .catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 44px;
    min-height: auto;
  }

  .catalog-page .catalog-card {
    height: auto;
    min-height: auto;
    grid-template-columns: minmax(180px, 260px) minmax(140px, 1fr);
  }

  .catalog-page .catalog-image-box,
  .catalog-page .catalog-image,
  .catalog-page .catalog-info {
    height: auto;
    min-height: 300px;
  }

  .catalog-page .catalog-description {
    font-size: 13px;
    line-height: 1.22;
    max-width: 210px;
  }

  .catalog-page .catalog-button {
    width: 140px;
    height: 32px;
    font-size: 11px;
  }

  .catalog-page .footer.snap-section {
    height: auto;
    min-height: auto;
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .catalog-page .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-page .catalog-image-box,
  .catalog-page .catalog-image {
    min-height: 360px;
  }

  .catalog-page .catalog-info {
    min-height: auto;
  }

  .catalog-page .catalog-description {
    max-width: none;
  }

  .catalog-page .catalog-button {
    width: 100%;
    height: 40px;
  }
}

/* CATALOG ALIGN FIX — СДВИГ КАТАЛОГА ЧУТЬ ВПРАВО
   Чтобы каталог визуально стоял ближе к центру футера.
   Меняй 70px, если нужно сильнее или слабее:
   40px — слабее, 90px — сильнее.
*/

@media (min-width: 1200px) {
  .catalog-page .catalog-inner {
    transform: translateX(70px);
  }
}

@media (min-width: 861px) and (max-width: 1199px) {
  .catalog-page .catalog-inner {
    transform: translateX(35px);
  }
}

@media (max-width: 860px) {
  .catalog-page .catalog-inner {
    transform: translateX(0);
  }
}

/* =========================================================
   ABOUT PAGE
   Здесь собрана финальная версия страницы "О нас".
   Раньше ниже было несколько пробных правок, поэтому я оставил только то,
   что реально работает в последнем макете.
   ========================================================= */

.about-page-body,
.about-page {
  background: #fff;
}

.about-figma-section {
  width: 100%;
  background: #fff;
  padding: clamp(18px, 3vh, 34px) 0 clamp(34px, 5vh, 64px);
}

.about-figma-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.about-figma-head,
.about-space-head {
  display: flex;
  align-items: center;
}

.about-figma-head {
  position: relative;
  gap: 18px;
  margin-bottom: 24px;
}

.about-space-head {
  gap: 22px;
  margin-bottom: 14px;
}

.about-figma-head h1,
.about-space-head h2 {
  font-size: clamp(24px, 2.25vw, 36px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.5px;
}

.about-figma-star {
  width: 58px;
  height: auto;
  object-fit: contain;
  display: block;
  transform-origin: center center;
}

.about-figma-star-top {
  margin-top: 6px;
  transform: rotate(-15deg);
}

.about-figma-star-space {
  width: 66px;
  transform: rotate(12deg);
}

.about-intro-grid,
.about-info-grid,
.about-space-images {
  display: grid;
  align-items: start;
}

.about-intro-grid {
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: clamp(24px, 3.5vw, 58px);
  margin-bottom: 26px;
}

.about-info-grid {
  grid-template-columns: 1.58fr 1fr 1fr;
  gap: clamp(24px, 3.5vw, 58px);
  margin-bottom: 34px;
}

.about-space-images {
  grid-template-columns: 0.9fr 1.15fr;
  gap: clamp(28px, 3vw, 42px);
  margin-bottom: 22px;
}

.about-intro-grid p,
.about-info-block p,
.about-space-lead,
.about-space-description {
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.15px;
}

.about-info-block h2 {
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 8px;
  letter-spacing: -0.35px;
}

.about-info-block h3 {
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 900;
  line-height: 1.14;
  margin-bottom: 12px;
  letter-spacing: -0.25px;
}

.about-line {
  width: min(730px, 72%);
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  margin: 0 0 22px;
}

.about-preview-image-box,
.about-space-image-box {
  background: #111;
  overflow: hidden;
}

.about-preview-image-box {
  width: 100%;
  height: clamp(150px, 18vh, 220px);
}

.about-space-image-box {
  height: clamp(240px, 33vh, 370px);
}

.about-preview-image,
.about-space-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-space-lead {
  max-width: 1080px;
  margin-bottom: 20px;
}

.about-space-description {
  max-width: 1120px;
}

/* Эти три класса оставил специально: ими удобно вручную двигать картинки. */
.about-img-model-grid,
.about-img-space-left,
.about-img-space-right {
  transform: translateX(0px) translateY(0px) scale(1);
  transform-origin: center center;
}

/* Desktop: первый экран "О нас" и футер как отдельный второй блок. */
@media (min-width: 861px) {
  .about-page .about-figma-section {
    height: calc(100vh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    padding: clamp(8px, 1.2vh, 14px) 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .about-page .about-figma-inner {
    width: min(1080px, 88%);
    max-width: 1080px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    transform: translateX(0px);
  }

  .about-page .about-figma-head {
    flex: 0 0 auto;
    gap: 14px;
    margin-bottom: clamp(6px, 1vh, 10px);
  }

  .about-page .about-figma-head h1,
  .about-page .about-space-head h2 {
    font-size: clamp(28px, 2.35vw, 42px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.8px;
  }

  .about-page .about-figma-star-top {
    width: clamp(34px, 3vw, 48px);
  }

  .about-page .about-intro-grid {
    grid-template-columns: 0.82fr 0.82fr 1.34fr;
    gap: clamp(18px, 2.1vw, 34px);
    margin-bottom: clamp(7px, 1.1vh, 12px);
  }

  .about-page .about-intro-grid p,
  .about-page .about-info-block p,
  .about-page .about-space-lead,
  .about-page .about-space-description {
    font-size: clamp(12px, 0.86vw, 15px);
    line-height: 1.22;
    font-weight: 500;
    letter-spacing: -0.15px;
  }

  .about-page .about-info-grid {
    grid-template-columns: 1.58fr 1fr 1fr;
    gap: clamp(18px, 2.7vw, 42px);
    margin-bottom: clamp(8px, 1.4vh, 14px);
  }

  .about-page .about-info-block h2 {
    font-size: clamp(17px, 1.3vw, 23px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 5px;
  }

  .about-page .about-info-block h3 {
    font-size: clamp(13px, 1vw, 17px);
    line-height: 1.12;
    margin-bottom: 6px;
  }

  .about-page .about-line {
    width: min(730px, 72%);
    margin: 0 0 clamp(7px, 1vh, 12px);
  }

  .about-page .about-preview-image-box,
  .about-page .about-box-model-grid {
    height: clamp(185px, 24vh, 245px);
    aspect-ratio: 16 / 7;
    margin-top: -104px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-page .about-img-model-grid {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #000;
    transform: translateX(0px) translateY(0px) scale(0.94);
  }

  .about-page .about-space-head {
    flex: 0 0 auto;
    gap: 16px;
    margin-bottom: clamp(5px, 0.8vh, 8px);
  }

  .about-page .about-figma-star-space {
    width: clamp(38px, 3.2vw, 54px);
  }

  .about-page .about-space-lead {
    max-width: 100%;
    margin-bottom: clamp(6px, 1vh, 10px);
  }

  .about-page .about-space-images {
    width: 100%;
    grid-template-columns: 0.9fr 1.15fr;
    gap: clamp(20px, 2.5vw, 34px);
    margin-bottom: clamp(6px, 1vh, 10px);
  }

  .about-page .about-space-image-box {
    height: clamp(145px, 23vh, 250px);
  }

  .about-page .about-space-image {
    object-fit: cover;
    object-position: center center;
  }

  .about-page .about-space-description {
    max-width: 100%;
  }

  .about-page .footer.snap-section,
  .catalog-page .footer.snap-section {
    height: calc(100vh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
  }

  .about-page .footer-inner,
  .catalog-page .footer-inner {
    width: min(1200px, 94%);
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
  }
}

/* Tablet и mobile: не зажимаем блоки в один экран, чтобы текст не ломался. */
@media (max-width: 1100px) {
  .about-intro-grid,
  .about-info-grid {
    gap: 28px;
  }

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

  .about-preview-image-box {
    grid-column: 1 / -1;
    height: 220px;
  }

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

  .about-info-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .about-page .about-figma-section {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .about-page .about-figma-inner {
    width: min(560px, 92%);
    max-width: none;
  }

  .about-page .about-preview-image-box,
  .about-page .about-box-model-grid {
    margin-top: 0;
    aspect-ratio: auto;
  }

  .about-page .about-img-model-grid {
    object-fit: contain;
    transform: translateX(0px) translateY(0px) scale(1);
  }

  .about-page .footer.snap-section,
  .catalog-page .footer.snap-section {
    height: auto;
    min-height: auto;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .about-figma-section {
    padding: 32px 0 48px;
  }

  .about-intro-grid,
  .about-info-grid,
  .about-space-images {
    grid-template-columns: 1fr;
  }

  .about-line {
    width: 100%;
  }

  .about-preview-image-box,
  .about-space-image-box {
    height: 260px;
  }
}

/* =========================================================
   INFERNO CIRCLE DETAIL PAGES — 9 DETAIL PAGES
   ========================================================= */

.circle-detail-body {
  background: #fff;
}

.circle-detail-page {
  background: #fff;
}

.circle-detail-section {
  background: #fff;
  padding: clamp(18px, 3vh, 34px) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.circle-detail-inner {
  width: min(1080px, 88%);
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.circle-detail-kicker {
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: clamp(10px, 1.5vh, 18px);
}

.circle-detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
}

.circle-detail-layout.is-reversed {
  grid-template-columns: 0.9fr 1.05fr;
}

.circle-detail-layout.is-reversed .circle-detail-content {
  order: 2;
}

.circle-detail-layout.is-reversed .circle-detail-visual {
  order: 1;
}

.circle-detail-title {
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.circle-detail-title span {
  display: block;
  font-size: clamp(18px, 1.5vw, 28px);
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.circle-detail-subtitle {
  font-size: clamp(15px, 1.15vw, 20px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: clamp(18px, 2.4vh, 28px);
}

.circle-detail-text {
  max-width: 610px;
}

.circle-detail-text p {
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.35;
  font-weight: 500;
  margin-bottom: 12px;
}

.circle-detail-quote {
  margin-top: clamp(16px, 2.2vh, 28px);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.25;
  font-weight: 900;
}

.circle-detail-visual {
  position: relative;
}

.circle-detail-image-box {
  width: 100%;
  height: clamp(300px, 48vh, 560px);
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-detail-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #111;
  transform-origin: center center;
}

.circle-detail-star {
  position: absolute;
  width: clamp(42px, 4.2vw, 72px);
  height: auto;
  right: -28px;
  top: -24px;
  z-index: 3;
}

.circle-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(20px, 3vh, 34px);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 800;
}

.circle-detail-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.circle-detail-nav a:hover {
  opacity: 0.55;
}

.circle-detail-page .footer.snap-section {
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.circle-detail-page .footer-inner {
  height: 100%;
}

/* Individual image controls for 9 circle pages */
.detail-img-1 { transform: translateX(0px) translateY(0px) scale(1.27); }
.detail-img-2 { transform: translateX(0px) translateY(0px) scale(1.28); }
.detail-img-3 { transform: translateX(0px) translateY(0px) scale(1.27); }
.detail-img-4 { transform: translateX(0px) translateY(0px) scale(1.27); }
.detail-img-5 { transform: translateX(0px) translateY(0px) scale(1.27); }
.detail-img-6 { transform: translateX(0px) translateY(0px) scale(1.33); }
.detail-img-7 { transform: translateX(0px) translateY(0px) scale(1.27); }
.detail-img-8 { transform: translateX(0px) translateY(0px) scale(1.25); }
.detail-img-9 { transform: translateX(0px) translateY(0px) scale(1.50); }

@media (max-width: 1100px) {
  .circle-detail-inner {
    width: min(980px, 90%);
  }

  .circle-detail-layout,
  .circle-detail-layout.is-reversed {
    grid-template-columns: 1fr 0.86fr;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .circle-detail-section {
    height: auto;
    min-height: auto;
    padding: 36px 0 56px;
    overflow: visible;
  }

  .circle-detail-inner {
    height: auto;
  }

  .circle-detail-layout,
  .circle-detail-layout.is-reversed {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .circle-detail-layout.is-reversed .circle-detail-content,
  .circle-detail-layout.is-reversed .circle-detail-visual {
    order: initial;
  }

  .circle-detail-image-box {
    height: 380px;
  }

  .circle-detail-star {
    right: 8px;
    top: -18px;
  }

  .circle-detail-nav {
    flex-wrap: wrap;
  }

  .circle-detail-page .footer.snap-section {
    height: auto;
    min-height: auto;
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .circle-detail-title {
    font-size: 42px;
  }

  .circle-detail-image-box {
    height: 320px;
  }

  .circle-detail-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   TICKETS PAGE — ONE SCREEN + FOOTER
   Страница покупки билетов: первый блок — форма, второй блок — футер.
   Картинки для этой страницы:
   images/ticket-model.png
   images/ticket-flower.png
   ========================================================= */

.tickets-body {
  background: #fff;
}

.tickets-page {
  background: #fff;
}

.tickets-page .tickets-section {
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(14px, 2.4vh, 28px) 0;
}

.tickets-inner {
  width: min(1120px, 92%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tickets-card {
  width: min(980px, 100%);
  min-height: min(620px, 86%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tickets-top-row {
  display: grid;
  grid-template-columns: 165px minmax(360px, 1fr) 180px;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  margin-bottom: clamp(28px, 5vh, 52px);
}

.tickets-left-image-box {
  width: 165px;
  height: 135px;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tickets-left-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: translateX(0px) translateY(0px) scale(1.00);
  transform-origin: center center;
}

.tickets-heading {
  text-align: center;
}

.tickets-small-date {
  font-size: 10px;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.tickets-heading h1 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.tickets-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(420px, 100%);
  margin: 0 auto 16px;
}

.tickets-meta span {
  font-size: 12px;
  letter-spacing: 0.7px;
  font-weight: 400;
}

.tickets-hand-line {
  width: min(430px, 100%);
  height: 10px;
  margin: 0 auto;
  border-top: 4px solid #111;
  border-radius: 60% 50% 45% 55%;
  transform: rotate(-1deg);
  position: relative;
}

.tickets-hand-line::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 5%;
  top: 2px;
  height: 2px;
  background: #111;
  border-radius: 50%;
  transform: rotate(1.6deg);
}

.tickets-flower-box {
  width: 180px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tickets-flower-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: translateX(0px) translateY(0px) scale(1.00);
  transform-origin: center center;
}

.tickets-amount {
  text-align: center;
  margin-bottom: clamp(42px, 7vh, 78px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tickets-quantity-label {
  font-size: 13px;
  font-weight: 600;
}

.tickets-quantity-select {
  width: 220px;
  height: 46px;
  background: #e4e4e4;
  border: none;
  outline: none;
  padding: 0 18px;
  color: #111;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
}

.tickets-form {
  width: min(820px, 100%);
  margin: 0 auto;
}

.tickets-form-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.tickets-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
  row-gap: 15px;
}

.tickets-form label {
  display: block;
}

.tickets-form label span {
  display: block;
  font-size: 9px;
  line-height: 1;
  margin-bottom: 5px;
  color: #111;
}

.tickets-form input {
  width: 100%;
  height: 48px;
  background: #e4e4e4;
  border: none;
  outline: none;
  padding: 0 18px;
  color: #111;
  font-size: 13px;
  font-family: inherit;
}

.tickets-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(36px, 6vh, 62px);
}

.tickets-submit-row button {
  width: min(310px, 100%);
  height: 48px;
  border: none;
  background: #1b1b1b;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}

.tickets-submit-row button:hover {
  opacity: 0.85;
}

.tickets-page .footer.snap-section {
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.tickets-page .footer-inner {
  height: 100%;
}

@media (max-width: 900px) {
  .tickets-page .tickets-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 40px 0 58px;
  }

  .tickets-inner,
  .tickets-card {
    height: auto;
  }

  .tickets-top-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .tickets-left-image-box {
    width: min(220px, 100%);
    height: 170px;
  }

  .tickets-flower-box {
    width: 150px;
    height: 120px;
  }

  .tickets-form-grid {
    grid-template-columns: 1fr;
  }

  .tickets-submit-row {
    justify-content: center;
  }

  .tickets-page .footer.snap-section {
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .tickets-heading h1 {
    font-size: 32px;
  }

  .tickets-meta {
    gap: 12px;
  }

  .tickets-submit-row button {
    width: 100%;
  }
}


/* =========================================================
   404 PAGE — FULL SCREEN + FOOTER
   Первый блок полностью чёрный, без белых полей вокруг.
   Внутри каждые 2 секунды меняется обычный 404 и 404 с логотипом.
   Второй блок ниже — общий футер сайта.
   ========================================================= */

.error-body {
  background: #141414;
}

.error-page {
  background: #141414;
}

.error-section {
  background: #141414;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.error-inner {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.error-card {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #141414;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-small-number {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

.error-small-number-two {
  opacity: 0;
  animation: errorSmallTwo 4s infinite;
}

.error-small-number-one {
  animation: errorSmallOne 4s infinite;
}

.error-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-state-one {
  animation: errorStateOne 4s infinite;
}

.error-state-two {
  animation: errorStateTwo 4s infinite;
}

.error-text {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.error-code {
  font-size: clamp(96px, 12vw, 170px);
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.error-code-with-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.6vw, 8px);
}

.error-logo-mark {
  width: clamp(72px, 7vw, 112px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: translateY(4px);
}

.error-link {
  margin-top: 26px;
  color: #fff;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  padding-bottom: 4px;
}

.error-link:hover {
  opacity: 0.72;
}

.error-page .footer.snap-section {
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.error-page .footer-inner {
  height: 100%;
}

@keyframes errorStateOne {
  0%, 45% {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  50%, 95% {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
    pointer-events: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}

@keyframes errorStateTwo {
  0%, 45% {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    pointer-events: none;
  }
  50%, 95% {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    pointer-events: none;
  }
}

@keyframes errorSmallOne {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes errorSmallTwo {
  0%, 45% { opacity: 0; }
  50%, 95% { opacity: 1; }
  100% { opacity: 0; }
}

@media (max-width: 860px) {
  .error-section {
    height: calc(100vh - 112px);
    min-height: 520px;
  }

  .error-card {
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .error-page .footer.snap-section {
    height: auto;
    min-height: auto;
    overflow: hidden;
  }
}

/* =========================================================
   PRELOADER
   Маленький загрузочный экран для первого открытия сайта.
   Он держит экран, пока браузер не закончит грузить картинки,
   видео, стили и скрипты. Потом JS добавляет .is-hidden.
   ========================================================= */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.loader-ring {
  width: 148px;
  height: 148px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Сам круг крутится, а надпись внутри остаётся спокойной. */
.loader-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: #fff;
  border-right-color: rgba(255, 255, 255, 0.65);
  animation: loaderSpin 1.05s linear infinite;
}

/* Небольшая точка добавляет ощущение движения, не перегружая экран. */
.loader-ring::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.85);
  animation: loaderPulse 1.05s ease-in-out infinite;
}

.loader-brand {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.loader-text {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  animation: loaderBlink 1.35s ease-in-out infinite;
}

@keyframes loaderSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderBlink {
  0%, 100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes loaderPulse {
  0%, 100% {
    opacity: 0.45;
    transform: translateX(-50%) scale(0.75);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 560px) {
  .loader-ring {
    width: 116px;
    height: 116px;
  }

  .loader-brand {
    font-size: 12px;
  }

  .loader-text {
    font-size: 10px;
    letter-spacing: 3px;
  }
}

/* Tickets quantity select — аккуратное поле выбора количества билетов. */
@media (max-width: 560px) {
  .tickets-quantity-select {
    width: 100%;
    max-width: 260px;
  }
}
