:root {
  --black: #110d12;
  --black-deep: #09060c;
  --white: #fffaff;
  --white-soft: rgba(255, 250, 255, 0.74);
  --pink: #ff35dd;
  --pink-soft: #ffd7fb;
  --pink-mist: rgba(255, 53, 221, 0.12);
  --powder: #f5eef5;
  --powder-soft: rgba(245, 238, 245, 0.72);
  --plum: #301d3d;
  --plum-soft: rgba(48, 29, 61, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(48, 29, 61, 0.1);
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-light: rgba(255, 255, 255, 0.72);
  --glow: 0 0 36px rgba(255, 53, 221, 0.25);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 36px rgba(53, 31, 66, 0.08);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: min(1200px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: "Lato", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 53, 221, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #0e0910 0%, #1b1220 46%, #140d18 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(16px);
  opacity: 0.5;
  z-index: 0;
}

body::before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: 8%;
  background: rgba(255, 53, 221, 0.16);
}

body::after {
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.08);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 120px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 40;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(14, 9, 16, 0.74);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
  max-width: min(236px, 25vw);
}

.brand__logo {
  width: 100%;
  max-width: 214px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 53, 221, 0.18));
}

.menu {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  margin-left: auto;
  justify-content: flex-end;
}

.menu a:not(.button) {
  color: rgba(255, 250, 255, 0.76);
  transition: color 0.2s ease;
}

.menu a:not(.button):hover {
  color: var(--pink-soft);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), #8e3cff);
  box-shadow: 0 18px 36px rgba(255, 53, 221, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(255, 53, 221, 0.28);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.frame--light .button--ghost,
.price-footer .button--ghost,
.contacts__card .button--ghost {
  color: var(--plum);
  border-color: rgba(48, 29, 61, 0.14);
  background: rgba(48, 29, 61, 0.05);
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.hero,
.trust,
.proof,
.services,
.portfolio,
.team,
.reviews,
.prices,
.contacts {
  padding-top: 96px;
}

.frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.frame--dark {
  position: relative;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 53, 221, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #110d12, #18101d 52%, #120d15);
}

.frame--light {
  color: var(--plum);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #f6eff6;
}

.frame--glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
  align-items: start;
}

.hero__story {
  min-height: 620px;
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 16px;
}

.hero__story::before,
.hero__story::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero__story::before {
  width: 180px;
  height: 180px;
  background: rgba(255, 53, 221, 0.12);
  top: -70px;
  right: -30px;
}

.hero__story::after {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -120px;
  left: -80px;
}

.hero__brandline,
.hero__headline,
.hero__actions,
.hero__facts {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.frame--dark .eyebrow,
.section-head .eyebrow,
.contacts__copy .eyebrow {
  color: rgba(255, 215, 251, 0.72);
}

.frame--light .eyebrow,
.price-footer .eyebrow {
  color: #7b2b72;
}

.tag,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 53, 221, 0.2);
  background: rgba(255, 53, 221, 0.13);
  color: var(--pink-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag::before,
.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: var(--glow);
}

.frame--light .pill,
.workspace-card .pill {
  color: #7b2b72;
  background: rgba(255, 53, 221, 0.12);
}

.hero h1,
.hero__workspace-head h2,
.section-head h2,
.proof__panel h2,
.contacts h2,
.price-footer h3 {
  margin: 0;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.35vw, 3.45rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--pink-soft);
  text-shadow: var(--glow);
}

.hero__lead {
  margin: 0;
  max-width: 34ch;
  color: var(--white-soft);
  line-height: 1.6;
  font-size: 0.94rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__facts {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  align-content: end;
}

.hero__facts li,
.proof__grid article,
.team-card,
.review-card,
.price-group,
.contacts__copy,
.contacts__card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__facts li {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.hero__facts strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero__facts span {
  color: var(--white-soft);
  line-height: 1.5;
}

.hero__workspace {
  min-height: 620px;
  padding: 20px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero__workspace-head {
  display: grid;
  gap: 10px;
}

.hero__workspace-head h2 {
  font-size: clamp(1.72rem, 2.55vw, 2.5rem);
  color: var(--plum);
  line-height: 1.02;
}

.hero__workspace-head p {
  margin: 0;
  max-width: 52ch;
  color: var(--plum-soft);
  line-height: 1.65;
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
  align-items: start;
}

.workspace-card {
  min-height: 0;
  height: auto;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(48, 29, 61, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  align-content: start;
}

.workspace-card h3 {
  margin: 0;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.workspace-card p {
  margin: 0;
  color: var(--plum-soft);
  line-height: 1.6;
}

.workspace-card--wide {
  grid-column: 1 / -1;
}

.workspace-card--image {
  position: relative;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  background: #1a121d;
}

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

.workspace-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(17, 13, 18, 0.74) 100%);
}

.workspace-card__overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(17, 13, 18, 0.58);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.workspace-card__overlay .pill {
  color: var(--pink-soft);
}

.mini-list {
  display: grid;
  gap: 10px;
}

.mini-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(48, 29, 61, 0.18);
}

.mini-row strong {
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid rgba(48, 29, 61, 0.1);
  background: rgba(48, 29, 61, 0.05);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quick-links a:hover,
.contact-links a:hover {
  transform: translateY(-2px);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}

.proof__panel {
  padding: 30px;
}

.proof__panel h2 {
  font-size: clamp(2.05rem, 3.4vw, 3rem);
  line-height: 1.04;
}

.proof__panel p:last-child {
  margin: 18px 0 0;
  color: var(--white-soft);
  line-height: 1.65;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}

.proof__grid article {
  height: 100%;
  padding: 24px;
  border-radius: 24px;
}

.proof__grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.04rem;
}

.proof__grid p {
  margin: 0;
  color: var(--white-soft);
  line-height: 1.55;
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head h2,
.contacts h2 {
  font-size: clamp(2.05rem, 3.4vw, 3rem);
  line-height: 1.06;
}

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

.trust-card {
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.trust-card h3 {
  margin: 4px 0 0;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  line-height: 1.04;
}

.trust-card p {
  margin: 0;
  line-height: 1.65;
}

.trust-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.trust-card__badge {
  width: 76px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(18, 12, 17, 0.14));
}

.trust-card__mark {
  display: inline-grid;
  place-items: center;
  min-width: 84px;
  min-height: 84px;
  padding: 14px;
  border-radius: 24px;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.trust-card__mark--2gis {
  color: #04150a;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(145deg, #20ef70, #afff58);
}

.trust-card__mark--dikidi {
  color: #ffe3a1;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #2a1d12, #6e4712);
}

.trust-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.trust-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-card .button {
  width: fit-content;
}

.trust-card--yandex,
.trust-card--dikidi {
  color: var(--plum);
  border-color: rgba(48, 29, 61, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #f6eff6;
}

.trust-card--yandex p,
.trust-card--dikidi p {
  color: var(--plum-soft);
}

.trust-card--yandex .trust-card__meta span,
.trust-card--dikidi .trust-card__meta span,
.trust-card--yandex .button--ghost,
.trust-card--dikidi .button--ghost {
  color: var(--plum);
  border-color: rgba(48, 29, 61, 0.14);
  background: rgba(48, 29, 61, 0.05);
}

.trust-card--2gis {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(49, 255, 141, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #0f1210, #171c18 50%, #111612);
}

.trust-card--2gis p {
  color: var(--white-soft);
}

.trust-card--2gis .eyebrow {
  color: rgba(183, 255, 198, 0.74);
}

.trust-card--2gis .trust-card__meta span,
.trust-card--2gis .button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.carousel {
  position: relative;
  padding: 16px 16px 58px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 24px;
}

.carousel__track {
  display: flex;
  transition: transform 0.46s ease;
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  margin: 0;
}

.carousel__slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  object-fit: cover;
  background: #1e1623;
}

.carousel__button {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  margin-top: -28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 13, 18, 0.72);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel__button:hover {
  transform: translateY(-1px);
  background: rgba(255, 53, 221, 0.24);
  border-color: rgba(255, 215, 251, 0.74);
}

.carousel__button--prev {
  left: 24px;
}

.carousel__button--next {
  right: 24px;
}

.carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: inline-flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel__dot.is-active {
  width: 28px;
  background: var(--pink);
}

.services-carousel {
  margin-bottom: 20px;
}

.service-slide {
  position: relative;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
}

.service-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 15%, rgba(17, 13, 18, 0.88) 100%),
    linear-gradient(0deg, rgba(255, 53, 221, 0.08), rgba(255, 53, 221, 0.08));
}

.service-slide__content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: grid;
  gap: 12px;
  color: var(--white);
}

.service-slide__content p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 215, 251, 0.86);
}

.service-slide__content h3 {
  margin: 0;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 1.42rem;
  line-height: 1.15;
}

.service-slide__content ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(255, 250, 255, 0.84);
  line-height: 1.45;
}

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

.permanent-card {
  padding: 20px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.permanent-card header {
  display: grid;
  gap: 8px;
}

.permanent-card header h3 {
  margin: 0;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 1.48rem;
}

.permanent-card header p:not(.eyebrow) {
  margin: 0;
  color: var(--white-soft);
  line-height: 1.52;
}

.permanent-card .carousel {
  padding: 12px 12px 52px;
  border-radius: 24px;
  margin: 0;
}

.permanent-card .carousel__viewport {
  border-radius: 18px;
}

.permanent-card__meta {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.permanent-card__meta li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
  color: rgba(255, 250, 255, 0.82);
}

.permanent-card__meta strong {
  color: var(--pink-soft);
}

.manicure-showcase {
  margin-top: 22px;
  padding: 24px;
  border-color: rgba(48, 29, 61, 0.1);
  display: grid;
  gap: 14px;
}

.manicure-showcase__head {
  display: grid;
  gap: 8px;
}

.manicure-showcase__head h3 {
  margin: 0;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  color: var(--plum);
  line-height: 1.3;
}

.carousel--manicure {
  padding: 14px 14px 52px;
  border-color: rgba(48, 29, 61, 0.12);
  background: rgba(48, 29, 61, 0.04);
  box-shadow: var(--shadow-soft);
}

.carousel--manicure .carousel__button {
  color: var(--plum);
  border-color: rgba(48, 29, 61, 0.24);
  background: rgba(255, 255, 255, 0.8);
}

.carousel--manicure .carousel__button:hover {
  background: rgba(255, 53, 221, 0.16);
}

.manicure-slide figcaption,
.portfolio-slide figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 4px 0;
}

.manicure-slide strong,
.portfolio-slide strong {
  font-family: "Comfortaa", "Segoe UI", sans-serif;
}

.manicure-slide span,
.portfolio-slide span {
  color: rgba(255, 250, 255, 0.78);
}

.carousel--manicure .manicure-slide span {
  color: var(--plum-soft);
}

.portfolio-carousel {
  margin-top: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}

.team-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #2f2232;
}

.team-card div {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.team-card p,
.team-card h3 {
  margin: 0;
}

.team-card p {
  color: rgba(255, 250, 255, 0.7);
  font-size: 0.95rem;
}

.team-card h3 {
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.28;
}

.team-card span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--pink-soft);
  background: rgba(255, 53, 221, 0.14);
  font-weight: 900;
}

.team-roster {
  margin-top: 22px;
  padding: 26px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(48, 29, 61, 0.1);
  color: var(--plum);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #f6eff6;
  box-shadow: var(--shadow-soft);
}

.team-roster span {
  display: block;
  margin-bottom: 16px;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.team-roster ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-roster li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(48, 29, 61, 0.06);
}

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

.review-card {
  min-height: 236px;
  padding: 24px;
  border-radius: var(--radius-xl);
  color: var(--plum);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(246, 222, 246, 0.9));
  border-color: rgba(48, 29, 61, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.review-card p {
  flex: 1;
  margin: 0 0 20px;
  line-height: 1.6;
  font-size: 0.96rem;
  color: var(--plum-soft);
}

.review-card strong,
.contacts__card strong {
  display: block;
  font-size: 1.08rem;
}

.review-card span {
  display: inline-flex;
  margin-top: 8px;
  color: #7b2b72;
  font-weight: 900;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.review-shot {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(48, 29, 61, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.review-shot img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

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

.price-group {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.price-group summary {
  position: relative;
  cursor: pointer;
  padding: 24px 26px;
  font-family: "Comfortaa", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  list-style: none;
}

.price-group summary::-webkit-details-marker {
  display: none;
}

.price-group summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 1.4rem;
  color: var(--pink-soft);
}

.price-group[open] summary {
  color: var(--pink-soft);
  background: rgba(255, 53, 221, 0.08);
}

.price-group[open] summary::after {
  content: "−";
}

.price-group ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 26px 26px;
}

.price-group li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--white-soft);
  line-height: 1.5;
}

.price-group strong {
  flex: 0 0 auto;
  color: var(--pink-soft);
  font-family: "Comfortaa", "Segoe UI", sans-serif;
}

.price-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
}

.price-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.price-footer p {
  margin: 0;
  color: var(--plum-soft);
  line-height: 1.6;
}

.price-footer h3 {
  margin: 6px 0 14px;
  color: var(--plum);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
}

.contacts__copy,
.contacts__card {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.contacts__copy p:not(.eyebrow) {
  max-width: 54ch;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--white-soft);
}

.contacts__copy strong {
  color: var(--white);
}

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

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contacts__card {
  color: var(--plum);
  border-color: rgba(48, 29, 61, 0.08);
}

.contacts__card p {
  margin: 10px 0 22px;
  color: var(--plum-soft);
  line-height: 1.65;
}

.contacts__card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
}

.contacts__card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(48, 29, 61, 0.1);
  color: var(--plum-soft);
}

.contacts__card li strong {
  color: var(--plum);
  text-align: right;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 88px;
  padding: 24px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 255, 0.62);
}

.footer__links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__links a:hover {
  color: var(--pink-soft);
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(calc(100vw - 20px), 560px);
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 7, 12, 0.9);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-cta a:first-child,
.mobile-cta a:last-child {
  background: linear-gradient(135deg, var(--pink), #8e3cff);
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero,
  .proof,
  .contacts,
  .price-footer {
    grid-template-columns: 1fr;
  }

  .hero__story,
  .hero__workspace {
    min-height: 0;
  }

  .trust-grid,
  .permanent-grid,
  .team-grid,
  .review-grid,
  .price-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-shell {
    width: min(calc(100vw - 20px), 100%);
  }

  .topbar {
    top: 12px;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(14, 9, 16, 0.96);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .menu .button {
    margin-top: 8px;
  }

  .hero,
  .trust,
  .proof,
  .services,
  .portfolio,
  .team,
  .reviews,
  .prices,
  .contacts {
    padding-top: 74px;
  }

  .workspace-grid,
  .proof__grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100vw - 16px), 100%);
    padding-bottom: 108px;
  }

  .topbar {
    top: 8px;
    gap: 12px;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 8.6vw, 3.2rem);
    line-height: 1.02;
  }

  .hero__workspace-head h2,
  .proof__panel h2,
  .section-head h2,
  .contacts h2,
  .price-footer h3 {
    font-size: clamp(1.52rem, 6.4vw, 2.14rem);
    line-height: 1.1;
  }

  .hero__lead,
  .hero__workspace-head p,
  .contacts__copy p:not(.eyebrow),
  .price-footer p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .permanent-grid,
  .trust-grid,
  .team-grid,
  .review-grid,
  .price-groups,
  .review-wall {
    grid-template-columns: 1fr;
  }

  .hero__story,
  .hero__workspace,
  .proof__panel,
  .trust-card,
  .contacts__copy,
  .contacts__card,
  .review-card,
  .team-roster {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__story,
  .hero__workspace {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .workspace-card {
    min-height: 0;
    padding: 18px;
  }

  .workspace-card--image {
    min-height: 280px;
  }

  .carousel {
    padding: 12px 12px 50px;
  }

  .carousel__button {
    width: 36px;
    height: 36px;
    margin-top: -24px;
  }

  .carousel__button--prev {
    left: 14px;
  }

  .carousel__button--next {
    right: 14px;
  }

  .service-slide {
    min-height: 430px;
  }

  .service-slide__content h3 {
    font-size: 1.2rem;
  }

  .permanent-card,
  .manicure-showcase {
    padding: 18px;
  }

  .carousel,
  .team-card,
  .review-card,
  .price-group,
  .price-footer {
    border-radius: 24px;
  }

  .price-group summary {
    padding: 20px;
    font-size: 1rem;
  }

  .price-group summary::after {
    top: 18px;
    right: 20px;
  }

  .price-group ul {
    padding: 0 20px 20px;
  }

  .price-group li,
  .contacts__card li {
    flex-direction: column;
    gap: 4px;
  }

  .contacts__card li strong {
    text-align: left;
  }

  .price-actions {
    margin-bottom: 18px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .mobile-cta {
    bottom: 8px;
    width: calc(100vw - 16px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-cta a:last-child {
    grid-column: 1 / -1;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 64px;
    padding-bottom: 120px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding-right: 10px;
  }

  .brand__logo {
    max-width: 140px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .price-actions .button {
    width: 100%;
  }

  .contact-links {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-links a,
  .quick-links a {
    min-height: 42px;
    font-size: 0.88rem;
  }

  .hero__facts li {
    padding: 16px;
  }

  .hero__facts strong {
    font-size: 1.4rem;
  }

  .carousel__button {
    width: 32px;
    height: 32px;
    margin-top: -20px;
    font-size: 0.86rem;
  }

  .carousel__button--prev {
    left: 10px;
  }

  .carousel__button--next {
    right: 10px;
  }

  .carousel__dot.is-active {
    width: 20px;
  }

  .service-slide__content,
  .workspace-card__overlay {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}
