:root {
  --bg: #e6e6dd;
  --bg-soft: #ffd2d6;
  --bg-dark: #171717;
  --bg-darker: #111111;
  --card: #ffffff;
  --text: #181818;
  --muted: #5a5a5a;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #ff954e;
  --accent-strong: #ff5e00;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--light { background: var(--bg); }
.section--dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-title {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 400;
}
.section-lead {
  margin: 0 0 28px;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--muted);
}
.section--dark .section-lead { color: rgba(255,255,255,.78); }
.section-header { margin-bottom: 42px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(17,17,17,.72);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header:after {
    content: '';
    background: rgba(17, 17, 17, .72);
	backdrop-filter: blur(10px);
    height: 76px;
    width: 100%;
    display: block;
    margin: -152px 0 0 0;
    position: absolute;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.nav a {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 600;
}
.nav a:hover { color: #fff; }
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  color: #fff;
  background: #000 url('../images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  background: linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.78));
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
  max-width: 860px;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  opacity: .88;
  margin-bottom: 18px;
}
.hero__title {
  margin: 0 0 18px;
  font-size: clamp(42px, 9vw, 88px);
  line-height: .95;
}
.hero__text {
  margin: 0 auto 32px;
  max-width: 660px;
  font-size: clamp(18px, 2.2vw, 28px);
  color: rgba(255,255,255,.88);
}

.btn,
.btn-secondary,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
  font-weight: 600;
}
.btn { background: #000; color: #fff; }
.btn:hover { background: var(--accent); }
.btn-secondary {
  background: transparent;
  border-color: #000;
  color: #000;
}
.btn-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: #000;
}
.btn-light:hover { background: #f3f3f3; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.grid-2.reverse { grid-template-columns: .95fr 1.05fr; }

.copy-card,
.image-card,
.info-card,
.course-card,
.price-card,
.person-card,
.trust-card,
.product-card,
.contact-card,
.banner-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.copy-card { padding: 36px; }
.image-card img,
.feature-image,
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.image-card { overflow: hidden; min-height: 540px; }

.infinity-main {
  --scroll-side-gap: clamp(16px, 4vw, 48px);
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.scroll-pc-block {
  position: relative;
  width: 100%;
  left: 0;
  overflow: hidden;
}

.scroll-pc-in {
  cursor: grab;
  padding: 6px var(--scroll-side-gap) 20px;
  margin-bottom: -20px;
  -webkit-overflow-scrolling: touch;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  overflow-y: hidden;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: auto;
}

.scroll-pc-in::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.infinity-in {
  display: inline-flex;
  align-items: stretch;
  gap: 20px;
  white-space: normal;
  min-width: max-content;
}

.gallery-strip > * {
  flex: 0 0 clamp(260px, 28vw, 360px);
}

.trust-strip {
  gap: 24px;
}

.trust-strip > * {
  flex: 0 0 clamp(300px, 32vw, 420px);
}

.scroll-pc-in.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.scroll-pc-in.is-dragging a,
.scroll-pc-in.is-dragging button {
  pointer-events: none;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  background: #ddd;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  background: #222;
}
.trust-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.62));
}
.trust-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  z-index: 1;
}
.trust-card__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
}
.trust-card__text {
  margin: 0;
  color: rgba(255,255,255,.86);
}

.people-grid,
.products-grid,
.prices-grid,
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.people-grid { grid-template-columns: repeat(4, 1fr); }

.person-card,
.product-card,
.course-card,
.price-card {
  overflow: hidden;
}
.person-card__image,
.product-card__image,
.course-card__image,
.price-card__image {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
}
.person-card__image img,
.product-card__image img,
.course-card__image img,
.price-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-card__body,
.product-card__body,
.course-card__body,
.price-card__body {
  padding: 22px;
}
.card-title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}
.card-text {
  margin: 0 0 16px;
  color: var(--muted);
}
.price {
  margin: 14px 0 18px;
  font-size: 28px;
  font-weight: 700;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  position: relative;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.72)), url('../images/cta-bg.jpg') center/cover no-repeat;
}
.cta__box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 110px 0;
}
.cta__title {
  margin: 0 0 16px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.04;
}
.cta__text {
  margin: 0 auto 26px;
  max-width: 720px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,.84);
}
.form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
}
.form input {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
}
.form .btn {
  min-height: 54px;
  background: var(--accent-strong);
}
.form .btn:hover { background: var(--accent); }
.form-feedback {
  margin-top: 16px;
  font-size: 15px;
}
.form-feedback--success { color: #d0ffd0; }
.form-feedback--error { color: #ffd8d8; }

.cover-banner {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.cover-banner__inner {
  position: relative;
  z-index: 1;
  padding: 40px;
  max-width: 780px;
}
.cover-banner__title {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
}
.cover-banner__text {
  margin: 12px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255,255,255,.86);
}
.banner-relax { background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.28)), url('../images/event-cover-1.jpg') center/cover no-repeat; }
.banner-party { background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.28)), url('../images/event-cover-2.jpg') center/cover no-repeat; }
.banner-dresses { background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.28)), url('../images/dress-cover.jpg') center/cover no-repeat; }
.banner-events-all { background: linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.18)), url('../images/events-all.png') center/cover no-repeat; min-height: 560px; }

.contact-card {
  background: #fff;
  padding: 42px;
  text-align: center;
}
.contact-links {
  font-size: clamp(22px, 4vw, 44px);
  line-height: 1.25;
  margin: 18px 0 26px;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.socials span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--bg-soft);
  font-weight: 600;
}

.site-footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-inner a { color: rgba(255,255,255,.85); }
.footer-inner a:hover { color: #fff; }

.note {
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .grid-2,
  .grid-2.reverse { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid,
  .prices-grid,
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .burger { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(17,17,17,.96);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: grid; }
  .header-inner { min-height: 70px; }
  .section { padding: 64px 0; }
  .copy-card,
  .contact-card { padding: 28px; }
  
.site-header:after {
    margin: -146px 0 0 0;
}
  
}

@media (max-width: 640px) {
  .people-grid,
  .products-grid,
  .prices-grid,
  .courses-grid,
  .form { grid-template-columns: 1fr; }
  .image-card { min-height: 360px; }
  .gallery-strip,
  .trust-strip {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}


@media (min-width: 1100px) {
  .infinity-main {
    --scroll-side-gap: max(32px, calc((100vw - var(--container)) / 2 + 2px));
  }
}

@media (max-width: 767px) {
  .infinity-main {
    --scroll-side-gap: 16px;
  }

  .gallery-strip > * {
    flex-basis: 78vw;
  }

  .trust-strip > * {
    flex-basis: 84vw;
  }
}
