/* MAKE KULT — modern studio site */
:root {
  --bg: #f3f0f2;
  --bg-2: #ebe6ea;
  --ink: #1f1a1c;
  --muted: #6a6064;
  --line: rgba(31, 26, 28, 0.12);
  --rose: #9a5b6a;
  --rose-deep: #7d4554;
  --champagne: #b7a08a;
  --white: #fcfafb;
  --shadow: 0 18px 50px rgba(31, 26, 28, 0.08);
  --radius: 18px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --container: 1180px;
  --header-h: 78px;
}

*,
*::before,
*::after { box-sizing: border-box; }

/* clip, а не hidden: hidden делает элемент scroll-контейнером и ломает position: sticky у потомков */
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 8% -10%, rgba(183, 160, 138, 0.16), transparent 58%),
    radial-gradient(900px 520px at 100% 0%, rgba(154, 91, 106, 0.14), transparent 55%),
    linear-gradient(180deg, #f7f4f6 0%, var(--bg) 42%, #ece7eb 100%);
  background-attachment: fixed;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-deep); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 760px); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 560;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(164, 92, 102, 0.28);
}
.btn--primary:hover { color: #fff; filter: brightness(1.05); }
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--light {
  background: rgba(255,252,249,0.88);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn--sm { padding: 0.65rem 1rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(246, 241, 236, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 252, 249, 0.92);
  box-shadow: 0 10px 30px rgba(36,30,27,0.05);
}
.header-top {
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.header-top__inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
}
.header-top a { color: inherit; text-decoration: none; }
.header-top a:hover { color: var(--rose-deep); }
.header-top__addr { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header-main__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__logo { width: 52px; height: 52px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand__sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav { margin-left: auto; }
.nav__list { display: flex; gap: 0.15rem; align-items: center; }
.nav__item { position: relative; }
.nav__item > a {
  display: block;
  padding: 0.7rem 0.75rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__item.is-active > a,
.nav__item > a:hover { color: var(--rose-deep); }
.nav__sub {
  position: absolute;
  top: calc(100% - 0.2rem);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;
  max-height: 70vh;
  overflow: auto;
}
.nav__item:hover > .nav__sub,
.nav__item:focus-within > .nav__sub {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.nav__sub a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
}
.nav__sub a:hover { background: var(--bg-2); }
.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.header-social {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,252,249,0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.header-social svg { width: 16px; height: 16px; display: block; }
.header-social:hover {
  color: #fff;
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: translateY(-1px);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0.35rem 0 0;
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  place-items: center;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink);
  transition: .25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
.hero--home .hero__img {
  object-fit: cover;
  object-position: 70% center;
  transform: none;
  animation: none;
}
.hero__wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(24,18,16,0.78) 0%, rgba(24,18,16,0.45) 48%, rgba(24,18,16,0.2) 100%),
    linear-gradient(0deg, rgba(24,18,16,0.55), transparent 45%);
}
.hero--home .hero__wash {
  background:
    rgba(20, 15, 14, 0.28),
    linear-gradient(90deg, rgba(28, 22, 20, 0.78) 0%, rgba(28, 22, 20, 0.48) 36%, rgba(28, 22, 20, 0.28) 62%, rgba(28, 22, 20, 0.22) 100%),
    linear-gradient(0deg, rgba(28, 22, 20, 0.5) 0%, transparent 50%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4.5rem;
  max-width: 780px;
  margin-left: max(1rem, calc((100% - var(--container)) / 2));
  animation: rise 0.9s ease both;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.4rem;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.hero h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  color: #fff;
  max-width: 16ch;
  margin-bottom: 0.8rem;
}
.hero__lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.page-hero {
  padding: 3.2rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,252,249,0.65), transparent);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  max-width: 100%;
  line-height: 1.12;
}
.service-hero h1 {
  max-width: 100%;
  letter-spacing: -0.01em;
}
.page-hero__desc { max-width: 54ch; font-size: 1.05rem; }
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center;
  font-size: 0.86rem; color: var(--muted); margin-bottom: 1rem;
}
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--rose-deep); }

.section { padding: 4.5rem 0; }
.section--tint {
  background: rgba(255, 252, 249, 0.55);
  border-block: 1px solid var(--line);
}
.section-head { margin-bottom: 2rem; max-width: 640px; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.section-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.pros__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pros article {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255,252,249,0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.pros h2 { font-size: 1.55rem; margin-bottom: 0.4rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.service-grid--lg { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.service-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 180px;
  padding: 1.15rem;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #3a2f2b, #1f1917);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55;
  transition: transform .5s ease, opacity .3s ease;
}
.service-card span {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(20,14,12,0.78));
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(36,30,27,0.16); color: #fff; }
.service-card:hover img { transform: scale(1.06); opacity: 0.7; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.split__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: #ddd;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.split__copy h2 { font-size: clamp(2rem, 3.5vw, 3rem); }

.feature-list { display: grid; gap: 0.85rem; }
.feature-list li {
  position: relative;
  padding: 1rem 1rem 1rem 2.4rem;
  background: rgba(255,252,249,0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
}
.feature-list li::before {
  content: "";
  position: absolute; left: 1rem; top: 1.25rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose);
}

.prose-block h2 { font-size: 2rem; margin-top: 1.5rem; }
.prose-block a { font-weight: 500; }
.prose-block p { margin: 0 0 1rem; }
.prose-block ul, .prose-block ol {
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
}
.prose-block li { line-height: 1.55; }
.prose-block strong { font-weight: 650; color: var(--ink); }

.service-hero .page-hero__desc { max-width: 52ch; }

.contact-hero .page-hero__desc { max-width: 46ch; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.contact-card {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: 22px;
  background: rgba(255,252,249,0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
a.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(40, 24, 28, 0.12);
}
.contact-card h2 {
  font-size: 1.45rem;
  margin: 0;
  line-height: 1.2;
}
.contact-card p { margin: 0; color: var(--muted); }
.contact-card__links {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.25rem;
}
.contact-card__links a {
  display: grid;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
  padding: 0.55rem 0.7rem;
  border-radius: 14px;
  background: rgba(154, 91, 106, 0.06);
  border: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.contact-card__links a:hover {
  border-color: rgba(154, 91, 106, 0.28);
  background: rgba(154, 91, 106, 0.1);
}
.contact-card__links strong { font-size: 0.98rem; }
.contact-card__links span { font-size: 0.82rem; color: var(--muted); }
.contact-main {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-map .section-head { margin-bottom: 1rem; }
.contact-map__note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-form-card h2 { font-size: 1.55rem; margin-bottom: 0.35rem; }
.contact-form-card > p { margin: 0 0 1rem; color: var(--muted); }

@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .contact-main { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.service-cover {
  margin: 0 0 1.75rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #ebe3df;
}
.service-cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}
.service-intro {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.service-cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  margin: 0 0 2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(154,91,106,0.12), rgba(255,252,249,0.9));
  border: 1px solid var(--line);
}
.service-cta-inline h2 {
  font-size: 1.55rem;
  margin: 0.15rem 0 0.35rem;
}
.service-cta-inline p { margin: 0; color: var(--muted); }
.service-video {
  margin: 0 0 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  aspect-ratio: 16 / 9;
}
.service-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.service-section {
  margin: 0 0 2.25rem;
  padding-bottom: 0.25rem;
}
.service-section > h2 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  margin: 0 0 0.85rem;
}
.service-section__lead {
  color: var(--muted);
  margin: -0.35rem 0 1rem;
}
.service-callout {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
  padding: 1.25rem 1.4rem;
  margin: 0 0 2rem;
  border-left: 3px solid var(--rose);
  background: rgba(255,252,249,0.75);
  border-radius: 0 18px 18px 0;
}
.service-callout p { margin: 0; }
.service-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.service-related__item {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,252,249,0.9);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  transition: border-color .2s ease, background .2s ease;
}
.service-related__item:hover {
  border-color: var(--rose);
  background: rgba(154,91,106,0.08);
}
.service-article .studio-gallery {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .service-cta-inline { flex-direction: column; align-items: stretch; }
  .service-article .studio-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-article .studio-gallery { grid-template-columns: 1fr 1fr; }
}


.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 360px;
  background: var(--bg-2);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

.content-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 2rem;
  align-items: start;
}
.content-aside { position: sticky; top: calc(var(--header-h) + 2.5rem); display: grid; gap: 1rem; }
.aside-card {
  background: rgba(255,252,249,0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.aside-card--soft { background: transparent; box-shadow: none; }
.aside-card h2, .aside-card h3 { font-size: 1.55rem; }
.aside-links { display: grid; gap: 0.45rem; }
.aside-links a { text-decoration: none; color: var(--ink); font-size: 0.95rem; }
.aside-links a:hover { color: var(--rose-deep); }

.content-cover {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content-cover img { width: 100%; max-height: 460px; object-fit: cover; }

/* Cleaned WP / Elementor content */
.wp-content {
  font-size: 1.02rem;
}
.wp-content .elementor-section,
.wp-content .elementor-container,
.wp-content .elementor-widget-wrap,
.wp-content .elementor-element {
  display: contents;
}
.wp-content .elementor-widget-container { margin-bottom: 1rem; }
.wp-content img {
  border-radius: 14px;
  margin: 0.5rem 0 1rem;
  box-shadow: var(--shadow);
}
.wp-content h1, .wp-content h2, .wp-content h3, .wp-content h4 {
  color: var(--ink);
  margin-top: 1.4rem;
}
.wp-content p, .wp-content li { color: var(--muted); }
.wp-content ul { list-style: disc; padding-left: 1.2rem; margin-bottom: 1rem; }
.wp-content ol { list-style: decimal; padding-left: 1.2rem; margin-bottom: 1rem; }
.wp-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.95rem; }
.wp-content td, .wp-content th { border: 1px solid var(--line); padding: 0.55rem 0.7rem; text-align: left; }
.wp-content .elementor-button,
.wp-content .elementor-button-link {
  display: inline-flex;
  margin: 0.4rem 0.4rem 0.4rem 0;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--rose);
  color: #fff !important;
  text-decoration: none;
  font-weight: 560;
}
.wp-content .elementor-gallery__container,
.wp-content .e-gallery,
.gallery-preserve .elementor-gallery__container {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}
.wp-content .e-gallery-item,
.wp-content .elementor-gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-2);
}
.wp-content .e-gallery-item img,
.wp-content .elementor-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; margin: 0; border-radius: 0; box-shadow: none;
}
.wp-content #breadcrumbs { display: none; }
.wp-content .elementor-image-box-wrapper {
  display: grid; gap: 0.75rem; margin-bottom: 1.5rem;
}

.masters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .masters-grid { grid-template-columns: repeat(2, 1fr); }
}
.master-card {
  background: rgba(255,252,249,0.85);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem 1rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.master-card__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  width: 100%;
  margin: 0 auto 1rem;
  background: #ebe3df;
}
.master-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.master-card__badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  left: auto;
  bottom: auto;
  z-index: 1;
  transform: none;
  max-width: calc(100% - 1.1rem);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 26, 28, 0.78);
  color: #fcfafb;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.master-card h2,
.master-card h3 { font-size: 1.55rem; margin-bottom: 0.35rem; }
.masters-grid--home .master-card {
  padding: 0.85rem 0.85rem 1.15rem;
}
.masters-grid--home .master-card p { font-size: 0.92rem; }
.masters-grid--home .hero__actions { margin-top: 0.75rem; }
.master-card .hero__actions { justify-content: center; margin-top: 1rem; }

.sale-list { display: grid; gap: 1rem; }
.sale-card {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,252,249,0.8);
}
.sale-card h2 { font-size: 1.7rem; }
.sale-card h2 a { color: inherit; text-decoration: none; }
.text-link { font-weight: 560; }

/* CTA / Footer */
.cta-band {
  padding: 3.5rem 0;
  background:
    linear-gradient(135deg, rgba(164,92,102,0.12), rgba(196,162,122,0.16)),
    rgba(255,252,249,0.7);
  border-top: 1px solid var(--line);
}
.cta-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.cta-band h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--ink); }

.site-footer {
  background: #1d1714;
  color: rgba(255,252,249,0.78);
  padding: 3.5rem 0 1.5rem;
}
.site-footer a { color: rgba(255,252,249,0.9); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand p { color: rgba(255,252,249,0.7); }
.brand--footer .brand__name { color: #fff; letter-spacing: 0.1em; }
.footer-links { display: grid; gap: 0.45rem; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
}

/* Forms */
.lead-form { display: grid; gap: 0.85rem; }
.lead-form__fields { display: grid; gap: 0.85rem; }
.lead-form label span,
.lead-form legend {
  display: block;
  font-size: 0.82rem;
  font-weight: 560;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(164,92,102,0.55);
  box-shadow: 0 0 0 4px rgba(164,92,102,0.12);
}
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.lead-form--compact .lead-form__row { grid-template-columns: 1fr; }
.lead-form__checks {
  display: grid;
  gap: 0.35rem;
  max-height: 220px;
  overflow: auto;
  padding-right: 0.25rem;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.check {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--muted); cursor: pointer;
}
.check input { margin-top: 0.2rem; }
.check a { color: var(--rose-deep); }
.lead-form__footer {
  display: grid;
  gap: 0.75rem;
}
.lead-form__hint { font-size: 0.85rem; margin: 0; }
.lead-form__status {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.92rem;
}
.lead-form__status.is-ok { background: rgba(54,120,80,0.12); color: #23553a; }
.lead-form__status.is-err { background: rgba(164,92,102,0.15); color: var(--rose-deep); }
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; }

/* Modal */
.lead-modal[hidden] { display: none !important; }
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow: hidden;
}
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24,18,16,0.55);
  backdrop-filter: blur(4px);
}
.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: min(92vh, 92dvh);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  animation: rise .35s ease;
  overflow: hidden;
}
.lead-modal__close {
  position: absolute;
  right: 0.65rem;
  top: 0.45rem;
  z-index: 2;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
}
.lead-modal__head {
  flex: 0 0 auto;
  padding: 1.35rem 1.4rem 0.55rem;
  padding-right: 2.6rem;
}
.lead-modal__head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 4vw, 1.7rem);
  line-height: 1.2;
}
.lead-modal__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.lead-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0.2rem 0 0;
}
.lead-modal__body > [data-modal-form] {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0 1.4rem 1.15rem;
}
.lead-modal__body > [data-modal-form][hidden] {
  display: none !important;
}
.lead-modal .lead-form {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lead-modal .lead-form__fields {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: grid;
  gap: 0.7rem;
  padding-bottom: 0.75rem;
}
.lead-modal .lead-form__footer {
  flex: 0 0 auto;
  gap: 0.65rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.lead-modal .lead-form__checks {
  max-height: none;
}
.lead-modal .lead-form textarea { min-height: 3.8rem; }

@media (max-width: 640px) {
  .lead-modal {
    place-items: end center;
    padding: 0;
  }
  .lead-modal__dialog {
    width: 100%;
    max-height: min(94vh, 94dvh);
    border-radius: 20px 20px 0 0;
  }
  .lead-modal__head {
    padding: 1.05rem 1.1rem 0.45rem;
    padding-right: 2.5rem;
  }
  .lead-modal__body > [data-modal-form] {
    padding: 0 1.1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }
  .lead-modal .lead-form__row { grid-template-columns: 1fr; }
  .lead-modal .lead-form input[type="text"],
  .lead-modal .lead-form input[type="tel"],
  .lead-modal .lead-form select,
  .lead-modal .lead-form textarea {
    padding: 0.7rem 0.85rem;
  }
  .lead-modal .lead-form__hint { font-size: 0.8rem; }
  .lead-modal .lead-form__footer { gap: 0.55rem; }
}

.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 80;
  display: flex; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem;
  background: rgba(255,252,249,0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.cookie-bar p { margin: 0; font-size: 0.88rem; }
.cookie-bar[hidden] { display: none !important; }

.float-actions {
  position: fixed;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 70;
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  gap: 0.4rem;
  max-width: calc(100% - 1.7rem);
}
.float-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.68rem 0.95rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(31, 26, 28, 0.18);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.float-actions__btn svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  display: block;
}
.float-actions__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: #fff;
}
.float-actions__btn:active { transform: translateY(0); }
.float-actions__btn--book {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
}
.float-actions__btn--call {
  background: var(--ink);
  color: #fff;
}

.reveal { animation: rise .7s ease both; animation-delay: var(--d, 0ms); }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  /* backdrop-filter на шапке ломает position:fixed у потомков — снимаем при открытом меню */
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(252, 250, 251, 0.98);
  }
  body.nav-open .nav {
    display: block;
    position: fixed;
    top: var(--mobile-nav-top, 112px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: #f6f1ec;
    padding: 0.75rem 1rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  body.nav-open .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
  body.nav-open .nav__item > a {
    padding: 0.9rem 0.85rem;
    font-size: 1.05rem;
    border-radius: 12px;
  }
  body.nav-open .nav__item.has-sub > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  body.nav-open .nav__item.has-sub > a::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }
  body.nav-open .nav__item.has-sub.is-expanded > a::after {
    transform: rotate(-135deg);
    margin-top: 0.25rem;
  }
  body.nav-open .nav__sub {
    display: none;
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0.4rem 0.65rem;
    max-height: none;
    min-width: 0;
    overflow: visible;
  }
  body.nav-open .nav__item.has-sub.is-expanded > .nav__sub {
    display: block;
  }
  body.nav-open .nav__sub a {
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    color: var(--muted);
  }
  .nav-toggle { display: inline-flex; }
  body.nav-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  body.nav-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .pros__grid, .split, .content-layout, .cta-band__grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .masters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
  .master-card {
    padding: 0.55rem 0.55rem 0.85rem;
    border-radius: 16px;
  }
  .master-card__photo {
    border-radius: 12px;
    margin-bottom: 0.55rem;
  }
  .master-card__badge {
    font-size: 0.6rem;
    padding: 0.28rem 0.45rem;
    top: 0.4rem;
    right: 0.4rem;
    max-width: calc(100% - 0.8rem);
  }
  .master-card h2,
  .master-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
  }
  .master-card p {
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 0;
  }
  .master-card .hero__actions {
    margin-top: 0.55rem;
  }
  .master-card .btn--sm {
    width: 100%;
    padding: 0.5rem 0.55rem;
    font-size: 0.78rem;
  }
  .content-aside { position: static; }
  .header-top__addr { display: none; }
  .split__media, .split__media img { min-height: 320px; }
  .float-actions { bottom: 5.5rem; }
}

.seo-prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.seo-prose--wide {
  max-width: 920px;
  margin-top: 2.5rem;
}
.seo-prose p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.seo-prose h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
  color: var(--ink);
}
.seo-prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.75rem;
}
.seo-prose > ul:not(.feature-list) li {
  position: relative;
  padding: 1rem 1rem 1rem 2.4rem;
  background: rgba(255,252,249,0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.seo-prose > ul:not(.feature-list) li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.3rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}
.seo-prose .feature-list {
  margin: 1.1rem 0 1.25rem;
}
.seo-prose a {
  font-weight: 500;
  color: var(--rose-deep);
}
.narrow-head {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.home-about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.home-about__card {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 0.85rem 1.25rem;
  border-radius: 22px;
  background: rgba(255,252,249,0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.home-about__card:hover { transform: translateY(-4px); }
.home-about__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1rem;
  background: var(--bg-2);
}
.home-about__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.home-about__card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}
.home-about__card p {
  flex: 1;
  margin-bottom: 0.85rem;
}
.text-link {
  font-weight: 560;
  text-decoration: none;
  color: var(--rose-deep);
}
.text-link:hover { color: var(--ink); }

.home-dirs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.home-dirs__card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
  aspect-ratio: 16 / 10;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow);
}
.home-dirs__card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.home-dirs__card:hover img { transform: scale(1.06); }
.home-dirs__overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent 35%, rgba(18,12,14,0.8));
}
.home-dirs__overlay strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}
.home-dirs__overlay em {
  font-style: normal;
  font-size: 0.88rem;
  opacity: 0.88;
  margin-top: 0.25rem;
}
.home-dirs__seo {
  margin-top: 1.75rem;
}

.home-master {
  padding-block: 3.25rem;
}
.home-master__grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: rgba(252, 250, 251, 0.92);
  box-shadow: var(--shadow);
}
.home-master__photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 280px;
  background: var(--bg-2);
}
.home-master__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.home-master__copy h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-bottom: 0.55rem;
}
.home-master__copy p {
  margin-bottom: 0.75rem;
  max-width: 54ch;
}
.home-master__copy .hero__actions { margin-top: 0.35rem; }

.home-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.home-contact__card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(252, 250, 251, 0.92);
  box-shadow: var(--shadow);
}
.home-contact__card > .eyebrow { margin-bottom: 0.45rem; }
.home-contact__card > p { margin: 0; }
.home-contact__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 0.35rem;
}
.home-contact__phone:hover { color: var(--rose-deep); }
.home-contact__addr {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
}
.home-contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}
.home-contact__links a {
  font-weight: 560;
  text-decoration: none;
  color: var(--rose-deep);
}
.home-contact__links a:hover { color: var(--ink); }

.svc-stage {
  position: relative;
  padding: 5rem 0 4.5rem;
  color: #f7f2f3;
  background:
    radial-gradient(900px 480px at 12% 0%, rgba(183, 160, 138, 0.22), transparent 55%),
    radial-gradient(700px 420px at 92% 18%, rgba(154, 91, 106, 0.28), transparent 50%),
    linear-gradient(165deg, #2c2326 0%, #1a1517 48%, #121012 100%);
  overflow: hidden;
}
.svc-stage::before {
  content: "";
  position: absolute;
  inset: auto 0 -30% 40%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(154, 91, 106, 0.18), transparent 68%);
  pointer-events: none;
}
.svc-stage .container { position: relative; z-index: 1; }
.svc-stage__head {
  max-width: 34rem;
  margin-bottom: 2.25rem;
}
.svc-stage__head h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  margin-bottom: 0.55rem;
}
.svc-stage__head p { color: rgba(247, 242, 243, 0.72); margin: 0; }
.eyebrow--light { color: var(--champagne); }

.svc-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.svc-tile {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  min-height: 280px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform .35s ease, box-shadow .35s ease;
}
.svc-tile:hover,
.svc-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.4);
  color: #fff;
  outline: none;
}
.svc-tile__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #3a2f2b, #1f1917);
}
.svc-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s ease;
}
.svc-tile:hover .svc-tile__media img,
.svc-tile:focus-visible .svc-tile__media img {
  transform: scale(1.08);
}
.svc-tile__media.is-fallback::after {
  content: "MAKE KULT";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}
.svc-tile__media.is-fallback img { display: none; }
.svc-tile__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  padding: 4.5rem 1.05rem 1.05rem;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 9, 10, 0.55) 38%, rgba(12, 9, 10, 0.88) 100%);
}
.svc-tile__num {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 650;
  color: var(--champagne);
}
.svc-tile__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.15;
}
.svc-tile__blurb {
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(247, 242, 243, 0.78);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-stage__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

.home-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.home-svc {
  display: grid;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s ease;
}
.home-svc:hover { transform: translateY(-3px); color: var(--ink); }
.home-svc__img {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, #3a2f2b, #1f1917);
  box-shadow: var(--shadow);
}
.home-svc__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.home-svc__img.is-fallback::after {
  content: "MAKE KULT";
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}
.home-svc__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .home-about__grid,
  .home-dirs__grid,
  .home-contact {
    grid-template-columns: 1fr;
  }
  .home-master__grid {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 1.15rem;
  }
  .home-master__photo { max-height: 220px; }
  .home-dirs__card {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .svc-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .svc-tile { min-height: 260px; }
  .home-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-dirs__card { min-height: 180px; }
}

@media (max-width: 640px) {
  .svc-stage { padding: 3.5rem 0 3.25rem; }
  .svc-mosaic { gap: 0.65rem; }
  .svc-tile { min-height: 220px; border-radius: 14px; }
  .svc-tile__body { padding: 3.2rem 0.85rem 0.85rem; }
  .svc-tile__blurb { display: none; }
  .svc-stage__foot .btn { flex: 1 1 auto; }
  .home-svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-master__grid {
    grid-template-columns: 1fr;
  }
  .home-master__photo {
    max-height: 260px;
    max-width: 220px;
    margin-inline: auto;
  }
}

/* ===== Training landing ===== */
.land-hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.land-hero__media { position: absolute; inset: 0; }
.land-hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
.land-hero__wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(20,14,16,0.82) 0%, rgba(20,14,16,0.5) 46%, rgba(20,14,16,0.22) 100%),
    linear-gradient(0deg, rgba(20,14,16,0.55), transparent 42%);
}
.land-hero__content {
  position: relative; z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 760px;
  margin-left: max(1rem, calc((100% - var(--container)) / 2));
  animation: rise .85s ease both;
}
.land-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.35rem;
  line-height: 0.95;
  color: #fff;
}
.land-hero__eyebrow { color: rgba(255,255,255,0.78); }
.land-hero h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  color: #fff;
  max-width: 14ch;
  margin-bottom: 0.75rem;
}
.land-hero__lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  max-width: 40ch;
  margin-bottom: 1.4rem;
}
.land-hero__chips {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin-top: 1.4rem;
}
.land-hero__chips li {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.08);
}
.land-hero .btn--primary {
  box-shadow: 0 14px 36px rgba(154, 91, 106, 0.45);
}
.land-hero .btn--light {
  background: rgba(255,252,249,0.95);
  color: var(--ink);
}

.land-stats {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,252,249,0.7);
}
.land-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.land-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1.1;
}
.land-stats span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.land-teacher__photo img { object-position: center top; }

.land-for {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.land-for article {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,252,249,0.85);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.land-for article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(31,26,28,0.1);
}
.land-for h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.price-grid--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}
.price-grid--two {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,252,249,0.92);
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.is-featured {
  border-color: rgba(154, 91, 106, 0.45);
  background:
    linear-gradient(180deg, rgba(154,91,106,0.08), rgba(255,252,249,0.96));
  box-shadow: 0 22px 50px rgba(154, 91, 106, 0.16);
}
.price-card__badge {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.15rem;
  padding-right: 4rem;
}
.price-card__sub {
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 2.35rem;
  color: var(--ink);
  margin: 0;
  line-height: 1;
  font-weight: 600;
}
.price-card__price span {
  font-size: 1.1rem;
  margin-right: 0.15rem;
  color: var(--rose);
}
.price-card__period {
  font-size: 0.86rem;
  margin: 0.35rem 0 1rem;
}
.price-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  flex: 1;
}
.price-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.35;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose);
}
.price-card__bonus {
  font-size: 0.84rem;
  color: var(--ink);
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(154, 91, 106, 0.08);
}

.land-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.land-gallery__item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.land-gallery__item:hover { transform: scale(1.02); }
.land-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
}

.home-works .section-head { margin-bottom: 1.5rem; }

/* Yandex reviews */
.award-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.award-chip img {
  width: 30px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}
.award-chip span { white-space: nowrap; }
a.award-chip:hover {
  border-color: var(--rose);
  box-shadow: 0 6px 18px rgba(31, 26, 28, 0.08);
}
.award-chip--sm {
  padding: 0.32rem 0.55rem;
  font-size: 0.8rem;
  border-radius: 8px;
}
.award-chip--sm img { width: 26px; }

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.reviews-score {
  background: var(--ink);
  color: #f7f2f4;
  padding: 1.7rem 1.35rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: center;
  box-shadow: var(--shadow);
}
.reviews-score__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 4.4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--champagne);
}
.reviews-score__stars {
  margin: 0;
  color: var(--champagne);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}
.reviews-score__label {
  margin: 0 0 0.15rem;
  color: rgba(247, 242, 244, 0.72);
  font-size: 0.94rem;
}
.reviews-awards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin: 0.1rem 0 0.4rem;
}
.reviews-awards__official {
  display: block;
  width: 150px;
  max-width: 100%;
  height: 50px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
}
.reviews-awards__years {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.reviews-awards__years .award-chip { width: 100%; }
.reviews-score .btn { width: 100%; justify-content: center; }
.reviews-score__ghost {
  border-color: rgba(247, 242, 244, 0.28);
  color: #f7f2f4;
  background: transparent;
}
.reviews-score__ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}
.reviews-widget {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.reviews-widget iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.reviews-widget__credit {
  box-sizing: border-box;
  text-decoration: none;
  color: #b3b3b3;
  font-size: 10px;
  font-family: var(--font-body);
  padding: 0 16px;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-height: 14px;
  white-space: nowrap;
}

.service-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.7rem;
  margin-top: 1.15rem;
}
.service-trust__rating {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.service-trust__rating:hover {
  color: var(--rose-deep);
  border-bottom-color: rgba(125, 69, 84, 0.35);
}

@media (max-width: 900px) {
  .reviews-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .reviews-widget { height: 420px; }
  .reviews-score { text-align: center; align-items: center; }
  .reviews-awards { align-items: center; width: 100%; max-width: 260px; }
  .reviews-awards__years { width: 100%; }
  .service-trust { gap: 0.45rem; }
}

.works-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  max-width: 100%;
}

.works-carousel__track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.35rem 0.15rem 0.85rem;
  outline: none;
  min-width: 0;
  max-width: 100%;
}

.works-carousel__track::-webkit-scrollbar { display: none; }

.works-carousel__slide {
  flex: 0 0 min(72vw, 280px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}

.works-carousel__slide:hover,
.works-carousel__slide:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(40, 24, 28, 0.14);
}

.works-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-carousel__nav {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.works-carousel__nav:hover,
.works-carousel__nav:focus-visible {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  outline: none;
}

.works-carousel__note {
  margin: 0.85rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .works-carousel {
    grid-template-columns: 1fr;
  }
  .works-carousel__nav {
    display: none;
  }
  .works-carousel__slide {
    flex-basis: min(78vw, 240px);
  }
}

.studio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.studio-gallery__item {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--bg-2);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.studio-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(40, 24, 28, 0.14);
}
.studio-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 14, 0.88);
}
.lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(1200px, 96vw);
  max-height: 92vh;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  background: #1a1214;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  cursor: pointer;
  background: rgba(255,252,249,0.92);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.lightbox__close {
  top: 0.5rem;
  right: 0.5rem;
}
.lightbox__nav--prev { left: 0.35rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 0.35rem; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0;
}

.land-video {
  margin-top: 1.75rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
}
.land-video video {
  display: block;
  width: 100%;
  max-height: 520px;
  background: #111;
}

.land-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.land-cta h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.land-cta__form h3 { font-size: 1.5rem; margin-bottom: 0.85rem; }

@media (max-width: 1100px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .land-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .land-for, .land-cta, .land-gallery { grid-template-columns: 1fr 1fr; }
  .studio-gallery { grid-template-columns: 1fr 1fr; }
  .split--reverse { direction: ltr; }
  .header-main__inner {
    justify-content: space-between;
    gap: 0.5rem;
    min-width: 0;
  }
  .header-actions {
    margin-left: auto;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 0.35rem;
  }
  .header-actions .btn--sm { display: none; }
  .header-social { width: 34px; height: 34px; }
  .brand { min-width: 0; }
  .brand__text { min-width: 0; }
}

@media (max-width: 640px) {
  .hero { min-height: 78vh; }
  .hero--home .hero__img { object-position: 78% center; }
  .hero--home .hero__wash {
    background:
      rgba(20, 15, 14, 0.32),
      linear-gradient(180deg, rgba(28, 22, 20, 0.58) 0%, rgba(28, 22, 20, 0.34) 42%, rgba(28, 22, 20, 0.58) 100%),
      linear-gradient(90deg, rgba(28, 22, 20, 0.5) 0%, rgba(28, 22, 20, 0.22) 70%);
  }
  .hero__brand { letter-spacing: 0.08em; }
  .lead-form__row { grid-template-columns: 1fr; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .brand__logo { width: 40px; height: 40px; }
  .brand__name { font-size: 1.05rem; letter-spacing: 0.04em; }
  .brand__sub { display: none; }
  .brand { gap: 0.45rem; min-width: 0; max-width: calc(100% - 9.5rem); }
  .header-main__inner { gap: 0.4rem; min-width: 0; }
  .header-actions { gap: 0.25rem; flex-shrink: 0; }
  .header-socials { gap: 0.15rem; }
  .header-social { width: 30px; height: 30px; }
  .header-social svg { width: 13px; height: 13px; }
  .nav-toggle { width: 38px; height: 38px; flex-shrink: 0; }
  .land-hero { min-height: 78vh; }
  .land-hero__brand { letter-spacing: 0.08em; }
  .price-grid, .land-for, .land-cta, .land-gallery, .land-stats__grid {
    grid-template-columns: 1fr;
  }
  .land-gallery { grid-template-columns: 1fr 1fr; }
  .studio-gallery { grid-template-columns: 1fr; }
  .lightbox__nav--prev { left: 0.15rem; }
  .lightbox__nav--next { right: 0.15rem; }
}

/* ===== Gift certificates shop ===== */
.shop-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.shop-hero__bg { position: absolute; inset: 0; }
.shop-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
.shop-hero__wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(20,14,16,0.82) 0%, rgba(20,14,16,0.42) 55%, rgba(20,14,16,0.2) 100%),
    linear-gradient(0deg, rgba(20,14,16,0.5), transparent 45%);
}
.shop-hero__content {
  position: relative; z-index: 1;
  padding: 3.5rem 0 3.2rem;
  max-width: 720px;
  margin-left: max(1rem, calc((100% - var(--container)) / 2));
  animation: rise .85s ease both;
}
.shop-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.12em;
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: #fff;
}
.shop-hero h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.7rem;
}
.shop-hero__lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 1.4rem;
}
.breadcrumbs--light,
.breadcrumbs--light a { color: rgba(255,255,255,0.78); }
.breadcrumbs--light a:hover { color: #fff; }

.shop-benefits { padding-top: 2.5rem; padding-bottom: 1rem; }
.shop-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.shop-benefits article {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255,252,249,0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.shop-benefits h2 { font-size: 1.45rem; margin-bottom: 0.35rem; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}
.shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,252,249,0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(31,26,28,0.12);
}
.shop-card.is-featured {
  border-color: rgba(154, 91, 106, 0.4);
  box-shadow: 0 22px 50px rgba(154, 91, 106, 0.16);
}
.shop-card__badge {
  position: absolute;
  top: 1rem; left: 1rem; z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.shop-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.shop-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.shop-card:hover .shop-card__media img { transform: scale(1.05); }
.shop-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.25rem 1.4rem;
  flex: 1;
}
.shop-card__sub {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}
.shop-card h3 {
  font-size: 1.55rem;
  margin: 0;
}
.shop-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0.15rem 0 0.35rem;
  line-height: 1;
}
.shop-card__price span {
  font-size: 1rem;
  color: var(--rose);
  margin-right: 0.15rem;
}
.shop-card__desc {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.shop-card__list {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 1.1rem;
  flex: 1;
}
.shop-card__list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.shop-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

.shop-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.shop-steps li {
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,252,249,0.9);
  box-shadow: var(--shadow);
}
.shop-steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--rose);
  margin-bottom: 0.35rem;
}
.shop-steps h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.shop-gallery {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  min-height: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.shop-gallery img {
  border-radius: 20px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: var(--shadow);
  min-height: 0 !important;
}
.shop-note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .shop-grid,
  .shop-benefits__grid,
  .shop-steps {
    grid-template-columns: 1fr;
  }
  .shop-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .shop-hero { min-height: 68vh; }
  .shop-gallery { grid-template-columns: 1fr; }
  .shop-gallery img { height: 220px; }
}

/* ——— Памятки клиента ——— */
.memo-hero {
  padding-bottom: 2.5rem;
  background:
    radial-gradient(700px 320px at 12% 0%, rgba(183, 160, 138, 0.22), transparent 60%),
    radial-gradient(560px 280px at 88% 20%, rgba(154, 91, 106, 0.12), transparent 55%);
}
.memo-hero h1 { max-width: 16ch; }

.memo-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.memo-card {
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: rgba(252, 250, 251, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.memo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(31, 26, 28, 0.12);
}
.memo-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #d9cfc8, #c4a8b0);
}
.memo-card--heal .memo-card__media {
  background: linear-gradient(145deg, #e4d6cc, #c9a6ae);
}
.memo-card--laser .memo-card__media {
  background: linear-gradient(145deg, #d5d0d8, #a89bb0);
}
.memo-card--lash .memo-card__media {
  background: linear-gradient(145deg, #e8ddd4, #b7a08a);
}
.memo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.memo-card:hover .memo-card__media img {
  transform: scale(1.04);
}
.memo-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.memo-card__placeholder span {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5rem);
  color: rgba(252, 250, 251, 0.55);
  letter-spacing: 0.04em;
}
.memo-card__eyebrow {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 26, 28, 0.72);
  color: #fcfafb;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.memo-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.45rem 1.4rem 1.55rem;
  flex: 1;
}
.memo-card__body h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  margin: 0;
  color: var(--ink);
}
.memo-card__body p {
  margin: 0;
  flex: 1;
  font-size: 0.98rem;
}
.memo-card__body .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.memo-help {
  margin-top: 3rem;
  padding: 2rem 2.1rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(252, 250, 251, 0.95), rgba(235, 226, 230, 0.85));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}
.memo-help h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin-bottom: 0.4rem;
}
.memo-help p:last-child { margin-bottom: 0; }

.memo-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}
.memo-article {
  min-width: 0;
}
.memo-visual {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(252, 250, 251, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 420px;
}
.memo-visual__main {
  position: relative;
  display: grid;
  place-items: center;
  height: 180px;
  background: #ebe3df;
  text-decoration: none;
  color: inherit;
  cursor: zoom-in;
  overflow: hidden;
}
.memo-visual__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.memo-visual__main:hover img,
.memo-visual__main:focus-visible img {
  transform: scale(1.04);
}
.memo-visual__hint {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 26, 28, 0.82);
  color: #fcfafb;
  font-size: 0.78rem;
  font-weight: 560;
  pointer-events: none;
}
.memo-visual__thumbs {
  display: flex;
  gap: 0.45rem;
  padding: 0.55rem 0.55rem 0;
  background: #f7f2ef;
}
.memo-visual__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ebe3df;
  cursor: zoom-in;
}
.memo-visual__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.memo-visual__cap {
  margin: 0;
  padding: 0.55rem 0.85rem 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
  border-top: 1px solid transparent;
  background: #f7f2ef;
}

.memo-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
}
.memo-timeline::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--rose), rgba(183, 160, 138, 0.35));
}
.memo-timeline__item {
  position: relative;
  padding: 0 0 1.85rem 2.6rem;
}
.memo-timeline__item:last-child { padding-bottom: 0; }
.memo-timeline__item::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.55rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--rose);
  box-shadow: 0 0 0 4px rgba(154, 91, 106, 0.12);
}
.memo-timeline__label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.memo-timeline__item h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  margin-bottom: 0.65rem;
}
.memo-timeline__item ul {
  display: grid;
  gap: 0.55rem;
}
.memo-timeline__item li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.memo-timeline__item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne);
}

.memo-faq {
  display: grid;
  gap: 1rem;
}
.memo-faq__item {
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(252, 250, 251, 0.88);
  box-shadow: 0 10px 28px rgba(31, 26, 28, 0.04);
}
.memo-faq__item h2 {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.55rem;
}
.memo-faq__item h2 span {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--rose);
  margin-top: 0.1rem;
}
.memo-faq__item p {
  margin: 0;
  font-size: 1.02rem;
}

.memo-reminders {
  margin-top: 2.25rem;
  padding: 1.5rem 1.55rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(154, 91, 106, 0.1), rgba(183, 160, 138, 0.14));
  border: 1px solid rgba(154, 91, 106, 0.18);
}
.memo-reminders ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}
.memo-reminders li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-size: 1.02rem;
}
.memo-reminders li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--rose);
  transform: rotate(45deg);
}

.memo-closing {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.memo-closing h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}
.memo-aside {
  display: grid;
  gap: 1.1rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.aside-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.aside-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.aside-links a:hover {
  color: var(--rose-deep);
  border-bottom-color: rgba(125, 69, 84, 0.35);
}

@media (max-width: 1024px) {
  .memo-catalog { grid-template-columns: 1fr 1fr; }
  .memo-detail__grid { grid-template-columns: 1fr; }
  .memo-aside { position: static; }
  .memo-help { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .memo-catalog { grid-template-columns: 1fr; }
  .memo-hero h1 { max-width: none; }
  .memo-visual { max-width: none; }
  .memo-visual__main { height: 150px; }
  .memo-visual__thumb { flex-basis: 56px; width: 56px; height: 56px; }
}
