:root {
  --black: #050505;
  --black-soft: #0d0c0a;
  --panel: #13110e;
  --gold: #d4af67;
  --gold-light: #f3d58b;
  --text: #f7f2e8;
  --muted: #b9ad99;
  --line: rgba(212, 175, 103, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 175, 103, 0.12), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0b0907 48%, #050505 100%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body main,
body .site-footer,
body .floating-actions {
  transition: filter 0.35s ease, transform 0.35s ease;
}

body.menu-open main,
body.menu-open .site-footer,
body.menu-open .floating-actions {
  filter: blur(12px) brightness(0.72);
  transform: scale(0.985);
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  padding-block: 12px;
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  letter-spacing: 0.22em;
  line-height: 1;
}

.brand img {
  display: block;
  width: 82px;
  height: auto;
  object-fit: contain;
}

.brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.62rem;
}

.menu-toggle {
  position: relative;
  z-index: 30;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(19, 17, 14, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--gold-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 0;
  z-index: 24;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  background: rgba(5, 5, 5, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.main-nav a {
  width: fit-content;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.8rem);
  transition: color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
  transform: translateX(8px);
}

.section {
  padding: 84px 20px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding-top: 110px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--black), transparent);
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 72px 0 auto;
  display: grid;
  height: 48vh;
  min-height: 330px;
  place-items: center;
  opacity: 0.94;
}

.portrait-card,
.hero-video-card {
  position: relative;
  width: min(72vw, 340px);
  aspect-ratio: 0.78;
  border: 1px solid var(--line);
  border-radius: 46% 46% 4px 4px;
  background:
    linear-gradient(180deg, transparent 58%, rgba(5, 5, 5, 0.48) 100%),
    linear-gradient(145deg, rgba(212, 175, 103, 0.16), transparent 42%),
    url("assets/salon11-hero.png") center / cover no-repeat,
    linear-gradient(180deg, #17130f 0%, #080706 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-video-card {
  background: #080706;
}

.hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(1.05) brightness(0.82);
}

.hero-video-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, transparent 42%, rgba(5, 5, 5, 0.42) 100%),
    radial-gradient(circle at 50% 18%, rgba(243, 213, 139, 0.12), transparent 44%);
  content: "";
  pointer-events: none;
}

.portrait-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 64%, rgba(5, 5, 5, 0.55) 100%);
  content: "";
  pointer-events: none;
}

.gold-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(243, 213, 139, 0.42);
  border-radius: 50% 50% 6px 6px;
}

.beauty-lines span {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 213, 139, 0.5), transparent);
}

.beauty-lines span:nth-child(1) {
  bottom: 22%;
}

.beauty-lines span:nth-child(2) {
  bottom: 15%;
}

.beauty-lines span:nth-child(3) {
  bottom: 8%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-bottom: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  font-size: clamp(4rem, 18vw, 8.6rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 11vw, 6.6rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.hero-text,
.about-copy p,
.booking p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

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

.hero-quick-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 103, 0.36);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-quick-links a:hover {
  background: rgba(212, 175, 103, 0.1);
  color: var(--text);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--gold);
  color: #0b0805;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-light);
}

.btn-secondary:hover {
  background: rgba(212, 175, 103, 0.1);
}

.section-heading {
  max-width: 820px;
}

.service-grid,
.masters-grid,
.reviews-grid {
  display: grid;
  gap: 14px;
}

.service-card,
.master-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.service-card:hover,
.master-card:hover,
.review-card:hover {
  border-color: rgba(243, 213, 139, 0.58);
  background: linear-gradient(145deg, rgba(212, 175, 103, 0.11), rgba(255, 255, 255, 0.018));
  transform: translateY(-6px);
}

.service-card {
  min-height: 220px;
  padding: 24px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.service-card p,
.master-card p,
.review-card p {
  color: var(--muted);
}

.prices {
  background:
    radial-gradient(circle at 8% 16%, rgba(212, 175, 103, 0.1), transparent 24rem),
    rgba(255, 255, 255, 0.012);
}

.price-panel,
.price-feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(212, 175, 103, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.price-panel {
  margin-top: 16px;
  padding: 22px;
}

.price-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.price-panel-head span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.price-panel-head h3 {
  max-width: 12ch;
  margin-bottom: 0;
  text-align: right;
}

.price-subtitle {
  margin: -4px 0 18px;
  color: var(--muted);
}

.price-list {
  display: grid;
  gap: 2px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(212, 175, 103, 0.12);
}

.price-row span {
  min-width: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.price-row strong {
  color: var(--gold-light);
  font-size: 0.98rem;
  white-space: nowrap;
}

.price-row-accent {
  margin-top: 8px;
  border: 1px solid rgba(243, 213, 139, 0.34);
  border-radius: 8px;
  padding: 16px;
  background: rgba(212, 175, 103, 0.08);
}

.price-notes,
.price-benefits {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-notes p {
  margin-bottom: 0;
}

.price-benefits span {
  border: 1px solid rgba(212, 175, 103, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--gold-light);
  text-align: center;
}

.price-feature {
  display: grid;
  gap: 22px;
  margin-top: 16px;
  padding: 26px 22px;
}

.price-feature h3 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 11vw, 4.8rem);
}

.price-feature p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.price-feature strong {
  align-self: end;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 13vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
}

.price-feature-blue {
  background:
    linear-gradient(145deg, rgba(127, 168, 207, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.price-feature-blue .eyebrow,
.price-feature-blue strong {
  color: #b8d6f1;
}

.about {
  display: grid;
  gap: 34px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.about-stats {
  display: grid;
  gap: 12px;
}

.about-stats div {
  border-left: 1px solid var(--gold);
  padding: 8px 0 8px 20px;
}

.about-stats strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.about-stats span {
  color: var(--muted);
}

.master-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.master-photo {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 32%, rgba(243, 213, 139, 0.28), transparent 20%),
    linear-gradient(145deg, #1c1711, #080706);
  color: rgba(243, 213, 139, 0.42);
  font-family: var(--serif);
  font-size: clamp(4rem, 20vw, 8rem);
  overflow: hidden;
}

.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.master-card:hover .master-photo img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.06);
}

.master-instagram {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(212, 175, 103, 0.18);
  padding-top: 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  transition: color 0.25s ease, transform 0.25s ease;
}

.master-instagram:hover {
  color: var(--text);
  transform: translateX(4px);
}

.review-card {
  padding: 24px;
}

.review-card strong {
  color: var(--gold-light);
}

.reviews-carousel {
  position: relative;
  margin-inline: -20px;
}

.reviews-track {
  display: grid;
  grid-auto-columns: minmax(220px, 280px);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 20px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-story {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 103, 0.26);
  border-radius: 8px;
  background: #070605;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  scroll-snap-align: start;
}

.review-story::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(243, 213, 139, 0.12);
  content: "";
  pointer-events: none;
}

.review-story img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.74);
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.carousel-btn:hover {
  background: var(--gold);
  color: #050505;
}

.carousel-btn-prev {
  left: 8px;
}

.carousel-btn-next {
  right: 8px;
}

.reviews-footer {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.reviews-more {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 103, 0.36);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.reviews-more:hover {
  background: rgba(212, 175, 103, 0.12);
  color: var(--text);
  transform: translateY(-2px);
}

.booking {
  text-align: center;
}

.booking-inner {
  max-width: 820px;
  margin-inline: auto;
  padding: 58px 20px;
  border-block: 1px solid var(--line);
}

.booking .btn {
  margin-top: 18px;
}

.contacts {
  display: grid;
  gap: 26px;
}

.contact-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.contact-list a,
.contact-list span {
  width: fit-content;
}

.contact-list a {
  transition: color 0.25s ease;
}

.contact-list a:hover {
  color: var(--gold-light);
}

.map-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0c0a;
}

.map-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.1) 42%, rgba(5, 5, 5, 0.72)),
    radial-gradient(circle at 78% 18%, rgba(212, 175, 103, 0.16), transparent 12rem);
  content: "";
  pointer-events: none;
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.95) brightness(0.72);
}

.map-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: fit-content;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(212, 175, 103, 0.26);
  border-radius: 8px;
  padding: 16px;
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(14px);
}

.map-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.map-card strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.map-info a {
  width: fit-content;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  transition: color 0.25s ease;
}

.map-info a:hover {
  color: var(--gold-light);
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 15;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.82);
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.floating-actions a:hover {
  background: var(--gold);
  color: #050505;
  transform: translateY(-3px);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 20px 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 0;
  color: var(--text);
  font-family: var(--serif);
  letter-spacing: 0.18em;
}

.footer-logo {
  width: 82px;
  height: auto;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 619px) {
  body {
    background:
      radial-gradient(circle at 60% -8%, rgba(212, 175, 103, 0.16), transparent 18rem),
      linear-gradient(180deg, #050505 0%, #090806 52%, #050505 100%);
  }

  .site-header {
    padding: 12px 16px;
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(14px);
  }

  .brand img {
    width: 58px;
  }

  .brand small {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    gap: 0;
    padding: 96px 24px 34px;
    justify-content: flex-start;
    background:
      radial-gradient(circle at 86% 12%, rgba(212, 175, 103, 0.12), transparent 14rem),
      rgba(5, 5, 5, 0.62);
    backdrop-filter: blur(20px) saturate(1.08);
  }

  .main-nav a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 175, 103, 0.18);
    padding: 17px 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: color 0.25s ease, transform 0.35s ease, opacity 0.35s ease;
  }

  .main-nav a::after {
    color: var(--gold);
    content: "→";
    font-family: var(--sans);
    font-size: 1rem;
    opacity: 0.72;
  }

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

  .main-nav.is-open a:nth-child(2) {
    transition-delay: 0.03s;
  }

  .main-nav.is-open a:nth-child(3) {
    transition-delay: 0.06s;
  }

  .main-nav.is-open a:nth-child(4) {
    transition-delay: 0.09s;
  }

  .main-nav.is-open a:nth-child(5) {
    transition-delay: 0.12s;
  }

  .main-nav.is-open a:nth-child(6) {
    transition-delay: 0.15s;
  }

  .section {
    padding: 64px 16px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-top: 88px;
    padding-bottom: 56px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 22px;
  }

  .portrait-card {
    width: min(76vw, 270px);
    border-radius: 42% 42% 8px 8px;
  }

  .hero-video-card {
    width: min(78vw, 280px);
    border-radius: 42% 42% 8px 8px;
  }

  .hero::after {
    height: 18%;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  h1 {
    max-width: 8.5ch;
    margin-bottom: 16px;
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  h2 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 13vw, 3.65rem);
  }

  h3 {
    font-size: 1.42rem;
  }

  .hero-text,
  .about-copy p,
  .booking p {
    font-size: 0.96rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-quick-links {
    gap: 9px;
    margin-top: 10px;
  }

  .hero-quick-links a {
    min-height: 42px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .service-card span {
    margin-bottom: 28px;
  }

  .price-panel,
  .price-feature,
  .master-card,
  .review-card {
    border-color: rgba(212, 175, 103, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016));
  }

  .price-panel {
    padding: 18px;
  }

  .price-panel-head {
    display: grid;
    align-items: start;
    gap: 8px;
  }

  .price-panel-head h3 {
    max-width: 100%;
    font-size: 1.35rem;
    text-align: left;
    overflow-wrap: anywhere;
  }

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

  .price-row strong {
    font-size: 1rem;
  }

  .price-row-accent {
    padding: 14px;
  }

  .price-feature {
    padding: 22px 18px;
  }

  .price-feature h3 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .price-feature strong {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .about {
    gap: 28px;
  }

  .about-stats strong {
    font-size: 2.25rem;
  }

  .masters-grid {
    gap: 18px;
  }

  .master-card {
    padding: 14px;
  }

  .master-photo {
    aspect-ratio: 4 / 5;
    margin-bottom: 18px;
  }

  .master-card p {
    font-size: 0.94rem;
  }

  .master-instagram {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .reviews-carousel {
    margin-inline: -16px;
  }

  .reviews-track {
    grid-auto-columns: minmax(250px, 78vw);
    gap: 12px;
    padding-inline: 16px;
  }

  .review-story {
    border-radius: 8px;
  }

  .booking-inner {
    padding: 42px 0;
  }

  .contacts {
    gap: 22px;
  }

  .map-card {
    min-height: 260px;
  }

  .map-card strong {
    font-size: 1.45rem;
  }

  .map-info {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 14px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    width: 50px;
    height: 50px;
  }

  .site-footer {
    padding: 28px 16px 82px;
  }
}

@media (min-width: 620px) {
  .hero-actions {
    flex-direction: row;
  }

  .btn {
    width: fit-content;
    min-width: 210px;
  }

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

  .price-panel {
    padding: 30px;
  }

  .price-panel-head h3 {
    max-width: none;
  }

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

  .price-feature {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    padding: 34px;
  }

  .carousel-btn {
    display: grid;
  }
}

@media (min-width: 900px) {
  .site-header {
    padding: 24px 44px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .main-nav a:hover {
    transform: translateY(-2px);
  }

  .section {
    padding: 118px 44px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
    align-items: center;
    padding-top: 132px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    order: 2;
    height: auto;
    min-height: 600px;
  }

  .portrait-card {
    width: min(34vw, 480px);
  }

  .hero-video-card {
    width: min(34vw, 480px);
  }

  .hero-content {
    padding-bottom: 0;
  }

  h1 {
    max-width: 10ch;
  }

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

  .service-card {
    min-height: 340px;
  }

  .about,
  .contacts {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
  }

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

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

  .reviews-carousel {
    margin-inline: -44px;
  }

  .reviews-track {
    grid-auto-columns: minmax(260px, 320px);
    padding-inline: 44px;
  }

  .carousel-btn-prev {
    left: 24px;
  }

  .carousel-btn-next {
    right: 24px;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 34px 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
