:root {
  --black: #050506;
  --ink: #111116;
  --graphite: #191922;
  --line: rgba(255, 255, 255, .14);
  --line-dark: rgba(20, 18, 26, .12);
  --white: #f8f5fa;
  --soft: #e3d9e8;
  --muted: #bdb1c7;
  --muted-dark: #5b5363;
  --pink: #f3a6d6;
  --hot: #f052c5;
  --violet: #7a43ff;
  --paper: #f5eff4;
  --paper-ink: #181720;
  --container: 1228px;
  --gutter: 24px;
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

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

.section-light {
  color: var(--paper-ink);
  background:
    radial-gradient(circle at 10% 6%, rgba(240, 82, 197, .12), transparent 280px),
    var(--paper);
}

#about,
#services,
#works,
#price,
#contacts,
#book {
  scroll-margin-top: 96px;
}

.section-pink {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(122, 67, 255, .28), transparent 360px),
    linear-gradient(135deg, #1b0c18, #38162d 54%, #110b14);
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 82, 197, .54), rgba(122, 67, 255, .44), transparent);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(var(--gutter), calc((100vw - var(--container)) / 2));
  background: linear-gradient(to bottom, rgba(5, 5, 6, .78), rgba(5, 5, 6, .12));
  transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, .86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(0, 0, 0, .56);
  overflow: hidden;
}

.brand-mark img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.brand-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  opacity: .82;
  transition: color .2s ease, opacity .2s ease;
}

.main-nav a:hover {
  color: var(--pink);
  opacity: 1;
}

.main-nav .nav-book {
  color: var(--pink);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(18, 16, 24, .78), rgba(18, 16, 24, .78)) padding-box,
    linear-gradient(135deg, var(--hot), var(--violet), var(--pink)) border-box;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

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

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-image: linear-gradient(100deg, var(--hot), var(--violet), var(--pink)) 1;
  border-radius: 0;
  color: var(--white);
  background: var(--button-bg, rgba(18, 16, 24, .76));
  font-weight: 900;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.button::before {
  top: -8px;
  left: -8px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(90deg, var(--hot), var(--violet)) 0 0 / 100% 1px no-repeat,
    linear-gradient(180deg, var(--hot), var(--violet)) 0 0 / 1px 100% no-repeat;
}

.button::after {
  right: -8px;
  bottom: -8px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(90deg, var(--violet), var(--pink)) 0 100% / 100% 1px no-repeat,
    linear-gradient(180deg, var(--violet), var(--pink)) 100% 0 / 1px 100% no-repeat;
}

.button span {
  position: relative;
  z-index: 1;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--button-hover-bg, rgba(32, 22, 42, .86));
  box-shadow: 0 24px 60px rgba(240, 82, 197, .16);
}

.button-primary {
  --button-bg: rgba(240, 82, 197, .16);
  --button-hover-bg: rgba(65, 28, 68, .74);
  color: #fff;
  box-shadow: 0 20px 54px rgba(240, 82, 197, .25);
}

.button-secondary {
  --button-bg: rgba(255, 255, 255, .06);
  --button-hover-bg: rgba(255, 255, 255, .1);
  color: var(--white);
}

.section-light .button-secondary {
  --button-bg: rgba(255, 255, 255, .44);
  --button-hover-bg: rgba(255, 255, 255, .72);
  color: var(--paper-ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  max-width: 710px;
  font-size: 92px;
}

h2 {
  max-width: 820px;
  font-size: 56px;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

p {
  margin: 0;
  line-height: 1.65;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 128px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 16%, rgba(240, 82, 197, .34), transparent 310px),
    radial-gradient(circle at 4% 92%, rgba(122, 67, 255, .28), transparent 390px),
    linear-gradient(135deg, #050506, #11101a 48%, #07060a);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-video {
  position: absolute;
  z-index: -5;
  inset: 0 auto 0 0;
  width: 64%;
  min-width: 760px;
  opacity: .42;
  filter: grayscale(1) contrast(1.18) brightness(.54);
}

.hero-video-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .38), rgba(5, 5, 6, .74) 50%, rgba(5, 5, 6, .18)),
    linear-gradient(to bottom, rgba(5, 5, 6, .42), transparent 42%, rgba(5, 5, 6, .84));
}

.hero-mesh {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  display: block;
  opacity: .86;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-text {
  max-width: 640px;
  margin-top: 28px;
  color: #eee5f2;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.hero-card,
.hero-note {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .44);
}

.hero-card {
  overflow: hidden;
  animation: heroCardFloat 9s ease-in-out infinite;
}

.hero-card-main {
  animation-duration: 10.5s;
}

.hero-card-detail {
  animation-duration: 12s;
  animation-delay: -2.6s;
}

.hero-card-tool {
  animation-duration: 8.5s;
  animation-delay: -1.4s;
}

.hero-card-main {
  right: 0;
  top: 22px;
  width: 54%;
  height: 430px;
}

.hero-card-detail {
  left: 0;
  bottom: 0;
  width: 54%;
  height: 300px;
}

.hero-card-tool {
  left: 16%;
  top: 0;
  width: 31%;
  height: 180px;
}

.hero-note {
  right: -8px;
  bottom: 14px;
  width: 54%;
  padding: 22px 24px;
  overflow: visible;
  border: 1px solid transparent;
  border-image: linear-gradient(100deg, var(--hot), var(--violet), var(--pink)) 1;
  border-radius: 0;
  color: var(--white);
  background:
    linear-gradient(112deg, transparent 0%, transparent 38%, rgba(255, 255, 255, .12) 47%, rgba(243, 166, 214, .18) 50%, transparent 60%, transparent 100%),
    rgba(5, 5, 8, .64);
  background-size: 240% 100%, auto;
  background-position: 135% 0, 0 0;
  backdrop-filter: blur(18px);
  animation: heroNoteShine 6s ease-in-out infinite;
}

.hero-note strong,
.hero-note span {
  position: relative;
  z-index: 1;
}

.hero-note::before,
.hero-note::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-note::before {
  top: -8px;
  left: -8px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(90deg, var(--hot), var(--violet)) 0 0 / 100% 1px no-repeat,
    linear-gradient(180deg, var(--hot), var(--violet)) 0 0 / 1px 100% no-repeat;
}

.hero-note::after {
  right: -8px;
  bottom: -8px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(90deg, var(--violet), var(--pink)) 0 100% / 100% 1px no-repeat,
    linear-gradient(180deg, var(--violet), var(--pink)) 100% 0 / 1px 100% no-repeat;
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-services {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
}

.hero-services a {
  min-height: 108px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: rgba(13, 12, 18, .82);
  backdrop-filter: blur(16px);
  transition: background .2s ease;
}

.hero-services a:hover {
  background: rgba(44, 24, 52, .86);
}

.hero-services strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.hero-services span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(.35deg);
  }
}

@keyframes heroNoteShine {
  0%,
  42% {
    background-position: 135% 0, 0 0;
  }

  72%,
  100% {
    background-position: -70% 0, 0 0;
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(390px, .7fr);
  gap: 56px;
  align-items: center;
}

.about,
.services,
.works,
.contacts {
  padding: 118px 0;
}

.section-copy p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

.section-light .section-copy p:not(.eyebrow),
.section-light .section-heading > p:not(.eyebrow) {
  color: var(--muted-dark);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.facts-grid div,
.process-grid article,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
}

.facts-grid div {
  min-height: 120px;
  padding: 18px;
}

.facts-grid strong,
.process-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.facts-grid span {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
}

.about-media {
  height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .34);
}

.section-heading {
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-rows: 320px auto;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.service-card img {
  filter: saturate(.9) contrast(1.04);
}

.service-card div {
  padding: 22px;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.process {
  padding: 96px 0;
  background: var(--black);
}

.process-heading {
  margin-bottom: 34px;
}

.process-heading h2 {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  position: relative;
  min-height: clamp(460px, 58vh, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  isolation: isolate;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(5, 5, 6, .08) 0%, rgba(5, 5, 6, .2) 42%, rgba(5, 5, 6, .88) 100%),
    linear-gradient(135deg, rgba(240, 82, 197, .24), transparent 52%);
}

.process-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.06) brightness(.84);
}

.process-card:first-child img {
  object-position: 50% 0;
}

.process-card div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 22px;
}

.process-card h3 {
  color: var(--white);
  font-size: 18px;
}

.process-card p {
  margin-top: 14px;
  color: #e8ddea;
  font-size: 14px;
  line-height: 1.55;
}

.works {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(122, 67, 255, .11), transparent 360px),
    radial-gradient(circle at 84% 42%, rgba(240, 82, 197, .1), transparent 420px),
    var(--black);
}

.works-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.works::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .5), rgba(5, 5, 6, .16) 48%, rgba(5, 5, 6, .54)),
    linear-gradient(to bottom, rgba(5, 5, 6, .64), transparent 18%, rgba(5, 5, 6, .72));
}

.works-head,
.gallery,
.gallery-pagination {
  position: relative;
  z-index: 2;
}

.works-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.works-head .section-heading {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: #111;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 5, 10, .44), transparent 62%);
  opacity: .5;
  transition: opacity .2s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item:hover::after {
  opacity: .16;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.gallery-pagination[hidden] {
  display: none;
}

.gallery-page-button,
.gallery-page-dot {
  position: relative;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(12, 11, 16, .82), rgba(12, 11, 16, .82)) padding-box,
    linear-gradient(135deg, var(--hot), var(--violet)) border-box;
  font-weight: 800;
  cursor: pointer;
}

.gallery-page-button {
  min-width: 118px;
  padding: 0 18px;
}

.gallery-page-dot {
  width: 46px;
  padding: 0;
}

.gallery-page-dot.is-active {
  background:
    linear-gradient(135deg, rgba(240, 82, 197, .86), rgba(122, 67, 255, .86)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, .5), var(--hot)) border-box;
}

.gallery-page-button:disabled {
  opacity: .36;
  cursor: default;
}

.gallery-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.price {
  padding: 110px 0;
}

.price-list {
  border-top: 1px solid var(--line-dark);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.price-row p {
  max-width: 640px;
  margin-top: 8px;
  color: var(--muted-dark);
}

.price-row strong {
  color: #81758a;
  font-size: 28px;
  font-style: italic;
  white-space: nowrap;
}

.offer {
  position: relative;
  isolation: isolate;
  padding: 86px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 24%, rgba(240, 82, 197, .12), transparent 280px),
    var(--black);
}

.offer-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.offer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .62), rgba(5, 5, 6, .2) 50%, rgba(5, 5, 6, .58)),
    linear-gradient(to bottom, rgba(5, 5, 6, .42), transparent 42%, rgba(5, 5, 6, .5));
}

.offer-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.offer-panel img {
  height: 164px;
  border-radius: 6px;
}

.offer-panel h2 {
  font-size: 38px;
}

.offer-panel p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
}

.reviews {
  padding: 102px 0;
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.reviews-head .section-heading {
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--paper-ink);
  background:
    linear-gradient(rgba(255, 255, 255, .64), rgba(255, 255, 255, .64)) padding-box,
    linear-gradient(135deg, var(--hot), var(--violet), var(--pink)) border-box;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.carousel-button:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--pink), var(--violet), var(--hot)) border-box;
}

.carousel-button:disabled {
  cursor: default;
  opacity: .42;
}

.carousel-button:disabled:hover {
  transform: none;
  background:
    linear-gradient(rgba(255, 255, 255, .64), rgba(255, 255, 255, .64)) padding-box,
    linear-gradient(135deg, var(--hot), var(--violet), var(--pink)) border-box;
}

.carousel-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translate(-35%, -50%) rotate(-45deg);
}

.carousel-button-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.reviews-carousel {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 0%, rgba(240, 82, 197, .12), transparent 170px),
    rgba(255, 255, 255, .66);
}

.review-card::after {
  content: "“";
  position: absolute;
  right: 20px;
  bottom: -36px;
  color: rgba(240, 82, 197, .12);
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: 128px;
  line-height: 1;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  border: 1px solid rgba(24, 23, 32, .14);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff0f8, #d8c2ff);
}

.review-avatar svg {
  width: 42px;
  height: 42px;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.review-author h3 {
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-author span {
  color: #8a8190;
  font-size: 13px;
  font-weight: 800;
}

.review-vk-badge {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 30px;
  margin-left: auto;
  flex: 0 0 38px;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, var(--hot), var(--violet), var(--pink)) 1;
  color: var(--paper-ink);
  background: rgba(255, 255, 255, .5);
  font-size: 12px;
  font-weight: 1000;
}

.review-card p {
  position: relative;
  z-index: 1;
  color: var(--muted-dark);
}

.review-photos {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 8px;
  height: 112px;
  margin-top: auto;
  padding-top: 20px;
}

.review-photos img {
  overflow: hidden;
  border: 1px solid rgba(24, 23, 32, .12);
  border-radius: 6px;
}

.review-photos img:only-child {
  grid-column: 1 / -1;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews-dot {
  width: 26px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(24, 23, 32, .18);
  transition: width .2s ease, background .2s ease;
}

.reviews-dot.is-active {
  width: 44px;
  background: linear-gradient(90deg, var(--hot), var(--violet));
}

.contacts {
  background:
    radial-gradient(circle at 88% 16%, rgba(240, 82, 197, .24), transparent 320px),
    linear-gradient(135deg, #050506, #121018);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 48px;
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.social-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-image: linear-gradient(100deg, var(--hot), var(--violet), var(--pink)) 1;
  border-radius: 0;
  color: var(--white);
  background: rgba(18, 16, 24, .76);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.social-button::before,
.social-button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.social-button::before {
  top: -8px;
  left: -8px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(90deg, var(--hot), var(--violet)) 0 0 / 100% 1px no-repeat,
    linear-gradient(180deg, var(--hot), var(--violet)) 0 0 / 1px 100% no-repeat;
}

.social-button::after {
  right: -8px;
  bottom: -8px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(90deg, var(--violet), var(--pink)) 0 100% / 100% 1px no-repeat,
    linear-gradient(180deg, var(--violet), var(--pink)) 100% 0 / 1px 100% no-repeat;
}

.social-button:hover {
  transform: translateY(-1px);
  background: rgba(32, 22, 42, .86);
  box-shadow: 0 24px 60px rgba(240, 82, 197, .18);
}

.social-button span,
.social-button svg {
  position: relative;
  z-index: 1;
}

.social-button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.map-panel {
  position: relative;
  min-height: 420px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(11, 10, 15, .96), rgba(11, 10, 15, .96)) padding-box,
    linear-gradient(135deg, rgba(240, 82, 197, .7), rgba(122, 67, 255, .45), rgba(255, 255, 255, .14)) border-box;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .36);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 404px;
  border: 0;
  border-radius: 6px;
  filter: grayscale(.15) contrast(1.02) brightness(.82);
}

.map-open-link {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-image: linear-gradient(100deg, var(--hot), var(--violet), var(--pink)) 1;
  border-radius: 0;
  color: var(--white);
  background: rgba(9, 8, 13, .74);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
}

.footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--pink);
  font-weight: 800;
}

.lightbox {
  width: min(1120px, calc(100% - 32px));
  height: min(820px, calc(100% - 32px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(5, 5, 6, .92);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid transparent;
  border-image: linear-gradient(135deg, var(--hot), var(--violet), var(--pink)) 1;
  border-radius: 0;
  color: var(--white);
  background: rgba(10, 10, 14, .72);
}

.lightbox-close {
  top: 16px;
  right: 16px;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-prev::before,
.lightbox-next::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.lightbox-prev::before {
  transform: rotate(-45deg) translate(2px, 2px);
}

.lightbox-next::before {
  transform: rotate(135deg) translate(2px, 2px);
}

@media (max-width: 1180px) {
  :root {
    --gutter: 20px;
  }

  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 46px;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, .96fr) minmax(360px, 1fr);
    gap: 34px;
  }

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

@media (max-width: 940px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px var(--gutter) 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 6, .94);
    backdrop-filter: blur(18px);
    transform: translateY(-120%);
    transition: transform .22s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    padding: 108px 0 0;
  }

  .hero-video {
    width: 100%;
    min-width: 0;
    opacity: .35;
  }

  .hero-layout,
  .split-section,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-bottom: 32px;
  }

  .hero-collage {
    min-height: 430px;
  }

  .hero-card-main {
    width: 58%;
    height: 340px;
  }

  .hero-card-detail {
    width: 58%;
    height: 250px;
  }

  .hero-card-tool {
    width: 34%;
    height: 150px;
  }

  .hero-note {
    right: 0;
    bottom: 10px;
    width: 60%;
  }

  .hero-services {
    width: min(var(--container), calc(100% - var(--gutter) * 2));
    margin: 20px auto 0;
    grid-template-columns: 1fr;
  }

  .hero-services a {
    min-height: 92px;
    border-bottom: 1px solid var(--line);
  }

  .hero-services a:last-child {
    border-bottom: 0;
  }

  .about,
  .services,
  .works,
  .contacts,
  .price,
  .reviews,
  .process {
    padding: 84px 0;
  }

  .about-media {
    height: 460px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

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

  .process-card {
    min-height: 520px;
  }

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }

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

  .offer-panel {
    grid-template-columns: 1fr;
  }

  .offer-panel img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-title {
    max-width: 210px;
    font-size: 15px;
  }

  .button {
    min-height: 46px;
    padding: 0 20px;
    font-size: 14px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  .hero-collage {
    min-height: 360px;
  }

  .hero-card-main {
    width: 62%;
    height: 285px;
  }

  .hero-card-detail {
    width: 60%;
    height: 205px;
  }

  .hero-card-tool {
    left: 12%;
    width: 38%;
    height: 126px;
  }

  .hero-note {
    width: calc(100% - 28px);
    padding: 18px;
  }

  .section-copy p:not(.eyebrow),
  .section-heading > p:not(.eyebrow) {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-rows: 270px auto;
    min-height: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 430px;
  }

  .process-card div {
    padding: 24px 18px;
  }

  .works-head {
    display: block;
    text-align: center;
  }

  .works-head .button {
    width: min(100%, 280px);
    margin-top: 20px;
  }

  .reviews-head {
    display: block;
  }

  .carousel-controls {
    margin-top: 20px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 280px;
  }

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

  .gallery-pagination {
    gap: 10px;
  }

  .gallery-page-button {
    min-width: 96px;
    min-height: 42px;
    padding: 0 12px;
  }

  .gallery-page-dot {
    width: 42px;
    min-height: 42px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-row strong {
    font-size: 24px;
  }

  .offer {
    padding: 68px 0;
  }

  .offer-panel {
    padding: 18px;
  }

  .offer-panel .button {
    width: min(100%, 320px);
    justify-self: center;
  }

  .offer-panel h2 {
    font-size: 30px;
  }

  .map-panel {
    min-height: 320px;
  }

  .contact-actions {
    justify-content: center;
  }

  .social-button {
    width: min(100%, 320px);
  }

  .footer-inner {
    display: grid;
    gap: 12px;
    justify-content: start;
    padding: 20px 0;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 31px;
  }

  .brand-title {
    max-width: 186px;
  }

  .hero-actions .button {
    width: min(100%, 320px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-name: none !important;
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
