:root {
  --bg: #ffffff;
  --bg-soft: #f8f4f1;
  --bg-warm: #f1e8e2;
  --bg-dark: #1c1418;
  --text: #1f1a1c;
  --text-muted: #6a5f64;
  --line: rgba(40, 24, 30, 0.1);
  --accent: #030102;
  --accent-deep: #2b0e1d;
  --accent-soft: rgba(226, 24, 125, 0.1);
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(40, 18, 28, 0.08);
  --radius: 4px;
  --radius-lg: 18px;
  --container: 1120px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --espresso: #141014;
  --blush: #f1d8ce;
  --grad-warm: linear-gradient(135deg, #e9c4b7, #c4826e, #a9654f);
  --r-md: 18px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(1000px 520px at 92% -8%, rgba(226, 24, 125, 0.08), transparent 55%),
    radial-gradient(820px 460px at -8% 18%, rgba(241, 232, 226, 0.95), transparent 52%),
    linear-gradient(rgba(40, 24, 30, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 24, 30, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px, 28px 28px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(30, 16, 24, 0.05);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.logo__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  letter-spacing: 0;
}

.logo__accent {
  color: var(--accent);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease) !important;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.header__phone {
  display: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  margin-left: auto;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(226, 24, 125, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(31, 26, 28, 0.18);
  color: var(--text);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  min-height: 40px;
  padding: 0.6rem 1rem;
}

.text-link {
  display: inline-block;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--accent);
  font-weight: 650;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.section-head__text {
  color: var(--text-muted);
  margin: 0;
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

.hero__trust li {
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.hero__trust strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.hero__media {
  position: relative;
}

.hero__frame {
  position: relative;
  border-radius: 28px 28px 80px 28px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}

.hero__frame:hover img {
  transform: scale(1.06);
}

.hero__badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
}

.hero__badge span {
  display: block;
  font-weight: 700;
}

.hero__badge small {
  color: var(--text-muted);
}

.hero__glow {
  position: absolute;
  inset: auto -10% -20% 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(226, 24, 125, 0.12), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.services,
.portfolio,
.prices,
.designs,
.booking,
.promo,
.about,
.courses {
  position: relative;
}

.services::before,
.portfolio::before,
.prices::before,
.designs::before,
.booking::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(180px, 40%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(40, 24, 30, 0.18), transparent);
}

.services {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.6rem 1.4rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.about {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(640px 300px at 0% 40%, rgba(226, 24, 125, 0.05), transparent 55%),
    linear-gradient(180deg, transparent, var(--bg-soft) 20%, var(--bg-soft) 80%, transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.about__media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

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

.about__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.about__content>p {
  color: var(--text-muted);
}

.checklist {
  list-style: none;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.checklist--light li {
  color: #f7eef2;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.portfolio {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(800px 360px at 100% 0%, rgba(226, 24, 125, 0.05), transparent 50%),
    linear-gradient(180deg, transparent, rgba(241, 232, 226, 0.65), transparent);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  touch-action: pan-y;
  outline: none;
}

.carousel__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 min(78%, 420px);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 30px rgba(30, 16, 24, 0.08);
}

.carousel__slide img,
.carousel__slide video,
.carousel__slide .media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-video {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1a1216;
}

.media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  z-index: 2;
}

.media-video__play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent currentColor;
}

.media-video__play:hover {
  transform: scale(1.06);
  background: #fff;
}

.media-video.is-playing .media-video__play {
  opacity: 0;
  pointer-events: none;
}

.carousel__controls {
  display: flex;
  gap: 0.5rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.carousel__btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(31, 26, 28, 0.18);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.carousel__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--accent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.work-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-soft);
  cursor: pointer;
  isolation: isolate;
}

.work-card img,
.work-card video,
.work-card .media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work-card:hover img,
.work-card:hover video {
  transform: scale(1.06);
}

.work-card--video:hover img,
.work-card--video:hover video {
  transform: none;
}

.prices {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 241, 0.85));
}

.prices__loading,
.designs__loading {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 1.75rem;
}

.price-tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.price-tab:hover {
  color: var(--text);
  border-color: rgba(40, 24, 30, 0.22);
  transform: translateY(-1px);
}

.price-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.prices__content {
  /* max-width: 720px; */
  margin: 0 auto;
}

.price-list {
  list-style: none;
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.35rem 0.45rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1.25rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border-radius: 0;
  border-bottom: 1px solid rgba(40, 24, 30, 0.06);
  transition: background 0.25s var(--ease);
}

.price-item:last-child {
  border-bottom: 0;
}

.price-item:hover {
  background: rgba(40, 24, 30, 0.03);
}

.price-item__name {
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.01em;
}

.price-item__duration {
  grid-column: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-item__price {
  grid-row: 1 / span 2;
  align-self: center;
  font-weight: 750;
  color: var(--text);
  white-space: nowrap;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.price-item__price em {
  font-style: normal;
  font-weight: 550;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--text-muted);
  margin-right: 0.28rem;
}

.prices__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.prices__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.designs {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(700px 320px at 80% 100%, rgba(226, 24, 125, 0.05), transparent 50%),
    linear-gradient(180deg, var(--bg-soft), #fff);
}

.designs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.design-card {
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  min-height: 180px;
}

.design-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(226, 24, 125, 0.25);
}

.design-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  color: var(--accent);
}

.design-card__icon svg {
  width: 100%;
  height: 100%;
}

.design-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.design-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.courses {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(700px 320px at 85% 20%, rgba(226, 24, 125, 0.25), transparent 60%),
    linear-gradient(135deg, #1f1418 0%, #2b1a22 45%, #3a1f2c 100%);
  color: #fff;
}

.courses__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.courses .eyebrow {
  color: #ff9cc8;
}

.courses__content>p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}

.courses__media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.courses__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.courses .btn--primary {
  margin-top: 0.5rem;
  background: #fff;
  color: var(--text);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.courses .btn--primary:hover,
.courses .btn--primary:focus-visible {
  background: #f7eef3;
  color: var(--text);
  transform: translateY(-2px);
}

.form-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.form-card--light {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin-bottom: 0.35rem;
}

.form-card__lead {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field>span,
.field legend {
  font-size: 0.84rem;
  font-weight: 650;
}

.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(40, 24, 30, 0.16);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  background: #fff;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field input:not([type="radio"]):not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.field--radio {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.field--radio legend {
  margin-bottom: 0.15rem;
}

.radio {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  cursor: pointer;
}

.radio input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.radio span {
  line-height: 1.35;
}

.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.consent input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.consent a {
  color: var(--accent);
  text-decoration: underline;
}

.form__status {
  min-height: 1.25em;
  margin: 0;
  font-size: 0.9rem;
}

.form__status.is-ok {
  color: #0f7a45;
}

.form__status.is-error {
  color: #b00030;
}

.g-recaptcha {
  transform-origin: left top;
}

.booking {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(226, 24, 125, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(248, 244, 241, 0.9));
}

.booking__banner {
  max-width: 720px;
}

.booking__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.booking__content>p {
  color: var(--text-muted);
  max-width: 52ch;
}

.booking__content .btn {
  margin-top: 0.35rem;
}

.contact-stack {
  margin: 1.5rem 0 1.35rem;
  display: grid;
  gap: 1rem;
}

.contact-pill {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.contact-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(226, 24, 125, 0.3);
}

.contact-pill span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-pill strong {
  font-size: 1.25rem;
}

.socials {
  display: flex;
  gap: 0.55rem;
}

.social {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.promo {
  margin: 0 0 0;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--bg-warm);
}

.promo__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.promo__text h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.promo__text p {
  color: var(--text-muted);
}

.promo__media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 4;
}

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

.footer {
  background: linear-gradient(180deg, #1a1418 0%, #0f0c0e 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(50px, 6vw, 74px) 0 26px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__col--brand {
  max-width: 340px;
}

.footer__about {
  margin: 16px 0 20px;
  font-size: 13.8px;
  line-height: 1.65;
}

.footer__title {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.footer__list {
  display: grid;
  gap: 11px;
  font-size: 14px;
}

.footer__list a {
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}

.footer__list a:hover {
  color: var(--blush);
  transform: translateX(4px);
}

.footer .socials {
  gap: 10px;
}

.soc {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: transform 0.35s var(--ease-spring), background 0.3s, border-color 0.3s;
}

.soc:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.soc--on-light {
  background: rgba(3, 1, 2, 0.05);
  border: 1px solid rgba(3, 1, 2, 0.12);
  color: var(--text);
}

.soc--on-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0;
}

.legal-block {
  flex: 1 1 220px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.legal-block__value {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.4px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__disclaimer {
  max-width: 520px;
}

.logo--light {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo--light .logo__mark {
  background: #fff;
  color: #111;
}

.logo--light .logo__text {
  color: #fff;
  text-transform: none;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.logo--light .logo__text b {
  color: var(--blush);
  font-weight: 700;
}

.logo--light .logo__text i {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.1rem;
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2000;
  animation: slideUp 0.45s var(--ease);
}

.cookie__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  background: rgba(28, 20, 24, 0.96);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.cookie p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}

.cookie a {
  color: #ff9cc8;
  text-decoration: underline;
}

.legal-page {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}

.legal-page article {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 1.8rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

.legal-page ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.22s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.designs__grid,
.portfolio-grid {
  animation: fadeIn 0.55s var(--ease);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal[hidden] {
  display: none !important;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 14, 0.62);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(90vh, 860px);
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  animation: modalIn 0.35s var(--ease);
}

.modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(40, 24, 30, 0.06);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  background: rgba(40, 24, 30, 0.12);
}

.modal__head {
  padding-right: 2rem;
  margin-bottom: 1rem;
}

.modal__lead {
  color: var(--text-muted);
  margin: 0;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(12, 8, 10, 0.88);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__inner {
  width: min(100%, 900px);
  max-height: 85vh;
  position: relative;
}

.lightbox__inner img,
.lightbox__inner video,
.lightbox__inner .media-video {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  background: #111;
}

.lightbox__inner .media-video {
  aspect-ratio: 9 / 16;
  max-width: min(100%, 420px);
  margin: 0 auto;
}

.lightbox__inner .media-video video {
  border-radius: 12px;
}

.lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 980px) {

  .hero__grid,
  .about__grid,
  .courses__grid,
  .promo__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .courses__media {
    max-width: 420px;
    margin: 0 auto;
  }

  .services__grid,
  .designs__grid,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header__phone {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    margin: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0.4rem;
    font-size: 0.9rem;
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.4rem;
  }

  .burger {
    display: inline-block;
  }

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

  .section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel__slide {
    flex-basis: 85%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .services__grid,
  .designs__grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .modal__dialog {
    padding: 1.25rem 1rem 1.1rem;
    border-radius: 18px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

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

  .hero__frame {
    border-radius: 22px;
  }

  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .g-recaptcha {
    transform: scale(0.92);
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}