:root {
  --bg: #06080c;
  --bg-soft: #10151c;
  --surface: rgba(20, 25, 33, 0.78);
  --surface-strong: rgba(29, 35, 43, 0.92);
  --surface-dark: #030407;
  --ink: #edf2f7;
  --ink-soft: #a7b0bb;
  --gold: #bcc5cf;
  --gold-deep: #e3e8ee;
  --rose: #78818d;
  --silver-glow: rgba(207, 216, 226, 0.24);
  --silver-glow-strong: rgba(232, 238, 244, 0.34);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.22);
  --shadow-xl: 0 40px 90px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 24px 54px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 16px 30px rgba(0, 0, 0, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 86px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(212, 220, 229, 0.24), transparent 30%),
    radial-gradient(circle at 84% 2%, rgba(171, 182, 195, 0.17), transparent 24%),
    radial-gradient(circle at 54% 42%, rgba(100, 111, 125, 0.12), transparent 34%),
    linear-gradient(180deg, #06080c 0%, #0d131b 44%, #06070a 100%);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  min-width: 320px;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background: url("assets/images/silk-luxury-bg-xl.png") center center / cover no-repeat;
  opacity: 0.22;
  filter: saturate(0.78) brightness(0.92) contrast(1.06);
}

body::after {
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 238, 244, 0.08), transparent 18%),
    radial-gradient(circle at 14% 76%, rgba(216, 224, 233, 0.05), transparent 21%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.72), rgba(8, 11, 16, 0.62) 42%, rgba(6, 8, 11, 0.78));
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.46;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(209, 219, 229, 0.32);
}

.page-glow-right {
  top: 24rem;
  right: -10rem;
  background: rgba(146, 158, 173, 0.28);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding-top: 24px;
}

.section-compact {
  padding-top: 24px;
  padding-bottom: 88px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: background-color var(--transition), border-color var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(18, 23, 30, 0.82), rgba(12, 16, 22, 0.74));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.34);
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav > a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
}

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

.site-nav > a.is-current:not(.nav-cta) {
  color: var(--ink);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1f4f7 0%, #b4bdc8 54%, #7d8793 100%);
  color: #05070a !important;
  box-shadow: var(--shadow-md);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 13, 18, 0.86);
  box-shadow: var(--shadow-md);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  min-width: 48px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.lang-button:hover,
.lang-button:focus-visible {
  transform: translateY(-1px);
}

.lang-button.is-active {
  background: linear-gradient(135deg, #e8edf2 0%, #b3bcc7 54%, #7d8692 100%);
  color: #05070a;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 13, 18, 0.86);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  padding-top: 32px;
  overflow: clip;
}

body[data-page="home"] #top {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

body[data-page="home"] #top::before {
  content: none;
}

body[data-page="home"] #top > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 36px;
  align-items: start;
}

body[data-page="home"] .hero {
  position: relative;
  isolation: isolate;
  min-height: min(700px, calc(100svh - var(--header-height) + 20px));
  padding-top: clamp(8px, 1.8vw, 20px);
  padding-bottom: 24px;
  display: flex;
  align-items: flex-start;
}

body[data-page="home"] .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 12%, rgba(228, 235, 241, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(5, 8, 12, 0.34) 0%, rgba(5, 8, 12, 0.54) 44%, rgba(5, 8, 12, 0.8) 100%),
    linear-gradient(90deg, rgba(5, 8, 12, 0.46) 0%, rgba(5, 8, 12, 0.18) 48%, rgba(5, 8, 12, 0.5) 100%),
    url("assets/images/hero.jpg") center 16% / 100% auto no-repeat;
  opacity: 1;
}

body[data-page="home"] .hero > * {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

body[data-page="home"] .hero-copy {
  width: 100%;
  max-width: min(1600px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-items: start;
  text-align: center;
}

.eyebrow-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow,
.eyebrow-ghost {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-deep);
}

.eyebrow-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-soft);
}

.hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.028em;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

body[data-lang="ru"] .hero-copy h1 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.03;
  max-width: 100%;
}

body[data-page="home"] .hero-copy h1 {
  width: 100%;
  margin-inline: auto;
  max-width: 28ch;
  text-align: center;
  font-size: clamp(2.2rem, 4.15vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.034em;
}

body[data-page="home"][data-lang="ru"] .hero-copy h1 {
  width: 100%;
  max-width: 28ch;
  font-size: clamp(2.2rem, 4.15vw, 4.2rem);
  line-height: 0.96;
  text-align: center;
}

.section-intro h2,
.studio-copy h2,
.contact-copy h2,
.faq-intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-text,
.section-intro p,
.studio-copy p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 62ch;
}

.hero-text {
  margin: 26px 0 0;
}

body[data-page="home"] .hero-text {
  width: 100%;
  max-width: 92ch;
  margin: 18px auto 0;
  text-align: center;
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
  line-height: 1.62;
  color: rgba(232, 236, 241, 0.92);
}

body[data-page="home"][data-lang="ru"] .hero-text {
  width: 100%;
  max-width: 92ch;
  margin-inline: auto;
  text-align: center;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

body[data-page="home"] .hero-proof-pill,
body[data-page="home"] .hero-strip span {
  background: rgba(12, 16, 22, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #f3f6f9 0%, #bcc5cf 56%, #78818d 100%);
  color: #040507;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 34px;
}

.hero-strip span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.87rem;
  font-weight: 600;
}

.page-chip-strip {
  margin: 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.info-tile,
.metric-card,
.voice-card,
.quote-card,
.contact-link {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 88% 10%, rgba(233, 239, 244, 0.14), transparent 24%),
    linear-gradient(160deg, rgba(22, 28, 36, 0.9), rgba(12, 16, 22, 0.86));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.info-tile {
  padding: 22px 22px 24px;
  border-radius: var(--radius-lg);
}

.tile-label,
.section-kicker,
.contact-label {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-tile h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.info-tile p:last-child {
  margin-bottom: 0;
}

.hero-media {
  position: relative;
  min-height: 680px;
  align-self: start;
}

.hero-card-main {
  height: 100%;
  min-height: 680px;
  overflow: hidden;
  border-radius: 28px 28px 150px 28px;
  box-shadow: 0 34px 90px rgba(7, 19, 28, 0.18);
  isolation: isolate;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 9, 0.02), rgba(4, 6, 9, 0.6)),
    linear-gradient(135deg, rgba(220, 228, 236, 0.16), transparent 48%);
  z-index: 1;
}

.hero-media-badges {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero-media-badge,
.hero-media-proof {
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 56px rgba(7, 19, 28, 0.16);
}

.hero-media-badge {
  display: grid;
  gap: 4px;
  min-width: 108px;
  padding: 18px 18px 16px;
  background: rgba(10, 14, 19, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 0.8;
}

.hero-media-badge span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media-proof {
  width: min(260px, 100%);
  padding: 18px;
  background: rgba(10, 14, 19, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
}

.hero-media-proof .tile-label {
  color: rgba(255, 255, 255, 0.58);
}

.hero-media-proof strong {
  display: block;
  font-size: 1rem;
  line-height: 1.28;
}

.hero-card-overlay {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 3;
  width: min(340px, calc(100% - 52px));
  padding: 20px;
  border-radius: 22px;
  background: rgba(10, 14, 19, 0.88);
  color: var(--ink);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 56px rgba(7, 19, 28, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-overlay p,
.hero-card-overlay strong,
.hero-card-overlay span,
.hero-card-overlay a {
  display: block;
}

.hero-card-overlay p {
  margin: 0 0 10px;
}

.hero-card-overlay strong {
  margin-bottom: 4px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-card-overlay span {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.hero-card-overlay a {
  font-weight: 700;
  color: var(--gold-deep);
}

.marquee-band {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 8, 12, 0.98);
  color: rgba(255, 255, 255, 0.9);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-width: max-content;
  padding-left: 26px;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-left: 26px;
}

.section-intro {
  max-width: 74ch;
  margin-bottom: 34px;
}

.section-intro h2,
.studio-copy h2,
.contact-copy h2,
.faq-intro h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 16px;
}

.narrow {
  max-width: 82ch;
}

.voice-section .section-intro {
  max-width: 92ch;
}

.voice-section .section-intro h2 {
  font-size: clamp(2.2rem, 4.35vw, 3.7rem);
  max-width: 24ch;
  text-wrap: balance;
}

.page-main {
  padding-top: 22px;
}

.page-hero {
  padding-top: 34px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 32px;
  align-items: start;
}

body[data-page="prices"] .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 100%;
  text-wrap: balance;
}

body[data-lang="ru"] .page-title {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  max-width: 100%;
  line-height: 1.03;
}

.page-intro {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  max-width: 62ch;
}

.page-note {
  margin: 16px 0 0;
  color: var(--gold-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.page-side-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 88% 12%, var(--silver-glow-strong), transparent 26%),
    linear-gradient(145deg, rgba(15, 19, 25, 0.94), rgba(24, 30, 38, 0.88));
  box-shadow: var(--shadow-lg);
}

.page-side-card strong,
.page-side-card span {
  display: block;
}

.page-side-card strong {
  font-size: 1.24rem;
  line-height: 1.15;
}

.page-side-card span {
  color: var(--ink-soft);
}

.page-side-card p:last-of-type {
  margin: 0;
}

.booking-embed-card {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 11, 16, 0.56);
  scroll-margin-top: 120px;
}

.booking-embed-card .tile-label {
  margin-bottom: 0;
}

.booking-embed-card p:not(.tile-label) {
  color: rgba(232, 236, 241, 0.78);
}

.legal-shell {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(232, 238, 244, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(16, 20, 26, 0.94), rgba(24, 30, 38, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.legal-card p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.page-side-actions,
.home-cta-actions,
.action-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-side-actions {
  margin-top: 8px;
}

.page-side-actions .button,
.home-cta-actions .button,
.action-banner-actions .button {
  flex: 1 1 200px;
}

.page-side-card-dark {
  background: linear-gradient(160deg, #05070a 0%, #0e1319 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}

.page-side-card-dark .tile-label {
  color: rgba(255, 255, 255, 0.6);
}

.page-side-card-dark span,
.page-side-card-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.page-side-card-dark .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.page-side-card-dark .button-primary,
.action-banner .button-primary {
  background: linear-gradient(135deg, #f3f6f9 0%, #bcc5cf 56%, #78818d 100%);
  color: #040507;
  box-shadow: 0 18px 34px rgba(4, 8, 11, 0.22);
}

.page-side-card-dark .button-primary::after,
.action-banner .button-primary::after {
  border-color: rgba(255, 255, 255, 0.28);
}

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

.page-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 244px;
  padding: 26px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 18, 24, 0.98), rgba(9, 12, 17, 0.9)),
    linear-gradient(145deg, rgba(201, 210, 220, 0.08), transparent 55%);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.home-overview-section .page-card:nth-child(2),
.home-overview-section .page-card:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.98), rgba(18, 22, 28, 0.96)),
    linear-gradient(145deg, rgba(230, 236, 242, 0.1), transparent 55%);
  border-color: rgba(255, 255, 255, 0.08);
  color: white;
}

.home-overview-section .page-card:nth-child(2) p:not(.tile-label),
.home-overview-section .page-card:nth-child(5) p:not(.tile-label) {
  color: rgba(255, 255, 255, 0.74);
}

.home-overview-section .page-card:nth-child(2) .tile-label,
.home-overview-section .page-card:nth-child(5) .tile-label,
.home-overview-section .page-card:nth-child(2) .page-card-link,
.home-overview-section .page-card:nth-child(5) .page-card-link {
  color: var(--gold-deep);
}

.page-card:hover,
.page-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(230, 236, 242, 0.26);
  box-shadow: var(--shadow-lg);
}

.page-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.page-card p:not(.tile-label) {
  margin: 0;
  color: var(--ink-soft);
}

.page-card-link {
  margin-top: auto;
  color: var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-cta,
.action-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 32px;
}

.home-cta {
  background:
    radial-gradient(circle at 88% 12%, rgba(236, 242, 247, 0.24), transparent 24%),
    linear-gradient(145deg, rgba(16, 20, 26, 0.94), rgba(24, 30, 38, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.action-banner {
  background:
    radial-gradient(circle at 84% 16%, rgba(232, 238, 244, 0.18), transparent 22%),
    linear-gradient(160deg, #0b0f14 0%, #151b23 100%);
  color: white;
  box-shadow: var(--shadow-xl);
}

.home-cta h2,
.action-banner h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.home-cta p:last-child,
.action-banner p:last-child {
  margin-bottom: 0;
}

.home-cta p:not(.section-kicker) {
  color: var(--ink-soft);
}

.action-banner .section-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.action-banner p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.action-banner .button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.price-note {
  margin: 20px 0 0;
  color: var(--ink-soft);
  max-width: 62ch;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 18%, rgba(236, 241, 246, 0.2), transparent 24%),
    linear-gradient(145deg, #0b0f14 0%, #141b23 48%, #0a0d11 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(7, 19, 28, 0.22);
  color: white;
  isolation: isolate;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: -15% 10% 30% 35%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 44%),
    linear-gradient(140deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, transparent 100%);
  filter: blur(32px);
  opacity: 0.5;
  transform: rotate(-14deg);
  pointer-events: none;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-script {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

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

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list span,
.price-item-name {
  color: rgba(255, 255, 255, 0.82);
}

.price-item-name {
  display: grid;
  gap: 4px;
}

.price-item-name small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-list strong {
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.treatment-modal[hidden] {
  display: none;
}

.treatment-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.treatment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 28, 0.58);
  backdrop-filter: blur(10px);
}

.treatment-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 28px));
  max-height: min(88vh, 920px);
  margin: 6vh auto;
  overflow: auto;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 10%, var(--silver-glow), transparent 24%),
    linear-gradient(145deg, rgba(7, 9, 13, 0.98), rgba(15, 19, 25, 0.96));
  box-shadow: 0 30px 80px rgba(7, 19, 28, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.treatment-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
}

.treatment-modal-close:hover,
.treatment-modal-close:focus-visible {
  transform: translateY(-1px);
}

.treatment-modal-dialog h2 {
  margin: 0;
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.treatment-modal-summary {
  margin: 16px 0 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.treatment-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.treatment-modal-section {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(17, 22, 29, 0.92), rgba(12, 16, 22, 0.84)),
    linear-gradient(145deg, rgba(230, 236, 242, 0.05), transparent 55%);
  box-shadow: var(--shadow-md);
}

.treatment-modal-section h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.treatment-modal-section p,
.treatment-modal-section ul {
  margin: 0;
  color: var(--ink-soft);
}

.treatment-modal-section ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.treatment-modal-note {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 26px 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.34), rgba(6, 8, 12, 0.82)),
    linear-gradient(135deg, rgba(236, 241, 246, 0.16), rgba(236, 241, 246, 0.06) 30%, transparent 56%),
    var(--service-image, linear-gradient(180deg, rgba(15, 19, 25, 0.98), rgba(9, 12, 17, 0.88)));
  box-shadow: var(--shadow-md);
  min-height: 220px;
}

.service-card[data-treatment-card="hydrafacial"] {
  --service-image: url("assets/images/treatments/hydrafacial.jpg") center 24% / cover no-repeat;
}

.service-card[data-treatment-card="prp"] {
  --service-image: url("assets/images/treatments/prp.jpg") center 24% / cover no-repeat;
}

.service-card[data-treatment-card="botox"] {
  --service-image: url("assets/images/treatments/botox.jpg") center 22% / cover no-repeat;
}

.service-card[data-treatment-card="lips"] {
  --service-image: url("assets/images/treatments/lips.jpg") center 42% / cover no-repeat;
}

.service-card[data-treatment-card="jawline"] {
  --service-image: url("assets/images/treatments/jawline.jpg") center 20% / cover no-repeat;
}

.service-card[data-treatment-card="acne"] {
  --service-image: url("assets/images/treatments/acne.jpg") center 26% / cover no-repeat;
}

.service-card[data-treatment-card="stratosphere"] {
  --service-image: url("assets/images/treatments/stratosphere-device.jpg") center center / cover no-repeat;
}

.service-card[data-treatment-card="vitamin"] {
  --service-image: url("assets/images/treatments/vitamin.jpg") center 30% / cover no-repeat;
}

.service-card-button {
  display: grid;
  grid-template-rows: auto minmax(3.05em, auto) minmax(5.6em, auto) auto;
  align-items: start;
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 26px 22px 24px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card-button:hover,
.service-card-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 236, 242, 0.24);
}

.service-card-button:focus-visible {
  outline: 2px solid rgba(228, 235, 241, 0.2);
  outline-offset: 2px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto auto -38px -22px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 235, 241, 0.14), transparent 70%);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff3f7 0%, #b3bcc8 54%, #7b8591 100%);
  color: #05070a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 1.16rem;
  line-height: 1.2;
  color: var(--ink);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.service-card-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.service-card-hint::after {
  content: "↗";
  font-size: 0.92rem;
}

.studio-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(233, 239, 244, 0.12), transparent 24%),
    radial-gradient(circle at 14% 70%, rgba(178, 188, 200, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.studio-lead-grid .quote-card {
  min-height: 100%;
}

.studio-copy-card,
.studio-quote-card {
  display: grid;
  gap: 18px;
}

.studio-copy-card .feature-list {
  margin-top: 0;
}

.studio-quote-card {
  align-content: space-between;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.studio-panel {
  display: grid;
  gap: 16px;
}

.quote-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.quote-card-dark {
  background:
    radial-gradient(circle at 88% 12%, rgba(233, 239, 244, 0.16), transparent 22%),
    linear-gradient(160deg, #0b0f14 0%, #151b23 100%);
  color: white;
}

.quote-card-dark .tile-label {
  color: rgba(255, 255, 255, 0.64);
}

.fact-stack {
  display: grid;
  gap: 18px;
}

.fact-stack strong,
.fact-stack span,
.fact-stack a {
  display: block;
}

.fact-stack span {
  color: rgba(255, 255, 255, 0.68);
}

.fact-stack a {
  color: var(--gold-deep);
}

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

.gallery-shell {
  width: min(100vw - 48px, 1680px);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  min-height: 320px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.gallery-item-large {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 660px;
}

.gallery-item-tall {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 660px;
}

.gallery-item-wide {
  grid-column: span 6;
  min-height: 380px;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 28, 0.06), rgba(7, 19, 28, 0.34)),
    linear-gradient(180deg, rgba(228, 235, 241, 0.08), transparent 58%);
}

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

.metrics-section {
  padding-top: 44px;
}

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

.metric-card,
.voice-card {
  padding: 28px 24px;
  border-radius: 24px;
}

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

.home-proof-section .metric-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(236, 241, 246, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(18, 23, 30, 0.96), rgba(11, 15, 20, 0.88)),
    linear-gradient(135deg, rgba(230, 236, 242, 0.12), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.metric-value {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  line-height: 0.9;
}

.metric-card h3,
.voice-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.metric-card p,
.voice-card p {
  margin: 0;
  color: var(--ink-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

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

.home-focus-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(233, 239, 244, 0.12), transparent 26%),
    radial-gradient(circle at 16% 80%, rgba(176, 187, 199, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.focus-grid .voice-card {
  min-height: 220px;
  background:
    radial-gradient(circle at 88% 12%, rgba(236, 241, 246, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(18, 23, 30, 0.96), rgba(11, 15, 20, 0.88)),
    linear-gradient(145deg, rgba(230, 236, 242, 0.1), transparent 50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.focus-grid .voice-card:nth-child(2),
.focus-grid .voice-card:nth-child(5) {
  background: linear-gradient(160deg, #05070a 0%, #0e1319 100%);
  color: white;
}

.focus-grid .voice-card:nth-child(2) p,
.focus-grid .voice-card:nth-child(5) p {
  color: rgba(255, 255, 255, 0.74);
}

.story-card {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.story-heading {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.story-copy {
  margin: 0;
  color: var(--ink-soft);
  min-width: 0;
  overflow-wrap: anywhere;
}

.quote-card-dark .story-copy {
  color: rgba(255, 255, 255, 0.74);
}

.story-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.story-list li {
  overflow-wrap: anywhere;
}

.studio-story-grid .quote-card {
  padding: 24px;
}

.studio-story-grid .story-heading {
  font-size: clamp(1.7rem, 2.2vw, 2.55rem);
  line-height: 1;
}

.quote-card-dark .story-list {
  color: rgba(255, 255, 255, 0.82);
}

.review-stars {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-reviews-section .review-card {
  background:
    linear-gradient(180deg, rgba(15, 19, 25, 0.98), rgba(9, 12, 17, 0.88)),
    linear-gradient(145deg, rgba(230, 236, 242, 0.06), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 22, 29, 0.76);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-deep);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--ink-soft);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.94fr);
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, var(--silver-glow-strong), transparent 24%),
    linear-gradient(145deg, rgba(16, 20, 26, 0.94), rgba(24, 30, 38, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

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

.contact-link {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  min-height: 140px;
  transition: transform var(--transition), border-color var(--transition);
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(230, 236, 242, 0.3);
}

.contact-link strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.contact-link span {
  color: var(--gold-deep);
  font-weight: 700;
}

.site-footer {
  padding: 34px 0 50px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-inner p {
  margin: 0;
  color: var(--ink-soft);
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--gold-deep);
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  body::before {
    background: url("assets/images/silk-luxury-bg-xl.png") center center / cover no-repeat;
    opacity: 0.18;
  }

  .hero-grid,
  .page-hero-grid,
  .studio-grid,
  .faq-grid,
  .contact-shell,
  .home-cta,
  .action-banner {
    grid-template-columns: 1fr;
  }

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

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

  .hero-media {
    min-height: auto;
    padding-bottom: 96px;
  }

  .hero-media-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card-main {
    min-height: 560px;
  }

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

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

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

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

  .gallery-item,
  .gallery-item-large,
  .gallery-item-tall,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .gallery-shell {
    width: min(100vw - 32px, 1680px);
  }
}

@media (max-width: 840px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 12px) 20px auto;
    display: grid;
    gap: 10px;
    padding: 18px;
    background:
      radial-gradient(circle at 84% 16%, rgba(228, 235, 241, 0.1), transparent 22%),
      linear-gradient(145deg, rgba(7, 9, 13, 0.98), rgba(16, 20, 26, 0.96));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    box-shadow: var(--shadow-xl);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    margin-left: 0;
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    padding: 10px 6px;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 5.9vw, 2.3rem);
    line-height: 1.04;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
  }

  body[data-lang="ru"] .hero-copy h1 {
    font-size: clamp(1.65rem, 5.9vw, 2.3rem);
    line-height: 1.04;
    max-width: 100%;
  }

  body[data-page="home"] .hero-copy h1 {
    text-align: center;
    margin-inline: auto;
    max-width: 20ch;
    font-size: clamp(1.95rem, 6.6vw, 3rem);
    line-height: 1;
  }

  body[data-page="home"][data-lang="ru"] .hero-copy h1 {
    max-width: 20ch;
    font-size: clamp(1.95rem, 6.6vw, 3rem);
    line-height: 1;
  }

  .section-intro h2,
  .studio-copy h2,
  .contact-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .page-title {
    font-size: clamp(1.65rem, 5.9vw, 2.3rem);
    max-width: 100%;
    line-height: 1.04;
  }

  body[data-lang="ru"] .page-title {
    font-size: clamp(1.65rem, 5.9vw, 2.3rem);
    max-width: 100%;
    line-height: 1.04;
  }

  .voice-section .section-intro h2 {
    font-size: clamp(2.15rem, 9.6vw, 3.15rem);
    max-width: 18ch;
  }

  .page-card-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

  .treatment-modal-grid {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .metrics-grid,
  .voice-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .booking-embed-card {
    padding: 18px;
  }

  .page-side-actions,
  .home-cta-actions,
  .action-banner-actions {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  body::before {
    background: url("assets/images/silk-luxury-bg-xl.png") center center / cover no-repeat;
    opacity: 0.16;
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .lang-switcher {
    padding: 3px;
  }

  .lang-button {
    min-width: 34px;
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page="home"] .hero {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 26px;
  }

  body[data-page="home"] .hero::before {
    background:
      radial-gradient(circle at 52% 12%, rgba(228, 235, 241, 0.1), transparent 30%),
      linear-gradient(180deg, rgba(5, 8, 12, 0.48) 0%, rgba(5, 8, 12, 0.68) 40%, rgba(5, 8, 12, 0.88) 100%),
      linear-gradient(90deg, rgba(5, 8, 12, 0.44) 0%, rgba(5, 8, 12, 0.18) 50%, rgba(5, 8, 12, 0.46) 100%),
      url("assets/images/hero.jpg") center top / 100% auto no-repeat;
  }

  .page-side-actions .button,
  .home-cta-actions .button,
  .action-banner-actions .button {
    flex-basis: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-card-main {
    min-height: 420px;
    border-radius: 24px 24px 96px 24px;
  }

  .hero-card-overlay {
    left: 14px;
    right: 14px;
    bottom: 18px;
    width: auto;
    padding: 18px;
  }

  .hero-media-badges {
    top: 14px;
    left: 14px;
    right: 14px;
    gap: 10px;
  }

  .hero-media-badge,
  .hero-media-proof {
    width: auto;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-tall,
  .gallery-item-wide {
    min-height: 280px;
  }

  .studio-story-grid {
    grid-template-columns: 1fr;
  }

  .gallery-shell {
    width: min(100vw - 24px, 1680px);
  }

  .contact-shell {
    padding: 22px;
  }

  .page-side-card,
  .price-card,
  .home-cta,
  .action-banner,
  .treatment-modal-dialog {
    padding: 22px;
  }

  .treatment-modal-dialog {
    margin: 3vh auto;
    max-height: 92vh;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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